bootstrap.css 273 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078
  1. @charset "UTF-8";
  2. /*!
  3. * Bootstrap v5.3.0-alpha2 (https://getbootstrap.com/)
  4. * Copyright 2011-2023 The Bootstrap Authors
  5. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  6. */
  7. :root,
  8. [data-bs-theme=light] {
  9. --bs-blue: #0d6efd;
  10. --bs-indigo: #6610f2;
  11. --bs-purple: #6f42c1;
  12. --bs-pink: #d63384;
  13. --bs-red: #dc3545;
  14. --bs-orange: #fd7e14;
  15. --bs-yellow: #ffc107;
  16. --bs-green: #198754;
  17. --bs-teal: #20c997;
  18. --bs-cyan: #0dcaf0;
  19. --bs-black: #000;
  20. --bs-white: #fff;
  21. --bs-gray: #6c757d;
  22. --bs-gray-dark: #343a40;
  23. --bs-gray-100: #f8f9fa;
  24. --bs-gray-200: #e9ecef;
  25. --bs-gray-300: #dee2e6;
  26. --bs-gray-400: #ced4da;
  27. --bs-gray-500: #adb5bd;
  28. --bs-gray-600: #6c757d;
  29. --bs-gray-700: #495057;
  30. --bs-gray-800: #343a40;
  31. --bs-gray-900: #212529;
  32. --bs-primary: #0d6efd;
  33. --bs-secondary: #6c757d;
  34. --bs-success: #198754;
  35. --bs-info: #0dcaf0;
  36. --bs-warning: #ffc107;
  37. --bs-danger: #dc3545;
  38. --bs-light: #f8f9fa;
  39. --bs-dark: #212529;
  40. --bs-primary-rgb: 13, 110, 253;
  41. --bs-secondary-rgb: 108, 117, 125;
  42. --bs-success-rgb: 25, 135, 84;
  43. --bs-info-rgb: 13, 202, 240;
  44. --bs-warning-rgb: 255, 193, 7;
  45. --bs-danger-rgb: 220, 53, 69;
  46. --bs-light-rgb: 248, 249, 250;
  47. --bs-dark-rgb: 33, 37, 41;
  48. --bs-primary-text-emphasis: #052c65;
  49. --bs-secondary-text-emphasis: #2b2f32;
  50. --bs-success-text-emphasis: #0a3622;
  51. --bs-info-text-emphasis: #055160;
  52. --bs-warning-text-emphasis: #664d03;
  53. --bs-danger-text-emphasis: #58151c;
  54. --bs-light-text-emphasis: #495057;
  55. --bs-dark-text-emphasis: #495057;
  56. --bs-primary-bg-subtle: #cfe2ff;
  57. --bs-secondary-bg-subtle: #e2e3e5;
  58. --bs-success-bg-subtle: #d1e7dd;
  59. --bs-info-bg-subtle: #cff4fc;
  60. --bs-warning-bg-subtle: #fff3cd;
  61. --bs-danger-bg-subtle: #f8d7da;
  62. --bs-light-bg-subtle: #fcfcfd;
  63. --bs-dark-bg-subtle: #ced4da;
  64. --bs-primary-border-subtle: #9ec5fe;
  65. --bs-secondary-border-subtle: #c4c8cb;
  66. --bs-success-border-subtle: #a3cfbb;
  67. --bs-info-border-subtle: #9eeaf9;
  68. --bs-warning-border-subtle: #ffe69c;
  69. --bs-danger-border-subtle: #f1aeb5;
  70. --bs-light-border-subtle: #e9ecef;
  71. --bs-dark-border-subtle: #adb5bd;
  72. --bs-white-rgb: 255, 255, 255;
  73. --bs-black-rgb: 0, 0, 0;
  74. --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";
  75. --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  76. --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  77. --bs-body-font-family: var(--bs-font-sans-serif);
  78. --bs-body-font-size: 1rem;
  79. --bs-body-font-weight: 400;
  80. --bs-body-line-height: 1.5;
  81. --bs-body-color: #212529;
  82. --bs-body-color-rgb: 33, 37, 41;
  83. --bs-body-bg: #fff;
  84. --bs-body-bg-rgb: 255, 255, 255;
  85. --bs-emphasis-color: #000;
  86. --bs-emphasis-color-rgb: 0, 0, 0;
  87. --bs-secondary-color: rgba(33, 37, 41, 0.75);
  88. --bs-secondary-color-rgb: 33, 37, 41;
  89. --bs-secondary-bg: #e9ecef;
  90. --bs-secondary-bg-rgb: 233, 236, 239;
  91. --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  92. --bs-tertiary-color-rgb: 33, 37, 41;
  93. --bs-tertiary-bg: #f8f9fa;
  94. --bs-tertiary-bg-rgb: 248, 249, 250;
  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-bg: #fff3cd;
  102. --bs-border-width: 1px;
  103. --bs-border-style: solid;
  104. --bs-border-color: #dee2e6;
  105. --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  106. --bs-border-radius: 0.375rem;
  107. --bs-border-radius-sm: 0.25rem;
  108. --bs-border-radius-lg: 0.5rem;
  109. --bs-border-radius-xl: 1rem;
  110. --bs-border-radius-xxl: 2rem;
  111. --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  112. --bs-border-radius-pill: 50rem;
  113. --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  114. --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  115. --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  116. --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  117. --bs-focus-ring-width: 0.25rem;
  118. --bs-focus-ring-opacity: 0.25;
  119. --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  120. --bs-form-valid-color: #198754;
  121. --bs-form-valid-border-color: #198754;
  122. --bs-form-invalid-color: #dc3545;
  123. --bs-form-invalid-border-color: #dc3545;
  124. }
  125. [data-bs-theme=dark] {
  126. color-scheme: dark;
  127. --bs-body-color: #adb5bd;
  128. --bs-body-color-rgb: 173, 181, 189;
  129. --bs-body-bg: #212529;
  130. --bs-body-bg-rgb: 33, 37, 41;
  131. --bs-emphasis-color: #fff;
  132. --bs-emphasis-color-rgb: 255, 255, 255;
  133. --bs-secondary-color: rgba(173, 181, 189, 0.75);
  134. --bs-secondary-color-rgb: 173, 181, 189;
  135. --bs-secondary-bg: #343a40;
  136. --bs-secondary-bg-rgb: 52, 58, 64;
  137. --bs-tertiary-color: rgba(173, 181, 189, 0.5);
  138. --bs-tertiary-color-rgb: 173, 181, 189;
  139. --bs-tertiary-bg: #2b3035;
  140. --bs-tertiary-bg-rgb: 43, 48, 53;
  141. --bs-primary-text-emphasis: #6ea8fe;
  142. --bs-secondary-text-emphasis: #a7acb1;
  143. --bs-success-text-emphasis: #75b798;
  144. --bs-info-text-emphasis: #6edff6;
  145. --bs-warning-text-emphasis: #ffda6a;
  146. --bs-danger-text-emphasis: #ea868f;
  147. --bs-light-text-emphasis: #f8f9fa;
  148. --bs-dark-text-emphasis: #dee2e6;
  149. --bs-primary-bg-subtle: #031633;
  150. --bs-secondary-bg-subtle: #161719;
  151. --bs-success-bg-subtle: #051b11;
  152. --bs-info-bg-subtle: #032830;
  153. --bs-warning-bg-subtle: #332701;
  154. --bs-danger-bg-subtle: #2c0b0e;
  155. --bs-light-bg-subtle: #343a40;
  156. --bs-dark-bg-subtle: #1a1d20;
  157. --bs-primary-border-subtle: #084298;
  158. --bs-secondary-border-subtle: #41464b;
  159. --bs-success-border-subtle: #0f5132;
  160. --bs-info-border-subtle: #087990;
  161. --bs-warning-border-subtle: #997404;
  162. --bs-danger-border-subtle: #842029;
  163. --bs-light-border-subtle: #495057;
  164. --bs-dark-border-subtle: #343a40;
  165. --bs-link-color: #6ea8fe;
  166. --bs-link-hover-color: #8bb9fe;
  167. --bs-link-color-rgb: 110, 168, 254;
  168. --bs-link-hover-color-rgb: 139, 185, 254;
  169. --bs-code-color: #e685b5;
  170. --bs-border-color: #495057;
  171. --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  172. --bs-form-valid-color: #75b798;
  173. --bs-form-valid-border-color: #75b798;
  174. --bs-form-invalid-color: #ea868f;
  175. --bs-form-invalid-border-color: #ea868f;
  176. }
  177. *,
  178. *::before,
  179. *::after {
  180. box-sizing: border-box;
  181. }
  182. @media (prefers-reduced-motion: no-preference) {
  183. :root {
  184. scroll-behavior: smooth;
  185. }
  186. }
  187. body {
  188. margin: 0;
  189. font-family: var(--bs-body-font-family);
  190. font-size: var(--bs-body-font-size);
  191. font-weight: var(--bs-body-font-weight);
  192. line-height: var(--bs-body-line-height);
  193. color: var(--bs-body-color);
  194. text-align: var(--bs-body-text-align);
  195. background-color: var(--bs-body-bg);
  196. -webkit-text-size-adjust: 100%;
  197. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  198. }
  199. hr {
  200. margin: 1rem 0;
  201. color: inherit;
  202. border: 0;
  203. border-top: var(--bs-border-width) solid;
  204. opacity: 0.25;
  205. }
  206. h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  207. margin-top: 0;
  208. margin-bottom: 0.5rem;
  209. font-weight: 500;
  210. line-height: 1.2;
  211. color: var(--bs-heading-color, inherit);
  212. }
  213. h1, .h1 {
  214. font-size: calc(1.375rem + 1.5vw);
  215. }
  216. @media (min-width: 1200px) {
  217. h1, .h1 {
  218. font-size: 2.5rem;
  219. }
  220. }
  221. h2, .h2 {
  222. font-size: calc(1.325rem + 0.9vw);
  223. }
  224. @media (min-width: 1200px) {
  225. h2, .h2 {
  226. font-size: 2rem;
  227. }
  228. }
  229. h3, .h3 {
  230. font-size: calc(1.3rem + 0.6vw);
  231. }
  232. @media (min-width: 1200px) {
  233. h3, .h3 {
  234. font-size: 1.75rem;
  235. }
  236. }
  237. h4, .h4 {
  238. font-size: calc(1.275rem + 0.3vw);
  239. }
  240. @media (min-width: 1200px) {
  241. h4, .h4 {
  242. font-size: 1.5rem;
  243. }
  244. }
  245. h5, .h5 {
  246. font-size: 1.25rem;
  247. }
  248. h6, .h6 {
  249. font-size: 1rem;
  250. }
  251. p {
  252. margin-top: 0;
  253. margin-bottom: 1rem;
  254. }
  255. abbr[title] {
  256. -webkit-text-decoration: underline dotted;
  257. text-decoration: underline dotted;
  258. cursor: help;
  259. -webkit-text-decoration-skip-ink: none;
  260. text-decoration-skip-ink: none;
  261. }
  262. address {
  263. margin-bottom: 1rem;
  264. font-style: normal;
  265. line-height: inherit;
  266. }
  267. ol,
  268. ul {
  269. padding-left: 2rem;
  270. }
  271. ol,
  272. ul,
  273. dl {
  274. margin-top: 0;
  275. margin-bottom: 1rem;
  276. }
  277. ol ol,
  278. ul ul,
  279. ol ul,
  280. ul ol {
  281. margin-bottom: 0;
  282. }
  283. dt {
  284. font-weight: 700;
  285. }
  286. dd {
  287. margin-bottom: 0.5rem;
  288. margin-left: 0;
  289. }
  290. blockquote {
  291. margin: 0 0 1rem;
  292. }
  293. b,
  294. strong {
  295. font-weight: bolder;
  296. }
  297. small, .small {
  298. font-size: 0.875em;
  299. }
  300. mark, .mark {
  301. padding: 0.1875em;
  302. background-color: var(--bs-highlight-bg);
  303. }
  304. sub,
  305. sup {
  306. position: relative;
  307. font-size: 0.75em;
  308. line-height: 0;
  309. vertical-align: baseline;
  310. }
  311. sub {
  312. bottom: -0.25em;
  313. }
  314. sup {
  315. top: -0.5em;
  316. }
  317. a {
  318. color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  319. text-decoration: underline;
  320. }
  321. a:hover {
  322. --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
  323. }
  324. a:not([href]):not([class]), a:not([href]):not([class]):hover {
  325. color: inherit;
  326. text-decoration: none;
  327. }
  328. pre,
  329. code,
  330. kbd,
  331. samp {
  332. font-family: var(--bs-font-monospace);
  333. font-size: 1em;
  334. }
  335. pre {
  336. display: block;
  337. margin-top: 0;
  338. margin-bottom: 1rem;
  339. overflow: auto;
  340. font-size: 0.875em;
  341. }
  342. pre code {
  343. font-size: inherit;
  344. color: inherit;
  345. word-break: normal;
  346. }
  347. code {
  348. font-size: 0.875em;
  349. color: var(--bs-code-color);
  350. word-wrap: break-word;
  351. }
  352. a > code {
  353. color: inherit;
  354. }
  355. kbd {
  356. padding: 0.1875rem 0.375rem;
  357. font-size: 0.875em;
  358. color: var(--bs-body-bg);
  359. background-color: var(--bs-body-color);
  360. border-radius: 0.25rem;
  361. }
  362. kbd kbd {
  363. padding: 0;
  364. font-size: 1em;
  365. }
  366. figure {
  367. margin: 0 0 1rem;
  368. }
  369. img,
  370. svg {
  371. vertical-align: middle;
  372. }
  373. table {
  374. caption-side: bottom;
  375. border-collapse: collapse;
  376. }
  377. caption {
  378. padding-top: 0.5rem;
  379. padding-bottom: 0.5rem;
  380. color: var(--bs-secondary-color);
  381. text-align: left;
  382. }
  383. th {
  384. text-align: inherit;
  385. text-align: -webkit-match-parent;
  386. }
  387. thead,
  388. tbody,
  389. tfoot,
  390. tr,
  391. td,
  392. th {
  393. border-color: inherit;
  394. border-style: solid;
  395. border-width: 0;
  396. }
  397. label {
  398. display: inline-block;
  399. }
  400. button {
  401. border-radius: 0;
  402. }
  403. button:focus:not(:focus-visible) {
  404. outline: 0;
  405. }
  406. input,
  407. button,
  408. select,
  409. optgroup,
  410. textarea {
  411. margin: 0;
  412. font-family: inherit;
  413. font-size: inherit;
  414. line-height: inherit;
  415. }
  416. button,
  417. select {
  418. text-transform: none;
  419. }
  420. [role=button] {
  421. cursor: pointer;
  422. }
  423. select {
  424. word-wrap: normal;
  425. }
  426. select:disabled {
  427. opacity: 1;
  428. }
  429. [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  430. display: none !important;
  431. }
  432. button,
  433. [type=button],
  434. [type=reset],
  435. [type=submit] {
  436. -webkit-appearance: button;
  437. }
  438. button:not(:disabled),
  439. [type=button]:not(:disabled),
  440. [type=reset]:not(:disabled),
  441. [type=submit]:not(:disabled) {
  442. cursor: pointer;
  443. }
  444. ::-moz-focus-inner {
  445. padding: 0;
  446. border-style: none;
  447. }
  448. textarea {
  449. resize: vertical;
  450. }
  451. fieldset {
  452. min-width: 0;
  453. padding: 0;
  454. margin: 0;
  455. border: 0;
  456. }
  457. legend {
  458. float: left;
  459. width: 100%;
  460. padding: 0;
  461. margin-bottom: 0.5rem;
  462. font-size: calc(1.275rem + 0.3vw);
  463. line-height: inherit;
  464. }
  465. @media (min-width: 1200px) {
  466. legend {
  467. font-size: 1.5rem;
  468. }
  469. }
  470. legend + * {
  471. clear: left;
  472. }
  473. ::-webkit-datetime-edit-fields-wrapper,
  474. ::-webkit-datetime-edit-text,
  475. ::-webkit-datetime-edit-minute,
  476. ::-webkit-datetime-edit-hour-field,
  477. ::-webkit-datetime-edit-day-field,
  478. ::-webkit-datetime-edit-month-field,
  479. ::-webkit-datetime-edit-year-field {
  480. padding: 0;
  481. }
  482. ::-webkit-inner-spin-button {
  483. height: auto;
  484. }
  485. [type=search] {
  486. outline-offset: -2px;
  487. -webkit-appearance: textfield;
  488. }
  489. /* rtl:raw:
  490. [type="tel"],
  491. [type="url"],
  492. [type="email"],
  493. [type="number"] {
  494. direction: ltr;
  495. }
  496. */
  497. ::-webkit-search-decoration {
  498. -webkit-appearance: none;
  499. }
  500. ::-webkit-color-swatch-wrapper {
  501. padding: 0;
  502. }
  503. ::-webkit-file-upload-button {
  504. font: inherit;
  505. -webkit-appearance: button;
  506. }
  507. ::file-selector-button {
  508. font: inherit;
  509. -webkit-appearance: button;
  510. }
  511. output {
  512. display: inline-block;
  513. }
  514. iframe {
  515. border: 0;
  516. }
  517. summary {
  518. display: list-item;
  519. cursor: pointer;
  520. }
  521. progress {
  522. vertical-align: baseline;
  523. }
  524. [hidden] {
  525. display: none !important;
  526. }
  527. .lead {
  528. font-size: 1.25rem;
  529. font-weight: 300;
  530. }
  531. .display-1 {
  532. font-size: calc(1.625rem + 4.5vw);
  533. font-weight: 300;
  534. line-height: 1.2;
  535. }
  536. @media (min-width: 1200px) {
  537. .display-1 {
  538. font-size: 5rem;
  539. }
  540. }
  541. .display-2 {
  542. font-size: calc(1.575rem + 3.9vw);
  543. font-weight: 300;
  544. line-height: 1.2;
  545. }
  546. @media (min-width: 1200px) {
  547. .display-2 {
  548. font-size: 4.5rem;
  549. }
  550. }
  551. .display-3 {
  552. font-size: calc(1.525rem + 3.3vw);
  553. font-weight: 300;
  554. line-height: 1.2;
  555. }
  556. @media (min-width: 1200px) {
  557. .display-3 {
  558. font-size: 4rem;
  559. }
  560. }
  561. .display-4 {
  562. font-size: calc(1.475rem + 2.7vw);
  563. font-weight: 300;
  564. line-height: 1.2;
  565. }
  566. @media (min-width: 1200px) {
  567. .display-4 {
  568. font-size: 3.5rem;
  569. }
  570. }
  571. .display-5 {
  572. font-size: calc(1.425rem + 2.1vw);
  573. font-weight: 300;
  574. line-height: 1.2;
  575. }
  576. @media (min-width: 1200px) {
  577. .display-5 {
  578. font-size: 3rem;
  579. }
  580. }
  581. .display-6 {
  582. font-size: calc(1.375rem + 1.5vw);
  583. font-weight: 300;
  584. line-height: 1.2;
  585. }
  586. @media (min-width: 1200px) {
  587. .display-6 {
  588. font-size: 2.5rem;
  589. }
  590. }
  591. .list-unstyled {
  592. padding-left: 0;
  593. list-style: none;
  594. }
  595. .list-inline {
  596. padding-left: 0;
  597. list-style: none;
  598. }
  599. .list-inline-item {
  600. display: inline-block;
  601. }
  602. .list-inline-item:not(:last-child) {
  603. margin-right: 0.5rem;
  604. }
  605. .initialism {
  606. font-size: 0.875em;
  607. text-transform: uppercase;
  608. }
  609. .blockquote {
  610. margin-bottom: 1rem;
  611. font-size: 1.25rem;
  612. }
  613. .blockquote > :last-child {
  614. margin-bottom: 0;
  615. }
  616. .blockquote-footer {
  617. margin-top: -1rem;
  618. margin-bottom: 1rem;
  619. font-size: 0.875em;
  620. color: #6c757d;
  621. }
  622. .blockquote-footer::before {
  623. content: "— ";
  624. }
  625. .img-fluid {
  626. max-width: 100%;
  627. height: auto;
  628. }
  629. .img-thumbnail {
  630. padding: 0.25rem;
  631. background-color: var(--bs-body-bg);
  632. border: var(--bs-border-width) solid var(--bs-border-color);
  633. border-radius: var(--bs-border-radius);
  634. max-width: 100%;
  635. height: auto;
  636. }
  637. .figure {
  638. display: inline-block;
  639. }
  640. .figure-img {
  641. margin-bottom: 0.5rem;
  642. line-height: 1;
  643. }
  644. .figure-caption {
  645. font-size: 0.875em;
  646. color: var(--bs-secondary-color);
  647. }
  648. .container,
  649. .container-fluid,
  650. .container-xxl,
  651. .container-xl,
  652. .container-lg,
  653. .container-md,
  654. .container-sm {
  655. --bs-gutter-x: 1.5rem;
  656. --bs-gutter-y: 0;
  657. width: 100%;
  658. padding-right: calc(var(--bs-gutter-x) * 0.5);
  659. padding-left: calc(var(--bs-gutter-x) * 0.5);
  660. margin-right: auto;
  661. margin-left: auto;
  662. }
  663. @media (min-width: 576px) {
  664. .container-sm, .container {
  665. max-width: 540px;
  666. }
  667. }
  668. @media (min-width: 768px) {
  669. .container-md, .container-sm, .container {
  670. max-width: 720px;
  671. }
  672. }
  673. @media (min-width: 992px) {
  674. .container-lg, .container-md, .container-sm, .container {
  675. max-width: 960px;
  676. }
  677. }
  678. @media (min-width: 1200px) {
  679. .container-xl, .container-lg, .container-md, .container-sm, .container {
  680. max-width: 1140px;
  681. }
  682. }
  683. @media (min-width: 1400px) {
  684. .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
  685. max-width: 1320px;
  686. }
  687. }
  688. :root {
  689. --bs-breakpoint-xs: 0;
  690. --bs-breakpoint-sm: 576px;
  691. --bs-breakpoint-md: 768px;
  692. --bs-breakpoint-lg: 992px;
  693. --bs-breakpoint-xl: 1200px;
  694. --bs-breakpoint-xxl: 1400px;
  695. }
  696. .row {
  697. --bs-gutter-x: 1.5rem;
  698. --bs-gutter-y: 0;
  699. display: flex;
  700. flex-wrap: wrap;
  701. margin-top: calc(-1 * var(--bs-gutter-y));
  702. margin-right: calc(-0.5 * var(--bs-gutter-x));
  703. margin-left: calc(-0.5 * var(--bs-gutter-x));
  704. }
  705. .row > * {
  706. flex-shrink: 0;
  707. width: 100%;
  708. max-width: 100%;
  709. padding-right: calc(var(--bs-gutter-x) * 0.5);
  710. padding-left: calc(var(--bs-gutter-x) * 0.5);
  711. margin-top: var(--bs-gutter-y);
  712. }
  713. .col {
  714. flex: 1 0 0%;
  715. }
  716. .row-cols-auto > * {
  717. flex: 0 0 auto;
  718. width: auto;
  719. }
  720. .row-cols-1 > * {
  721. flex: 0 0 auto;
  722. width: 100%;
  723. }
  724. .row-cols-2 > * {
  725. flex: 0 0 auto;
  726. width: 50%;
  727. }
  728. .row-cols-3 > * {
  729. flex: 0 0 auto;
  730. width: 33.3333333333%;
  731. }
  732. .row-cols-4 > * {
  733. flex: 0 0 auto;
  734. width: 25%;
  735. }
  736. .row-cols-5 > * {
  737. flex: 0 0 auto;
  738. width: 20%;
  739. }
  740. .row-cols-6 > * {
  741. flex: 0 0 auto;
  742. width: 16.6666666667%;
  743. }
  744. .col-auto {
  745. flex: 0 0 auto;
  746. width: auto;
  747. }
  748. .col-1 {
  749. flex: 0 0 auto;
  750. width: 8.33333333%;
  751. }
  752. .col-2 {
  753. flex: 0 0 auto;
  754. width: 16.66666667%;
  755. }
  756. .col-3 {
  757. flex: 0 0 auto;
  758. width: 25%;
  759. }
  760. .col-4 {
  761. flex: 0 0 auto;
  762. width: 33.33333333%;
  763. }
  764. .col-5 {
  765. flex: 0 0 auto;
  766. width: 41.66666667%;
  767. }
  768. .col-6 {
  769. flex: 0 0 auto;
  770. width: 50%;
  771. }
  772. .col-7 {
  773. flex: 0 0 auto;
  774. width: 58.33333333%;
  775. }
  776. .col-8 {
  777. flex: 0 0 auto;
  778. width: 66.66666667%;
  779. }
  780. .col-9 {
  781. flex: 0 0 auto;
  782. width: 75%;
  783. }
  784. .col-10 {
  785. flex: 0 0 auto;
  786. width: 83.33333333%;
  787. }
  788. .col-11 {
  789. flex: 0 0 auto;
  790. width: 91.66666667%;
  791. }
  792. .col-12 {
  793. flex: 0 0 auto;
  794. width: 100%;
  795. }
  796. .offset-1 {
  797. margin-left: 8.33333333%;
  798. }
  799. .offset-2 {
  800. margin-left: 16.66666667%;
  801. }
  802. .offset-3 {
  803. margin-left: 25%;
  804. }
  805. .offset-4 {
  806. margin-left: 33.33333333%;
  807. }
  808. .offset-5 {
  809. margin-left: 41.66666667%;
  810. }
  811. .offset-6 {
  812. margin-left: 50%;
  813. }
  814. .offset-7 {
  815. margin-left: 58.33333333%;
  816. }
  817. .offset-8 {
  818. margin-left: 66.66666667%;
  819. }
  820. .offset-9 {
  821. margin-left: 75%;
  822. }
  823. .offset-10 {
  824. margin-left: 83.33333333%;
  825. }
  826. .offset-11 {
  827. margin-left: 91.66666667%;
  828. }
  829. .g-0,
  830. .gx-0 {
  831. --bs-gutter-x: 0;
  832. }
  833. .g-0,
  834. .gy-0 {
  835. --bs-gutter-y: 0;
  836. }
  837. .g-1,
  838. .gx-1 {
  839. --bs-gutter-x: 0.25rem;
  840. }
  841. .g-1,
  842. .gy-1 {
  843. --bs-gutter-y: 0.25rem;
  844. }
  845. .g-2,
  846. .gx-2 {
  847. --bs-gutter-x: 0.5rem;
  848. }
  849. .g-2,
  850. .gy-2 {
  851. --bs-gutter-y: 0.5rem;
  852. }
  853. .g-3,
  854. .gx-3 {
  855. --bs-gutter-x: 1rem;
  856. }
  857. .g-3,
  858. .gy-3 {
  859. --bs-gutter-y: 1rem;
  860. }
  861. .g-4,
  862. .gx-4 {
  863. --bs-gutter-x: 1.5rem;
  864. }
  865. .g-4,
  866. .gy-4 {
  867. --bs-gutter-y: 1.5rem;
  868. }
  869. .g-5,
  870. .gx-5 {
  871. --bs-gutter-x: 3rem;
  872. }
  873. .g-5,
  874. .gy-5 {
  875. --bs-gutter-y: 3rem;
  876. }
  877. @media (min-width: 576px) {
  878. .col-sm {
  879. flex: 1 0 0%;
  880. }
  881. .row-cols-sm-auto > * {
  882. flex: 0 0 auto;
  883. width: auto;
  884. }
  885. .row-cols-sm-1 > * {
  886. flex: 0 0 auto;
  887. width: 100%;
  888. }
  889. .row-cols-sm-2 > * {
  890. flex: 0 0 auto;
  891. width: 50%;
  892. }
  893. .row-cols-sm-3 > * {
  894. flex: 0 0 auto;
  895. width: 33.3333333333%;
  896. }
  897. .row-cols-sm-4 > * {
  898. flex: 0 0 auto;
  899. width: 25%;
  900. }
  901. .row-cols-sm-5 > * {
  902. flex: 0 0 auto;
  903. width: 20%;
  904. }
  905. .row-cols-sm-6 > * {
  906. flex: 0 0 auto;
  907. width: 16.6666666667%;
  908. }
  909. .col-sm-auto {
  910. flex: 0 0 auto;
  911. width: auto;
  912. }
  913. .col-sm-1 {
  914. flex: 0 0 auto;
  915. width: 8.33333333%;
  916. }
  917. .col-sm-2 {
  918. flex: 0 0 auto;
  919. width: 16.66666667%;
  920. }
  921. .col-sm-3 {
  922. flex: 0 0 auto;
  923. width: 25%;
  924. }
  925. .col-sm-4 {
  926. flex: 0 0 auto;
  927. width: 33.33333333%;
  928. }
  929. .col-sm-5 {
  930. flex: 0 0 auto;
  931. width: 41.66666667%;
  932. }
  933. .col-sm-6 {
  934. flex: 0 0 auto;
  935. width: 50%;
  936. }
  937. .col-sm-7 {
  938. flex: 0 0 auto;
  939. width: 58.33333333%;
  940. }
  941. .col-sm-8 {
  942. flex: 0 0 auto;
  943. width: 66.66666667%;
  944. }
  945. .col-sm-9 {
  946. flex: 0 0 auto;
  947. width: 75%;
  948. }
  949. .col-sm-10 {
  950. flex: 0 0 auto;
  951. width: 83.33333333%;
  952. }
  953. .col-sm-11 {
  954. flex: 0 0 auto;
  955. width: 91.66666667%;
  956. }
  957. .col-sm-12 {
  958. flex: 0 0 auto;
  959. width: 100%;
  960. }
  961. .offset-sm-0 {
  962. margin-left: 0;
  963. }
  964. .offset-sm-1 {
  965. margin-left: 8.33333333%;
  966. }
  967. .offset-sm-2 {
  968. margin-left: 16.66666667%;
  969. }
  970. .offset-sm-3 {
  971. margin-left: 25%;
  972. }
  973. .offset-sm-4 {
  974. margin-left: 33.33333333%;
  975. }
  976. .offset-sm-5 {
  977. margin-left: 41.66666667%;
  978. }
  979. .offset-sm-6 {
  980. margin-left: 50%;
  981. }
  982. .offset-sm-7 {
  983. margin-left: 58.33333333%;
  984. }
  985. .offset-sm-8 {
  986. margin-left: 66.66666667%;
  987. }
  988. .offset-sm-9 {
  989. margin-left: 75%;
  990. }
  991. .offset-sm-10 {
  992. margin-left: 83.33333333%;
  993. }
  994. .offset-sm-11 {
  995. margin-left: 91.66666667%;
  996. }
  997. .g-sm-0,
  998. .gx-sm-0 {
  999. --bs-gutter-x: 0;
  1000. }
  1001. .g-sm-0,
  1002. .gy-sm-0 {
  1003. --bs-gutter-y: 0;
  1004. }
  1005. .g-sm-1,
  1006. .gx-sm-1 {
  1007. --bs-gutter-x: 0.25rem;
  1008. }
  1009. .g-sm-1,
  1010. .gy-sm-1 {
  1011. --bs-gutter-y: 0.25rem;
  1012. }
  1013. .g-sm-2,
  1014. .gx-sm-2 {
  1015. --bs-gutter-x: 0.5rem;
  1016. }
  1017. .g-sm-2,
  1018. .gy-sm-2 {
  1019. --bs-gutter-y: 0.5rem;
  1020. }
  1021. .g-sm-3,
  1022. .gx-sm-3 {
  1023. --bs-gutter-x: 1rem;
  1024. }
  1025. .g-sm-3,
  1026. .gy-sm-3 {
  1027. --bs-gutter-y: 1rem;
  1028. }
  1029. .g-sm-4,
  1030. .gx-sm-4 {
  1031. --bs-gutter-x: 1.5rem;
  1032. }
  1033. .g-sm-4,
  1034. .gy-sm-4 {
  1035. --bs-gutter-y: 1.5rem;
  1036. }
  1037. .g-sm-5,
  1038. .gx-sm-5 {
  1039. --bs-gutter-x: 3rem;
  1040. }
  1041. .g-sm-5,
  1042. .gy-sm-5 {
  1043. --bs-gutter-y: 3rem;
  1044. }
  1045. }
  1046. @media (min-width: 768px) {
  1047. .col-md {
  1048. flex: 1 0 0%;
  1049. }
  1050. .row-cols-md-auto > * {
  1051. flex: 0 0 auto;
  1052. width: auto;
  1053. }
  1054. .row-cols-md-1 > * {
  1055. flex: 0 0 auto;
  1056. width: 100%;
  1057. }
  1058. .row-cols-md-2 > * {
  1059. flex: 0 0 auto;
  1060. width: 50%;
  1061. }
  1062. .row-cols-md-3 > * {
  1063. flex: 0 0 auto;
  1064. width: 33.3333333333%;
  1065. }
  1066. .row-cols-md-4 > * {
  1067. flex: 0 0 auto;
  1068. width: 25%;
  1069. }
  1070. .row-cols-md-5 > * {
  1071. flex: 0 0 auto;
  1072. width: 20%;
  1073. }
  1074. .row-cols-md-6 > * {
  1075. flex: 0 0 auto;
  1076. width: 16.6666666667%;
  1077. }
  1078. .col-md-auto {
  1079. flex: 0 0 auto;
  1080. width: auto;
  1081. }
  1082. .col-md-1 {
  1083. flex: 0 0 auto;
  1084. width: 8.33333333%;
  1085. }
  1086. .col-md-2 {
  1087. flex: 0 0 auto;
  1088. width: 16.66666667%;
  1089. }
  1090. .col-md-3 {
  1091. flex: 0 0 auto;
  1092. width: 25%;
  1093. }
  1094. .col-md-4 {
  1095. flex: 0 0 auto;
  1096. width: 33.33333333%;
  1097. }
  1098. .col-md-5 {
  1099. flex: 0 0 auto;
  1100. width: 41.66666667%;
  1101. }
  1102. .col-md-6 {
  1103. flex: 0 0 auto;
  1104. width: 50%;
  1105. }
  1106. .col-md-7 {
  1107. flex: 0 0 auto;
  1108. width: 58.33333333%;
  1109. }
  1110. .col-md-8 {
  1111. flex: 0 0 auto;
  1112. width: 66.66666667%;
  1113. }
  1114. .col-md-9 {
  1115. flex: 0 0 auto;
  1116. width: 75%;
  1117. }
  1118. .col-md-10 {
  1119. flex: 0 0 auto;
  1120. width: 83.33333333%;
  1121. }
  1122. .col-md-11 {
  1123. flex: 0 0 auto;
  1124. width: 91.66666667%;
  1125. }
  1126. .col-md-12 {
  1127. flex: 0 0 auto;
  1128. width: 100%;
  1129. }
  1130. .offset-md-0 {
  1131. margin-left: 0;
  1132. }
  1133. .offset-md-1 {
  1134. margin-left: 8.33333333%;
  1135. }
  1136. .offset-md-2 {
  1137. margin-left: 16.66666667%;
  1138. }
  1139. .offset-md-3 {
  1140. margin-left: 25%;
  1141. }
  1142. .offset-md-4 {
  1143. margin-left: 33.33333333%;
  1144. }
  1145. .offset-md-5 {
  1146. margin-left: 41.66666667%;
  1147. }
  1148. .offset-md-6 {
  1149. margin-left: 50%;
  1150. }
  1151. .offset-md-7 {
  1152. margin-left: 58.33333333%;
  1153. }
  1154. .offset-md-8 {
  1155. margin-left: 66.66666667%;
  1156. }
  1157. .offset-md-9 {
  1158. margin-left: 75%;
  1159. }
  1160. .offset-md-10 {
  1161. margin-left: 83.33333333%;
  1162. }
  1163. .offset-md-11 {
  1164. margin-left: 91.66666667%;
  1165. }
  1166. .g-md-0,
  1167. .gx-md-0 {
  1168. --bs-gutter-x: 0;
  1169. }
  1170. .g-md-0,
  1171. .gy-md-0 {
  1172. --bs-gutter-y: 0;
  1173. }
  1174. .g-md-1,
  1175. .gx-md-1 {
  1176. --bs-gutter-x: 0.25rem;
  1177. }
  1178. .g-md-1,
  1179. .gy-md-1 {
  1180. --bs-gutter-y: 0.25rem;
  1181. }
  1182. .g-md-2,
  1183. .gx-md-2 {
  1184. --bs-gutter-x: 0.5rem;
  1185. }
  1186. .g-md-2,
  1187. .gy-md-2 {
  1188. --bs-gutter-y: 0.5rem;
  1189. }
  1190. .g-md-3,
  1191. .gx-md-3 {
  1192. --bs-gutter-x: 1rem;
  1193. }
  1194. .g-md-3,
  1195. .gy-md-3 {
  1196. --bs-gutter-y: 1rem;
  1197. }
  1198. .g-md-4,
  1199. .gx-md-4 {
  1200. --bs-gutter-x: 1.5rem;
  1201. }
  1202. .g-md-4,
  1203. .gy-md-4 {
  1204. --bs-gutter-y: 1.5rem;
  1205. }
  1206. .g-md-5,
  1207. .gx-md-5 {
  1208. --bs-gutter-x: 3rem;
  1209. }
  1210. .g-md-5,
  1211. .gy-md-5 {
  1212. --bs-gutter-y: 3rem;
  1213. }
  1214. }
  1215. @media (min-width: 992px) {
  1216. .col-lg {
  1217. flex: 1 0 0%;
  1218. }
  1219. .row-cols-lg-auto > * {
  1220. flex: 0 0 auto;
  1221. width: auto;
  1222. }
  1223. .row-cols-lg-1 > * {
  1224. flex: 0 0 auto;
  1225. width: 100%;
  1226. }
  1227. .row-cols-lg-2 > * {
  1228. flex: 0 0 auto;
  1229. width: 50%;
  1230. }
  1231. .row-cols-lg-3 > * {
  1232. flex: 0 0 auto;
  1233. width: 33.3333333333%;
  1234. }
  1235. .row-cols-lg-4 > * {
  1236. flex: 0 0 auto;
  1237. width: 25%;
  1238. }
  1239. .row-cols-lg-5 > * {
  1240. flex: 0 0 auto;
  1241. width: 20%;
  1242. }
  1243. .row-cols-lg-6 > * {
  1244. flex: 0 0 auto;
  1245. width: 16.6666666667%;
  1246. }
  1247. .col-lg-auto {
  1248. flex: 0 0 auto;
  1249. width: auto;
  1250. }
  1251. .col-lg-1 {
  1252. flex: 0 0 auto;
  1253. width: 8.33333333%;
  1254. }
  1255. .col-lg-2 {
  1256. flex: 0 0 auto;
  1257. width: 16.66666667%;
  1258. }
  1259. .col-lg-3 {
  1260. flex: 0 0 auto;
  1261. width: 25%;
  1262. }
  1263. .col-lg-4 {
  1264. flex: 0 0 auto;
  1265. width: 33.33333333%;
  1266. }
  1267. .col-lg-5 {
  1268. flex: 0 0 auto;
  1269. width: 41.66666667%;
  1270. }
  1271. .col-lg-6 {
  1272. flex: 0 0 auto;
  1273. width: 50%;
  1274. }
  1275. .col-lg-7 {
  1276. flex: 0 0 auto;
  1277. width: 58.33333333%;
  1278. }
  1279. .col-lg-8 {
  1280. flex: 0 0 auto;
  1281. width: 66.66666667%;
  1282. }
  1283. .col-lg-9 {
  1284. flex: 0 0 auto;
  1285. width: 75%;
  1286. }
  1287. .col-lg-10 {
  1288. flex: 0 0 auto;
  1289. width: 83.33333333%;
  1290. }
  1291. .col-lg-11 {
  1292. flex: 0 0 auto;
  1293. width: 91.66666667%;
  1294. }
  1295. .col-lg-12 {
  1296. flex: 0 0 auto;
  1297. width: 100%;
  1298. }
  1299. .offset-lg-0 {
  1300. margin-left: 0;
  1301. }
  1302. .offset-lg-1 {
  1303. margin-left: 8.33333333%;
  1304. }
  1305. .offset-lg-2 {
  1306. margin-left: 16.66666667%;
  1307. }
  1308. .offset-lg-3 {
  1309. margin-left: 25%;
  1310. }
  1311. .offset-lg-4 {
  1312. margin-left: 33.33333333%;
  1313. }
  1314. .offset-lg-5 {
  1315. margin-left: 41.66666667%;
  1316. }
  1317. .offset-lg-6 {
  1318. margin-left: 50%;
  1319. }
  1320. .offset-lg-7 {
  1321. margin-left: 58.33333333%;
  1322. }
  1323. .offset-lg-8 {
  1324. margin-left: 66.66666667%;
  1325. }
  1326. .offset-lg-9 {
  1327. margin-left: 75%;
  1328. }
  1329. .offset-lg-10 {
  1330. margin-left: 83.33333333%;
  1331. }
  1332. .offset-lg-11 {
  1333. margin-left: 91.66666667%;
  1334. }
  1335. .g-lg-0,
  1336. .gx-lg-0 {
  1337. --bs-gutter-x: 0;
  1338. }
  1339. .g-lg-0,
  1340. .gy-lg-0 {
  1341. --bs-gutter-y: 0;
  1342. }
  1343. .g-lg-1,
  1344. .gx-lg-1 {
  1345. --bs-gutter-x: 0.25rem;
  1346. }
  1347. .g-lg-1,
  1348. .gy-lg-1 {
  1349. --bs-gutter-y: 0.25rem;
  1350. }
  1351. .g-lg-2,
  1352. .gx-lg-2 {
  1353. --bs-gutter-x: 0.5rem;
  1354. }
  1355. .g-lg-2,
  1356. .gy-lg-2 {
  1357. --bs-gutter-y: 0.5rem;
  1358. }
  1359. .g-lg-3,
  1360. .gx-lg-3 {
  1361. --bs-gutter-x: 1rem;
  1362. }
  1363. .g-lg-3,
  1364. .gy-lg-3 {
  1365. --bs-gutter-y: 1rem;
  1366. }
  1367. .g-lg-4,
  1368. .gx-lg-4 {
  1369. --bs-gutter-x: 1.5rem;
  1370. }
  1371. .g-lg-4,
  1372. .gy-lg-4 {
  1373. --bs-gutter-y: 1.5rem;
  1374. }
  1375. .g-lg-5,
  1376. .gx-lg-5 {
  1377. --bs-gutter-x: 3rem;
  1378. }
  1379. .g-lg-5,
  1380. .gy-lg-5 {
  1381. --bs-gutter-y: 3rem;
  1382. }
  1383. }
  1384. @media (min-width: 1200px) {
  1385. .col-xl {
  1386. flex: 1 0 0%;
  1387. }
  1388. .row-cols-xl-auto > * {
  1389. flex: 0 0 auto;
  1390. width: auto;
  1391. }
  1392. .row-cols-xl-1 > * {
  1393. flex: 0 0 auto;
  1394. width: 100%;
  1395. }
  1396. .row-cols-xl-2 > * {
  1397. flex: 0 0 auto;
  1398. width: 50%;
  1399. }
  1400. .row-cols-xl-3 > * {
  1401. flex: 0 0 auto;
  1402. width: 33.3333333333%;
  1403. }
  1404. .row-cols-xl-4 > * {
  1405. flex: 0 0 auto;
  1406. width: 25%;
  1407. }
  1408. .row-cols-xl-5 > * {
  1409. flex: 0 0 auto;
  1410. width: 20%;
  1411. }
  1412. .row-cols-xl-6 > * {
  1413. flex: 0 0 auto;
  1414. width: 16.6666666667%;
  1415. }
  1416. .col-xl-auto {
  1417. flex: 0 0 auto;
  1418. width: auto;
  1419. }
  1420. .col-xl-1 {
  1421. flex: 0 0 auto;
  1422. width: 8.33333333%;
  1423. }
  1424. .col-xl-2 {
  1425. flex: 0 0 auto;
  1426. width: 16.66666667%;
  1427. }
  1428. .col-xl-3 {
  1429. flex: 0 0 auto;
  1430. width: 25%;
  1431. }
  1432. .col-xl-4 {
  1433. flex: 0 0 auto;
  1434. width: 33.33333333%;
  1435. }
  1436. .col-xl-5 {
  1437. flex: 0 0 auto;
  1438. width: 41.66666667%;
  1439. }
  1440. .col-xl-6 {
  1441. flex: 0 0 auto;
  1442. width: 50%;
  1443. }
  1444. .col-xl-7 {
  1445. flex: 0 0 auto;
  1446. width: 58.33333333%;
  1447. }
  1448. .col-xl-8 {
  1449. flex: 0 0 auto;
  1450. width: 66.66666667%;
  1451. }
  1452. .col-xl-9 {
  1453. flex: 0 0 auto;
  1454. width: 75%;
  1455. }
  1456. .col-xl-10 {
  1457. flex: 0 0 auto;
  1458. width: 83.33333333%;
  1459. }
  1460. .col-xl-11 {
  1461. flex: 0 0 auto;
  1462. width: 91.66666667%;
  1463. }
  1464. .col-xl-12 {
  1465. flex: 0 0 auto;
  1466. width: 100%;
  1467. }
  1468. .offset-xl-0 {
  1469. margin-left: 0;
  1470. }
  1471. .offset-xl-1 {
  1472. margin-left: 8.33333333%;
  1473. }
  1474. .offset-xl-2 {
  1475. margin-left: 16.66666667%;
  1476. }
  1477. .offset-xl-3 {
  1478. margin-left: 25%;
  1479. }
  1480. .offset-xl-4 {
  1481. margin-left: 33.33333333%;
  1482. }
  1483. .offset-xl-5 {
  1484. margin-left: 41.66666667%;
  1485. }
  1486. .offset-xl-6 {
  1487. margin-left: 50%;
  1488. }
  1489. .offset-xl-7 {
  1490. margin-left: 58.33333333%;
  1491. }
  1492. .offset-xl-8 {
  1493. margin-left: 66.66666667%;
  1494. }
  1495. .offset-xl-9 {
  1496. margin-left: 75%;
  1497. }
  1498. .offset-xl-10 {
  1499. margin-left: 83.33333333%;
  1500. }
  1501. .offset-xl-11 {
  1502. margin-left: 91.66666667%;
  1503. }
  1504. .g-xl-0,
  1505. .gx-xl-0 {
  1506. --bs-gutter-x: 0;
  1507. }
  1508. .g-xl-0,
  1509. .gy-xl-0 {
  1510. --bs-gutter-y: 0;
  1511. }
  1512. .g-xl-1,
  1513. .gx-xl-1 {
  1514. --bs-gutter-x: 0.25rem;
  1515. }
  1516. .g-xl-1,
  1517. .gy-xl-1 {
  1518. --bs-gutter-y: 0.25rem;
  1519. }
  1520. .g-xl-2,
  1521. .gx-xl-2 {
  1522. --bs-gutter-x: 0.5rem;
  1523. }
  1524. .g-xl-2,
  1525. .gy-xl-2 {
  1526. --bs-gutter-y: 0.5rem;
  1527. }
  1528. .g-xl-3,
  1529. .gx-xl-3 {
  1530. --bs-gutter-x: 1rem;
  1531. }
  1532. .g-xl-3,
  1533. .gy-xl-3 {
  1534. --bs-gutter-y: 1rem;
  1535. }
  1536. .g-xl-4,
  1537. .gx-xl-4 {
  1538. --bs-gutter-x: 1.5rem;
  1539. }
  1540. .g-xl-4,
  1541. .gy-xl-4 {
  1542. --bs-gutter-y: 1.5rem;
  1543. }
  1544. .g-xl-5,
  1545. .gx-xl-5 {
  1546. --bs-gutter-x: 3rem;
  1547. }
  1548. .g-xl-5,
  1549. .gy-xl-5 {
  1550. --bs-gutter-y: 3rem;
  1551. }
  1552. }
  1553. @media (min-width: 1400px) {
  1554. .col-xxl {
  1555. flex: 1 0 0%;
  1556. }
  1557. .row-cols-xxl-auto > * {
  1558. flex: 0 0 auto;
  1559. width: auto;
  1560. }
  1561. .row-cols-xxl-1 > * {
  1562. flex: 0 0 auto;
  1563. width: 100%;
  1564. }
  1565. .row-cols-xxl-2 > * {
  1566. flex: 0 0 auto;
  1567. width: 50%;
  1568. }
  1569. .row-cols-xxl-3 > * {
  1570. flex: 0 0 auto;
  1571. width: 33.3333333333%;
  1572. }
  1573. .row-cols-xxl-4 > * {
  1574. flex: 0 0 auto;
  1575. width: 25%;
  1576. }
  1577. .row-cols-xxl-5 > * {
  1578. flex: 0 0 auto;
  1579. width: 20%;
  1580. }
  1581. .row-cols-xxl-6 > * {
  1582. flex: 0 0 auto;
  1583. width: 16.6666666667%;
  1584. }
  1585. .col-xxl-auto {
  1586. flex: 0 0 auto;
  1587. width: auto;
  1588. }
  1589. .col-xxl-1 {
  1590. flex: 0 0 auto;
  1591. width: 8.33333333%;
  1592. }
  1593. .col-xxl-2 {
  1594. flex: 0 0 auto;
  1595. width: 16.66666667%;
  1596. }
  1597. .col-xxl-3 {
  1598. flex: 0 0 auto;
  1599. width: 25%;
  1600. }
  1601. .col-xxl-4 {
  1602. flex: 0 0 auto;
  1603. width: 33.33333333%;
  1604. }
  1605. .col-xxl-5 {
  1606. flex: 0 0 auto;
  1607. width: 41.66666667%;
  1608. }
  1609. .col-xxl-6 {
  1610. flex: 0 0 auto;
  1611. width: 50%;
  1612. }
  1613. .col-xxl-7 {
  1614. flex: 0 0 auto;
  1615. width: 58.33333333%;
  1616. }
  1617. .col-xxl-8 {
  1618. flex: 0 0 auto;
  1619. width: 66.66666667%;
  1620. }
  1621. .col-xxl-9 {
  1622. flex: 0 0 auto;
  1623. width: 75%;
  1624. }
  1625. .col-xxl-10 {
  1626. flex: 0 0 auto;
  1627. width: 83.33333333%;
  1628. }
  1629. .col-xxl-11 {
  1630. flex: 0 0 auto;
  1631. width: 91.66666667%;
  1632. }
  1633. .col-xxl-12 {
  1634. flex: 0 0 auto;
  1635. width: 100%;
  1636. }
  1637. .offset-xxl-0 {
  1638. margin-left: 0;
  1639. }
  1640. .offset-xxl-1 {
  1641. margin-left: 8.33333333%;
  1642. }
  1643. .offset-xxl-2 {
  1644. margin-left: 16.66666667%;
  1645. }
  1646. .offset-xxl-3 {
  1647. margin-left: 25%;
  1648. }
  1649. .offset-xxl-4 {
  1650. margin-left: 33.33333333%;
  1651. }
  1652. .offset-xxl-5 {
  1653. margin-left: 41.66666667%;
  1654. }
  1655. .offset-xxl-6 {
  1656. margin-left: 50%;
  1657. }
  1658. .offset-xxl-7 {
  1659. margin-left: 58.33333333%;
  1660. }
  1661. .offset-xxl-8 {
  1662. margin-left: 66.66666667%;
  1663. }
  1664. .offset-xxl-9 {
  1665. margin-left: 75%;
  1666. }
  1667. .offset-xxl-10 {
  1668. margin-left: 83.33333333%;
  1669. }
  1670. .offset-xxl-11 {
  1671. margin-left: 91.66666667%;
  1672. }
  1673. .g-xxl-0,
  1674. .gx-xxl-0 {
  1675. --bs-gutter-x: 0;
  1676. }
  1677. .g-xxl-0,
  1678. .gy-xxl-0 {
  1679. --bs-gutter-y: 0;
  1680. }
  1681. .g-xxl-1,
  1682. .gx-xxl-1 {
  1683. --bs-gutter-x: 0.25rem;
  1684. }
  1685. .g-xxl-1,
  1686. .gy-xxl-1 {
  1687. --bs-gutter-y: 0.25rem;
  1688. }
  1689. .g-xxl-2,
  1690. .gx-xxl-2 {
  1691. --bs-gutter-x: 0.5rem;
  1692. }
  1693. .g-xxl-2,
  1694. .gy-xxl-2 {
  1695. --bs-gutter-y: 0.5rem;
  1696. }
  1697. .g-xxl-3,
  1698. .gx-xxl-3 {
  1699. --bs-gutter-x: 1rem;
  1700. }
  1701. .g-xxl-3,
  1702. .gy-xxl-3 {
  1703. --bs-gutter-y: 1rem;
  1704. }
  1705. .g-xxl-4,
  1706. .gx-xxl-4 {
  1707. --bs-gutter-x: 1.5rem;
  1708. }
  1709. .g-xxl-4,
  1710. .gy-xxl-4 {
  1711. --bs-gutter-y: 1.5rem;
  1712. }
  1713. .g-xxl-5,
  1714. .gx-xxl-5 {
  1715. --bs-gutter-x: 3rem;
  1716. }
  1717. .g-xxl-5,
  1718. .gy-xxl-5 {
  1719. --bs-gutter-y: 3rem;
  1720. }
  1721. }
  1722. .table {
  1723. --bs-table-color: var(--bs-body-color);
  1724. --bs-table-bg: transparent;
  1725. --bs-table-border-color: var(--bs-border-color);
  1726. --bs-table-accent-bg: transparent;
  1727. --bs-table-striped-color: var(--bs-body-color);
  1728. --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  1729. --bs-table-active-color: var(--bs-body-color);
  1730. --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  1731. --bs-table-hover-color: var(--bs-body-color);
  1732. --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  1733. width: 100%;
  1734. margin-bottom: 1rem;
  1735. color: var(--bs-table-color);
  1736. vertical-align: top;
  1737. border-color: var(--bs-table-border-color);
  1738. }
  1739. .table > :not(caption) > * > * {
  1740. padding: 0.5rem 0.5rem;
  1741. background-color: var(--bs-table-bg);
  1742. border-bottom-width: var(--bs-border-width);
  1743. box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  1744. }
  1745. .table > tbody {
  1746. vertical-align: inherit;
  1747. }
  1748. .table > thead {
  1749. vertical-align: bottom;
  1750. }
  1751. .table-group-divider {
  1752. border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
  1753. }
  1754. .caption-top {
  1755. caption-side: top;
  1756. }
  1757. .table-sm > :not(caption) > * > * {
  1758. padding: 0.25rem 0.25rem;
  1759. }
  1760. .table-bordered > :not(caption) > * {
  1761. border-width: var(--bs-border-width) 0;
  1762. }
  1763. .table-bordered > :not(caption) > * > * {
  1764. border-width: 0 var(--bs-border-width);
  1765. }
  1766. .table-borderless > :not(caption) > * > * {
  1767. border-bottom-width: 0;
  1768. }
  1769. .table-borderless > :not(:first-child) {
  1770. border-top-width: 0;
  1771. }
  1772. .table-striped > tbody > tr:nth-of-type(odd) > * {
  1773. --bs-table-accent-bg: var(--bs-table-striped-bg);
  1774. color: var(--bs-table-striped-color);
  1775. }
  1776. .table-striped-columns > :not(caption) > tr > :nth-child(even) {
  1777. --bs-table-accent-bg: var(--bs-table-striped-bg);
  1778. color: var(--bs-table-striped-color);
  1779. }
  1780. .table-active {
  1781. --bs-table-accent-bg: var(--bs-table-active-bg);
  1782. color: var(--bs-table-active-color);
  1783. }
  1784. .table-hover > tbody > tr:hover > * {
  1785. --bs-table-accent-bg: var(--bs-table-hover-bg);
  1786. color: var(--bs-table-hover-color);
  1787. }
  1788. .table-primary {
  1789. --bs-table-color: #000;
  1790. --bs-table-bg: #cfe2ff;
  1791. --bs-table-border-color: #bacbe6;
  1792. --bs-table-striped-bg: #c5d7f2;
  1793. --bs-table-striped-color: #000;
  1794. --bs-table-active-bg: #bacbe6;
  1795. --bs-table-active-color: #000;
  1796. --bs-table-hover-bg: #bfd1ec;
  1797. --bs-table-hover-color: #000;
  1798. color: var(--bs-table-color);
  1799. border-color: var(--bs-table-border-color);
  1800. }
  1801. .table-secondary {
  1802. --bs-table-color: #000;
  1803. --bs-table-bg: #e2e3e5;
  1804. --bs-table-border-color: #cbccce;
  1805. --bs-table-striped-bg: #d7d8da;
  1806. --bs-table-striped-color: #000;
  1807. --bs-table-active-bg: #cbccce;
  1808. --bs-table-active-color: #000;
  1809. --bs-table-hover-bg: #d1d2d4;
  1810. --bs-table-hover-color: #000;
  1811. color: var(--bs-table-color);
  1812. border-color: var(--bs-table-border-color);
  1813. }
  1814. .table-success {
  1815. --bs-table-color: #000;
  1816. --bs-table-bg: #d1e7dd;
  1817. --bs-table-border-color: #bcd0c7;
  1818. --bs-table-striped-bg: #c7dbd2;
  1819. --bs-table-striped-color: #000;
  1820. --bs-table-active-bg: #bcd0c7;
  1821. --bs-table-active-color: #000;
  1822. --bs-table-hover-bg: #c1d6cc;
  1823. --bs-table-hover-color: #000;
  1824. color: var(--bs-table-color);
  1825. border-color: var(--bs-table-border-color);
  1826. }
  1827. .table-info {
  1828. --bs-table-color: #000;
  1829. --bs-table-bg: #cff4fc;
  1830. --bs-table-border-color: #badce3;
  1831. --bs-table-striped-bg: #c5e8ef;
  1832. --bs-table-striped-color: #000;
  1833. --bs-table-active-bg: #badce3;
  1834. --bs-table-active-color: #000;
  1835. --bs-table-hover-bg: #bfe2e9;
  1836. --bs-table-hover-color: #000;
  1837. color: var(--bs-table-color);
  1838. border-color: var(--bs-table-border-color);
  1839. }
  1840. .table-warning {
  1841. --bs-table-color: #000;
  1842. --bs-table-bg: #fff3cd;
  1843. --bs-table-border-color: #e6dbb9;
  1844. --bs-table-striped-bg: #f2e7c3;
  1845. --bs-table-striped-color: #000;
  1846. --bs-table-active-bg: #e6dbb9;
  1847. --bs-table-active-color: #000;
  1848. --bs-table-hover-bg: #ece1be;
  1849. --bs-table-hover-color: #000;
  1850. color: var(--bs-table-color);
  1851. border-color: var(--bs-table-border-color);
  1852. }
  1853. .table-danger {
  1854. --bs-table-color: #000;
  1855. --bs-table-bg: #f8d7da;
  1856. --bs-table-border-color: #dfc2c4;
  1857. --bs-table-striped-bg: #eccccf;
  1858. --bs-table-striped-color: #000;
  1859. --bs-table-active-bg: #dfc2c4;
  1860. --bs-table-active-color: #000;
  1861. --bs-table-hover-bg: #e5c7ca;
  1862. --bs-table-hover-color: #000;
  1863. color: var(--bs-table-color);
  1864. border-color: var(--bs-table-border-color);
  1865. }
  1866. .table-light {
  1867. --bs-table-color: #000;
  1868. --bs-table-bg: #f8f9fa;
  1869. --bs-table-border-color: #dfe0e1;
  1870. --bs-table-striped-bg: #ecedee;
  1871. --bs-table-striped-color: #000;
  1872. --bs-table-active-bg: #dfe0e1;
  1873. --bs-table-active-color: #000;
  1874. --bs-table-hover-bg: #e5e6e7;
  1875. --bs-table-hover-color: #000;
  1876. color: var(--bs-table-color);
  1877. border-color: var(--bs-table-border-color);
  1878. }
  1879. .table-dark {
  1880. --bs-table-color: #fff;
  1881. --bs-table-bg: #212529;
  1882. --bs-table-border-color: #373b3e;
  1883. --bs-table-striped-bg: #2c3034;
  1884. --bs-table-striped-color: #fff;
  1885. --bs-table-active-bg: #373b3e;
  1886. --bs-table-active-color: #fff;
  1887. --bs-table-hover-bg: #323539;
  1888. --bs-table-hover-color: #fff;
  1889. color: var(--bs-table-color);
  1890. border-color: var(--bs-table-border-color);
  1891. }
  1892. .table-responsive {
  1893. overflow-x: auto;
  1894. -webkit-overflow-scrolling: touch;
  1895. }
  1896. @media (max-width: 575.98px) {
  1897. .table-responsive-sm {
  1898. overflow-x: auto;
  1899. -webkit-overflow-scrolling: touch;
  1900. }
  1901. }
  1902. @media (max-width: 767.98px) {
  1903. .table-responsive-md {
  1904. overflow-x: auto;
  1905. -webkit-overflow-scrolling: touch;
  1906. }
  1907. }
  1908. @media (max-width: 991.98px) {
  1909. .table-responsive-lg {
  1910. overflow-x: auto;
  1911. -webkit-overflow-scrolling: touch;
  1912. }
  1913. }
  1914. @media (max-width: 1199.98px) {
  1915. .table-responsive-xl {
  1916. overflow-x: auto;
  1917. -webkit-overflow-scrolling: touch;
  1918. }
  1919. }
  1920. @media (max-width: 1399.98px) {
  1921. .table-responsive-xxl {
  1922. overflow-x: auto;
  1923. -webkit-overflow-scrolling: touch;
  1924. }
  1925. }
  1926. .form-label {
  1927. margin-bottom: 0.5rem;
  1928. }
  1929. .col-form-label {
  1930. padding-top: calc(0.375rem + var(--bs-border-width));
  1931. padding-bottom: calc(0.375rem + var(--bs-border-width));
  1932. margin-bottom: 0;
  1933. font-size: inherit;
  1934. line-height: 1.5;
  1935. }
  1936. .col-form-label-lg {
  1937. padding-top: calc(0.5rem + var(--bs-border-width));
  1938. padding-bottom: calc(0.5rem + var(--bs-border-width));
  1939. font-size: 1.25rem;
  1940. }
  1941. .col-form-label-sm {
  1942. padding-top: calc(0.25rem + var(--bs-border-width));
  1943. padding-bottom: calc(0.25rem + var(--bs-border-width));
  1944. font-size: 0.875rem;
  1945. }
  1946. .form-text {
  1947. margin-top: 0.25rem;
  1948. font-size: 0.875em;
  1949. color: var(--bs-secondary-color);
  1950. }
  1951. .form-control {
  1952. display: block;
  1953. width: 100%;
  1954. padding: 0.375rem 0.75rem;
  1955. font-size: 1rem;
  1956. font-weight: 400;
  1957. line-height: 1.5;
  1958. color: var(--bs-body-color);
  1959. background-color: var(--bs-body-bg);
  1960. background-clip: padding-box;
  1961. border: var(--bs-border-width) solid var(--bs-border-color);
  1962. -webkit-appearance: none;
  1963. -moz-appearance: none;
  1964. appearance: none;
  1965. border-radius: 0.375rem;
  1966. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  1967. }
  1968. @media (prefers-reduced-motion: reduce) {
  1969. .form-control {
  1970. transition: none;
  1971. }
  1972. }
  1973. .form-control[type=file] {
  1974. overflow: hidden;
  1975. }
  1976. .form-control[type=file]:not(:disabled):not([readonly]) {
  1977. cursor: pointer;
  1978. }
  1979. .form-control:focus {
  1980. color: var(--bs-body-color);
  1981. background-color: var(--bs-body-bg);
  1982. border-color: #86b7fe;
  1983. outline: 0;
  1984. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  1985. }
  1986. .form-control::-webkit-date-and-time-value {
  1987. min-width: 85px;
  1988. height: 1.5em;
  1989. margin: 0;
  1990. }
  1991. .form-control::-webkit-datetime-edit {
  1992. display: block;
  1993. padding: 0;
  1994. }
  1995. .form-control::-moz-placeholder {
  1996. color: var(--bs-secondary-color);
  1997. opacity: 1;
  1998. }
  1999. .form-control::placeholder {
  2000. color: var(--bs-secondary-color);
  2001. opacity: 1;
  2002. }
  2003. .form-control:disabled {
  2004. background-color: var(--bs-secondary-bg);
  2005. opacity: 1;
  2006. }
  2007. .form-control::-webkit-file-upload-button {
  2008. padding: 0.375rem 0.75rem;
  2009. margin: -0.375rem -0.75rem;
  2010. -webkit-margin-end: 0.75rem;
  2011. margin-inline-end: 0.75rem;
  2012. color: var(--bs-body-color);
  2013. background-color: var(--bs-tertiary-bg);
  2014. pointer-events: none;
  2015. border-color: inherit;
  2016. border-style: solid;
  2017. border-width: 0;
  2018. border-inline-end-width: var(--bs-border-width);
  2019. border-radius: 0;
  2020. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2021. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2022. }
  2023. .form-control::file-selector-button {
  2024. padding: 0.375rem 0.75rem;
  2025. margin: -0.375rem -0.75rem;
  2026. -webkit-margin-end: 0.75rem;
  2027. margin-inline-end: 0.75rem;
  2028. color: var(--bs-body-color);
  2029. background-color: var(--bs-tertiary-bg);
  2030. pointer-events: none;
  2031. border-color: inherit;
  2032. border-style: solid;
  2033. border-width: 0;
  2034. border-inline-end-width: var(--bs-border-width);
  2035. border-radius: 0;
  2036. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2037. }
  2038. @media (prefers-reduced-motion: reduce) {
  2039. .form-control::-webkit-file-upload-button {
  2040. -webkit-transition: none;
  2041. transition: none;
  2042. }
  2043. .form-control::file-selector-button {
  2044. transition: none;
  2045. }
  2046. }
  2047. .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  2048. background-color: var(--bs-secondary-bg);
  2049. }
  2050. .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  2051. background-color: var(--bs-secondary-bg);
  2052. }
  2053. .form-control-plaintext {
  2054. display: block;
  2055. width: 100%;
  2056. padding: 0.375rem 0;
  2057. margin-bottom: 0;
  2058. line-height: 1.5;
  2059. color: var(--bs-body-color);
  2060. background-color: transparent;
  2061. border: solid transparent;
  2062. border-width: var(--bs-border-width) 0;
  2063. }
  2064. .form-control-plaintext:focus {
  2065. outline: 0;
  2066. }
  2067. .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  2068. padding-right: 0;
  2069. padding-left: 0;
  2070. }
  2071. .form-control-sm {
  2072. min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  2073. padding: 0.25rem 0.5rem;
  2074. font-size: 0.875rem;
  2075. border-radius: 0.25rem;
  2076. }
  2077. .form-control-sm::-webkit-file-upload-button {
  2078. padding: 0.25rem 0.5rem;
  2079. margin: -0.25rem -0.5rem;
  2080. -webkit-margin-end: 0.5rem;
  2081. margin-inline-end: 0.5rem;
  2082. }
  2083. .form-control-sm::file-selector-button {
  2084. padding: 0.25rem 0.5rem;
  2085. margin: -0.25rem -0.5rem;
  2086. -webkit-margin-end: 0.5rem;
  2087. margin-inline-end: 0.5rem;
  2088. }
  2089. .form-control-lg {
  2090. min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  2091. padding: 0.5rem 1rem;
  2092. font-size: 1.25rem;
  2093. border-radius: 0.5rem;
  2094. }
  2095. .form-control-lg::-webkit-file-upload-button {
  2096. padding: 0.5rem 1rem;
  2097. margin: -0.5rem -1rem;
  2098. -webkit-margin-end: 1rem;
  2099. margin-inline-end: 1rem;
  2100. }
  2101. .form-control-lg::file-selector-button {
  2102. padding: 0.5rem 1rem;
  2103. margin: -0.5rem -1rem;
  2104. -webkit-margin-end: 1rem;
  2105. margin-inline-end: 1rem;
  2106. }
  2107. textarea.form-control {
  2108. min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  2109. }
  2110. textarea.form-control-sm {
  2111. min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  2112. }
  2113. textarea.form-control-lg {
  2114. min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  2115. }
  2116. .form-control-color {
  2117. width: 3rem;
  2118. height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  2119. padding: 0.375rem;
  2120. }
  2121. .form-control-color:not(:disabled):not([readonly]) {
  2122. cursor: pointer;
  2123. }
  2124. .form-control-color::-moz-color-swatch {
  2125. border: 0 !important;
  2126. border-radius: 0.375rem;
  2127. }
  2128. .form-control-color::-webkit-color-swatch {
  2129. border: 0 !important;
  2130. border-radius: 0.375rem;
  2131. }
  2132. .form-control-color.form-control-sm {
  2133. height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  2134. }
  2135. .form-control-color.form-control-lg {
  2136. height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  2137. }
  2138. .form-select {
  2139. --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  2140. display: block;
  2141. width: 100%;
  2142. padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  2143. font-size: 1rem;
  2144. font-weight: 400;
  2145. line-height: 1.5;
  2146. color: var(--bs-body-color);
  2147. background-color: var(--bs-body-bg);
  2148. background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  2149. background-repeat: no-repeat;
  2150. background-position: right 0.75rem center;
  2151. background-size: 16px 12px;
  2152. border: var(--bs-border-width) solid var(--bs-border-color);
  2153. border-radius: 0.375rem;
  2154. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2155. -webkit-appearance: none;
  2156. -moz-appearance: none;
  2157. appearance: none;
  2158. }
  2159. @media (prefers-reduced-motion: reduce) {
  2160. .form-select {
  2161. transition: none;
  2162. }
  2163. }
  2164. .form-select:focus {
  2165. border-color: #86b7fe;
  2166. outline: 0;
  2167. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2168. }
  2169. .form-select[multiple], .form-select[size]:not([size="1"]) {
  2170. padding-right: 0.75rem;
  2171. background-image: none;
  2172. }
  2173. .form-select:disabled {
  2174. background-color: var(--bs-secondary-bg);
  2175. }
  2176. .form-select:-moz-focusring {
  2177. color: transparent;
  2178. text-shadow: 0 0 0 var(--bs-body-color);
  2179. }
  2180. .form-select-sm {
  2181. padding-top: 0.25rem;
  2182. padding-bottom: 0.25rem;
  2183. padding-left: 0.5rem;
  2184. font-size: 0.875rem;
  2185. border-radius: 0.25rem;
  2186. }
  2187. .form-select-lg {
  2188. padding-top: 0.5rem;
  2189. padding-bottom: 0.5rem;
  2190. padding-left: 1rem;
  2191. font-size: 1.25rem;
  2192. border-radius: 0.5rem;
  2193. }
  2194. [data-bs-theme=dark] .form-select {
  2195. --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  2196. }
  2197. .form-check {
  2198. display: block;
  2199. min-height: 1.5rem;
  2200. padding-left: 1.5em;
  2201. margin-bottom: 0.125rem;
  2202. }
  2203. .form-check .form-check-input {
  2204. float: left;
  2205. margin-left: -1.5em;
  2206. }
  2207. .form-check-reverse {
  2208. padding-right: 1.5em;
  2209. padding-left: 0;
  2210. text-align: right;
  2211. }
  2212. .form-check-reverse .form-check-input {
  2213. float: right;
  2214. margin-right: -1.5em;
  2215. margin-left: 0;
  2216. }
  2217. .form-check-input {
  2218. --bs-form-check-bg: var(--bs-body-bg);
  2219. width: 1em;
  2220. height: 1em;
  2221. margin-top: 0.25em;
  2222. vertical-align: top;
  2223. background-color: var(--bs-form-check-bg);
  2224. background-image: var(--bs-form-check-bg-image);
  2225. background-repeat: no-repeat;
  2226. background-position: center;
  2227. background-size: contain;
  2228. border: var(--bs-border-width) solid var(--bs-border-color);
  2229. -webkit-appearance: none;
  2230. -moz-appearance: none;
  2231. appearance: none;
  2232. -webkit-print-color-adjust: exact;
  2233. color-adjust: exact;
  2234. print-color-adjust: exact;
  2235. }
  2236. .form-check-input[type=checkbox] {
  2237. border-radius: 0.25em;
  2238. }
  2239. .form-check-input[type=radio] {
  2240. border-radius: 50%;
  2241. }
  2242. .form-check-input:active {
  2243. filter: brightness(90%);
  2244. }
  2245. .form-check-input:focus {
  2246. border-color: #86b7fe;
  2247. outline: 0;
  2248. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2249. }
  2250. .form-check-input:checked {
  2251. background-color: #0d6efd;
  2252. border-color: #0d6efd;
  2253. }
  2254. .form-check-input:checked[type=checkbox] {
  2255. --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
  2256. }
  2257. .form-check-input:checked[type=radio] {
  2258. --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
  2259. }
  2260. .form-check-input[type=checkbox]:indeterminate {
  2261. background-color: #0d6efd;
  2262. border-color: #0d6efd;
  2263. --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
  2264. }
  2265. .form-check-input:disabled {
  2266. pointer-events: none;
  2267. filter: none;
  2268. opacity: 0.5;
  2269. }
  2270. .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  2271. cursor: default;
  2272. opacity: 0.5;
  2273. }
  2274. .form-switch {
  2275. padding-left: 2.5em;
  2276. }
  2277. .form-switch .form-check-input {
  2278. --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  2279. width: 2em;
  2280. margin-left: -2.5em;
  2281. background-image: var(--bs-form-switch-bg);
  2282. background-position: left center;
  2283. border-radius: 2em;
  2284. transition: background-position 0.15s ease-in-out;
  2285. }
  2286. @media (prefers-reduced-motion: reduce) {
  2287. .form-switch .form-check-input {
  2288. transition: none;
  2289. }
  2290. }
  2291. .form-switch .form-check-input:focus {
  2292. --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
  2293. }
  2294. .form-switch .form-check-input:checked {
  2295. background-position: right center;
  2296. --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  2297. }
  2298. .form-switch.form-check-reverse {
  2299. padding-right: 2.5em;
  2300. padding-left: 0;
  2301. }
  2302. .form-switch.form-check-reverse .form-check-input {
  2303. margin-right: -2.5em;
  2304. margin-left: 0;
  2305. }
  2306. .form-check-inline {
  2307. display: inline-block;
  2308. margin-right: 1rem;
  2309. }
  2310. .btn-check {
  2311. position: absolute;
  2312. clip: rect(0, 0, 0, 0);
  2313. pointer-events: none;
  2314. }
  2315. .btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  2316. pointer-events: none;
  2317. filter: none;
  2318. opacity: 0.65;
  2319. }
  2320. [data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  2321. --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
  2322. }
  2323. .form-range {
  2324. width: 100%;
  2325. height: 1.5rem;
  2326. padding: 0;
  2327. background-color: transparent;
  2328. -webkit-appearance: none;
  2329. -moz-appearance: none;
  2330. appearance: none;
  2331. }
  2332. .form-range:focus {
  2333. outline: 0;
  2334. }
  2335. .form-range:focus::-webkit-slider-thumb {
  2336. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2337. }
  2338. .form-range:focus::-moz-range-thumb {
  2339. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2340. }
  2341. .form-range::-moz-focus-outer {
  2342. border: 0;
  2343. }
  2344. .form-range::-webkit-slider-thumb {
  2345. width: 1rem;
  2346. height: 1rem;
  2347. margin-top: -0.25rem;
  2348. background-color: #0d6efd;
  2349. border: 0;
  2350. border-radius: 1rem;
  2351. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2352. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2353. -webkit-appearance: none;
  2354. appearance: none;
  2355. }
  2356. @media (prefers-reduced-motion: reduce) {
  2357. .form-range::-webkit-slider-thumb {
  2358. -webkit-transition: none;
  2359. transition: none;
  2360. }
  2361. }
  2362. .form-range::-webkit-slider-thumb:active {
  2363. background-color: #b6d4fe;
  2364. }
  2365. .form-range::-webkit-slider-runnable-track {
  2366. width: 100%;
  2367. height: 0.5rem;
  2368. color: transparent;
  2369. cursor: pointer;
  2370. background-color: var(--bs-tertiary-bg);
  2371. border-color: transparent;
  2372. border-radius: 1rem;
  2373. }
  2374. .form-range::-moz-range-thumb {
  2375. width: 1rem;
  2376. height: 1rem;
  2377. background-color: #0d6efd;
  2378. border: 0;
  2379. border-radius: 1rem;
  2380. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2381. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2382. -moz-appearance: none;
  2383. appearance: none;
  2384. }
  2385. @media (prefers-reduced-motion: reduce) {
  2386. .form-range::-moz-range-thumb {
  2387. -moz-transition: none;
  2388. transition: none;
  2389. }
  2390. }
  2391. .form-range::-moz-range-thumb:active {
  2392. background-color: #b6d4fe;
  2393. }
  2394. .form-range::-moz-range-track {
  2395. width: 100%;
  2396. height: 0.5rem;
  2397. color: transparent;
  2398. cursor: pointer;
  2399. background-color: var(--bs-tertiary-bg);
  2400. border-color: transparent;
  2401. border-radius: 1rem;
  2402. }
  2403. .form-range:disabled {
  2404. pointer-events: none;
  2405. }
  2406. .form-range:disabled::-webkit-slider-thumb {
  2407. background-color: var(--bs-secondary-color);
  2408. }
  2409. .form-range:disabled::-moz-range-thumb {
  2410. background-color: var(--bs-secondary-color);
  2411. }
  2412. .form-floating {
  2413. position: relative;
  2414. }
  2415. .form-floating:not(.form-control:disabled)::before {
  2416. position: absolute;
  2417. top: var(--bs-border-width);
  2418. left: var(--bs-border-width);
  2419. width: calc(100% - (calc(calc(0.375em + 0.1875rem) + calc(0.75em + 0.375rem))));
  2420. height: 1.875em;
  2421. content: "";
  2422. background-color: var(--bs-body-bg);
  2423. border-radius: 0.375rem;
  2424. }
  2425. .form-floating > .form-control,
  2426. .form-floating > .form-control-plaintext,
  2427. .form-floating > .form-select {
  2428. height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  2429. line-height: 1.25;
  2430. }
  2431. .form-floating > label {
  2432. position: absolute;
  2433. top: 0;
  2434. left: 0;
  2435. width: 100%;
  2436. height: 100%;
  2437. padding: 1rem 0.75rem;
  2438. overflow: hidden;
  2439. text-align: start;
  2440. text-overflow: ellipsis;
  2441. white-space: nowrap;
  2442. pointer-events: none;
  2443. border: var(--bs-border-width) solid transparent;
  2444. transform-origin: 0 0;
  2445. transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  2446. }
  2447. @media (prefers-reduced-motion: reduce) {
  2448. .form-floating > label {
  2449. transition: none;
  2450. }
  2451. }
  2452. .form-floating > .form-control,
  2453. .form-floating > .form-control-plaintext {
  2454. padding: 1rem 0.75rem;
  2455. }
  2456. .form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  2457. color: transparent;
  2458. }
  2459. .form-floating > .form-control::placeholder,
  2460. .form-floating > .form-control-plaintext::placeholder {
  2461. color: transparent;
  2462. }
  2463. .form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
  2464. padding-top: 1.625rem;
  2465. padding-bottom: 0.625rem;
  2466. }
  2467. .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
  2468. .form-floating > .form-control-plaintext:focus,
  2469. .form-floating > .form-control-plaintext:not(:placeholder-shown) {
  2470. padding-top: 1.625rem;
  2471. padding-bottom: 0.625rem;
  2472. }
  2473. .form-floating > .form-control:-webkit-autofill,
  2474. .form-floating > .form-control-plaintext:-webkit-autofill {
  2475. padding-top: 1.625rem;
  2476. padding-bottom: 0.625rem;
  2477. }
  2478. .form-floating > .form-select {
  2479. padding-top: 1.625rem;
  2480. padding-bottom: 0.625rem;
  2481. }
  2482. .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  2483. opacity: 0.65;
  2484. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2485. }
  2486. .form-floating > .form-control:focus ~ label,
  2487. .form-floating > .form-control:not(:placeholder-shown) ~ label,
  2488. .form-floating > .form-control-plaintext ~ label,
  2489. .form-floating > .form-select ~ label {
  2490. opacity: 0.65;
  2491. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2492. }
  2493. .form-floating > .form-control:-webkit-autofill ~ label {
  2494. opacity: 0.65;
  2495. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2496. }
  2497. .form-floating > .form-control-plaintext ~ label {
  2498. border-width: var(--bs-border-width) 0;
  2499. }
  2500. .form-floating > .form-control:disabled ~ label {
  2501. color: #6c757d;
  2502. }
  2503. .input-group {
  2504. position: relative;
  2505. display: flex;
  2506. flex-wrap: wrap;
  2507. align-items: stretch;
  2508. width: 100%;
  2509. }
  2510. .input-group > .form-control,
  2511. .input-group > .form-select,
  2512. .input-group > .form-floating {
  2513. position: relative;
  2514. flex: 1 1 auto;
  2515. width: 1%;
  2516. min-width: 0;
  2517. }
  2518. .input-group > .form-control:focus,
  2519. .input-group > .form-select:focus,
  2520. .input-group > .form-floating:focus-within {
  2521. z-index: 5;
  2522. }
  2523. .input-group .btn {
  2524. position: relative;
  2525. z-index: 2;
  2526. }
  2527. .input-group .btn:focus {
  2528. z-index: 5;
  2529. }
  2530. .input-group-text {
  2531. display: flex;
  2532. align-items: center;
  2533. padding: 0.375rem 0.75rem;
  2534. font-size: 1rem;
  2535. font-weight: 400;
  2536. line-height: 1.5;
  2537. color: var(--bs-body-color);
  2538. text-align: center;
  2539. white-space: nowrap;
  2540. background-color: var(--bs-tertiary-bg);
  2541. border: var(--bs-border-width) solid var(--bs-border-color);
  2542. border-radius: 0.375rem;
  2543. }
  2544. .input-group-lg > .form-control,
  2545. .input-group-lg > .form-select,
  2546. .input-group-lg > .input-group-text,
  2547. .input-group-lg > .btn {
  2548. padding: 0.5rem 1rem;
  2549. font-size: 1.25rem;
  2550. border-radius: 0.5rem;
  2551. }
  2552. .input-group-sm > .form-control,
  2553. .input-group-sm > .form-select,
  2554. .input-group-sm > .input-group-text,
  2555. .input-group-sm > .btn {
  2556. padding: 0.25rem 0.5rem;
  2557. font-size: 0.875rem;
  2558. border-radius: 0.25rem;
  2559. }
  2560. .input-group-lg > .form-select,
  2561. .input-group-sm > .form-select {
  2562. padding-right: 3rem;
  2563. }
  2564. .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2565. .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
  2566. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
  2567. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  2568. border-top-right-radius: 0;
  2569. border-bottom-right-radius: 0;
  2570. }
  2571. .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2572. .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
  2573. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
  2574. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  2575. border-top-right-radius: 0;
  2576. border-bottom-right-radius: 0;
  2577. }
  2578. .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  2579. margin-left: calc(var(--bs-border-width) * -1);
  2580. border-top-left-radius: 0;
  2581. border-bottom-left-radius: 0;
  2582. }
  2583. .input-group > .form-floating:not(:first-child) > .form-control,
  2584. .input-group > .form-floating:not(:first-child) > .form-select {
  2585. border-top-left-radius: 0;
  2586. border-bottom-left-radius: 0;
  2587. }
  2588. .valid-feedback {
  2589. display: none;
  2590. width: 100%;
  2591. margin-top: 0.25rem;
  2592. font-size: 0.875em;
  2593. color: var(--bs-form-valid-color);
  2594. }
  2595. .valid-tooltip {
  2596. position: absolute;
  2597. top: 100%;
  2598. z-index: 5;
  2599. display: none;
  2600. max-width: 100%;
  2601. padding: 0.25rem 0.5rem;
  2602. margin-top: 0.1rem;
  2603. font-size: 0.875rem;
  2604. color: #fff;
  2605. background-color: var(--bs-success);
  2606. border-radius: var(--bs-border-radius);
  2607. }
  2608. .was-validated :valid ~ .valid-feedback,
  2609. .was-validated :valid ~ .valid-tooltip,
  2610. .is-valid ~ .valid-feedback,
  2611. .is-valid ~ .valid-tooltip {
  2612. display: block;
  2613. }
  2614. .was-validated .form-control:valid, .form-control.is-valid {
  2615. border-color: var(--bs-form-valid-border-color);
  2616. padding-right: calc(1.5em + 0.75rem);
  2617. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  2618. background-repeat: no-repeat;
  2619. background-position: right calc(0.375em + 0.1875rem) center;
  2620. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2621. }
  2622. .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  2623. border-color: var(--bs-form-valid-border-color);
  2624. box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  2625. }
  2626. .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  2627. padding-right: calc(1.5em + 0.75rem);
  2628. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2629. }
  2630. .was-validated .form-select:valid, .form-select.is-valid {
  2631. border-color: var(--bs-form-valid-border-color);
  2632. }
  2633. .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  2634. --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  2635. padding-right: 4.125rem;
  2636. background-position: right 0.75rem center, center right 2.25rem;
  2637. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2638. }
  2639. .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  2640. border-color: var(--bs-form-valid-border-color);
  2641. box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  2642. }
  2643. .was-validated .form-control-color:valid, .form-control-color.is-valid {
  2644. width: calc(3rem + calc(1.5em + 0.75rem));
  2645. }
  2646. .was-validated .form-check-input:valid, .form-check-input.is-valid {
  2647. border-color: var(--bs-form-valid-border-color);
  2648. }
  2649. .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  2650. background-color: var(--bs-form-valid-color);
  2651. }
  2652. .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  2653. box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  2654. }
  2655. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  2656. color: var(--bs-form-valid-color);
  2657. }
  2658. .form-check-inline .form-check-input ~ .valid-feedback {
  2659. margin-left: 0.5em;
  2660. }
  2661. .was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
  2662. .was-validated .input-group > .form-select:not(:focus):valid,
  2663. .input-group > .form-select:not(:focus).is-valid,
  2664. .was-validated .input-group > .form-floating:not(:focus-within):valid,
  2665. .input-group > .form-floating:not(:focus-within).is-valid {
  2666. z-index: 3;
  2667. }
  2668. .invalid-feedback {
  2669. display: none;
  2670. width: 100%;
  2671. margin-top: 0.25rem;
  2672. font-size: 0.875em;
  2673. color: var(--bs-form-invalid-color);
  2674. }
  2675. .invalid-tooltip {
  2676. position: absolute;
  2677. top: 100%;
  2678. z-index: 5;
  2679. display: none;
  2680. max-width: 100%;
  2681. padding: 0.25rem 0.5rem;
  2682. margin-top: 0.1rem;
  2683. font-size: 0.875rem;
  2684. color: #fff;
  2685. background-color: var(--bs-danger);
  2686. border-radius: var(--bs-border-radius);
  2687. }
  2688. .was-validated :invalid ~ .invalid-feedback,
  2689. .was-validated :invalid ~ .invalid-tooltip,
  2690. .is-invalid ~ .invalid-feedback,
  2691. .is-invalid ~ .invalid-tooltip {
  2692. display: block;
  2693. }
  2694. .was-validated .form-control:invalid, .form-control.is-invalid {
  2695. border-color: var(--bs-form-invalid-border-color);
  2696. padding-right: calc(1.5em + 0.75rem);
  2697. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  2698. background-repeat: no-repeat;
  2699. background-position: right calc(0.375em + 0.1875rem) center;
  2700. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2701. }
  2702. .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  2703. border-color: var(--bs-form-invalid-border-color);
  2704. box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  2705. }
  2706. .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  2707. padding-right: calc(1.5em + 0.75rem);
  2708. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2709. }
  2710. .was-validated .form-select:invalid, .form-select.is-invalid {
  2711. border-color: var(--bs-form-invalid-border-color);
  2712. }
  2713. .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  2714. --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  2715. padding-right: 4.125rem;
  2716. background-position: right 0.75rem center, center right 2.25rem;
  2717. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2718. }
  2719. .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  2720. border-color: var(--bs-form-invalid-border-color);
  2721. box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  2722. }
  2723. .was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  2724. width: calc(3rem + calc(1.5em + 0.75rem));
  2725. }
  2726. .was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  2727. border-color: var(--bs-form-invalid-border-color);
  2728. }
  2729. .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  2730. background-color: var(--bs-form-invalid-color);
  2731. }
  2732. .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  2733. box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  2734. }
  2735. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  2736. color: var(--bs-form-invalid-color);
  2737. }
  2738. .form-check-inline .form-check-input ~ .invalid-feedback {
  2739. margin-left: 0.5em;
  2740. }
  2741. .was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
  2742. .was-validated .input-group > .form-select:not(:focus):invalid,
  2743. .input-group > .form-select:not(:focus).is-invalid,
  2744. .was-validated .input-group > .form-floating:not(:focus-within):invalid,
  2745. .input-group > .form-floating:not(:focus-within).is-invalid {
  2746. z-index: 4;
  2747. }
  2748. .btn {
  2749. --bs-btn-padding-x: 0.75rem;
  2750. --bs-btn-padding-y: 0.375rem;
  2751. --bs-btn-font-family: ;
  2752. --bs-btn-font-size: 1rem;
  2753. --bs-btn-font-weight: 400;
  2754. --bs-btn-line-height: 1.5;
  2755. --bs-btn-color: var(--bs-body-color);
  2756. --bs-btn-bg: transparent;
  2757. --bs-btn-border-width: var(--bs-border-width);
  2758. --bs-btn-border-color: transparent;
  2759. --bs-btn-border-radius: 0.375rem;
  2760. --bs-btn-hover-border-color: transparent;
  2761. --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  2762. --bs-btn-disabled-opacity: 0.65;
  2763. --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  2764. display: inline-block;
  2765. padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  2766. font-family: var(--bs-btn-font-family);
  2767. font-size: var(--bs-btn-font-size);
  2768. font-weight: var(--bs-btn-font-weight);
  2769. line-height: var(--bs-btn-line-height);
  2770. color: var(--bs-btn-color);
  2771. text-align: center;
  2772. text-decoration: none;
  2773. vertical-align: middle;
  2774. cursor: pointer;
  2775. -webkit-user-select: none;
  2776. -moz-user-select: none;
  2777. user-select: none;
  2778. border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  2779. border-radius: var(--bs-btn-border-radius);
  2780. background-color: var(--bs-btn-bg);
  2781. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2782. }
  2783. @media (prefers-reduced-motion: reduce) {
  2784. .btn {
  2785. transition: none;
  2786. }
  2787. }
  2788. .btn:hover {
  2789. color: var(--bs-btn-hover-color);
  2790. background-color: var(--bs-btn-hover-bg);
  2791. border-color: var(--bs-btn-hover-border-color);
  2792. }
  2793. .btn-check + .btn:hover {
  2794. color: var(--bs-btn-color);
  2795. background-color: var(--bs-btn-bg);
  2796. border-color: var(--bs-btn-border-color);
  2797. }
  2798. .btn:focus-visible {
  2799. color: var(--bs-btn-hover-color);
  2800. background-color: var(--bs-btn-hover-bg);
  2801. border-color: var(--bs-btn-hover-border-color);
  2802. outline: 0;
  2803. box-shadow: var(--bs-btn-focus-box-shadow);
  2804. }
  2805. .btn-check:focus-visible + .btn {
  2806. border-color: var(--bs-btn-hover-border-color);
  2807. outline: 0;
  2808. box-shadow: var(--bs-btn-focus-box-shadow);
  2809. }
  2810. .btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  2811. color: var(--bs-btn-active-color);
  2812. background-color: var(--bs-btn-active-bg);
  2813. border-color: var(--bs-btn-active-border-color);
  2814. }
  2815. .btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  2816. box-shadow: var(--bs-btn-focus-box-shadow);
  2817. }
  2818. .btn:disabled, .btn.disabled, fieldset:disabled .btn {
  2819. color: var(--bs-btn-disabled-color);
  2820. pointer-events: none;
  2821. background-color: var(--bs-btn-disabled-bg);
  2822. border-color: var(--bs-btn-disabled-border-color);
  2823. opacity: var(--bs-btn-disabled-opacity);
  2824. }
  2825. .btn-primary {
  2826. --bs-btn-color: #fff;
  2827. --bs-btn-bg: #0d6efd;
  2828. --bs-btn-border-color: #0d6efd;
  2829. --bs-btn-hover-color: #fff;
  2830. --bs-btn-hover-bg: #0b5ed7;
  2831. --bs-btn-hover-border-color: #0a58ca;
  2832. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  2833. --bs-btn-active-color: #fff;
  2834. --bs-btn-active-bg: #0a58ca;
  2835. --bs-btn-active-border-color: #0a53be;
  2836. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2837. --bs-btn-disabled-color: #fff;
  2838. --bs-btn-disabled-bg: #0d6efd;
  2839. --bs-btn-disabled-border-color: #0d6efd;
  2840. }
  2841. .btn-secondary {
  2842. --bs-btn-color: #fff;
  2843. --bs-btn-bg: #6c757d;
  2844. --bs-btn-border-color: #6c757d;
  2845. --bs-btn-hover-color: #fff;
  2846. --bs-btn-hover-bg: #5c636a;
  2847. --bs-btn-hover-border-color: #565e64;
  2848. --bs-btn-focus-shadow-rgb: 130, 138, 145;
  2849. --bs-btn-active-color: #fff;
  2850. --bs-btn-active-bg: #565e64;
  2851. --bs-btn-active-border-color: #51585e;
  2852. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2853. --bs-btn-disabled-color: #fff;
  2854. --bs-btn-disabled-bg: #6c757d;
  2855. --bs-btn-disabled-border-color: #6c757d;
  2856. }
  2857. .btn-success {
  2858. --bs-btn-color: #fff;
  2859. --bs-btn-bg: #198754;
  2860. --bs-btn-border-color: #198754;
  2861. --bs-btn-hover-color: #fff;
  2862. --bs-btn-hover-bg: #157347;
  2863. --bs-btn-hover-border-color: #146c43;
  2864. --bs-btn-focus-shadow-rgb: 60, 153, 110;
  2865. --bs-btn-active-color: #fff;
  2866. --bs-btn-active-bg: #146c43;
  2867. --bs-btn-active-border-color: #13653f;
  2868. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2869. --bs-btn-disabled-color: #fff;
  2870. --bs-btn-disabled-bg: #198754;
  2871. --bs-btn-disabled-border-color: #198754;
  2872. }
  2873. .btn-info {
  2874. --bs-btn-color: #000;
  2875. --bs-btn-bg: #0dcaf0;
  2876. --bs-btn-border-color: #0dcaf0;
  2877. --bs-btn-hover-color: #000;
  2878. --bs-btn-hover-bg: #31d2f2;
  2879. --bs-btn-hover-border-color: #25cff2;
  2880. --bs-btn-focus-shadow-rgb: 11, 172, 204;
  2881. --bs-btn-active-color: #000;
  2882. --bs-btn-active-bg: #3dd5f3;
  2883. --bs-btn-active-border-color: #25cff2;
  2884. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2885. --bs-btn-disabled-color: #000;
  2886. --bs-btn-disabled-bg: #0dcaf0;
  2887. --bs-btn-disabled-border-color: #0dcaf0;
  2888. }
  2889. .btn-warning {
  2890. --bs-btn-color: #000;
  2891. --bs-btn-bg: #ffc107;
  2892. --bs-btn-border-color: #ffc107;
  2893. --bs-btn-hover-color: #000;
  2894. --bs-btn-hover-bg: #ffca2c;
  2895. --bs-btn-hover-border-color: #ffc720;
  2896. --bs-btn-focus-shadow-rgb: 217, 164, 6;
  2897. --bs-btn-active-color: #000;
  2898. --bs-btn-active-bg: #ffcd39;
  2899. --bs-btn-active-border-color: #ffc720;
  2900. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2901. --bs-btn-disabled-color: #000;
  2902. --bs-btn-disabled-bg: #ffc107;
  2903. --bs-btn-disabled-border-color: #ffc107;
  2904. }
  2905. .btn-danger {
  2906. --bs-btn-color: #fff;
  2907. --bs-btn-bg: #dc3545;
  2908. --bs-btn-border-color: #dc3545;
  2909. --bs-btn-hover-color: #fff;
  2910. --bs-btn-hover-bg: #bb2d3b;
  2911. --bs-btn-hover-border-color: #b02a37;
  2912. --bs-btn-focus-shadow-rgb: 225, 83, 97;
  2913. --bs-btn-active-color: #fff;
  2914. --bs-btn-active-bg: #b02a37;
  2915. --bs-btn-active-border-color: #a52834;
  2916. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2917. --bs-btn-disabled-color: #fff;
  2918. --bs-btn-disabled-bg: #dc3545;
  2919. --bs-btn-disabled-border-color: #dc3545;
  2920. }
  2921. .btn-light {
  2922. --bs-btn-color: #000;
  2923. --bs-btn-bg: #f8f9fa;
  2924. --bs-btn-border-color: #f8f9fa;
  2925. --bs-btn-hover-color: #000;
  2926. --bs-btn-hover-bg: #d3d4d5;
  2927. --bs-btn-hover-border-color: #c6c7c8;
  2928. --bs-btn-focus-shadow-rgb: 211, 212, 213;
  2929. --bs-btn-active-color: #000;
  2930. --bs-btn-active-bg: #c6c7c8;
  2931. --bs-btn-active-border-color: #babbbc;
  2932. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2933. --bs-btn-disabled-color: #000;
  2934. --bs-btn-disabled-bg: #f8f9fa;
  2935. --bs-btn-disabled-border-color: #f8f9fa;
  2936. }
  2937. .btn-dark {
  2938. --bs-btn-color: #fff;
  2939. --bs-btn-bg: #212529;
  2940. --bs-btn-border-color: #212529;
  2941. --bs-btn-hover-color: #fff;
  2942. --bs-btn-hover-bg: #424649;
  2943. --bs-btn-hover-border-color: #373b3e;
  2944. --bs-btn-focus-shadow-rgb: 66, 70, 73;
  2945. --bs-btn-active-color: #fff;
  2946. --bs-btn-active-bg: #4d5154;
  2947. --bs-btn-active-border-color: #373b3e;
  2948. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2949. --bs-btn-disabled-color: #fff;
  2950. --bs-btn-disabled-bg: #212529;
  2951. --bs-btn-disabled-border-color: #212529;
  2952. }
  2953. .btn-outline-primary {
  2954. --bs-btn-color: #0d6efd;
  2955. --bs-btn-border-color: #0d6efd;
  2956. --bs-btn-hover-color: #fff;
  2957. --bs-btn-hover-bg: #0d6efd;
  2958. --bs-btn-hover-border-color: #0d6efd;
  2959. --bs-btn-focus-shadow-rgb: 13, 110, 253;
  2960. --bs-btn-active-color: #fff;
  2961. --bs-btn-active-bg: #0d6efd;
  2962. --bs-btn-active-border-color: #0d6efd;
  2963. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2964. --bs-btn-disabled-color: #0d6efd;
  2965. --bs-btn-disabled-bg: transparent;
  2966. --bs-btn-disabled-border-color: #0d6efd;
  2967. --bs-gradient: none;
  2968. }
  2969. .btn-outline-secondary {
  2970. --bs-btn-color: #6c757d;
  2971. --bs-btn-border-color: #6c757d;
  2972. --bs-btn-hover-color: #fff;
  2973. --bs-btn-hover-bg: #6c757d;
  2974. --bs-btn-hover-border-color: #6c757d;
  2975. --bs-btn-focus-shadow-rgb: 108, 117, 125;
  2976. --bs-btn-active-color: #fff;
  2977. --bs-btn-active-bg: #6c757d;
  2978. --bs-btn-active-border-color: #6c757d;
  2979. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2980. --bs-btn-disabled-color: #6c757d;
  2981. --bs-btn-disabled-bg: transparent;
  2982. --bs-btn-disabled-border-color: #6c757d;
  2983. --bs-gradient: none;
  2984. }
  2985. .btn-outline-success {
  2986. --bs-btn-color: #198754;
  2987. --bs-btn-border-color: #198754;
  2988. --bs-btn-hover-color: #fff;
  2989. --bs-btn-hover-bg: #198754;
  2990. --bs-btn-hover-border-color: #198754;
  2991. --bs-btn-focus-shadow-rgb: 25, 135, 84;
  2992. --bs-btn-active-color: #fff;
  2993. --bs-btn-active-bg: #198754;
  2994. --bs-btn-active-border-color: #198754;
  2995. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2996. --bs-btn-disabled-color: #198754;
  2997. --bs-btn-disabled-bg: transparent;
  2998. --bs-btn-disabled-border-color: #198754;
  2999. --bs-gradient: none;
  3000. }
  3001. .btn-outline-info {
  3002. --bs-btn-color: #0dcaf0;
  3003. --bs-btn-border-color: #0dcaf0;
  3004. --bs-btn-hover-color: #000;
  3005. --bs-btn-hover-bg: #0dcaf0;
  3006. --bs-btn-hover-border-color: #0dcaf0;
  3007. --bs-btn-focus-shadow-rgb: 13, 202, 240;
  3008. --bs-btn-active-color: #000;
  3009. --bs-btn-active-bg: #0dcaf0;
  3010. --bs-btn-active-border-color: #0dcaf0;
  3011. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3012. --bs-btn-disabled-color: #0dcaf0;
  3013. --bs-btn-disabled-bg: transparent;
  3014. --bs-btn-disabled-border-color: #0dcaf0;
  3015. --bs-gradient: none;
  3016. }
  3017. .btn-outline-warning {
  3018. --bs-btn-color: #ffc107;
  3019. --bs-btn-border-color: #ffc107;
  3020. --bs-btn-hover-color: #000;
  3021. --bs-btn-hover-bg: #ffc107;
  3022. --bs-btn-hover-border-color: #ffc107;
  3023. --bs-btn-focus-shadow-rgb: 255, 193, 7;
  3024. --bs-btn-active-color: #000;
  3025. --bs-btn-active-bg: #ffc107;
  3026. --bs-btn-active-border-color: #ffc107;
  3027. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3028. --bs-btn-disabled-color: #ffc107;
  3029. --bs-btn-disabled-bg: transparent;
  3030. --bs-btn-disabled-border-color: #ffc107;
  3031. --bs-gradient: none;
  3032. }
  3033. .btn-outline-danger {
  3034. --bs-btn-color: #dc3545;
  3035. --bs-btn-border-color: #dc3545;
  3036. --bs-btn-hover-color: #fff;
  3037. --bs-btn-hover-bg: #dc3545;
  3038. --bs-btn-hover-border-color: #dc3545;
  3039. --bs-btn-focus-shadow-rgb: 220, 53, 69;
  3040. --bs-btn-active-color: #fff;
  3041. --bs-btn-active-bg: #dc3545;
  3042. --bs-btn-active-border-color: #dc3545;
  3043. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3044. --bs-btn-disabled-color: #dc3545;
  3045. --bs-btn-disabled-bg: transparent;
  3046. --bs-btn-disabled-border-color: #dc3545;
  3047. --bs-gradient: none;
  3048. }
  3049. .btn-outline-light {
  3050. --bs-btn-color: #f8f9fa;
  3051. --bs-btn-border-color: #f8f9fa;
  3052. --bs-btn-hover-color: #000;
  3053. --bs-btn-hover-bg: #f8f9fa;
  3054. --bs-btn-hover-border-color: #f8f9fa;
  3055. --bs-btn-focus-shadow-rgb: 248, 249, 250;
  3056. --bs-btn-active-color: #000;
  3057. --bs-btn-active-bg: #f8f9fa;
  3058. --bs-btn-active-border-color: #f8f9fa;
  3059. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3060. --bs-btn-disabled-color: #f8f9fa;
  3061. --bs-btn-disabled-bg: transparent;
  3062. --bs-btn-disabled-border-color: #f8f9fa;
  3063. --bs-gradient: none;
  3064. }
  3065. .btn-outline-dark {
  3066. --bs-btn-color: #212529;
  3067. --bs-btn-border-color: #212529;
  3068. --bs-btn-hover-color: #fff;
  3069. --bs-btn-hover-bg: #212529;
  3070. --bs-btn-hover-border-color: #212529;
  3071. --bs-btn-focus-shadow-rgb: 33, 37, 41;
  3072. --bs-btn-active-color: #fff;
  3073. --bs-btn-active-bg: #212529;
  3074. --bs-btn-active-border-color: #212529;
  3075. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3076. --bs-btn-disabled-color: #212529;
  3077. --bs-btn-disabled-bg: transparent;
  3078. --bs-btn-disabled-border-color: #212529;
  3079. --bs-gradient: none;
  3080. }
  3081. .btn-link {
  3082. --bs-btn-font-weight: 400;
  3083. --bs-btn-color: var(--bs-link-color);
  3084. --bs-btn-bg: transparent;
  3085. --bs-btn-border-color: transparent;
  3086. --bs-btn-hover-color: var(--bs-link-hover-color);
  3087. --bs-btn-hover-border-color: transparent;
  3088. --bs-btn-active-color: var(--bs-link-hover-color);
  3089. --bs-btn-active-border-color: transparent;
  3090. --bs-btn-disabled-color: #6c757d;
  3091. --bs-btn-disabled-border-color: transparent;
  3092. --bs-btn-box-shadow: 0 0 0 #000;
  3093. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  3094. text-decoration: underline;
  3095. }
  3096. .btn-link:focus-visible {
  3097. color: var(--bs-btn-color);
  3098. }
  3099. .btn-link:hover {
  3100. color: var(--bs-btn-hover-color);
  3101. }
  3102. .btn-lg, .btn-group-lg > .btn {
  3103. --bs-btn-padding-y: 0.5rem;
  3104. --bs-btn-padding-x: 1rem;
  3105. --bs-btn-font-size: 1.25rem;
  3106. --bs-btn-border-radius: 0.5rem;
  3107. }
  3108. .btn-sm, .btn-group-sm > .btn {
  3109. --bs-btn-padding-y: 0.25rem;
  3110. --bs-btn-padding-x: 0.5rem;
  3111. --bs-btn-font-size: 0.875rem;
  3112. --bs-btn-border-radius: 0.25rem;
  3113. }
  3114. .fade {
  3115. transition: opacity 0.15s linear;
  3116. }
  3117. @media (prefers-reduced-motion: reduce) {
  3118. .fade {
  3119. transition: none;
  3120. }
  3121. }
  3122. .fade:not(.show) {
  3123. opacity: 0;
  3124. }
  3125. .collapse:not(.show) {
  3126. display: none;
  3127. }
  3128. .collapsing {
  3129. height: 0;
  3130. overflow: hidden;
  3131. transition: height 0.35s ease;
  3132. }
  3133. @media (prefers-reduced-motion: reduce) {
  3134. .collapsing {
  3135. transition: none;
  3136. }
  3137. }
  3138. .collapsing.collapse-horizontal {
  3139. width: 0;
  3140. height: auto;
  3141. transition: width 0.35s ease;
  3142. }
  3143. @media (prefers-reduced-motion: reduce) {
  3144. .collapsing.collapse-horizontal {
  3145. transition: none;
  3146. }
  3147. }
  3148. .dropup,
  3149. .dropend,
  3150. .dropdown,
  3151. .dropstart,
  3152. .dropup-center,
  3153. .dropdown-center {
  3154. position: relative;
  3155. }
  3156. .dropdown-toggle {
  3157. white-space: nowrap;
  3158. }
  3159. .dropdown-toggle::after {
  3160. display: inline-block;
  3161. margin-left: 0.255em;
  3162. vertical-align: 0.255em;
  3163. content: "";
  3164. border-top: 0.3em solid;
  3165. border-right: 0.3em solid transparent;
  3166. border-bottom: 0;
  3167. border-left: 0.3em solid transparent;
  3168. }
  3169. .dropdown-toggle:empty::after {
  3170. margin-left: 0;
  3171. }
  3172. .dropdown-menu {
  3173. --bs-dropdown-zindex: 1000;
  3174. --bs-dropdown-min-width: 10rem;
  3175. --bs-dropdown-padding-x: 0;
  3176. --bs-dropdown-padding-y: 0.5rem;
  3177. --bs-dropdown-spacer: 0.125rem;
  3178. --bs-dropdown-font-size: 1rem;
  3179. --bs-dropdown-color: var(--bs-body-color);
  3180. --bs-dropdown-bg: var(--bs-body-bg);
  3181. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3182. --bs-dropdown-border-radius: 0.375rem;
  3183. --bs-dropdown-border-width: var(--bs-border-width);
  3184. --bs-dropdown-inner-border-radius: calc(0.375rem - var(--bs-border-width));
  3185. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3186. --bs-dropdown-divider-margin-y: 0.5rem;
  3187. --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  3188. --bs-dropdown-link-color: var(--bs-body-color);
  3189. --bs-dropdown-link-hover-color: var(--bs-body-color);
  3190. --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  3191. --bs-dropdown-link-active-color: #fff;
  3192. --bs-dropdown-link-active-bg: #0d6efd;
  3193. --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  3194. --bs-dropdown-item-padding-x: 1rem;
  3195. --bs-dropdown-item-padding-y: 0.25rem;
  3196. --bs-dropdown-header-color: #6c757d;
  3197. --bs-dropdown-header-padding-x: 1rem;
  3198. --bs-dropdown-header-padding-y: 0.5rem;
  3199. position: absolute;
  3200. z-index: var(--bs-dropdown-zindex);
  3201. display: none;
  3202. min-width: var(--bs-dropdown-min-width);
  3203. padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  3204. margin: 0;
  3205. font-size: var(--bs-dropdown-font-size);
  3206. color: var(--bs-dropdown-color);
  3207. text-align: left;
  3208. list-style: none;
  3209. background-color: var(--bs-dropdown-bg);
  3210. background-clip: padding-box;
  3211. border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  3212. border-radius: var(--bs-dropdown-border-radius);
  3213. }
  3214. .dropdown-menu[data-bs-popper] {
  3215. top: 100%;
  3216. left: 0;
  3217. margin-top: var(--bs-dropdown-spacer);
  3218. }
  3219. .dropdown-menu-start {
  3220. --bs-position: start;
  3221. }
  3222. .dropdown-menu-start[data-bs-popper] {
  3223. right: auto;
  3224. left: 0;
  3225. }
  3226. .dropdown-menu-end {
  3227. --bs-position: end;
  3228. }
  3229. .dropdown-menu-end[data-bs-popper] {
  3230. right: 0;
  3231. left: auto;
  3232. }
  3233. @media (min-width: 576px) {
  3234. .dropdown-menu-sm-start {
  3235. --bs-position: start;
  3236. }
  3237. .dropdown-menu-sm-start[data-bs-popper] {
  3238. right: auto;
  3239. left: 0;
  3240. }
  3241. .dropdown-menu-sm-end {
  3242. --bs-position: end;
  3243. }
  3244. .dropdown-menu-sm-end[data-bs-popper] {
  3245. right: 0;
  3246. left: auto;
  3247. }
  3248. }
  3249. @media (min-width: 768px) {
  3250. .dropdown-menu-md-start {
  3251. --bs-position: start;
  3252. }
  3253. .dropdown-menu-md-start[data-bs-popper] {
  3254. right: auto;
  3255. left: 0;
  3256. }
  3257. .dropdown-menu-md-end {
  3258. --bs-position: end;
  3259. }
  3260. .dropdown-menu-md-end[data-bs-popper] {
  3261. right: 0;
  3262. left: auto;
  3263. }
  3264. }
  3265. @media (min-width: 992px) {
  3266. .dropdown-menu-lg-start {
  3267. --bs-position: start;
  3268. }
  3269. .dropdown-menu-lg-start[data-bs-popper] {
  3270. right: auto;
  3271. left: 0;
  3272. }
  3273. .dropdown-menu-lg-end {
  3274. --bs-position: end;
  3275. }
  3276. .dropdown-menu-lg-end[data-bs-popper] {
  3277. right: 0;
  3278. left: auto;
  3279. }
  3280. }
  3281. @media (min-width: 1200px) {
  3282. .dropdown-menu-xl-start {
  3283. --bs-position: start;
  3284. }
  3285. .dropdown-menu-xl-start[data-bs-popper] {
  3286. right: auto;
  3287. left: 0;
  3288. }
  3289. .dropdown-menu-xl-end {
  3290. --bs-position: end;
  3291. }
  3292. .dropdown-menu-xl-end[data-bs-popper] {
  3293. right: 0;
  3294. left: auto;
  3295. }
  3296. }
  3297. @media (min-width: 1400px) {
  3298. .dropdown-menu-xxl-start {
  3299. --bs-position: start;
  3300. }
  3301. .dropdown-menu-xxl-start[data-bs-popper] {
  3302. right: auto;
  3303. left: 0;
  3304. }
  3305. .dropdown-menu-xxl-end {
  3306. --bs-position: end;
  3307. }
  3308. .dropdown-menu-xxl-end[data-bs-popper] {
  3309. right: 0;
  3310. left: auto;
  3311. }
  3312. }
  3313. .dropup .dropdown-menu[data-bs-popper] {
  3314. top: auto;
  3315. bottom: 100%;
  3316. margin-top: 0;
  3317. margin-bottom: var(--bs-dropdown-spacer);
  3318. }
  3319. .dropup .dropdown-toggle::after {
  3320. display: inline-block;
  3321. margin-left: 0.255em;
  3322. vertical-align: 0.255em;
  3323. content: "";
  3324. border-top: 0;
  3325. border-right: 0.3em solid transparent;
  3326. border-bottom: 0.3em solid;
  3327. border-left: 0.3em solid transparent;
  3328. }
  3329. .dropup .dropdown-toggle:empty::after {
  3330. margin-left: 0;
  3331. }
  3332. .dropend .dropdown-menu[data-bs-popper] {
  3333. top: 0;
  3334. right: auto;
  3335. left: 100%;
  3336. margin-top: 0;
  3337. margin-left: var(--bs-dropdown-spacer);
  3338. }
  3339. .dropend .dropdown-toggle::after {
  3340. display: inline-block;
  3341. margin-left: 0.255em;
  3342. vertical-align: 0.255em;
  3343. content: "";
  3344. border-top: 0.3em solid transparent;
  3345. border-right: 0;
  3346. border-bottom: 0.3em solid transparent;
  3347. border-left: 0.3em solid;
  3348. }
  3349. .dropend .dropdown-toggle:empty::after {
  3350. margin-left: 0;
  3351. }
  3352. .dropend .dropdown-toggle::after {
  3353. vertical-align: 0;
  3354. }
  3355. .dropstart .dropdown-menu[data-bs-popper] {
  3356. top: 0;
  3357. right: 100%;
  3358. left: auto;
  3359. margin-top: 0;
  3360. margin-right: var(--bs-dropdown-spacer);
  3361. }
  3362. .dropstart .dropdown-toggle::after {
  3363. display: inline-block;
  3364. margin-left: 0.255em;
  3365. vertical-align: 0.255em;
  3366. content: "";
  3367. }
  3368. .dropstart .dropdown-toggle::after {
  3369. display: none;
  3370. }
  3371. .dropstart .dropdown-toggle::before {
  3372. display: inline-block;
  3373. margin-right: 0.255em;
  3374. vertical-align: 0.255em;
  3375. content: "";
  3376. border-top: 0.3em solid transparent;
  3377. border-right: 0.3em solid;
  3378. border-bottom: 0.3em solid transparent;
  3379. }
  3380. .dropstart .dropdown-toggle:empty::after {
  3381. margin-left: 0;
  3382. }
  3383. .dropstart .dropdown-toggle::before {
  3384. vertical-align: 0;
  3385. }
  3386. .dropdown-divider {
  3387. height: 0;
  3388. margin: var(--bs-dropdown-divider-margin-y) 0;
  3389. overflow: hidden;
  3390. border-top: 1px solid var(--bs-dropdown-divider-bg);
  3391. opacity: 1;
  3392. }
  3393. .dropdown-item {
  3394. display: block;
  3395. width: 100%;
  3396. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3397. clear: both;
  3398. font-weight: 400;
  3399. color: var(--bs-dropdown-link-color);
  3400. text-align: inherit;
  3401. text-decoration: none;
  3402. white-space: nowrap;
  3403. background-color: transparent;
  3404. border: 0;
  3405. border-radius: var(--bs-dropdown-item-border-radius, 0);
  3406. }
  3407. .dropdown-item:hover, .dropdown-item:focus {
  3408. color: var(--bs-dropdown-link-hover-color);
  3409. background-color: var(--bs-dropdown-link-hover-bg);
  3410. }
  3411. .dropdown-item.active, .dropdown-item:active {
  3412. color: var(--bs-dropdown-link-active-color);
  3413. text-decoration: none;
  3414. background-color: var(--bs-dropdown-link-active-bg);
  3415. }
  3416. .dropdown-item.disabled, .dropdown-item:disabled {
  3417. color: var(--bs-dropdown-link-disabled-color);
  3418. pointer-events: none;
  3419. background-color: transparent;
  3420. }
  3421. .dropdown-menu.show {
  3422. display: block;
  3423. }
  3424. .dropdown-header {
  3425. display: block;
  3426. padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  3427. margin-bottom: 0;
  3428. font-size: 0.875rem;
  3429. color: var(--bs-dropdown-header-color);
  3430. white-space: nowrap;
  3431. }
  3432. .dropdown-item-text {
  3433. display: block;
  3434. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3435. color: var(--bs-dropdown-link-color);
  3436. }
  3437. .dropdown-menu-dark {
  3438. --bs-dropdown-color: #dee2e6;
  3439. --bs-dropdown-bg: #343a40;
  3440. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3441. --bs-dropdown-box-shadow: ;
  3442. --bs-dropdown-link-color: #dee2e6;
  3443. --bs-dropdown-link-hover-color: #fff;
  3444. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3445. --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  3446. --bs-dropdown-link-active-color: #fff;
  3447. --bs-dropdown-link-active-bg: #0d6efd;
  3448. --bs-dropdown-link-disabled-color: #adb5bd;
  3449. --bs-dropdown-header-color: #adb5bd;
  3450. }
  3451. .btn-group,
  3452. .btn-group-vertical {
  3453. position: relative;
  3454. display: inline-flex;
  3455. vertical-align: middle;
  3456. }
  3457. .btn-group > .btn,
  3458. .btn-group-vertical > .btn {
  3459. position: relative;
  3460. flex: 1 1 auto;
  3461. }
  3462. .btn-group > .btn-check:checked + .btn,
  3463. .btn-group > .btn-check:focus + .btn,
  3464. .btn-group > .btn:hover,
  3465. .btn-group > .btn:focus,
  3466. .btn-group > .btn:active,
  3467. .btn-group > .btn.active,
  3468. .btn-group-vertical > .btn-check:checked + .btn,
  3469. .btn-group-vertical > .btn-check:focus + .btn,
  3470. .btn-group-vertical > .btn:hover,
  3471. .btn-group-vertical > .btn:focus,
  3472. .btn-group-vertical > .btn:active,
  3473. .btn-group-vertical > .btn.active {
  3474. z-index: 1;
  3475. }
  3476. .btn-toolbar {
  3477. display: flex;
  3478. flex-wrap: wrap;
  3479. justify-content: flex-start;
  3480. }
  3481. .btn-toolbar .input-group {
  3482. width: auto;
  3483. }
  3484. .btn-group {
  3485. border-radius: 0.375rem;
  3486. }
  3487. .btn-group > :not(.btn-check:first-child) + .btn,
  3488. .btn-group > .btn-group:not(:first-child) {
  3489. margin-left: calc(var(--bs-border-width) * -1);
  3490. }
  3491. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  3492. .btn-group > .btn.dropdown-toggle-split:first-child,
  3493. .btn-group > .btn-group:not(:last-child) > .btn {
  3494. border-top-right-radius: 0;
  3495. border-bottom-right-radius: 0;
  3496. }
  3497. .btn-group > .btn:nth-child(n+3),
  3498. .btn-group > :not(.btn-check) + .btn,
  3499. .btn-group > .btn-group:not(:first-child) > .btn {
  3500. border-top-left-radius: 0;
  3501. border-bottom-left-radius: 0;
  3502. }
  3503. .dropdown-toggle-split {
  3504. padding-right: 0.5625rem;
  3505. padding-left: 0.5625rem;
  3506. }
  3507. .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  3508. margin-left: 0;
  3509. }
  3510. .dropstart .dropdown-toggle-split::before {
  3511. margin-right: 0;
  3512. }
  3513. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  3514. padding-right: 0.375rem;
  3515. padding-left: 0.375rem;
  3516. }
  3517. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  3518. padding-right: 0.75rem;
  3519. padding-left: 0.75rem;
  3520. }
  3521. .btn-group-vertical {
  3522. flex-direction: column;
  3523. align-items: flex-start;
  3524. justify-content: center;
  3525. }
  3526. .btn-group-vertical > .btn,
  3527. .btn-group-vertical > .btn-group {
  3528. width: 100%;
  3529. }
  3530. .btn-group-vertical > .btn:not(:first-child),
  3531. .btn-group-vertical > .btn-group:not(:first-child) {
  3532. margin-top: calc(var(--bs-border-width) * -1);
  3533. }
  3534. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  3535. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  3536. border-bottom-right-radius: 0;
  3537. border-bottom-left-radius: 0;
  3538. }
  3539. .btn-group-vertical > .btn ~ .btn,
  3540. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  3541. border-top-left-radius: 0;
  3542. border-top-right-radius: 0;
  3543. }
  3544. .nav {
  3545. --bs-nav-link-padding-x: 1rem;
  3546. --bs-nav-link-padding-y: 0.5rem;
  3547. --bs-nav-link-font-weight: ;
  3548. --bs-nav-link-color: var(--bs-link-color);
  3549. --bs-nav-link-hover-color: var(--bs-link-hover-color);
  3550. --bs-nav-link-disabled-color: var(--bs-secondary-color);
  3551. display: flex;
  3552. flex-wrap: wrap;
  3553. padding-left: 0;
  3554. margin-bottom: 0;
  3555. list-style: none;
  3556. }
  3557. .nav-link {
  3558. display: block;
  3559. padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  3560. font-size: var(--bs-nav-link-font-size);
  3561. font-weight: var(--bs-nav-link-font-weight);
  3562. color: var(--bs-nav-link-color);
  3563. text-decoration: none;
  3564. background: none;
  3565. border: 0;
  3566. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  3567. }
  3568. @media (prefers-reduced-motion: reduce) {
  3569. .nav-link {
  3570. transition: none;
  3571. }
  3572. }
  3573. .nav-link:hover, .nav-link:focus {
  3574. color: var(--bs-nav-link-hover-color);
  3575. }
  3576. .nav-link:focus-visible {
  3577. outline: 0;
  3578. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  3579. }
  3580. .nav-link.disabled {
  3581. color: var(--bs-nav-link-disabled-color);
  3582. pointer-events: none;
  3583. cursor: default;
  3584. }
  3585. .nav-tabs {
  3586. --bs-nav-tabs-border-width: var(--bs-border-width);
  3587. --bs-nav-tabs-border-color: var(--bs-border-color);
  3588. --bs-nav-tabs-border-radius: var(--bs-border-radius);
  3589. --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  3590. --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  3591. --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  3592. --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  3593. border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
  3594. }
  3595. .nav-tabs .nav-link {
  3596. margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  3597. border: var(--bs-nav-tabs-border-width) solid transparent;
  3598. border-top-left-radius: var(--bs-nav-tabs-border-radius);
  3599. border-top-right-radius: var(--bs-nav-tabs-border-radius);
  3600. }
  3601. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  3602. isolation: isolate;
  3603. border-color: var(--bs-nav-tabs-link-hover-border-color);
  3604. }
  3605. .nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
  3606. color: var(--bs-nav-link-disabled-color);
  3607. background-color: transparent;
  3608. border-color: transparent;
  3609. }
  3610. .nav-tabs .nav-link.active,
  3611. .nav-tabs .nav-item.show .nav-link {
  3612. color: var(--bs-nav-tabs-link-active-color);
  3613. background-color: var(--bs-nav-tabs-link-active-bg);
  3614. border-color: var(--bs-nav-tabs-link-active-border-color);
  3615. }
  3616. .nav-tabs .dropdown-menu {
  3617. margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  3618. border-top-left-radius: 0;
  3619. border-top-right-radius: 0;
  3620. }
  3621. .nav-pills {
  3622. --bs-nav-pills-border-radius: 0.375rem;
  3623. --bs-nav-pills-link-active-color: #fff;
  3624. --bs-nav-pills-link-active-bg: #0d6efd;
  3625. }
  3626. .nav-pills .nav-link {
  3627. border-radius: var(--bs-nav-pills-border-radius);
  3628. }
  3629. .nav-pills .nav-link:disabled {
  3630. color: var(--bs-nav-link-disabled-color);
  3631. background-color: transparent;
  3632. border-color: transparent;
  3633. }
  3634. .nav-pills .nav-link.active,
  3635. .nav-pills .show > .nav-link {
  3636. color: var(--bs-nav-pills-link-active-color);
  3637. background-color: var(--bs-nav-pills-link-active-bg);
  3638. }
  3639. .nav-underline {
  3640. --bs-nav-underline-gap: 1rem;
  3641. --bs-nav-underline-border-width: 0.125rem;
  3642. --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  3643. gap: var(--bs-nav-underline-gap);
  3644. }
  3645. .nav-underline .nav-link {
  3646. padding-right: 0;
  3647. padding-left: 0;
  3648. border-bottom: var(--bs-nav-underline-border-width) solid transparent;
  3649. }
  3650. .nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  3651. border-bottom-color: currentcolor;
  3652. }
  3653. .nav-underline .nav-link.active,
  3654. .nav-underline .show > .nav-link {
  3655. font-weight: 700;
  3656. color: var(--bs-nav-underline-link-active-color);
  3657. border-bottom-color: currentcolor;
  3658. }
  3659. .nav-fill > .nav-link,
  3660. .nav-fill .nav-item {
  3661. flex: 1 1 auto;
  3662. text-align: center;
  3663. }
  3664. .nav-justified > .nav-link,
  3665. .nav-justified .nav-item {
  3666. flex-basis: 0;
  3667. flex-grow: 1;
  3668. text-align: center;
  3669. }
  3670. .nav-fill .nav-item .nav-link,
  3671. .nav-justified .nav-item .nav-link {
  3672. width: 100%;
  3673. }
  3674. .tab-content > .tab-pane {
  3675. display: none;
  3676. }
  3677. .tab-content > .active {
  3678. display: block;
  3679. }
  3680. .navbar {
  3681. --bs-navbar-padding-x: 0;
  3682. --bs-navbar-padding-y: 0.5rem;
  3683. --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  3684. --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  3685. --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  3686. --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3687. --bs-navbar-brand-padding-y: 0.3125rem;
  3688. --bs-navbar-brand-margin-end: 1rem;
  3689. --bs-navbar-brand-font-size: 1.25rem;
  3690. --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3691. --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3692. --bs-navbar-nav-link-padding-x: 0.5rem;
  3693. --bs-navbar-toggler-padding-y: 0.25rem;
  3694. --bs-navbar-toggler-padding-x: 0.75rem;
  3695. --bs-navbar-toggler-font-size: 1.25rem;
  3696. --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  3697. --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  3698. --bs-navbar-toggler-border-radius: 0.375rem;
  3699. --bs-navbar-toggler-focus-width: 0.25rem;
  3700. --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  3701. position: relative;
  3702. display: flex;
  3703. flex-wrap: wrap;
  3704. align-items: center;
  3705. justify-content: space-between;
  3706. padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
  3707. }
  3708. .navbar > .container,
  3709. .navbar > .container-fluid,
  3710. .navbar > .container-sm,
  3711. .navbar > .container-md,
  3712. .navbar > .container-lg,
  3713. .navbar > .container-xl,
  3714. .navbar > .container-xxl {
  3715. display: flex;
  3716. flex-wrap: inherit;
  3717. align-items: center;
  3718. justify-content: space-between;
  3719. }
  3720. .navbar-brand {
  3721. padding-top: var(--bs-navbar-brand-padding-y);
  3722. padding-bottom: var(--bs-navbar-brand-padding-y);
  3723. margin-right: var(--bs-navbar-brand-margin-end);
  3724. font-size: var(--bs-navbar-brand-font-size);
  3725. color: var(--bs-navbar-brand-color);
  3726. text-decoration: none;
  3727. white-space: nowrap;
  3728. }
  3729. .navbar-brand:hover, .navbar-brand:focus {
  3730. color: var(--bs-navbar-brand-hover-color);
  3731. }
  3732. .navbar-nav {
  3733. --bs-nav-link-padding-x: 0;
  3734. --bs-nav-link-padding-y: 0.5rem;
  3735. --bs-nav-link-font-weight: ;
  3736. --bs-nav-link-color: var(--bs-navbar-color);
  3737. --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  3738. --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  3739. display: flex;
  3740. flex-direction: column;
  3741. padding-left: 0;
  3742. margin-bottom: 0;
  3743. list-style: none;
  3744. }
  3745. .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  3746. color: var(--bs-navbar-active-color);
  3747. }
  3748. .navbar-nav .dropdown-menu {
  3749. position: static;
  3750. }
  3751. .navbar-text {
  3752. padding-top: 0.5rem;
  3753. padding-bottom: 0.5rem;
  3754. color: var(--bs-navbar-color);
  3755. }
  3756. .navbar-text a,
  3757. .navbar-text a:hover,
  3758. .navbar-text a:focus {
  3759. color: var(--bs-navbar-active-color);
  3760. }
  3761. .navbar-collapse {
  3762. flex-basis: 100%;
  3763. flex-grow: 1;
  3764. align-items: center;
  3765. }
  3766. .navbar-toggler {
  3767. padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  3768. font-size: var(--bs-navbar-toggler-font-size);
  3769. line-height: 1;
  3770. color: var(--bs-navbar-color);
  3771. background-color: transparent;
  3772. border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  3773. border-radius: var(--bs-navbar-toggler-border-radius);
  3774. transition: var(--bs-navbar-toggler-transition);
  3775. }
  3776. @media (prefers-reduced-motion: reduce) {
  3777. .navbar-toggler {
  3778. transition: none;
  3779. }
  3780. }
  3781. .navbar-toggler:hover {
  3782. text-decoration: none;
  3783. }
  3784. .navbar-toggler:focus {
  3785. text-decoration: none;
  3786. outline: 0;
  3787. box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
  3788. }
  3789. .navbar-toggler-icon {
  3790. display: inline-block;
  3791. width: 1.5em;
  3792. height: 1.5em;
  3793. vertical-align: middle;
  3794. background-image: var(--bs-navbar-toggler-icon-bg);
  3795. background-repeat: no-repeat;
  3796. background-position: center;
  3797. background-size: 100%;
  3798. }
  3799. .navbar-nav-scroll {
  3800. max-height: var(--bs-scroll-height, 75vh);
  3801. overflow-y: auto;
  3802. }
  3803. @media (min-width: 576px) {
  3804. .navbar-expand-sm {
  3805. flex-wrap: nowrap;
  3806. justify-content: flex-start;
  3807. }
  3808. .navbar-expand-sm .navbar-nav {
  3809. flex-direction: row;
  3810. }
  3811. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3812. position: absolute;
  3813. }
  3814. .navbar-expand-sm .navbar-nav .nav-link {
  3815. padding-right: var(--bs-navbar-nav-link-padding-x);
  3816. padding-left: var(--bs-navbar-nav-link-padding-x);
  3817. }
  3818. .navbar-expand-sm .navbar-nav-scroll {
  3819. overflow: visible;
  3820. }
  3821. .navbar-expand-sm .navbar-collapse {
  3822. display: flex !important;
  3823. flex-basis: auto;
  3824. }
  3825. .navbar-expand-sm .navbar-toggler {
  3826. display: none;
  3827. }
  3828. .navbar-expand-sm .offcanvas {
  3829. position: static;
  3830. z-index: auto;
  3831. flex-grow: 1;
  3832. width: auto !important;
  3833. height: auto !important;
  3834. visibility: visible !important;
  3835. background-color: transparent !important;
  3836. border: 0 !important;
  3837. transform: none !important;
  3838. transition: none;
  3839. }
  3840. .navbar-expand-sm .offcanvas .offcanvas-header {
  3841. display: none;
  3842. }
  3843. .navbar-expand-sm .offcanvas .offcanvas-body {
  3844. display: flex;
  3845. flex-grow: 0;
  3846. padding: 0;
  3847. overflow-y: visible;
  3848. }
  3849. }
  3850. @media (min-width: 768px) {
  3851. .navbar-expand-md {
  3852. flex-wrap: nowrap;
  3853. justify-content: flex-start;
  3854. }
  3855. .navbar-expand-md .navbar-nav {
  3856. flex-direction: row;
  3857. }
  3858. .navbar-expand-md .navbar-nav .dropdown-menu {
  3859. position: absolute;
  3860. }
  3861. .navbar-expand-md .navbar-nav .nav-link {
  3862. padding-right: var(--bs-navbar-nav-link-padding-x);
  3863. padding-left: var(--bs-navbar-nav-link-padding-x);
  3864. }
  3865. .navbar-expand-md .navbar-nav-scroll {
  3866. overflow: visible;
  3867. }
  3868. .navbar-expand-md .navbar-collapse {
  3869. display: flex !important;
  3870. flex-basis: auto;
  3871. }
  3872. .navbar-expand-md .navbar-toggler {
  3873. display: none;
  3874. }
  3875. .navbar-expand-md .offcanvas {
  3876. position: static;
  3877. z-index: auto;
  3878. flex-grow: 1;
  3879. width: auto !important;
  3880. height: auto !important;
  3881. visibility: visible !important;
  3882. background-color: transparent !important;
  3883. border: 0 !important;
  3884. transform: none !important;
  3885. transition: none;
  3886. }
  3887. .navbar-expand-md .offcanvas .offcanvas-header {
  3888. display: none;
  3889. }
  3890. .navbar-expand-md .offcanvas .offcanvas-body {
  3891. display: flex;
  3892. flex-grow: 0;
  3893. padding: 0;
  3894. overflow-y: visible;
  3895. }
  3896. }
  3897. @media (min-width: 992px) {
  3898. .navbar-expand-lg {
  3899. flex-wrap: nowrap;
  3900. justify-content: flex-start;
  3901. }
  3902. .navbar-expand-lg .navbar-nav {
  3903. flex-direction: row;
  3904. }
  3905. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3906. position: absolute;
  3907. }
  3908. .navbar-expand-lg .navbar-nav .nav-link {
  3909. padding-right: var(--bs-navbar-nav-link-padding-x);
  3910. padding-left: var(--bs-navbar-nav-link-padding-x);
  3911. }
  3912. .navbar-expand-lg .navbar-nav-scroll {
  3913. overflow: visible;
  3914. }
  3915. .navbar-expand-lg .navbar-collapse {
  3916. display: flex !important;
  3917. flex-basis: auto;
  3918. }
  3919. .navbar-expand-lg .navbar-toggler {
  3920. display: none;
  3921. }
  3922. .navbar-expand-lg .offcanvas {
  3923. position: static;
  3924. z-index: auto;
  3925. flex-grow: 1;
  3926. width: auto !important;
  3927. height: auto !important;
  3928. visibility: visible !important;
  3929. background-color: transparent !important;
  3930. border: 0 !important;
  3931. transform: none !important;
  3932. transition: none;
  3933. }
  3934. .navbar-expand-lg .offcanvas .offcanvas-header {
  3935. display: none;
  3936. }
  3937. .navbar-expand-lg .offcanvas .offcanvas-body {
  3938. display: flex;
  3939. flex-grow: 0;
  3940. padding: 0;
  3941. overflow-y: visible;
  3942. }
  3943. }
  3944. @media (min-width: 1200px) {
  3945. .navbar-expand-xl {
  3946. flex-wrap: nowrap;
  3947. justify-content: flex-start;
  3948. }
  3949. .navbar-expand-xl .navbar-nav {
  3950. flex-direction: row;
  3951. }
  3952. .navbar-expand-xl .navbar-nav .dropdown-menu {
  3953. position: absolute;
  3954. }
  3955. .navbar-expand-xl .navbar-nav .nav-link {
  3956. padding-right: var(--bs-navbar-nav-link-padding-x);
  3957. padding-left: var(--bs-navbar-nav-link-padding-x);
  3958. }
  3959. .navbar-expand-xl .navbar-nav-scroll {
  3960. overflow: visible;
  3961. }
  3962. .navbar-expand-xl .navbar-collapse {
  3963. display: flex !important;
  3964. flex-basis: auto;
  3965. }
  3966. .navbar-expand-xl .navbar-toggler {
  3967. display: none;
  3968. }
  3969. .navbar-expand-xl .offcanvas {
  3970. position: static;
  3971. z-index: auto;
  3972. flex-grow: 1;
  3973. width: auto !important;
  3974. height: auto !important;
  3975. visibility: visible !important;
  3976. background-color: transparent !important;
  3977. border: 0 !important;
  3978. transform: none !important;
  3979. transition: none;
  3980. }
  3981. .navbar-expand-xl .offcanvas .offcanvas-header {
  3982. display: none;
  3983. }
  3984. .navbar-expand-xl .offcanvas .offcanvas-body {
  3985. display: flex;
  3986. flex-grow: 0;
  3987. padding: 0;
  3988. overflow-y: visible;
  3989. }
  3990. }
  3991. @media (min-width: 1400px) {
  3992. .navbar-expand-xxl {
  3993. flex-wrap: nowrap;
  3994. justify-content: flex-start;
  3995. }
  3996. .navbar-expand-xxl .navbar-nav {
  3997. flex-direction: row;
  3998. }
  3999. .navbar-expand-xxl .navbar-nav .dropdown-menu {
  4000. position: absolute;
  4001. }
  4002. .navbar-expand-xxl .navbar-nav .nav-link {
  4003. padding-right: var(--bs-navbar-nav-link-padding-x);
  4004. padding-left: var(--bs-navbar-nav-link-padding-x);
  4005. }
  4006. .navbar-expand-xxl .navbar-nav-scroll {
  4007. overflow: visible;
  4008. }
  4009. .navbar-expand-xxl .navbar-collapse {
  4010. display: flex !important;
  4011. flex-basis: auto;
  4012. }
  4013. .navbar-expand-xxl .navbar-toggler {
  4014. display: none;
  4015. }
  4016. .navbar-expand-xxl .offcanvas {
  4017. position: static;
  4018. z-index: auto;
  4019. flex-grow: 1;
  4020. width: auto !important;
  4021. height: auto !important;
  4022. visibility: visible !important;
  4023. background-color: transparent !important;
  4024. border: 0 !important;
  4025. transform: none !important;
  4026. transition: none;
  4027. }
  4028. .navbar-expand-xxl .offcanvas .offcanvas-header {
  4029. display: none;
  4030. }
  4031. .navbar-expand-xxl .offcanvas .offcanvas-body {
  4032. display: flex;
  4033. flex-grow: 0;
  4034. padding: 0;
  4035. overflow-y: visible;
  4036. }
  4037. }
  4038. .navbar-expand {
  4039. flex-wrap: nowrap;
  4040. justify-content: flex-start;
  4041. }
  4042. .navbar-expand .navbar-nav {
  4043. flex-direction: row;
  4044. }
  4045. .navbar-expand .navbar-nav .dropdown-menu {
  4046. position: absolute;
  4047. }
  4048. .navbar-expand .navbar-nav .nav-link {
  4049. padding-right: var(--bs-navbar-nav-link-padding-x);
  4050. padding-left: var(--bs-navbar-nav-link-padding-x);
  4051. }
  4052. .navbar-expand .navbar-nav-scroll {
  4053. overflow: visible;
  4054. }
  4055. .navbar-expand .navbar-collapse {
  4056. display: flex !important;
  4057. flex-basis: auto;
  4058. }
  4059. .navbar-expand .navbar-toggler {
  4060. display: none;
  4061. }
  4062. .navbar-expand .offcanvas {
  4063. position: static;
  4064. z-index: auto;
  4065. flex-grow: 1;
  4066. width: auto !important;
  4067. height: auto !important;
  4068. visibility: visible !important;
  4069. background-color: transparent !important;
  4070. border: 0 !important;
  4071. transform: none !important;
  4072. transition: none;
  4073. }
  4074. .navbar-expand .offcanvas .offcanvas-header {
  4075. display: none;
  4076. }
  4077. .navbar-expand .offcanvas .offcanvas-body {
  4078. display: flex;
  4079. flex-grow: 0;
  4080. padding: 0;
  4081. overflow-y: visible;
  4082. }
  4083. .navbar-dark {
  4084. --bs-navbar-color: rgba(255, 255, 255, 0.55);
  4085. --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  4086. --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  4087. --bs-navbar-active-color: #fff;
  4088. --bs-navbar-brand-color: #fff;
  4089. --bs-navbar-brand-hover-color: #fff;
  4090. --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  4091. --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  4092. }
  4093. [data-bs-theme=dark] .navbar-toggler-icon {
  4094. --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  4095. }
  4096. .card {
  4097. --bs-card-spacer-y: 1rem;
  4098. --bs-card-spacer-x: 1rem;
  4099. --bs-card-title-spacer-y: 0.5rem;
  4100. --bs-card-title-color: ;
  4101. --bs-card-subtitle-color: ;
  4102. --bs-card-border-width: var(--bs-border-width);
  4103. --bs-card-border-color: var(--bs-border-color-translucent);
  4104. --bs-card-border-radius: var(--bs-border-radius);
  4105. --bs-card-box-shadow: ;
  4106. --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  4107. --bs-card-cap-padding-y: 0.5rem;
  4108. --bs-card-cap-padding-x: 1rem;
  4109. --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  4110. --bs-card-cap-color: ;
  4111. --bs-card-height: ;
  4112. --bs-card-color: ;
  4113. --bs-card-bg: var(--bs-body-bg);
  4114. --bs-card-img-overlay-padding: 1rem;
  4115. --bs-card-group-margin: 0.75rem;
  4116. position: relative;
  4117. display: flex;
  4118. flex-direction: column;
  4119. min-width: 0;
  4120. height: var(--bs-card-height);
  4121. color: var(--bs-body-color);
  4122. word-wrap: break-word;
  4123. background-color: var(--bs-card-bg);
  4124. background-clip: border-box;
  4125. border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4126. border-radius: var(--bs-card-border-radius);
  4127. }
  4128. .card > hr {
  4129. margin-right: 0;
  4130. margin-left: 0;
  4131. }
  4132. .card > .list-group {
  4133. border-top: inherit;
  4134. border-bottom: inherit;
  4135. }
  4136. .card > .list-group:first-child {
  4137. border-top-width: 0;
  4138. border-top-left-radius: var(--bs-card-inner-border-radius);
  4139. border-top-right-radius: var(--bs-card-inner-border-radius);
  4140. }
  4141. .card > .list-group:last-child {
  4142. border-bottom-width: 0;
  4143. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  4144. border-bottom-left-radius: var(--bs-card-inner-border-radius);
  4145. }
  4146. .card > .card-header + .list-group,
  4147. .card > .list-group + .card-footer {
  4148. border-top: 0;
  4149. }
  4150. .card-body {
  4151. flex: 1 1 auto;
  4152. padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  4153. color: var(--bs-card-color);
  4154. }
  4155. .card-title {
  4156. margin-bottom: var(--bs-card-title-spacer-y);
  4157. color: var(--bs-card-title-color);
  4158. }
  4159. .card-subtitle {
  4160. margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  4161. margin-bottom: 0;
  4162. color: var(--bs-card-subtitle-color);
  4163. }
  4164. .card-text:last-child {
  4165. margin-bottom: 0;
  4166. }
  4167. .card-link + .card-link {
  4168. margin-left: var(--bs-card-spacer-x);
  4169. }
  4170. .card-header {
  4171. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  4172. margin-bottom: 0;
  4173. color: var(--bs-card-cap-color);
  4174. background-color: var(--bs-card-cap-bg);
  4175. border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4176. }
  4177. .card-header:first-child {
  4178. border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
  4179. }
  4180. .card-footer {
  4181. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  4182. color: var(--bs-card-cap-color);
  4183. background-color: var(--bs-card-cap-bg);
  4184. border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4185. }
  4186. .card-footer:last-child {
  4187. border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
  4188. }
  4189. .card-header-tabs {
  4190. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4191. margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  4192. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4193. border-bottom: 0;
  4194. }
  4195. .card-header-tabs .nav-link.active {
  4196. background-color: var(--bs-card-bg);
  4197. border-bottom-color: var(--bs-card-bg);
  4198. }
  4199. .card-header-pills {
  4200. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4201. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4202. }
  4203. .card-img-overlay {
  4204. position: absolute;
  4205. top: 0;
  4206. right: 0;
  4207. bottom: 0;
  4208. left: 0;
  4209. padding: var(--bs-card-img-overlay-padding);
  4210. border-radius: var(--bs-card-inner-border-radius);
  4211. }
  4212. .card-img,
  4213. .card-img-top,
  4214. .card-img-bottom {
  4215. width: 100%;
  4216. }
  4217. .card-img,
  4218. .card-img-top {
  4219. border-top-left-radius: var(--bs-card-inner-border-radius);
  4220. border-top-right-radius: var(--bs-card-inner-border-radius);
  4221. }
  4222. .card-img,
  4223. .card-img-bottom {
  4224. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  4225. border-bottom-left-radius: var(--bs-card-inner-border-radius);
  4226. }
  4227. .card-group > .card {
  4228. margin-bottom: var(--bs-card-group-margin);
  4229. }
  4230. @media (min-width: 576px) {
  4231. .card-group {
  4232. display: flex;
  4233. flex-flow: row wrap;
  4234. }
  4235. .card-group > .card {
  4236. flex: 1 0 0%;
  4237. margin-bottom: 0;
  4238. }
  4239. .card-group > .card + .card {
  4240. margin-left: 0;
  4241. border-left: 0;
  4242. }
  4243. .card-group > .card:not(:last-child) {
  4244. border-top-right-radius: 0;
  4245. border-bottom-right-radius: 0;
  4246. }
  4247. .card-group > .card:not(:last-child) .card-img-top,
  4248. .card-group > .card:not(:last-child) .card-header {
  4249. border-top-right-radius: 0;
  4250. }
  4251. .card-group > .card:not(:last-child) .card-img-bottom,
  4252. .card-group > .card:not(:last-child) .card-footer {
  4253. border-bottom-right-radius: 0;
  4254. }
  4255. .card-group > .card:not(:first-child) {
  4256. border-top-left-radius: 0;
  4257. border-bottom-left-radius: 0;
  4258. }
  4259. .card-group > .card:not(:first-child) .card-img-top,
  4260. .card-group > .card:not(:first-child) .card-header {
  4261. border-top-left-radius: 0;
  4262. }
  4263. .card-group > .card:not(:first-child) .card-img-bottom,
  4264. .card-group > .card:not(:first-child) .card-footer {
  4265. border-bottom-left-radius: 0;
  4266. }
  4267. }
  4268. .accordion {
  4269. --bs-accordion-color: var(--bs-body-color);
  4270. --bs-accordion-bg: var(--bs-body-bg);
  4271. --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  4272. --bs-accordion-border-color: var(--bs-border-color);
  4273. --bs-accordion-border-width: var(--bs-border-width);
  4274. --bs-accordion-border-radius: var(--bs-border-radius);
  4275. --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  4276. --bs-accordion-btn-padding-x: 1.25rem;
  4277. --bs-accordion-btn-padding-y: 1rem;
  4278. --bs-accordion-btn-color: var(--bs-body-color);
  4279. --bs-accordion-btn-bg: var(--bs-accordion-bg);
  4280. --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  4281. --bs-accordion-btn-icon-width: 1.25rem;
  4282. --bs-accordion-btn-icon-transform: rotate(-180deg);
  4283. --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  4284. --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  4285. --bs-accordion-btn-focus-border-color: #86b7fe;
  4286. --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4287. --bs-accordion-body-padding-x: 1.25rem;
  4288. --bs-accordion-body-padding-y: 1rem;
  4289. --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  4290. --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
  4291. }
  4292. .accordion-button {
  4293. position: relative;
  4294. display: flex;
  4295. align-items: center;
  4296. width: 100%;
  4297. padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  4298. font-size: 1rem;
  4299. color: var(--bs-accordion-btn-color);
  4300. text-align: left;
  4301. background-color: var(--bs-accordion-btn-bg);
  4302. border: 0;
  4303. border-radius: 0;
  4304. overflow-anchor: none;
  4305. transition: var(--bs-accordion-transition);
  4306. }
  4307. @media (prefers-reduced-motion: reduce) {
  4308. .accordion-button {
  4309. transition: none;
  4310. }
  4311. }
  4312. .accordion-button:not(.collapsed) {
  4313. color: var(--bs-accordion-active-color);
  4314. background-color: var(--bs-accordion-active-bg);
  4315. box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  4316. }
  4317. .accordion-button:not(.collapsed)::after {
  4318. background-image: var(--bs-accordion-btn-active-icon);
  4319. transform: var(--bs-accordion-btn-icon-transform);
  4320. }
  4321. .accordion-button::after {
  4322. flex-shrink: 0;
  4323. width: var(--bs-accordion-btn-icon-width);
  4324. height: var(--bs-accordion-btn-icon-width);
  4325. margin-left: auto;
  4326. content: "";
  4327. background-image: var(--bs-accordion-btn-icon);
  4328. background-repeat: no-repeat;
  4329. background-size: var(--bs-accordion-btn-icon-width);
  4330. transition: var(--bs-accordion-btn-icon-transition);
  4331. }
  4332. @media (prefers-reduced-motion: reduce) {
  4333. .accordion-button::after {
  4334. transition: none;
  4335. }
  4336. }
  4337. .accordion-button:hover {
  4338. z-index: 2;
  4339. }
  4340. .accordion-button:focus {
  4341. z-index: 3;
  4342. border-color: var(--bs-accordion-btn-focus-border-color);
  4343. outline: 0;
  4344. box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  4345. }
  4346. .accordion-header {
  4347. margin-bottom: 0;
  4348. }
  4349. .accordion-item {
  4350. color: var(--bs-accordion-color);
  4351. background-color: var(--bs-accordion-bg);
  4352. border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
  4353. }
  4354. .accordion-item:first-of-type {
  4355. border-top-left-radius: var(--bs-accordion-border-radius);
  4356. border-top-right-radius: var(--bs-accordion-border-radius);
  4357. }
  4358. .accordion-item:first-of-type .accordion-button {
  4359. border-top-left-radius: var(--bs-accordion-inner-border-radius);
  4360. border-top-right-radius: var(--bs-accordion-inner-border-radius);
  4361. }
  4362. .accordion-item:not(:first-of-type) {
  4363. border-top: 0;
  4364. }
  4365. .accordion-item:last-of-type {
  4366. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4367. border-bottom-left-radius: var(--bs-accordion-border-radius);
  4368. }
  4369. .accordion-item:last-of-type .accordion-button.collapsed {
  4370. border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  4371. border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
  4372. }
  4373. .accordion-item:last-of-type .accordion-collapse {
  4374. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4375. border-bottom-left-radius: var(--bs-accordion-border-radius);
  4376. }
  4377. .accordion-body {
  4378. padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  4379. }
  4380. .accordion-flush .accordion-collapse {
  4381. border-width: 0;
  4382. }
  4383. .accordion-flush .accordion-item {
  4384. border-right: 0;
  4385. border-left: 0;
  4386. border-radius: 0;
  4387. }
  4388. .accordion-flush .accordion-item:first-child {
  4389. border-top: 0;
  4390. }
  4391. .accordion-flush .accordion-item:last-child {
  4392. border-bottom: 0;
  4393. }
  4394. .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
  4395. border-radius: 0;
  4396. }
  4397. [data-bs-theme=dark] .accordion-button::after {
  4398. --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  4399. --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  4400. }
  4401. .breadcrumb {
  4402. --bs-breadcrumb-padding-x: 0;
  4403. --bs-breadcrumb-padding-y: 0;
  4404. --bs-breadcrumb-margin-bottom: 1rem;
  4405. --bs-breadcrumb-bg: ;
  4406. --bs-breadcrumb-border-radius: ;
  4407. --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  4408. --bs-breadcrumb-item-padding-x: 0.5rem;
  4409. --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  4410. display: flex;
  4411. flex-wrap: wrap;
  4412. padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  4413. margin-bottom: var(--bs-breadcrumb-margin-bottom);
  4414. font-size: var(--bs-breadcrumb-font-size);
  4415. list-style: none;
  4416. background-color: var(--bs-breadcrumb-bg);
  4417. border-radius: var(--bs-breadcrumb-border-radius);
  4418. }
  4419. .breadcrumb-item + .breadcrumb-item {
  4420. padding-left: var(--bs-breadcrumb-item-padding-x);
  4421. }
  4422. .breadcrumb-item + .breadcrumb-item::before {
  4423. float: left;
  4424. padding-right: var(--bs-breadcrumb-item-padding-x);
  4425. color: var(--bs-breadcrumb-divider-color);
  4426. content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
  4427. }
  4428. .breadcrumb-item.active {
  4429. color: var(--bs-breadcrumb-item-active-color);
  4430. }
  4431. .pagination {
  4432. --bs-pagination-padding-x: 0.75rem;
  4433. --bs-pagination-padding-y: 0.375rem;
  4434. --bs-pagination-font-size: 1rem;
  4435. --bs-pagination-color: var(--bs-link-color);
  4436. --bs-pagination-bg: var(--bs-body-bg);
  4437. --bs-pagination-border-width: var(--bs-border-width);
  4438. --bs-pagination-border-color: var(--bs-border-color);
  4439. --bs-pagination-border-radius: var(--bs-border-radius);
  4440. --bs-pagination-hover-color: var(--bs-link-hover-color);
  4441. --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  4442. --bs-pagination-hover-border-color: var(--bs-border-color);
  4443. --bs-pagination-focus-color: var(--bs-link-hover-color);
  4444. --bs-pagination-focus-bg: var(--bs-secondary-bg);
  4445. --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4446. --bs-pagination-active-color: #fff;
  4447. --bs-pagination-active-bg: #0d6efd;
  4448. --bs-pagination-active-border-color: #0d6efd;
  4449. --bs-pagination-disabled-color: var(--bs-secondary-color);
  4450. --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  4451. --bs-pagination-disabled-border-color: var(--bs-border-color);
  4452. display: flex;
  4453. padding-left: 0;
  4454. list-style: none;
  4455. }
  4456. .page-link {
  4457. position: relative;
  4458. display: block;
  4459. padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  4460. font-size: var(--bs-pagination-font-size);
  4461. color: var(--bs-pagination-color);
  4462. text-decoration: none;
  4463. background-color: var(--bs-pagination-bg);
  4464. border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  4465. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  4466. }
  4467. @media (prefers-reduced-motion: reduce) {
  4468. .page-link {
  4469. transition: none;
  4470. }
  4471. }
  4472. .page-link:hover {
  4473. z-index: 2;
  4474. color: var(--bs-pagination-hover-color);
  4475. background-color: var(--bs-pagination-hover-bg);
  4476. border-color: var(--bs-pagination-hover-border-color);
  4477. }
  4478. .page-link:focus {
  4479. z-index: 3;
  4480. color: var(--bs-pagination-focus-color);
  4481. background-color: var(--bs-pagination-focus-bg);
  4482. outline: 0;
  4483. box-shadow: var(--bs-pagination-focus-box-shadow);
  4484. }
  4485. .page-link.active, .active > .page-link {
  4486. z-index: 3;
  4487. color: var(--bs-pagination-active-color);
  4488. background-color: var(--bs-pagination-active-bg);
  4489. border-color: var(--bs-pagination-active-border-color);
  4490. }
  4491. .page-link.disabled, .disabled > .page-link {
  4492. color: var(--bs-pagination-disabled-color);
  4493. pointer-events: none;
  4494. background-color: var(--bs-pagination-disabled-bg);
  4495. border-color: var(--bs-pagination-disabled-border-color);
  4496. }
  4497. .page-item:not(:first-child) .page-link {
  4498. margin-left: calc(var(--bs-border-width) * -1);
  4499. }
  4500. .page-item:first-child .page-link {
  4501. border-top-left-radius: var(--bs-pagination-border-radius);
  4502. border-bottom-left-radius: var(--bs-pagination-border-radius);
  4503. }
  4504. .page-item:last-child .page-link {
  4505. border-top-right-radius: var(--bs-pagination-border-radius);
  4506. border-bottom-right-radius: var(--bs-pagination-border-radius);
  4507. }
  4508. .pagination-lg {
  4509. --bs-pagination-padding-x: 1.5rem;
  4510. --bs-pagination-padding-y: 0.75rem;
  4511. --bs-pagination-font-size: 1.25rem;
  4512. --bs-pagination-border-radius: 0.5rem;
  4513. }
  4514. .pagination-sm {
  4515. --bs-pagination-padding-x: 0.5rem;
  4516. --bs-pagination-padding-y: 0.25rem;
  4517. --bs-pagination-font-size: 0.875rem;
  4518. --bs-pagination-border-radius: 0.25rem;
  4519. }
  4520. .badge {
  4521. --bs-badge-padding-x: 0.65em;
  4522. --bs-badge-padding-y: 0.35em;
  4523. --bs-badge-font-size: 0.75em;
  4524. --bs-badge-font-weight: 700;
  4525. --bs-badge-color: #fff;
  4526. --bs-badge-border-radius: 0.375rem;
  4527. display: inline-block;
  4528. padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  4529. font-size: var(--bs-badge-font-size);
  4530. font-weight: var(--bs-badge-font-weight);
  4531. line-height: 1;
  4532. color: var(--bs-badge-color);
  4533. text-align: center;
  4534. white-space: nowrap;
  4535. vertical-align: baseline;
  4536. border-radius: var(--bs-badge-border-radius);
  4537. }
  4538. .badge:empty {
  4539. display: none;
  4540. }
  4541. .btn .badge {
  4542. position: relative;
  4543. top: -1px;
  4544. }
  4545. .alert {
  4546. --bs-alert-bg: transparent;
  4547. --bs-alert-padding-x: 1rem;
  4548. --bs-alert-padding-y: 1rem;
  4549. --bs-alert-margin-bottom: 1rem;
  4550. --bs-alert-color: inherit;
  4551. --bs-alert-border-color: transparent;
  4552. --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  4553. --bs-alert-border-radius: 0.375rem;
  4554. --bs-alert-link-color: inherit;
  4555. position: relative;
  4556. padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  4557. margin-bottom: var(--bs-alert-margin-bottom);
  4558. color: var(--bs-alert-color);
  4559. background-color: var(--bs-alert-bg);
  4560. border: var(--bs-alert-border);
  4561. border-radius: var(--bs-alert-border-radius);
  4562. }
  4563. .alert-heading {
  4564. color: inherit;
  4565. }
  4566. .alert-link {
  4567. font-weight: 700;
  4568. color: var(--bs-alert-link-color);
  4569. }
  4570. .alert-dismissible {
  4571. padding-right: 3rem;
  4572. }
  4573. .alert-dismissible .btn-close {
  4574. position: absolute;
  4575. top: 0;
  4576. right: 0;
  4577. z-index: 2;
  4578. padding: 1.25rem 1rem;
  4579. }
  4580. .alert-primary {
  4581. --bs-alert-color: var(--bs-primary-text-emphasis);
  4582. --bs-alert-bg: var(--bs-primary-bg-subtle);
  4583. --bs-alert-border-color: var(--bs-primary-border-subtle);
  4584. --bs-alert-link-color: var(--bs-primary-text-emphasis);
  4585. }
  4586. .alert-secondary {
  4587. --bs-alert-color: var(--bs-secondary-text-emphasis);
  4588. --bs-alert-bg: var(--bs-secondary-bg-subtle);
  4589. --bs-alert-border-color: var(--bs-secondary-border-subtle);
  4590. --bs-alert-link-color: var(--bs-secondary-text-emphasis);
  4591. }
  4592. .alert-success {
  4593. --bs-alert-color: var(--bs-success-text-emphasis);
  4594. --bs-alert-bg: var(--bs-success-bg-subtle);
  4595. --bs-alert-border-color: var(--bs-success-border-subtle);
  4596. --bs-alert-link-color: var(--bs-success-text-emphasis);
  4597. }
  4598. .alert-info {
  4599. --bs-alert-color: var(--bs-info-text-emphasis);
  4600. --bs-alert-bg: var(--bs-info-bg-subtle);
  4601. --bs-alert-border-color: var(--bs-info-border-subtle);
  4602. --bs-alert-link-color: var(--bs-info-text-emphasis);
  4603. }
  4604. .alert-warning {
  4605. --bs-alert-color: var(--bs-warning-text-emphasis);
  4606. --bs-alert-bg: var(--bs-warning-bg-subtle);
  4607. --bs-alert-border-color: var(--bs-warning-border-subtle);
  4608. --bs-alert-link-color: var(--bs-warning-text-emphasis);
  4609. }
  4610. .alert-danger {
  4611. --bs-alert-color: var(--bs-danger-text-emphasis);
  4612. --bs-alert-bg: var(--bs-danger-bg-subtle);
  4613. --bs-alert-border-color: var(--bs-danger-border-subtle);
  4614. --bs-alert-link-color: var(--bs-danger-text-emphasis);
  4615. }
  4616. .alert-light {
  4617. --bs-alert-color: var(--bs-light-text-emphasis);
  4618. --bs-alert-bg: var(--bs-light-bg-subtle);
  4619. --bs-alert-border-color: var(--bs-light-border-subtle);
  4620. --bs-alert-link-color: var(--bs-light-text-emphasis);
  4621. }
  4622. .alert-dark {
  4623. --bs-alert-color: var(--bs-dark-text-emphasis);
  4624. --bs-alert-bg: var(--bs-dark-bg-subtle);
  4625. --bs-alert-border-color: var(--bs-dark-border-subtle);
  4626. --bs-alert-link-color: var(--bs-dark-text-emphasis);
  4627. }
  4628. @keyframes progress-bar-stripes {
  4629. 0% {
  4630. background-position-x: 1rem;
  4631. }
  4632. }
  4633. .progress,
  4634. .progress-stacked {
  4635. --bs-progress-height: 1rem;
  4636. --bs-progress-font-size: 0.75rem;
  4637. --bs-progress-bg: var(--bs-secondary-bg);
  4638. --bs-progress-border-radius: var(--bs-border-radius);
  4639. --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  4640. --bs-progress-bar-color: #fff;
  4641. --bs-progress-bar-bg: #0d6efd;
  4642. --bs-progress-bar-transition: width 0.6s ease;
  4643. display: flex;
  4644. height: var(--bs-progress-height);
  4645. overflow: hidden;
  4646. font-size: var(--bs-progress-font-size);
  4647. background-color: var(--bs-progress-bg);
  4648. border-radius: var(--bs-progress-border-radius);
  4649. }
  4650. .progress-bar {
  4651. display: flex;
  4652. flex-direction: column;
  4653. justify-content: center;
  4654. overflow: hidden;
  4655. color: var(--bs-progress-bar-color);
  4656. text-align: center;
  4657. white-space: nowrap;
  4658. background-color: var(--bs-progress-bar-bg);
  4659. transition: var(--bs-progress-bar-transition);
  4660. }
  4661. @media (prefers-reduced-motion: reduce) {
  4662. .progress-bar {
  4663. transition: none;
  4664. }
  4665. }
  4666. .progress-bar-striped {
  4667. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4668. background-size: var(--bs-progress-height) var(--bs-progress-height);
  4669. }
  4670. .progress-stacked > .progress {
  4671. overflow: visible;
  4672. }
  4673. .progress-stacked > .progress > .progress-bar {
  4674. width: 100%;
  4675. }
  4676. .progress-bar-animated {
  4677. animation: 1s linear infinite progress-bar-stripes;
  4678. }
  4679. @media (prefers-reduced-motion: reduce) {
  4680. .progress-bar-animated {
  4681. animation: none;
  4682. }
  4683. }
  4684. .list-group {
  4685. --bs-list-group-color: var(--bs-body-color);
  4686. --bs-list-group-bg: var(--bs-body-bg);
  4687. --bs-list-group-border-color: var(--bs-border-color);
  4688. --bs-list-group-border-width: var(--bs-border-width);
  4689. --bs-list-group-border-radius: var(--bs-border-radius);
  4690. --bs-list-group-item-padding-x: 1rem;
  4691. --bs-list-group-item-padding-y: 0.5rem;
  4692. --bs-list-group-action-color: var(--bs-secondary-color);
  4693. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4694. --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  4695. --bs-list-group-action-active-color: var(--bs-body-color);
  4696. --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  4697. --bs-list-group-disabled-color: var(--bs-secondary-color);
  4698. --bs-list-group-disabled-bg: var(--bs-body-bg);
  4699. --bs-list-group-active-color: #fff;
  4700. --bs-list-group-active-bg: #0d6efd;
  4701. --bs-list-group-active-border-color: #0d6efd;
  4702. display: flex;
  4703. flex-direction: column;
  4704. padding-left: 0;
  4705. margin-bottom: 0;
  4706. border-radius: var(--bs-list-group-border-radius);
  4707. }
  4708. .list-group-numbered {
  4709. list-style-type: none;
  4710. counter-reset: section;
  4711. }
  4712. .list-group-numbered > .list-group-item::before {
  4713. content: counters(section, ".") ". ";
  4714. counter-increment: section;
  4715. }
  4716. .list-group-item-action {
  4717. width: 100%;
  4718. color: var(--bs-list-group-action-color);
  4719. text-align: inherit;
  4720. }
  4721. .list-group-item-action:hover, .list-group-item-action:focus {
  4722. z-index: 1;
  4723. color: var(--bs-list-group-action-hover-color);
  4724. text-decoration: none;
  4725. background-color: var(--bs-list-group-action-hover-bg);
  4726. }
  4727. .list-group-item-action:active {
  4728. color: var(--bs-list-group-action-active-color);
  4729. background-color: var(--bs-list-group-action-active-bg);
  4730. }
  4731. .list-group-item {
  4732. position: relative;
  4733. display: block;
  4734. padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  4735. color: var(--bs-list-group-color);
  4736. text-decoration: none;
  4737. background-color: var(--bs-list-group-bg);
  4738. border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
  4739. }
  4740. .list-group-item:first-child {
  4741. border-top-left-radius: inherit;
  4742. border-top-right-radius: inherit;
  4743. }
  4744. .list-group-item:last-child {
  4745. border-bottom-right-radius: inherit;
  4746. border-bottom-left-radius: inherit;
  4747. }
  4748. .list-group-item.disabled, .list-group-item:disabled {
  4749. color: var(--bs-list-group-disabled-color);
  4750. pointer-events: none;
  4751. background-color: var(--bs-list-group-disabled-bg);
  4752. }
  4753. .list-group-item.active {
  4754. z-index: 2;
  4755. color: var(--bs-list-group-active-color);
  4756. background-color: var(--bs-list-group-active-bg);
  4757. border-color: var(--bs-list-group-active-border-color);
  4758. }
  4759. .list-group-item + .list-group-item {
  4760. border-top-width: 0;
  4761. }
  4762. .list-group-item + .list-group-item.active {
  4763. margin-top: calc(-1 * var(--bs-list-group-border-width));
  4764. border-top-width: var(--bs-list-group-border-width);
  4765. }
  4766. .list-group-horizontal {
  4767. flex-direction: row;
  4768. }
  4769. .list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  4770. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4771. border-top-right-radius: 0;
  4772. }
  4773. .list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  4774. border-top-right-radius: var(--bs-list-group-border-radius);
  4775. border-bottom-left-radius: 0;
  4776. }
  4777. .list-group-horizontal > .list-group-item.active {
  4778. margin-top: 0;
  4779. }
  4780. .list-group-horizontal > .list-group-item + .list-group-item {
  4781. border-top-width: var(--bs-list-group-border-width);
  4782. border-left-width: 0;
  4783. }
  4784. .list-group-horizontal > .list-group-item + .list-group-item.active {
  4785. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4786. border-left-width: var(--bs-list-group-border-width);
  4787. }
  4788. @media (min-width: 576px) {
  4789. .list-group-horizontal-sm {
  4790. flex-direction: row;
  4791. }
  4792. .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
  4793. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4794. border-top-right-radius: 0;
  4795. }
  4796. .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
  4797. border-top-right-radius: var(--bs-list-group-border-radius);
  4798. border-bottom-left-radius: 0;
  4799. }
  4800. .list-group-horizontal-sm > .list-group-item.active {
  4801. margin-top: 0;
  4802. }
  4803. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  4804. border-top-width: var(--bs-list-group-border-width);
  4805. border-left-width: 0;
  4806. }
  4807. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  4808. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4809. border-left-width: var(--bs-list-group-border-width);
  4810. }
  4811. }
  4812. @media (min-width: 768px) {
  4813. .list-group-horizontal-md {
  4814. flex-direction: row;
  4815. }
  4816. .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
  4817. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4818. border-top-right-radius: 0;
  4819. }
  4820. .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
  4821. border-top-right-radius: var(--bs-list-group-border-radius);
  4822. border-bottom-left-radius: 0;
  4823. }
  4824. .list-group-horizontal-md > .list-group-item.active {
  4825. margin-top: 0;
  4826. }
  4827. .list-group-horizontal-md > .list-group-item + .list-group-item {
  4828. border-top-width: var(--bs-list-group-border-width);
  4829. border-left-width: 0;
  4830. }
  4831. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  4832. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4833. border-left-width: var(--bs-list-group-border-width);
  4834. }
  4835. }
  4836. @media (min-width: 992px) {
  4837. .list-group-horizontal-lg {
  4838. flex-direction: row;
  4839. }
  4840. .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
  4841. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4842. border-top-right-radius: 0;
  4843. }
  4844. .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
  4845. border-top-right-radius: var(--bs-list-group-border-radius);
  4846. border-bottom-left-radius: 0;
  4847. }
  4848. .list-group-horizontal-lg > .list-group-item.active {
  4849. margin-top: 0;
  4850. }
  4851. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  4852. border-top-width: var(--bs-list-group-border-width);
  4853. border-left-width: 0;
  4854. }
  4855. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  4856. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4857. border-left-width: var(--bs-list-group-border-width);
  4858. }
  4859. }
  4860. @media (min-width: 1200px) {
  4861. .list-group-horizontal-xl {
  4862. flex-direction: row;
  4863. }
  4864. .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
  4865. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4866. border-top-right-radius: 0;
  4867. }
  4868. .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
  4869. border-top-right-radius: var(--bs-list-group-border-radius);
  4870. border-bottom-left-radius: 0;
  4871. }
  4872. .list-group-horizontal-xl > .list-group-item.active {
  4873. margin-top: 0;
  4874. }
  4875. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  4876. border-top-width: var(--bs-list-group-border-width);
  4877. border-left-width: 0;
  4878. }
  4879. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  4880. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4881. border-left-width: var(--bs-list-group-border-width);
  4882. }
  4883. }
  4884. @media (min-width: 1400px) {
  4885. .list-group-horizontal-xxl {
  4886. flex-direction: row;
  4887. }
  4888. .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
  4889. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4890. border-top-right-radius: 0;
  4891. }
  4892. .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
  4893. border-top-right-radius: var(--bs-list-group-border-radius);
  4894. border-bottom-left-radius: 0;
  4895. }
  4896. .list-group-horizontal-xxl > .list-group-item.active {
  4897. margin-top: 0;
  4898. }
  4899. .list-group-horizontal-xxl > .list-group-item + .list-group-item {
  4900. border-top-width: var(--bs-list-group-border-width);
  4901. border-left-width: 0;
  4902. }
  4903. .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
  4904. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4905. border-left-width: var(--bs-list-group-border-width);
  4906. }
  4907. }
  4908. .list-group-flush {
  4909. border-radius: 0;
  4910. }
  4911. .list-group-flush > .list-group-item {
  4912. border-width: 0 0 var(--bs-list-group-border-width);
  4913. }
  4914. .list-group-flush > .list-group-item:last-child {
  4915. border-bottom-width: 0;
  4916. }
  4917. .list-group-item-primary {
  4918. --bs-list-group-color: var(--bs-primary-text-emphasis);
  4919. --bs-list-group-bg: var(--bs-primary-bg-subtle);
  4920. --bs-list-group-border-color: var(--bs-primary-border-subtle);
  4921. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4922. --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  4923. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4924. --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  4925. --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  4926. --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  4927. --bs-list-group-active-border-color: var(--bs-primary-text-emphasis);
  4928. }
  4929. .list-group-item-secondary {
  4930. --bs-list-group-color: var(--bs-secondary-text-emphasis);
  4931. --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  4932. --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  4933. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4934. --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  4935. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4936. --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  4937. --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  4938. --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  4939. --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
  4940. }
  4941. .list-group-item-success {
  4942. --bs-list-group-color: var(--bs-success-text-emphasis);
  4943. --bs-list-group-bg: var(--bs-success-bg-subtle);
  4944. --bs-list-group-border-color: var(--bs-success-border-subtle);
  4945. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4946. --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  4947. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4948. --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  4949. --bs-list-group-active-color: var(--bs-success-bg-subtle);
  4950. --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  4951. --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
  4952. }
  4953. .list-group-item-info {
  4954. --bs-list-group-color: var(--bs-info-text-emphasis);
  4955. --bs-list-group-bg: var(--bs-info-bg-subtle);
  4956. --bs-list-group-border-color: var(--bs-info-border-subtle);
  4957. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4958. --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  4959. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4960. --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  4961. --bs-list-group-active-color: var(--bs-info-bg-subtle);
  4962. --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  4963. --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
  4964. }
  4965. .list-group-item-warning {
  4966. --bs-list-group-color: var(--bs-warning-text-emphasis);
  4967. --bs-list-group-bg: var(--bs-warning-bg-subtle);
  4968. --bs-list-group-border-color: var(--bs-warning-border-subtle);
  4969. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4970. --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  4971. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4972. --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  4973. --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  4974. --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  4975. --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
  4976. }
  4977. .list-group-item-danger {
  4978. --bs-list-group-color: var(--bs-danger-text-emphasis);
  4979. --bs-list-group-bg: var(--bs-danger-bg-subtle);
  4980. --bs-list-group-border-color: var(--bs-danger-border-subtle);
  4981. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4982. --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  4983. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4984. --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  4985. --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  4986. --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  4987. --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
  4988. }
  4989. .list-group-item-light {
  4990. --bs-list-group-color: var(--bs-light-text-emphasis);
  4991. --bs-list-group-bg: var(--bs-light-bg-subtle);
  4992. --bs-list-group-border-color: var(--bs-light-border-subtle);
  4993. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4994. --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  4995. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4996. --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  4997. --bs-list-group-active-color: var(--bs-light-bg-subtle);
  4998. --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  4999. --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
  5000. }
  5001. .list-group-item-dark {
  5002. --bs-list-group-color: var(--bs-dark-text-emphasis);
  5003. --bs-list-group-bg: var(--bs-dark-bg-subtle);
  5004. --bs-list-group-border-color: var(--bs-dark-border-subtle);
  5005. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  5006. --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  5007. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  5008. --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  5009. --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  5010. --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  5011. --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
  5012. }
  5013. .btn-close {
  5014. --bs-btn-close-color: #000;
  5015. --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  5016. --bs-btn-close-opacity: 0.5;
  5017. --bs-btn-close-hover-opacity: 0.75;
  5018. --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  5019. --bs-btn-close-focus-opacity: 1;
  5020. --bs-btn-close-disabled-opacity: 0.25;
  5021. --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  5022. box-sizing: content-box;
  5023. width: 1em;
  5024. height: 1em;
  5025. padding: 0.25em 0.25em;
  5026. color: var(--bs-btn-close-color);
  5027. background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  5028. border: 0;
  5029. border-radius: 0.375rem;
  5030. opacity: var(--bs-btn-close-opacity);
  5031. }
  5032. .btn-close:hover {
  5033. color: var(--bs-btn-close-color);
  5034. text-decoration: none;
  5035. opacity: var(--bs-btn-close-hover-opacity);
  5036. }
  5037. .btn-close:focus {
  5038. outline: 0;
  5039. box-shadow: var(--bs-btn-close-focus-shadow);
  5040. opacity: var(--bs-btn-close-focus-opacity);
  5041. }
  5042. .btn-close:disabled, .btn-close.disabled {
  5043. pointer-events: none;
  5044. -webkit-user-select: none;
  5045. -moz-user-select: none;
  5046. user-select: none;
  5047. opacity: var(--bs-btn-close-disabled-opacity);
  5048. }
  5049. .btn-close-white {
  5050. filter: var(--bs-btn-close-white-filter);
  5051. }
  5052. [data-bs-theme=dark] .btn-close {
  5053. filter: var(--bs-btn-close-white-filter);
  5054. }
  5055. .toast {
  5056. --bs-toast-zindex: 1090;
  5057. --bs-toast-padding-x: 0.75rem;
  5058. --bs-toast-padding-y: 0.5rem;
  5059. --bs-toast-spacing: 1.5rem;
  5060. --bs-toast-max-width: 350px;
  5061. --bs-toast-font-size: 0.875rem;
  5062. --bs-toast-color: ;
  5063. --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  5064. --bs-toast-border-width: var(--bs-border-width);
  5065. --bs-toast-border-color: var(--bs-border-color-translucent);
  5066. --bs-toast-border-radius: var(--bs-border-radius);
  5067. --bs-toast-box-shadow: var(--bs-box-shadow);
  5068. --bs-toast-header-color: var(--bs-secondary-color);
  5069. --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  5070. --bs-toast-header-border-color: var(--bs-border-color-translucent);
  5071. width: var(--bs-toast-max-width);
  5072. max-width: 100%;
  5073. font-size: var(--bs-toast-font-size);
  5074. color: var(--bs-toast-color);
  5075. pointer-events: auto;
  5076. background-color: var(--bs-toast-bg);
  5077. background-clip: padding-box;
  5078. border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  5079. box-shadow: var(--bs-toast-box-shadow);
  5080. border-radius: var(--bs-toast-border-radius);
  5081. }
  5082. .toast.showing {
  5083. opacity: 0;
  5084. }
  5085. .toast:not(.show) {
  5086. display: none;
  5087. }
  5088. .toast-container {
  5089. --bs-toast-zindex: 1090;
  5090. position: absolute;
  5091. z-index: var(--bs-toast-zindex);
  5092. width: -webkit-max-content;
  5093. width: -moz-max-content;
  5094. width: max-content;
  5095. max-width: 100%;
  5096. pointer-events: none;
  5097. }
  5098. .toast-container > :not(:last-child) {
  5099. margin-bottom: var(--bs-toast-spacing);
  5100. }
  5101. .toast-header {
  5102. display: flex;
  5103. align-items: center;
  5104. padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  5105. color: var(--bs-toast-header-color);
  5106. background-color: var(--bs-toast-header-bg);
  5107. background-clip: padding-box;
  5108. border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  5109. border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  5110. border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  5111. }
  5112. .toast-header .btn-close {
  5113. margin-right: calc(-0.5 * var(--bs-toast-padding-x));
  5114. margin-left: var(--bs-toast-padding-x);
  5115. }
  5116. .toast-body {
  5117. padding: var(--bs-toast-padding-x);
  5118. word-wrap: break-word;
  5119. }
  5120. .modal {
  5121. --bs-modal-zindex: 1055;
  5122. --bs-modal-width: 500px;
  5123. --bs-modal-padding: 1rem;
  5124. --bs-modal-margin: 0.5rem;
  5125. --bs-modal-color: ;
  5126. --bs-modal-bg: var(--bs-body-bg);
  5127. --bs-modal-border-color: var(--bs-border-color-translucent);
  5128. --bs-modal-border-width: var(--bs-border-width);
  5129. --bs-modal-border-radius: var(--bs-border-radius-lg);
  5130. --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  5131. --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  5132. --bs-modal-header-padding-x: 1rem;
  5133. --bs-modal-header-padding-y: 1rem;
  5134. --bs-modal-header-padding: 1rem 1rem;
  5135. --bs-modal-header-border-color: var(--bs-border-color);
  5136. --bs-modal-header-border-width: var(--bs-border-width);
  5137. --bs-modal-title-line-height: 1.5;
  5138. --bs-modal-footer-gap: 0.5rem;
  5139. --bs-modal-footer-bg: ;
  5140. --bs-modal-footer-border-color: var(--bs-border-color);
  5141. --bs-modal-footer-border-width: var(--bs-border-width);
  5142. position: fixed;
  5143. top: 0;
  5144. left: 0;
  5145. z-index: var(--bs-modal-zindex);
  5146. display: none;
  5147. width: 100%;
  5148. height: 100%;
  5149. overflow-x: hidden;
  5150. overflow-y: auto;
  5151. outline: 0;
  5152. }
  5153. .modal-dialog {
  5154. position: relative;
  5155. width: auto;
  5156. margin: var(--bs-modal-margin);
  5157. pointer-events: none;
  5158. }
  5159. .modal.fade .modal-dialog {
  5160. transition: transform 0.3s ease-out;
  5161. transform: translate(0, -50px);
  5162. }
  5163. @media (prefers-reduced-motion: reduce) {
  5164. .modal.fade .modal-dialog {
  5165. transition: none;
  5166. }
  5167. }
  5168. .modal.show .modal-dialog {
  5169. transform: none;
  5170. }
  5171. .modal.modal-static .modal-dialog {
  5172. transform: scale(1.02);
  5173. }
  5174. .modal-dialog-scrollable {
  5175. height: calc(100% - var(--bs-modal-margin) * 2);
  5176. }
  5177. .modal-dialog-scrollable .modal-content {
  5178. max-height: 100%;
  5179. overflow: hidden;
  5180. }
  5181. .modal-dialog-scrollable .modal-body {
  5182. overflow-y: auto;
  5183. }
  5184. .modal-dialog-centered {
  5185. display: flex;
  5186. align-items: center;
  5187. min-height: calc(100% - var(--bs-modal-margin) * 2);
  5188. }
  5189. .modal-content {
  5190. position: relative;
  5191. display: flex;
  5192. flex-direction: column;
  5193. width: 100%;
  5194. color: var(--bs-modal-color);
  5195. pointer-events: auto;
  5196. background-color: var(--bs-modal-bg);
  5197. background-clip: padding-box;
  5198. border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  5199. border-radius: var(--bs-modal-border-radius);
  5200. outline: 0;
  5201. }
  5202. .modal-backdrop {
  5203. --bs-backdrop-zindex: 1050;
  5204. --bs-backdrop-bg: #000;
  5205. --bs-backdrop-opacity: 0.5;
  5206. position: fixed;
  5207. top: 0;
  5208. left: 0;
  5209. z-index: var(--bs-backdrop-zindex);
  5210. width: 100vw;
  5211. height: 100vh;
  5212. background-color: var(--bs-backdrop-bg);
  5213. }
  5214. .modal-backdrop.fade {
  5215. opacity: 0;
  5216. }
  5217. .modal-backdrop.show {
  5218. opacity: var(--bs-backdrop-opacity);
  5219. }
  5220. .modal-header {
  5221. display: flex;
  5222. flex-shrink: 0;
  5223. align-items: center;
  5224. justify-content: space-between;
  5225. padding: var(--bs-modal-header-padding);
  5226. border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  5227. border-top-left-radius: var(--bs-modal-inner-border-radius);
  5228. border-top-right-radius: var(--bs-modal-inner-border-radius);
  5229. }
  5230. .modal-header .btn-close {
  5231. padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  5232. margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
  5233. }
  5234. .modal-title {
  5235. margin-bottom: 0;
  5236. line-height: var(--bs-modal-title-line-height);
  5237. }
  5238. .modal-body {
  5239. position: relative;
  5240. flex: 1 1 auto;
  5241. padding: var(--bs-modal-padding);
  5242. }
  5243. .modal-footer {
  5244. display: flex;
  5245. flex-shrink: 0;
  5246. flex-wrap: wrap;
  5247. align-items: center;
  5248. justify-content: flex-end;
  5249. padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  5250. background-color: var(--bs-modal-footer-bg);
  5251. border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  5252. border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  5253. border-bottom-left-radius: var(--bs-modal-inner-border-radius);
  5254. }
  5255. .modal-footer > * {
  5256. margin: calc(var(--bs-modal-footer-gap) * 0.5);
  5257. }
  5258. @media (min-width: 576px) {
  5259. .modal {
  5260. --bs-modal-margin: 1.75rem;
  5261. --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  5262. }
  5263. .modal-dialog {
  5264. max-width: var(--bs-modal-width);
  5265. margin-right: auto;
  5266. margin-left: auto;
  5267. }
  5268. .modal-sm {
  5269. --bs-modal-width: 300px;
  5270. }
  5271. }
  5272. @media (min-width: 992px) {
  5273. .modal-lg,
  5274. .modal-xl {
  5275. --bs-modal-width: 800px;
  5276. }
  5277. }
  5278. @media (min-width: 1200px) {
  5279. .modal-xl {
  5280. --bs-modal-width: 1140px;
  5281. }
  5282. }
  5283. .modal-fullscreen {
  5284. width: 100vw;
  5285. max-width: none;
  5286. height: 100%;
  5287. margin: 0;
  5288. }
  5289. .modal-fullscreen .modal-content {
  5290. height: 100%;
  5291. border: 0;
  5292. border-radius: 0;
  5293. }
  5294. .modal-fullscreen .modal-header,
  5295. .modal-fullscreen .modal-footer {
  5296. border-radius: 0;
  5297. }
  5298. .modal-fullscreen .modal-body {
  5299. overflow-y: auto;
  5300. }
  5301. @media (max-width: 575.98px) {
  5302. .modal-fullscreen-sm-down {
  5303. width: 100vw;
  5304. max-width: none;
  5305. height: 100%;
  5306. margin: 0;
  5307. }
  5308. .modal-fullscreen-sm-down .modal-content {
  5309. height: 100%;
  5310. border: 0;
  5311. border-radius: 0;
  5312. }
  5313. .modal-fullscreen-sm-down .modal-header,
  5314. .modal-fullscreen-sm-down .modal-footer {
  5315. border-radius: 0;
  5316. }
  5317. .modal-fullscreen-sm-down .modal-body {
  5318. overflow-y: auto;
  5319. }
  5320. }
  5321. @media (max-width: 767.98px) {
  5322. .modal-fullscreen-md-down {
  5323. width: 100vw;
  5324. max-width: none;
  5325. height: 100%;
  5326. margin: 0;
  5327. }
  5328. .modal-fullscreen-md-down .modal-content {
  5329. height: 100%;
  5330. border: 0;
  5331. border-radius: 0;
  5332. }
  5333. .modal-fullscreen-md-down .modal-header,
  5334. .modal-fullscreen-md-down .modal-footer {
  5335. border-radius: 0;
  5336. }
  5337. .modal-fullscreen-md-down .modal-body {
  5338. overflow-y: auto;
  5339. }
  5340. }
  5341. @media (max-width: 991.98px) {
  5342. .modal-fullscreen-lg-down {
  5343. width: 100vw;
  5344. max-width: none;
  5345. height: 100%;
  5346. margin: 0;
  5347. }
  5348. .modal-fullscreen-lg-down .modal-content {
  5349. height: 100%;
  5350. border: 0;
  5351. border-radius: 0;
  5352. }
  5353. .modal-fullscreen-lg-down .modal-header,
  5354. .modal-fullscreen-lg-down .modal-footer {
  5355. border-radius: 0;
  5356. }
  5357. .modal-fullscreen-lg-down .modal-body {
  5358. overflow-y: auto;
  5359. }
  5360. }
  5361. @media (max-width: 1199.98px) {
  5362. .modal-fullscreen-xl-down {
  5363. width: 100vw;
  5364. max-width: none;
  5365. height: 100%;
  5366. margin: 0;
  5367. }
  5368. .modal-fullscreen-xl-down .modal-content {
  5369. height: 100%;
  5370. border: 0;
  5371. border-radius: 0;
  5372. }
  5373. .modal-fullscreen-xl-down .modal-header,
  5374. .modal-fullscreen-xl-down .modal-footer {
  5375. border-radius: 0;
  5376. }
  5377. .modal-fullscreen-xl-down .modal-body {
  5378. overflow-y: auto;
  5379. }
  5380. }
  5381. @media (max-width: 1399.98px) {
  5382. .modal-fullscreen-xxl-down {
  5383. width: 100vw;
  5384. max-width: none;
  5385. height: 100%;
  5386. margin: 0;
  5387. }
  5388. .modal-fullscreen-xxl-down .modal-content {
  5389. height: 100%;
  5390. border: 0;
  5391. border-radius: 0;
  5392. }
  5393. .modal-fullscreen-xxl-down .modal-header,
  5394. .modal-fullscreen-xxl-down .modal-footer {
  5395. border-radius: 0;
  5396. }
  5397. .modal-fullscreen-xxl-down .modal-body {
  5398. overflow-y: auto;
  5399. }
  5400. }
  5401. .tooltip {
  5402. --bs-tooltip-zindex: 1080;
  5403. --bs-tooltip-max-width: 200px;
  5404. --bs-tooltip-padding-x: 0.5rem;
  5405. --bs-tooltip-padding-y: 0.25rem;
  5406. --bs-tooltip-margin: ;
  5407. --bs-tooltip-font-size: 0.875rem;
  5408. --bs-tooltip-color: var(--bs-body-bg);
  5409. --bs-tooltip-bg: var(--bs-emphasis-color);
  5410. --bs-tooltip-border-radius: var(--bs-border-radius);
  5411. --bs-tooltip-opacity: 0.9;
  5412. --bs-tooltip-arrow-width: 0.8rem;
  5413. --bs-tooltip-arrow-height: 0.4rem;
  5414. z-index: var(--bs-tooltip-zindex);
  5415. display: block;
  5416. padding: var(--bs-tooltip-arrow-height);
  5417. margin: var(--bs-tooltip-margin);
  5418. font-family: var(--bs-font-sans-serif);
  5419. font-style: normal;
  5420. font-weight: 400;
  5421. line-height: 1.5;
  5422. text-align: left;
  5423. text-align: start;
  5424. text-decoration: none;
  5425. text-shadow: none;
  5426. text-transform: none;
  5427. letter-spacing: normal;
  5428. word-break: normal;
  5429. white-space: normal;
  5430. word-spacing: normal;
  5431. line-break: auto;
  5432. font-size: var(--bs-tooltip-font-size);
  5433. word-wrap: break-word;
  5434. opacity: 0;
  5435. }
  5436. .tooltip.show {
  5437. opacity: var(--bs-tooltip-opacity);
  5438. }
  5439. .tooltip .tooltip-arrow {
  5440. display: block;
  5441. width: var(--bs-tooltip-arrow-width);
  5442. height: var(--bs-tooltip-arrow-height);
  5443. }
  5444. .tooltip .tooltip-arrow::before {
  5445. position: absolute;
  5446. content: "";
  5447. border-color: transparent;
  5448. border-style: solid;
  5449. }
  5450. .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  5451. bottom: 0;
  5452. }
  5453. .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  5454. top: -1px;
  5455. border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5456. border-top-color: var(--bs-tooltip-bg);
  5457. }
  5458. /* rtl:begin:ignore */
  5459. .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  5460. left: 0;
  5461. width: var(--bs-tooltip-arrow-height);
  5462. height: var(--bs-tooltip-arrow-width);
  5463. }
  5464. .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  5465. right: -1px;
  5466. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5467. border-right-color: var(--bs-tooltip-bg);
  5468. }
  5469. /* rtl:end:ignore */
  5470. .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  5471. top: 0;
  5472. }
  5473. .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  5474. bottom: -1px;
  5475. border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5476. border-bottom-color: var(--bs-tooltip-bg);
  5477. }
  5478. /* rtl:begin:ignore */
  5479. .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  5480. right: 0;
  5481. width: var(--bs-tooltip-arrow-height);
  5482. height: var(--bs-tooltip-arrow-width);
  5483. }
  5484. .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  5485. left: -1px;
  5486. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5487. border-left-color: var(--bs-tooltip-bg);
  5488. }
  5489. /* rtl:end:ignore */
  5490. .tooltip-inner {
  5491. max-width: var(--bs-tooltip-max-width);
  5492. padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  5493. color: var(--bs-tooltip-color);
  5494. text-align: center;
  5495. background-color: var(--bs-tooltip-bg);
  5496. border-radius: var(--bs-tooltip-border-radius);
  5497. }
  5498. .popover {
  5499. --bs-popover-zindex: 1070;
  5500. --bs-popover-max-width: 276px;
  5501. --bs-popover-font-size: 0.875rem;
  5502. --bs-popover-bg: var(--bs-body-bg);
  5503. --bs-popover-border-width: var(--bs-border-width);
  5504. --bs-popover-border-color: var(--bs-border-color-translucent);
  5505. --bs-popover-border-radius: var(--bs-border-radius-lg);
  5506. --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
  5507. --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  5508. --bs-popover-header-padding-x: 1rem;
  5509. --bs-popover-header-padding-y: 0.5rem;
  5510. --bs-popover-header-font-size: 1rem;
  5511. --bs-popover-header-color: ;
  5512. --bs-popover-header-bg: var(--bs-secondary-bg);
  5513. --bs-popover-body-padding-x: 1rem;
  5514. --bs-popover-body-padding-y: 1rem;
  5515. --bs-popover-body-color: var(--bs-body-color);
  5516. --bs-popover-arrow-width: 1rem;
  5517. --bs-popover-arrow-height: 0.5rem;
  5518. --bs-popover-arrow-border: var(--bs-popover-border-color);
  5519. z-index: var(--bs-popover-zindex);
  5520. display: block;
  5521. max-width: var(--bs-popover-max-width);
  5522. font-family: var(--bs-font-sans-serif);
  5523. font-style: normal;
  5524. font-weight: 400;
  5525. line-height: 1.5;
  5526. text-align: left;
  5527. text-align: start;
  5528. text-decoration: none;
  5529. text-shadow: none;
  5530. text-transform: none;
  5531. letter-spacing: normal;
  5532. word-break: normal;
  5533. white-space: normal;
  5534. word-spacing: normal;
  5535. line-break: auto;
  5536. font-size: var(--bs-popover-font-size);
  5537. word-wrap: break-word;
  5538. background-color: var(--bs-popover-bg);
  5539. background-clip: padding-box;
  5540. border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5541. border-radius: var(--bs-popover-border-radius);
  5542. }
  5543. .popover .popover-arrow {
  5544. display: block;
  5545. width: var(--bs-popover-arrow-width);
  5546. height: var(--bs-popover-arrow-height);
  5547. }
  5548. .popover .popover-arrow::before, .popover .popover-arrow::after {
  5549. position: absolute;
  5550. display: block;
  5551. content: "";
  5552. border-color: transparent;
  5553. border-style: solid;
  5554. border-width: 0;
  5555. }
  5556. .bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  5557. bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5558. }
  5559. .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  5560. border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  5561. }
  5562. .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  5563. bottom: 0;
  5564. border-top-color: var(--bs-popover-arrow-border);
  5565. }
  5566. .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  5567. bottom: var(--bs-popover-border-width);
  5568. border-top-color: var(--bs-popover-bg);
  5569. }
  5570. /* rtl:begin:ignore */
  5571. .bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  5572. left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5573. width: var(--bs-popover-arrow-height);
  5574. height: var(--bs-popover-arrow-width);
  5575. }
  5576. .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  5577. border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  5578. }
  5579. .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  5580. left: 0;
  5581. border-right-color: var(--bs-popover-arrow-border);
  5582. }
  5583. .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  5584. left: var(--bs-popover-border-width);
  5585. border-right-color: var(--bs-popover-bg);
  5586. }
  5587. /* rtl:end:ignore */
  5588. .bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  5589. top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5590. }
  5591. .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  5592. border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  5593. }
  5594. .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  5595. top: 0;
  5596. border-bottom-color: var(--bs-popover-arrow-border);
  5597. }
  5598. .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  5599. top: var(--bs-popover-border-width);
  5600. border-bottom-color: var(--bs-popover-bg);
  5601. }
  5602. .bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  5603. position: absolute;
  5604. top: 0;
  5605. left: 50%;
  5606. display: block;
  5607. width: var(--bs-popover-arrow-width);
  5608. margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  5609. content: "";
  5610. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
  5611. }
  5612. /* rtl:begin:ignore */
  5613. .bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  5614. right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5615. width: var(--bs-popover-arrow-height);
  5616. height: var(--bs-popover-arrow-width);
  5617. }
  5618. .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  5619. border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  5620. }
  5621. .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  5622. right: 0;
  5623. border-left-color: var(--bs-popover-arrow-border);
  5624. }
  5625. .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  5626. right: var(--bs-popover-border-width);
  5627. border-left-color: var(--bs-popover-bg);
  5628. }
  5629. /* rtl:end:ignore */
  5630. .popover-header {
  5631. padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  5632. margin-bottom: 0;
  5633. font-size: var(--bs-popover-header-font-size);
  5634. color: var(--bs-popover-header-color);
  5635. background-color: var(--bs-popover-header-bg);
  5636. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5637. border-top-left-radius: var(--bs-popover-inner-border-radius);
  5638. border-top-right-radius: var(--bs-popover-inner-border-radius);
  5639. }
  5640. .popover-header:empty {
  5641. display: none;
  5642. }
  5643. .popover-body {
  5644. padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  5645. color: var(--bs-popover-body-color);
  5646. }
  5647. .carousel {
  5648. position: relative;
  5649. }
  5650. .carousel.pointer-event {
  5651. touch-action: pan-y;
  5652. }
  5653. .carousel-inner {
  5654. position: relative;
  5655. width: 100%;
  5656. overflow: hidden;
  5657. }
  5658. .carousel-inner::after {
  5659. display: block;
  5660. clear: both;
  5661. content: "";
  5662. }
  5663. .carousel-item {
  5664. position: relative;
  5665. display: none;
  5666. float: left;
  5667. width: 100%;
  5668. margin-right: -100%;
  5669. -webkit-backface-visibility: hidden;
  5670. backface-visibility: hidden;
  5671. transition: transform 0.6s ease-in-out;
  5672. }
  5673. @media (prefers-reduced-motion: reduce) {
  5674. .carousel-item {
  5675. transition: none;
  5676. }
  5677. }
  5678. .carousel-item.active,
  5679. .carousel-item-next,
  5680. .carousel-item-prev {
  5681. display: block;
  5682. }
  5683. .carousel-item-next:not(.carousel-item-start),
  5684. .active.carousel-item-end {
  5685. transform: translateX(100%);
  5686. }
  5687. .carousel-item-prev:not(.carousel-item-end),
  5688. .active.carousel-item-start {
  5689. transform: translateX(-100%);
  5690. }
  5691. .carousel-fade .carousel-item {
  5692. opacity: 0;
  5693. transition-property: opacity;
  5694. transform: none;
  5695. }
  5696. .carousel-fade .carousel-item.active,
  5697. .carousel-fade .carousel-item-next.carousel-item-start,
  5698. .carousel-fade .carousel-item-prev.carousel-item-end {
  5699. z-index: 1;
  5700. opacity: 1;
  5701. }
  5702. .carousel-fade .active.carousel-item-start,
  5703. .carousel-fade .active.carousel-item-end {
  5704. z-index: 0;
  5705. opacity: 0;
  5706. transition: opacity 0s 0.6s;
  5707. }
  5708. @media (prefers-reduced-motion: reduce) {
  5709. .carousel-fade .active.carousel-item-start,
  5710. .carousel-fade .active.carousel-item-end {
  5711. transition: none;
  5712. }
  5713. }
  5714. .carousel-control-prev,
  5715. .carousel-control-next {
  5716. position: absolute;
  5717. top: 0;
  5718. bottom: 0;
  5719. z-index: 1;
  5720. display: flex;
  5721. align-items: center;
  5722. justify-content: center;
  5723. width: 15%;
  5724. padding: 0;
  5725. color: #fff;
  5726. text-align: center;
  5727. background: none;
  5728. border: 0;
  5729. opacity: 0.5;
  5730. transition: opacity 0.15s ease;
  5731. }
  5732. @media (prefers-reduced-motion: reduce) {
  5733. .carousel-control-prev,
  5734. .carousel-control-next {
  5735. transition: none;
  5736. }
  5737. }
  5738. .carousel-control-prev:hover, .carousel-control-prev:focus,
  5739. .carousel-control-next:hover,
  5740. .carousel-control-next:focus {
  5741. color: #fff;
  5742. text-decoration: none;
  5743. outline: 0;
  5744. opacity: 0.9;
  5745. }
  5746. .carousel-control-prev {
  5747. left: 0;
  5748. }
  5749. .carousel-control-next {
  5750. right: 0;
  5751. }
  5752. .carousel-control-prev-icon,
  5753. .carousel-control-next-icon {
  5754. display: inline-block;
  5755. width: 2rem;
  5756. height: 2rem;
  5757. background-repeat: no-repeat;
  5758. background-position: 50%;
  5759. background-size: 100% 100%;
  5760. }
  5761. /* rtl:options: {
  5762. "autoRename": true,
  5763. "stringMap":[ {
  5764. "name" : "prev-next",
  5765. "search" : "prev",
  5766. "replace" : "next"
  5767. } ]
  5768. } */
  5769. .carousel-control-prev-icon {
  5770. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  5771. }
  5772. .carousel-control-next-icon {
  5773. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  5774. }
  5775. .carousel-indicators {
  5776. position: absolute;
  5777. right: 0;
  5778. bottom: 0;
  5779. left: 0;
  5780. z-index: 2;
  5781. display: flex;
  5782. justify-content: center;
  5783. padding: 0;
  5784. margin-right: 15%;
  5785. margin-bottom: 1rem;
  5786. margin-left: 15%;
  5787. }
  5788. .carousel-indicators [data-bs-target] {
  5789. box-sizing: content-box;
  5790. flex: 0 1 auto;
  5791. width: 30px;
  5792. height: 3px;
  5793. padding: 0;
  5794. margin-right: 3px;
  5795. margin-left: 3px;
  5796. text-indent: -999px;
  5797. cursor: pointer;
  5798. background-color: #fff;
  5799. background-clip: padding-box;
  5800. border: 0;
  5801. border-top: 10px solid transparent;
  5802. border-bottom: 10px solid transparent;
  5803. opacity: 0.5;
  5804. transition: opacity 0.6s ease;
  5805. }
  5806. @media (prefers-reduced-motion: reduce) {
  5807. .carousel-indicators [data-bs-target] {
  5808. transition: none;
  5809. }
  5810. }
  5811. .carousel-indicators .active {
  5812. opacity: 1;
  5813. }
  5814. .carousel-caption {
  5815. position: absolute;
  5816. right: 15%;
  5817. bottom: 1.25rem;
  5818. left: 15%;
  5819. padding-top: 1.25rem;
  5820. padding-bottom: 1.25rem;
  5821. color: #fff;
  5822. text-align: center;
  5823. }
  5824. .carousel-dark .carousel-control-prev-icon,
  5825. .carousel-dark .carousel-control-next-icon {
  5826. filter: invert(1) grayscale(100);
  5827. }
  5828. .carousel-dark .carousel-indicators [data-bs-target] {
  5829. background-color: #000;
  5830. }
  5831. .carousel-dark .carousel-caption {
  5832. color: #000;
  5833. }
  5834. [data-bs-theme=dark] .carousel .carousel-control-prev-icon,
  5835. [data-bs-theme=dark] .carousel .carousel-control-next-icon, [data-bs-theme=dark].carousel .carousel-control-prev-icon,
  5836. [data-bs-theme=dark].carousel .carousel-control-next-icon {
  5837. filter: invert(1) grayscale(100);
  5838. }
  5839. [data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target], [data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
  5840. background-color: #000;
  5841. }
  5842. [data-bs-theme=dark] .carousel .carousel-caption, [data-bs-theme=dark].carousel .carousel-caption {
  5843. color: #000;
  5844. }
  5845. .spinner-grow,
  5846. .spinner-border {
  5847. display: inline-block;
  5848. width: var(--bs-spinner-width);
  5849. height: var(--bs-spinner-height);
  5850. vertical-align: var(--bs-spinner-vertical-align);
  5851. border-radius: 50%;
  5852. animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
  5853. }
  5854. @keyframes spinner-border {
  5855. to {
  5856. transform: rotate(360deg) /* rtl:ignore */;
  5857. }
  5858. }
  5859. .spinner-border {
  5860. --bs-spinner-width: 2rem;
  5861. --bs-spinner-height: 2rem;
  5862. --bs-spinner-vertical-align: -0.125em;
  5863. --bs-spinner-border-width: 0.25em;
  5864. --bs-spinner-animation-speed: 0.75s;
  5865. --bs-spinner-animation-name: spinner-border;
  5866. border: var(--bs-spinner-border-width) solid currentcolor;
  5867. border-right-color: transparent;
  5868. }
  5869. .spinner-border-sm {
  5870. --bs-spinner-width: 1rem;
  5871. --bs-spinner-height: 1rem;
  5872. --bs-spinner-border-width: 0.2em;
  5873. }
  5874. @keyframes spinner-grow {
  5875. 0% {
  5876. transform: scale(0);
  5877. }
  5878. 50% {
  5879. opacity: 1;
  5880. transform: none;
  5881. }
  5882. }
  5883. .spinner-grow {
  5884. --bs-spinner-width: 2rem;
  5885. --bs-spinner-height: 2rem;
  5886. --bs-spinner-vertical-align: -0.125em;
  5887. --bs-spinner-animation-speed: 0.75s;
  5888. --bs-spinner-animation-name: spinner-grow;
  5889. background-color: currentcolor;
  5890. opacity: 0;
  5891. }
  5892. .spinner-grow-sm {
  5893. --bs-spinner-width: 1rem;
  5894. --bs-spinner-height: 1rem;
  5895. }
  5896. @media (prefers-reduced-motion: reduce) {
  5897. .spinner-border,
  5898. .spinner-grow {
  5899. --bs-spinner-animation-speed: 1.5s;
  5900. }
  5901. }
  5902. .offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  5903. --bs-offcanvas-zindex: 1045;
  5904. --bs-offcanvas-width: 400px;
  5905. --bs-offcanvas-height: 30vh;
  5906. --bs-offcanvas-padding-x: 1rem;
  5907. --bs-offcanvas-padding-y: 1rem;
  5908. --bs-offcanvas-color: var(--bs-body-color);
  5909. --bs-offcanvas-bg: var(--bs-body-bg);
  5910. --bs-offcanvas-border-width: var(--bs-border-width);
  5911. --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  5912. --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  5913. --bs-offcanvas-transition: transform 0.3s ease-in-out;
  5914. --bs-offcanvas-title-line-height: 1.5;
  5915. }
  5916. @media (max-width: 575.98px) {
  5917. .offcanvas-sm {
  5918. position: fixed;
  5919. bottom: 0;
  5920. z-index: var(--bs-offcanvas-zindex);
  5921. display: flex;
  5922. flex-direction: column;
  5923. max-width: 100%;
  5924. color: var(--bs-offcanvas-color);
  5925. visibility: hidden;
  5926. background-color: var(--bs-offcanvas-bg);
  5927. background-clip: padding-box;
  5928. outline: 0;
  5929. transition: var(--bs-offcanvas-transition);
  5930. }
  5931. }
  5932. @media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  5933. .offcanvas-sm {
  5934. transition: none;
  5935. }
  5936. }
  5937. @media (max-width: 575.98px) {
  5938. .offcanvas-sm.offcanvas-start {
  5939. top: 0;
  5940. left: 0;
  5941. width: var(--bs-offcanvas-width);
  5942. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5943. transform: translateX(-100%);
  5944. }
  5945. }
  5946. @media (max-width: 575.98px) {
  5947. .offcanvas-sm.offcanvas-end {
  5948. top: 0;
  5949. right: 0;
  5950. width: var(--bs-offcanvas-width);
  5951. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5952. transform: translateX(100%);
  5953. }
  5954. }
  5955. @media (max-width: 575.98px) {
  5956. .offcanvas-sm.offcanvas-top {
  5957. top: 0;
  5958. right: 0;
  5959. left: 0;
  5960. height: var(--bs-offcanvas-height);
  5961. max-height: 100%;
  5962. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5963. transform: translateY(-100%);
  5964. }
  5965. }
  5966. @media (max-width: 575.98px) {
  5967. .offcanvas-sm.offcanvas-bottom {
  5968. right: 0;
  5969. left: 0;
  5970. height: var(--bs-offcanvas-height);
  5971. max-height: 100%;
  5972. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5973. transform: translateY(100%);
  5974. }
  5975. }
  5976. @media (max-width: 575.98px) {
  5977. .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
  5978. transform: none;
  5979. }
  5980. }
  5981. @media (max-width: 575.98px) {
  5982. .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
  5983. visibility: visible;
  5984. }
  5985. }
  5986. @media (min-width: 576px) {
  5987. .offcanvas-sm {
  5988. --bs-offcanvas-height: auto;
  5989. --bs-offcanvas-border-width: 0;
  5990. background-color: transparent !important;
  5991. }
  5992. .offcanvas-sm .offcanvas-header {
  5993. display: none;
  5994. }
  5995. .offcanvas-sm .offcanvas-body {
  5996. display: flex;
  5997. flex-grow: 0;
  5998. padding: 0;
  5999. overflow-y: visible;
  6000. background-color: transparent !important;
  6001. }
  6002. }
  6003. @media (max-width: 767.98px) {
  6004. .offcanvas-md {
  6005. position: fixed;
  6006. bottom: 0;
  6007. z-index: var(--bs-offcanvas-zindex);
  6008. display: flex;
  6009. flex-direction: column;
  6010. max-width: 100%;
  6011. color: var(--bs-offcanvas-color);
  6012. visibility: hidden;
  6013. background-color: var(--bs-offcanvas-bg);
  6014. background-clip: padding-box;
  6015. outline: 0;
  6016. transition: var(--bs-offcanvas-transition);
  6017. }
  6018. }
  6019. @media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  6020. .offcanvas-md {
  6021. transition: none;
  6022. }
  6023. }
  6024. @media (max-width: 767.98px) {
  6025. .offcanvas-md.offcanvas-start {
  6026. top: 0;
  6027. left: 0;
  6028. width: var(--bs-offcanvas-width);
  6029. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6030. transform: translateX(-100%);
  6031. }
  6032. }
  6033. @media (max-width: 767.98px) {
  6034. .offcanvas-md.offcanvas-end {
  6035. top: 0;
  6036. right: 0;
  6037. width: var(--bs-offcanvas-width);
  6038. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6039. transform: translateX(100%);
  6040. }
  6041. }
  6042. @media (max-width: 767.98px) {
  6043. .offcanvas-md.offcanvas-top {
  6044. top: 0;
  6045. right: 0;
  6046. left: 0;
  6047. height: var(--bs-offcanvas-height);
  6048. max-height: 100%;
  6049. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6050. transform: translateY(-100%);
  6051. }
  6052. }
  6053. @media (max-width: 767.98px) {
  6054. .offcanvas-md.offcanvas-bottom {
  6055. right: 0;
  6056. left: 0;
  6057. height: var(--bs-offcanvas-height);
  6058. max-height: 100%;
  6059. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6060. transform: translateY(100%);
  6061. }
  6062. }
  6063. @media (max-width: 767.98px) {
  6064. .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
  6065. transform: none;
  6066. }
  6067. }
  6068. @media (max-width: 767.98px) {
  6069. .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
  6070. visibility: visible;
  6071. }
  6072. }
  6073. @media (min-width: 768px) {
  6074. .offcanvas-md {
  6075. --bs-offcanvas-height: auto;
  6076. --bs-offcanvas-border-width: 0;
  6077. background-color: transparent !important;
  6078. }
  6079. .offcanvas-md .offcanvas-header {
  6080. display: none;
  6081. }
  6082. .offcanvas-md .offcanvas-body {
  6083. display: flex;
  6084. flex-grow: 0;
  6085. padding: 0;
  6086. overflow-y: visible;
  6087. background-color: transparent !important;
  6088. }
  6089. }
  6090. @media (max-width: 991.98px) {
  6091. .offcanvas-lg {
  6092. position: fixed;
  6093. bottom: 0;
  6094. z-index: var(--bs-offcanvas-zindex);
  6095. display: flex;
  6096. flex-direction: column;
  6097. max-width: 100%;
  6098. color: var(--bs-offcanvas-color);
  6099. visibility: hidden;
  6100. background-color: var(--bs-offcanvas-bg);
  6101. background-clip: padding-box;
  6102. outline: 0;
  6103. transition: var(--bs-offcanvas-transition);
  6104. }
  6105. }
  6106. @media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  6107. .offcanvas-lg {
  6108. transition: none;
  6109. }
  6110. }
  6111. @media (max-width: 991.98px) {
  6112. .offcanvas-lg.offcanvas-start {
  6113. top: 0;
  6114. left: 0;
  6115. width: var(--bs-offcanvas-width);
  6116. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6117. transform: translateX(-100%);
  6118. }
  6119. }
  6120. @media (max-width: 991.98px) {
  6121. .offcanvas-lg.offcanvas-end {
  6122. top: 0;
  6123. right: 0;
  6124. width: var(--bs-offcanvas-width);
  6125. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6126. transform: translateX(100%);
  6127. }
  6128. }
  6129. @media (max-width: 991.98px) {
  6130. .offcanvas-lg.offcanvas-top {
  6131. top: 0;
  6132. right: 0;
  6133. left: 0;
  6134. height: var(--bs-offcanvas-height);
  6135. max-height: 100%;
  6136. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6137. transform: translateY(-100%);
  6138. }
  6139. }
  6140. @media (max-width: 991.98px) {
  6141. .offcanvas-lg.offcanvas-bottom {
  6142. right: 0;
  6143. left: 0;
  6144. height: var(--bs-offcanvas-height);
  6145. max-height: 100%;
  6146. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6147. transform: translateY(100%);
  6148. }
  6149. }
  6150. @media (max-width: 991.98px) {
  6151. .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
  6152. transform: none;
  6153. }
  6154. }
  6155. @media (max-width: 991.98px) {
  6156. .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
  6157. visibility: visible;
  6158. }
  6159. }
  6160. @media (min-width: 992px) {
  6161. .offcanvas-lg {
  6162. --bs-offcanvas-height: auto;
  6163. --bs-offcanvas-border-width: 0;
  6164. background-color: transparent !important;
  6165. }
  6166. .offcanvas-lg .offcanvas-header {
  6167. display: none;
  6168. }
  6169. .offcanvas-lg .offcanvas-body {
  6170. display: flex;
  6171. flex-grow: 0;
  6172. padding: 0;
  6173. overflow-y: visible;
  6174. background-color: transparent !important;
  6175. }
  6176. }
  6177. @media (max-width: 1199.98px) {
  6178. .offcanvas-xl {
  6179. position: fixed;
  6180. bottom: 0;
  6181. z-index: var(--bs-offcanvas-zindex);
  6182. display: flex;
  6183. flex-direction: column;
  6184. max-width: 100%;
  6185. color: var(--bs-offcanvas-color);
  6186. visibility: hidden;
  6187. background-color: var(--bs-offcanvas-bg);
  6188. background-clip: padding-box;
  6189. outline: 0;
  6190. transition: var(--bs-offcanvas-transition);
  6191. }
  6192. }
  6193. @media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  6194. .offcanvas-xl {
  6195. transition: none;
  6196. }
  6197. }
  6198. @media (max-width: 1199.98px) {
  6199. .offcanvas-xl.offcanvas-start {
  6200. top: 0;
  6201. left: 0;
  6202. width: var(--bs-offcanvas-width);
  6203. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6204. transform: translateX(-100%);
  6205. }
  6206. }
  6207. @media (max-width: 1199.98px) {
  6208. .offcanvas-xl.offcanvas-end {
  6209. top: 0;
  6210. right: 0;
  6211. width: var(--bs-offcanvas-width);
  6212. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6213. transform: translateX(100%);
  6214. }
  6215. }
  6216. @media (max-width: 1199.98px) {
  6217. .offcanvas-xl.offcanvas-top {
  6218. top: 0;
  6219. right: 0;
  6220. left: 0;
  6221. height: var(--bs-offcanvas-height);
  6222. max-height: 100%;
  6223. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6224. transform: translateY(-100%);
  6225. }
  6226. }
  6227. @media (max-width: 1199.98px) {
  6228. .offcanvas-xl.offcanvas-bottom {
  6229. right: 0;
  6230. left: 0;
  6231. height: var(--bs-offcanvas-height);
  6232. max-height: 100%;
  6233. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6234. transform: translateY(100%);
  6235. }
  6236. }
  6237. @media (max-width: 1199.98px) {
  6238. .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
  6239. transform: none;
  6240. }
  6241. }
  6242. @media (max-width: 1199.98px) {
  6243. .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
  6244. visibility: visible;
  6245. }
  6246. }
  6247. @media (min-width: 1200px) {
  6248. .offcanvas-xl {
  6249. --bs-offcanvas-height: auto;
  6250. --bs-offcanvas-border-width: 0;
  6251. background-color: transparent !important;
  6252. }
  6253. .offcanvas-xl .offcanvas-header {
  6254. display: none;
  6255. }
  6256. .offcanvas-xl .offcanvas-body {
  6257. display: flex;
  6258. flex-grow: 0;
  6259. padding: 0;
  6260. overflow-y: visible;
  6261. background-color: transparent !important;
  6262. }
  6263. }
  6264. @media (max-width: 1399.98px) {
  6265. .offcanvas-xxl {
  6266. position: fixed;
  6267. bottom: 0;
  6268. z-index: var(--bs-offcanvas-zindex);
  6269. display: flex;
  6270. flex-direction: column;
  6271. max-width: 100%;
  6272. color: var(--bs-offcanvas-color);
  6273. visibility: hidden;
  6274. background-color: var(--bs-offcanvas-bg);
  6275. background-clip: padding-box;
  6276. outline: 0;
  6277. transition: var(--bs-offcanvas-transition);
  6278. }
  6279. }
  6280. @media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  6281. .offcanvas-xxl {
  6282. transition: none;
  6283. }
  6284. }
  6285. @media (max-width: 1399.98px) {
  6286. .offcanvas-xxl.offcanvas-start {
  6287. top: 0;
  6288. left: 0;
  6289. width: var(--bs-offcanvas-width);
  6290. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6291. transform: translateX(-100%);
  6292. }
  6293. }
  6294. @media (max-width: 1399.98px) {
  6295. .offcanvas-xxl.offcanvas-end {
  6296. top: 0;
  6297. right: 0;
  6298. width: var(--bs-offcanvas-width);
  6299. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6300. transform: translateX(100%);
  6301. }
  6302. }
  6303. @media (max-width: 1399.98px) {
  6304. .offcanvas-xxl.offcanvas-top {
  6305. top: 0;
  6306. right: 0;
  6307. left: 0;
  6308. height: var(--bs-offcanvas-height);
  6309. max-height: 100%;
  6310. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6311. transform: translateY(-100%);
  6312. }
  6313. }
  6314. @media (max-width: 1399.98px) {
  6315. .offcanvas-xxl.offcanvas-bottom {
  6316. right: 0;
  6317. left: 0;
  6318. height: var(--bs-offcanvas-height);
  6319. max-height: 100%;
  6320. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6321. transform: translateY(100%);
  6322. }
  6323. }
  6324. @media (max-width: 1399.98px) {
  6325. .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
  6326. transform: none;
  6327. }
  6328. }
  6329. @media (max-width: 1399.98px) {
  6330. .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
  6331. visibility: visible;
  6332. }
  6333. }
  6334. @media (min-width: 1400px) {
  6335. .offcanvas-xxl {
  6336. --bs-offcanvas-height: auto;
  6337. --bs-offcanvas-border-width: 0;
  6338. background-color: transparent !important;
  6339. }
  6340. .offcanvas-xxl .offcanvas-header {
  6341. display: none;
  6342. }
  6343. .offcanvas-xxl .offcanvas-body {
  6344. display: flex;
  6345. flex-grow: 0;
  6346. padding: 0;
  6347. overflow-y: visible;
  6348. background-color: transparent !important;
  6349. }
  6350. }
  6351. .offcanvas {
  6352. position: fixed;
  6353. bottom: 0;
  6354. z-index: var(--bs-offcanvas-zindex);
  6355. display: flex;
  6356. flex-direction: column;
  6357. max-width: 100%;
  6358. color: var(--bs-offcanvas-color);
  6359. visibility: hidden;
  6360. background-color: var(--bs-offcanvas-bg);
  6361. background-clip: padding-box;
  6362. outline: 0;
  6363. transition: var(--bs-offcanvas-transition);
  6364. }
  6365. @media (prefers-reduced-motion: reduce) {
  6366. .offcanvas {
  6367. transition: none;
  6368. }
  6369. }
  6370. .offcanvas.offcanvas-start {
  6371. top: 0;
  6372. left: 0;
  6373. width: var(--bs-offcanvas-width);
  6374. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6375. transform: translateX(-100%);
  6376. }
  6377. .offcanvas.offcanvas-end {
  6378. top: 0;
  6379. right: 0;
  6380. width: var(--bs-offcanvas-width);
  6381. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6382. transform: translateX(100%);
  6383. }
  6384. .offcanvas.offcanvas-top {
  6385. top: 0;
  6386. right: 0;
  6387. left: 0;
  6388. height: var(--bs-offcanvas-height);
  6389. max-height: 100%;
  6390. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6391. transform: translateY(-100%);
  6392. }
  6393. .offcanvas.offcanvas-bottom {
  6394. right: 0;
  6395. left: 0;
  6396. height: var(--bs-offcanvas-height);
  6397. max-height: 100%;
  6398. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6399. transform: translateY(100%);
  6400. }
  6401. .offcanvas.showing, .offcanvas.show:not(.hiding) {
  6402. transform: none;
  6403. }
  6404. .offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  6405. visibility: visible;
  6406. }
  6407. .offcanvas-backdrop {
  6408. position: fixed;
  6409. top: 0;
  6410. left: 0;
  6411. z-index: 1040;
  6412. width: 100vw;
  6413. height: 100vh;
  6414. background-color: #000;
  6415. }
  6416. .offcanvas-backdrop.fade {
  6417. opacity: 0;
  6418. }
  6419. .offcanvas-backdrop.show {
  6420. opacity: 0.5;
  6421. }
  6422. .offcanvas-header {
  6423. display: flex;
  6424. align-items: center;
  6425. justify-content: space-between;
  6426. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6427. }
  6428. .offcanvas-header .btn-close {
  6429. padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  6430. margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  6431. margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  6432. margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
  6433. }
  6434. .offcanvas-title {
  6435. margin-bottom: 0;
  6436. line-height: var(--bs-offcanvas-title-line-height);
  6437. }
  6438. .offcanvas-body {
  6439. flex-grow: 1;
  6440. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6441. overflow-y: auto;
  6442. }
  6443. .placeholder {
  6444. display: inline-block;
  6445. min-height: 1em;
  6446. vertical-align: middle;
  6447. cursor: wait;
  6448. background-color: currentcolor;
  6449. opacity: 0.5;
  6450. }
  6451. .placeholder.btn::before {
  6452. display: inline-block;
  6453. content: "";
  6454. }
  6455. .placeholder-xs {
  6456. min-height: 0.6em;
  6457. }
  6458. .placeholder-sm {
  6459. min-height: 0.8em;
  6460. }
  6461. .placeholder-lg {
  6462. min-height: 1.2em;
  6463. }
  6464. .placeholder-glow .placeholder {
  6465. animation: placeholder-glow 2s ease-in-out infinite;
  6466. }
  6467. @keyframes placeholder-glow {
  6468. 50% {
  6469. opacity: 0.2;
  6470. }
  6471. }
  6472. .placeholder-wave {
  6473. -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6474. mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6475. -webkit-mask-size: 200% 100%;
  6476. mask-size: 200% 100%;
  6477. animation: placeholder-wave 2s linear infinite;
  6478. }
  6479. @keyframes placeholder-wave {
  6480. 100% {
  6481. -webkit-mask-position: -200% 0%;
  6482. mask-position: -200% 0%;
  6483. }
  6484. }
  6485. .clearfix::after {
  6486. display: block;
  6487. clear: both;
  6488. content: "";
  6489. }
  6490. .text-bg-primary {
  6491. color: #fff !important;
  6492. background-color: RGBA(13, 110, 253, var(--bs-bg-opacity, 1)) !important;
  6493. }
  6494. .text-bg-secondary {
  6495. color: #fff !important;
  6496. background-color: RGBA(108, 117, 125, var(--bs-bg-opacity, 1)) !important;
  6497. }
  6498. .text-bg-success {
  6499. color: #fff !important;
  6500. background-color: RGBA(25, 135, 84, var(--bs-bg-opacity, 1)) !important;
  6501. }
  6502. .text-bg-info {
  6503. color: #000 !important;
  6504. background-color: RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important;
  6505. }
  6506. .text-bg-warning {
  6507. color: #000 !important;
  6508. background-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important;
  6509. }
  6510. .text-bg-danger {
  6511. color: #fff !important;
  6512. background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important;
  6513. }
  6514. .text-bg-light {
  6515. color: #000 !important;
  6516. background-color: RGBA(248, 249, 250, var(--bs-bg-opacity, 1)) !important;
  6517. }
  6518. .text-bg-dark {
  6519. color: #fff !important;
  6520. background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important;
  6521. }
  6522. .link-primary {
  6523. color: RGBA(var(--bs-primary-rgb, var(--bs-link-opacity, 1)));
  6524. -webkit-text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1));
  6525. text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1));
  6526. }
  6527. .link-primary:hover, .link-primary:focus {
  6528. color: RGBA(10, 88, 202, var(--bs-link-opacity, 1));
  6529. -webkit-text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1));
  6530. text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1));
  6531. }
  6532. .link-secondary {
  6533. color: RGBA(var(--bs-secondary-rgb, var(--bs-link-opacity, 1)));
  6534. -webkit-text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1));
  6535. text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1));
  6536. }
  6537. .link-secondary:hover, .link-secondary:focus {
  6538. color: RGBA(86, 94, 100, var(--bs-link-opacity, 1));
  6539. -webkit-text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1));
  6540. text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1));
  6541. }
  6542. .link-success {
  6543. color: RGBA(var(--bs-success-rgb, var(--bs-link-opacity, 1)));
  6544. -webkit-text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1));
  6545. text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1));
  6546. }
  6547. .link-success:hover, .link-success:focus {
  6548. color: RGBA(20, 108, 67, var(--bs-link-opacity, 1));
  6549. -webkit-text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1));
  6550. text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1));
  6551. }
  6552. .link-info {
  6553. color: RGBA(var(--bs-info-rgb, var(--bs-link-opacity, 1)));
  6554. -webkit-text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1));
  6555. text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1));
  6556. }
  6557. .link-info:hover, .link-info:focus {
  6558. color: RGBA(61, 213, 243, var(--bs-link-opacity, 1));
  6559. -webkit-text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1));
  6560. text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1));
  6561. }
  6562. .link-warning {
  6563. color: RGBA(var(--bs-warning-rgb, var(--bs-link-opacity, 1)));
  6564. -webkit-text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1));
  6565. text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1));
  6566. }
  6567. .link-warning:hover, .link-warning:focus {
  6568. color: RGBA(255, 205, 57, var(--bs-link-opacity, 1));
  6569. -webkit-text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1));
  6570. text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1));
  6571. }
  6572. .link-danger {
  6573. color: RGBA(var(--bs-danger-rgb, var(--bs-link-opacity, 1)));
  6574. -webkit-text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1));
  6575. text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1));
  6576. }
  6577. .link-danger:hover, .link-danger:focus {
  6578. color: RGBA(176, 42, 55, var(--bs-link-opacity, 1));
  6579. -webkit-text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1));
  6580. text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1));
  6581. }
  6582. .link-light {
  6583. color: RGBA(var(--bs-light-rgb, var(--bs-link-opacity, 1)));
  6584. -webkit-text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1));
  6585. text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1));
  6586. }
  6587. .link-light:hover, .link-light:focus {
  6588. color: RGBA(249, 250, 251, var(--bs-link-opacity, 1));
  6589. -webkit-text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1));
  6590. text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1));
  6591. }
  6592. .link-dark {
  6593. color: RGBA(var(--bs-dark-rgb, var(--bs-link-opacity, 1)));
  6594. -webkit-text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1));
  6595. text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1));
  6596. }
  6597. .link-dark:hover, .link-dark:focus {
  6598. color: RGBA(26, 30, 33, var(--bs-link-opacity, 1));
  6599. -webkit-text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1));
  6600. text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1));
  6601. }
  6602. .link-body-emphasis {
  6603. color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1));
  6604. -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1));
  6605. text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1));
  6606. }
  6607. .link-body-emphasis:hover, .link-body-emphasis:focus {
  6608. color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75));
  6609. -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75));
  6610. text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75));
  6611. }
  6612. .focus-ring:focus {
  6613. outline: 0;
  6614. 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);
  6615. }
  6616. .icon-link {
  6617. display: inline-flex;
  6618. gap: 0.375rem;
  6619. align-items: center;
  6620. -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  6621. text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  6622. text-underline-offset: 0.25em;
  6623. -webkit-backface-visibility: hidden;
  6624. backface-visibility: hidden;
  6625. }
  6626. .icon-link > .bi {
  6627. flex-shrink: 0;
  6628. width: 1em;
  6629. height: 1em;
  6630. fill: currentcolor;
  6631. transition: 0.2s ease-in-out transform;
  6632. }
  6633. @media (prefers-reduced-motion: reduce) {
  6634. .icon-link > .bi {
  6635. transition: none;
  6636. }
  6637. }
  6638. .icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  6639. transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
  6640. }
  6641. .ratio {
  6642. position: relative;
  6643. width: 100%;
  6644. }
  6645. .ratio::before {
  6646. display: block;
  6647. padding-top: var(--bs-aspect-ratio);
  6648. content: "";
  6649. }
  6650. .ratio > * {
  6651. position: absolute;
  6652. top: 0;
  6653. left: 0;
  6654. width: 100%;
  6655. height: 100%;
  6656. }
  6657. .ratio-1x1 {
  6658. --bs-aspect-ratio: 100%;
  6659. }
  6660. .ratio-4x3 {
  6661. --bs-aspect-ratio: 75%;
  6662. }
  6663. .ratio-16x9 {
  6664. --bs-aspect-ratio: 56.25%;
  6665. }
  6666. .ratio-21x9 {
  6667. --bs-aspect-ratio: 42.8571428571%;
  6668. }
  6669. .fixed-top {
  6670. position: fixed;
  6671. top: 0;
  6672. right: 0;
  6673. left: 0;
  6674. z-index: 1030;
  6675. }
  6676. .fixed-bottom {
  6677. position: fixed;
  6678. right: 0;
  6679. bottom: 0;
  6680. left: 0;
  6681. z-index: 1030;
  6682. }
  6683. .sticky-top {
  6684. position: -webkit-sticky;
  6685. position: sticky;
  6686. top: 0;
  6687. z-index: 1020;
  6688. }
  6689. .sticky-bottom {
  6690. position: -webkit-sticky;
  6691. position: sticky;
  6692. bottom: 0;
  6693. z-index: 1020;
  6694. }
  6695. @media (min-width: 576px) {
  6696. .sticky-sm-top {
  6697. position: -webkit-sticky;
  6698. position: sticky;
  6699. top: 0;
  6700. z-index: 1020;
  6701. }
  6702. .sticky-sm-bottom {
  6703. position: -webkit-sticky;
  6704. position: sticky;
  6705. bottom: 0;
  6706. z-index: 1020;
  6707. }
  6708. }
  6709. @media (min-width: 768px) {
  6710. .sticky-md-top {
  6711. position: -webkit-sticky;
  6712. position: sticky;
  6713. top: 0;
  6714. z-index: 1020;
  6715. }
  6716. .sticky-md-bottom {
  6717. position: -webkit-sticky;
  6718. position: sticky;
  6719. bottom: 0;
  6720. z-index: 1020;
  6721. }
  6722. }
  6723. @media (min-width: 992px) {
  6724. .sticky-lg-top {
  6725. position: -webkit-sticky;
  6726. position: sticky;
  6727. top: 0;
  6728. z-index: 1020;
  6729. }
  6730. .sticky-lg-bottom {
  6731. position: -webkit-sticky;
  6732. position: sticky;
  6733. bottom: 0;
  6734. z-index: 1020;
  6735. }
  6736. }
  6737. @media (min-width: 1200px) {
  6738. .sticky-xl-top {
  6739. position: -webkit-sticky;
  6740. position: sticky;
  6741. top: 0;
  6742. z-index: 1020;
  6743. }
  6744. .sticky-xl-bottom {
  6745. position: -webkit-sticky;
  6746. position: sticky;
  6747. bottom: 0;
  6748. z-index: 1020;
  6749. }
  6750. }
  6751. @media (min-width: 1400px) {
  6752. .sticky-xxl-top {
  6753. position: -webkit-sticky;
  6754. position: sticky;
  6755. top: 0;
  6756. z-index: 1020;
  6757. }
  6758. .sticky-xxl-bottom {
  6759. position: -webkit-sticky;
  6760. position: sticky;
  6761. bottom: 0;
  6762. z-index: 1020;
  6763. }
  6764. }
  6765. .hstack {
  6766. display: flex;
  6767. flex-direction: row;
  6768. align-items: center;
  6769. align-self: stretch;
  6770. }
  6771. .vstack {
  6772. display: flex;
  6773. flex: 1 1 auto;
  6774. flex-direction: column;
  6775. align-self: stretch;
  6776. }
  6777. .visually-hidden,
  6778. .visually-hidden-focusable:not(:focus):not(:focus-within) {
  6779. width: 1px !important;
  6780. height: 1px !important;
  6781. padding: 0 !important;
  6782. margin: -1px !important;
  6783. overflow: hidden !important;
  6784. clip: rect(0, 0, 0, 0) !important;
  6785. white-space: nowrap !important;
  6786. border: 0 !important;
  6787. }
  6788. .visually-hidden:not(caption),
  6789. .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  6790. position: absolute !important;
  6791. }
  6792. .stretched-link::after {
  6793. position: absolute;
  6794. top: 0;
  6795. right: 0;
  6796. bottom: 0;
  6797. left: 0;
  6798. z-index: 1;
  6799. content: "";
  6800. }
  6801. .text-truncate {
  6802. overflow: hidden;
  6803. text-overflow: ellipsis;
  6804. white-space: nowrap;
  6805. }
  6806. .vr {
  6807. display: inline-block;
  6808. align-self: stretch;
  6809. width: 1px;
  6810. min-height: 1em;
  6811. background-color: currentcolor;
  6812. opacity: 0.25;
  6813. }
  6814. .align-baseline {
  6815. vertical-align: baseline !important;
  6816. }
  6817. .align-top {
  6818. vertical-align: top !important;
  6819. }
  6820. .align-middle {
  6821. vertical-align: middle !important;
  6822. }
  6823. .align-bottom {
  6824. vertical-align: bottom !important;
  6825. }
  6826. .align-text-bottom {
  6827. vertical-align: text-bottom !important;
  6828. }
  6829. .align-text-top {
  6830. vertical-align: text-top !important;
  6831. }
  6832. .float-start {
  6833. float: left !important;
  6834. }
  6835. .float-end {
  6836. float: right !important;
  6837. }
  6838. .float-none {
  6839. float: none !important;
  6840. }
  6841. .object-fit-contain {
  6842. -o-object-fit: contain !important;
  6843. object-fit: contain !important;
  6844. }
  6845. .object-fit-cover {
  6846. -o-object-fit: cover !important;
  6847. object-fit: cover !important;
  6848. }
  6849. .object-fit-fill {
  6850. -o-object-fit: fill !important;
  6851. object-fit: fill !important;
  6852. }
  6853. .object-fit-scale {
  6854. -o-object-fit: scale-down !important;
  6855. object-fit: scale-down !important;
  6856. }
  6857. .object-fit-none {
  6858. -o-object-fit: none !important;
  6859. object-fit: none !important;
  6860. }
  6861. .opacity-0 {
  6862. opacity: 0 !important;
  6863. }
  6864. .opacity-25 {
  6865. opacity: 0.25 !important;
  6866. }
  6867. .opacity-50 {
  6868. opacity: 0.5 !important;
  6869. }
  6870. .opacity-75 {
  6871. opacity: 0.75 !important;
  6872. }
  6873. .opacity-100 {
  6874. opacity: 1 !important;
  6875. }
  6876. .overflow-auto {
  6877. overflow: auto !important;
  6878. }
  6879. .overflow-hidden {
  6880. overflow: hidden !important;
  6881. }
  6882. .overflow-visible {
  6883. overflow: visible !important;
  6884. }
  6885. .overflow-scroll {
  6886. overflow: scroll !important;
  6887. }
  6888. .overflow-x-auto {
  6889. overflow-x: auto !important;
  6890. }
  6891. .overflow-x-hidden {
  6892. overflow-x: hidden !important;
  6893. }
  6894. .overflow-x-visible {
  6895. overflow-x: visible !important;
  6896. }
  6897. .overflow-x-scroll {
  6898. overflow-x: scroll !important;
  6899. }
  6900. .overflow-y-auto {
  6901. overflow-y: auto !important;
  6902. }
  6903. .overflow-y-hidden {
  6904. overflow-y: hidden !important;
  6905. }
  6906. .overflow-y-visible {
  6907. overflow-y: visible !important;
  6908. }
  6909. .overflow-y-scroll {
  6910. overflow-y: scroll !important;
  6911. }
  6912. .d-inline {
  6913. display: inline !important;
  6914. }
  6915. .d-inline-block {
  6916. display: inline-block !important;
  6917. }
  6918. .d-block {
  6919. display: block !important;
  6920. }
  6921. .d-grid {
  6922. display: grid !important;
  6923. }
  6924. .d-table {
  6925. display: table !important;
  6926. }
  6927. .d-table-row {
  6928. display: table-row !important;
  6929. }
  6930. .d-table-cell {
  6931. display: table-cell !important;
  6932. }
  6933. .d-flex {
  6934. display: flex !important;
  6935. }
  6936. .d-inline-flex {
  6937. display: inline-flex !important;
  6938. }
  6939. .d-none {
  6940. display: none !important;
  6941. }
  6942. .shadow {
  6943. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  6944. }
  6945. .shadow-sm {
  6946. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  6947. }
  6948. .shadow-lg {
  6949. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  6950. }
  6951. .shadow-none {
  6952. box-shadow: none !important;
  6953. }
  6954. .focus-ring-primary {
  6955. --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
  6956. }
  6957. .focus-ring-secondary {
  6958. --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
  6959. }
  6960. .focus-ring-success {
  6961. --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
  6962. }
  6963. .focus-ring-info {
  6964. --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
  6965. }
  6966. .focus-ring-warning {
  6967. --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
  6968. }
  6969. .focus-ring-danger {
  6970. --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
  6971. }
  6972. .focus-ring-light {
  6973. --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
  6974. }
  6975. .focus-ring-dark {
  6976. --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
  6977. }
  6978. .position-static {
  6979. position: static !important;
  6980. }
  6981. .position-relative {
  6982. position: relative !important;
  6983. }
  6984. .position-absolute {
  6985. position: absolute !important;
  6986. }
  6987. .position-fixed {
  6988. position: fixed !important;
  6989. }
  6990. .position-sticky {
  6991. position: -webkit-sticky !important;
  6992. position: sticky !important;
  6993. }
  6994. .top-0 {
  6995. top: 0 !important;
  6996. }
  6997. .top-50 {
  6998. top: 50% !important;
  6999. }
  7000. .top-100 {
  7001. top: 100% !important;
  7002. }
  7003. .bottom-0 {
  7004. bottom: 0 !important;
  7005. }
  7006. .bottom-50 {
  7007. bottom: 50% !important;
  7008. }
  7009. .bottom-100 {
  7010. bottom: 100% !important;
  7011. }
  7012. .start-0 {
  7013. left: 0 !important;
  7014. }
  7015. .start-50 {
  7016. left: 50% !important;
  7017. }
  7018. .start-100 {
  7019. left: 100% !important;
  7020. }
  7021. .end-0 {
  7022. right: 0 !important;
  7023. }
  7024. .end-50 {
  7025. right: 50% !important;
  7026. }
  7027. .end-100 {
  7028. right: 100% !important;
  7029. }
  7030. .translate-middle {
  7031. transform: translate(-50%, -50%) !important;
  7032. }
  7033. .translate-middle-x {
  7034. transform: translateX(-50%) !important;
  7035. }
  7036. .translate-middle-y {
  7037. transform: translateY(-50%) !important;
  7038. }
  7039. .border {
  7040. border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  7041. }
  7042. .border-0 {
  7043. border: 0 !important;
  7044. }
  7045. .border-top {
  7046. border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  7047. }
  7048. .border-top-0 {
  7049. border-top: 0 !important;
  7050. }
  7051. .border-end {
  7052. border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  7053. }
  7054. .border-end-0 {
  7055. border-right: 0 !important;
  7056. }
  7057. .border-bottom {
  7058. border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  7059. }
  7060. .border-bottom-0 {
  7061. border-bottom: 0 !important;
  7062. }
  7063. .border-start {
  7064. border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  7065. }
  7066. .border-start-0 {
  7067. border-left: 0 !important;
  7068. }
  7069. .border-primary {
  7070. --bs-border-opacity: 1;
  7071. border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
  7072. }
  7073. .border-secondary {
  7074. --bs-border-opacity: 1;
  7075. border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
  7076. }
  7077. .border-success {
  7078. --bs-border-opacity: 1;
  7079. border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
  7080. }
  7081. .border-info {
  7082. --bs-border-opacity: 1;
  7083. border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
  7084. }
  7085. .border-warning {
  7086. --bs-border-opacity: 1;
  7087. border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
  7088. }
  7089. .border-danger {
  7090. --bs-border-opacity: 1;
  7091. border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
  7092. }
  7093. .border-light {
  7094. --bs-border-opacity: 1;
  7095. border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
  7096. }
  7097. .border-dark {
  7098. --bs-border-opacity: 1;
  7099. border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
  7100. }
  7101. .border-black {
  7102. --bs-border-opacity: 1;
  7103. border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
  7104. }
  7105. .border-white {
  7106. --bs-border-opacity: 1;
  7107. border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
  7108. }
  7109. .border-primary-subtle {
  7110. border-color: var(--bs-primary-border-subtle) !important;
  7111. }
  7112. .border-secondary-subtle {
  7113. border-color: var(--bs-secondary-border-subtle) !important;
  7114. }
  7115. .border-success-subtle {
  7116. border-color: var(--bs-success-border-subtle) !important;
  7117. }
  7118. .border-info-subtle {
  7119. border-color: var(--bs-info-border-subtle) !important;
  7120. }
  7121. .border-warning-subtle {
  7122. border-color: var(--bs-warning-border-subtle) !important;
  7123. }
  7124. .border-danger-subtle {
  7125. border-color: var(--bs-danger-border-subtle) !important;
  7126. }
  7127. .border-light-subtle {
  7128. border-color: var(--bs-light-border-subtle) !important;
  7129. }
  7130. .border-dark-subtle {
  7131. border-color: var(--bs-dark-border-subtle) !important;
  7132. }
  7133. .border-1 {
  7134. border-width: 1px !important;
  7135. }
  7136. .border-2 {
  7137. border-width: 2px !important;
  7138. }
  7139. .border-3 {
  7140. border-width: 3px !important;
  7141. }
  7142. .border-4 {
  7143. border-width: 4px !important;
  7144. }
  7145. .border-5 {
  7146. border-width: 5px !important;
  7147. }
  7148. .border-opacity-10 {
  7149. --bs-border-opacity: 0.1;
  7150. }
  7151. .border-opacity-25 {
  7152. --bs-border-opacity: 0.25;
  7153. }
  7154. .border-opacity-50 {
  7155. --bs-border-opacity: 0.5;
  7156. }
  7157. .border-opacity-75 {
  7158. --bs-border-opacity: 0.75;
  7159. }
  7160. .border-opacity-100 {
  7161. --bs-border-opacity: 1;
  7162. }
  7163. .w-25 {
  7164. width: 25% !important;
  7165. }
  7166. .w-50 {
  7167. width: 50% !important;
  7168. }
  7169. .w-75 {
  7170. width: 75% !important;
  7171. }
  7172. .w-100 {
  7173. width: 100% !important;
  7174. }
  7175. .w-auto {
  7176. width: auto !important;
  7177. }
  7178. .mw-100 {
  7179. max-width: 100% !important;
  7180. }
  7181. .vw-100 {
  7182. width: 100vw !important;
  7183. }
  7184. .min-vw-100 {
  7185. min-width: 100vw !important;
  7186. }
  7187. .h-25 {
  7188. height: 25% !important;
  7189. }
  7190. .h-50 {
  7191. height: 50% !important;
  7192. }
  7193. .h-75 {
  7194. height: 75% !important;
  7195. }
  7196. .h-100 {
  7197. height: 100% !important;
  7198. }
  7199. .h-auto {
  7200. height: auto !important;
  7201. }
  7202. .mh-100 {
  7203. max-height: 100% !important;
  7204. }
  7205. .vh-100 {
  7206. height: 100vh !important;
  7207. }
  7208. .min-vh-100 {
  7209. min-height: 100vh !important;
  7210. }
  7211. .flex-fill {
  7212. flex: 1 1 auto !important;
  7213. }
  7214. .flex-row {
  7215. flex-direction: row !important;
  7216. }
  7217. .flex-column {
  7218. flex-direction: column !important;
  7219. }
  7220. .flex-row-reverse {
  7221. flex-direction: row-reverse !important;
  7222. }
  7223. .flex-column-reverse {
  7224. flex-direction: column-reverse !important;
  7225. }
  7226. .flex-grow-0 {
  7227. flex-grow: 0 !important;
  7228. }
  7229. .flex-grow-1 {
  7230. flex-grow: 1 !important;
  7231. }
  7232. .flex-shrink-0 {
  7233. flex-shrink: 0 !important;
  7234. }
  7235. .flex-shrink-1 {
  7236. flex-shrink: 1 !important;
  7237. }
  7238. .flex-wrap {
  7239. flex-wrap: wrap !important;
  7240. }
  7241. .flex-nowrap {
  7242. flex-wrap: nowrap !important;
  7243. }
  7244. .flex-wrap-reverse {
  7245. flex-wrap: wrap-reverse !important;
  7246. }
  7247. .justify-content-start {
  7248. justify-content: flex-start !important;
  7249. }
  7250. .justify-content-end {
  7251. justify-content: flex-end !important;
  7252. }
  7253. .justify-content-center {
  7254. justify-content: center !important;
  7255. }
  7256. .justify-content-between {
  7257. justify-content: space-between !important;
  7258. }
  7259. .justify-content-around {
  7260. justify-content: space-around !important;
  7261. }
  7262. .justify-content-evenly {
  7263. justify-content: space-evenly !important;
  7264. }
  7265. .align-items-start {
  7266. align-items: flex-start !important;
  7267. }
  7268. .align-items-end {
  7269. align-items: flex-end !important;
  7270. }
  7271. .align-items-center {
  7272. align-items: center !important;
  7273. }
  7274. .align-items-baseline {
  7275. align-items: baseline !important;
  7276. }
  7277. .align-items-stretch {
  7278. align-items: stretch !important;
  7279. }
  7280. .align-content-start {
  7281. align-content: flex-start !important;
  7282. }
  7283. .align-content-end {
  7284. align-content: flex-end !important;
  7285. }
  7286. .align-content-center {
  7287. align-content: center !important;
  7288. }
  7289. .align-content-between {
  7290. align-content: space-between !important;
  7291. }
  7292. .align-content-around {
  7293. align-content: space-around !important;
  7294. }
  7295. .align-content-stretch {
  7296. align-content: stretch !important;
  7297. }
  7298. .align-self-auto {
  7299. align-self: auto !important;
  7300. }
  7301. .align-self-start {
  7302. align-self: flex-start !important;
  7303. }
  7304. .align-self-end {
  7305. align-self: flex-end !important;
  7306. }
  7307. .align-self-center {
  7308. align-self: center !important;
  7309. }
  7310. .align-self-baseline {
  7311. align-self: baseline !important;
  7312. }
  7313. .align-self-stretch {
  7314. align-self: stretch !important;
  7315. }
  7316. .order-first {
  7317. order: -1 !important;
  7318. }
  7319. .order-0 {
  7320. order: 0 !important;
  7321. }
  7322. .order-1 {
  7323. order: 1 !important;
  7324. }
  7325. .order-2 {
  7326. order: 2 !important;
  7327. }
  7328. .order-3 {
  7329. order: 3 !important;
  7330. }
  7331. .order-4 {
  7332. order: 4 !important;
  7333. }
  7334. .order-5 {
  7335. order: 5 !important;
  7336. }
  7337. .order-last {
  7338. order: 6 !important;
  7339. }
  7340. .m-0 {
  7341. margin: 0 !important;
  7342. }
  7343. .m-1 {
  7344. margin: 0.25rem !important;
  7345. }
  7346. .m-2 {
  7347. margin: 0.5rem !important;
  7348. }
  7349. .m-3 {
  7350. margin: 1rem !important;
  7351. }
  7352. .m-4 {
  7353. margin: 1.5rem !important;
  7354. }
  7355. .m-5 {
  7356. margin: 3rem !important;
  7357. }
  7358. .m-auto {
  7359. margin: auto !important;
  7360. }
  7361. .mx-0 {
  7362. margin-right: 0 !important;
  7363. margin-left: 0 !important;
  7364. }
  7365. .mx-1 {
  7366. margin-right: 0.25rem !important;
  7367. margin-left: 0.25rem !important;
  7368. }
  7369. .mx-2 {
  7370. margin-right: 0.5rem !important;
  7371. margin-left: 0.5rem !important;
  7372. }
  7373. .mx-3 {
  7374. margin-right: 1rem !important;
  7375. margin-left: 1rem !important;
  7376. }
  7377. .mx-4 {
  7378. margin-right: 1.5rem !important;
  7379. margin-left: 1.5rem !important;
  7380. }
  7381. .mx-5 {
  7382. margin-right: 3rem !important;
  7383. margin-left: 3rem !important;
  7384. }
  7385. .mx-auto {
  7386. margin-right: auto !important;
  7387. margin-left: auto !important;
  7388. }
  7389. .my-0 {
  7390. margin-top: 0 !important;
  7391. margin-bottom: 0 !important;
  7392. }
  7393. .my-1 {
  7394. margin-top: 0.25rem !important;
  7395. margin-bottom: 0.25rem !important;
  7396. }
  7397. .my-2 {
  7398. margin-top: 0.5rem !important;
  7399. margin-bottom: 0.5rem !important;
  7400. }
  7401. .my-3 {
  7402. margin-top: 1rem !important;
  7403. margin-bottom: 1rem !important;
  7404. }
  7405. .my-4 {
  7406. margin-top: 1.5rem !important;
  7407. margin-bottom: 1.5rem !important;
  7408. }
  7409. .my-5 {
  7410. margin-top: 3rem !important;
  7411. margin-bottom: 3rem !important;
  7412. }
  7413. .my-auto {
  7414. margin-top: auto !important;
  7415. margin-bottom: auto !important;
  7416. }
  7417. .mt-0 {
  7418. margin-top: 0 !important;
  7419. }
  7420. .mt-1 {
  7421. margin-top: 0.25rem !important;
  7422. }
  7423. .mt-2 {
  7424. margin-top: 0.5rem !important;
  7425. }
  7426. .mt-3 {
  7427. margin-top: 1rem !important;
  7428. }
  7429. .mt-4 {
  7430. margin-top: 1.5rem !important;
  7431. }
  7432. .mt-5 {
  7433. margin-top: 3rem !important;
  7434. }
  7435. .mt-auto {
  7436. margin-top: auto !important;
  7437. }
  7438. .me-0 {
  7439. margin-right: 0 !important;
  7440. }
  7441. .me-1 {
  7442. margin-right: 0.25rem !important;
  7443. }
  7444. .me-2 {
  7445. margin-right: 0.5rem !important;
  7446. }
  7447. .me-3 {
  7448. margin-right: 1rem !important;
  7449. }
  7450. .me-4 {
  7451. margin-right: 1.5rem !important;
  7452. }
  7453. .me-5 {
  7454. margin-right: 3rem !important;
  7455. }
  7456. .me-auto {
  7457. margin-right: auto !important;
  7458. }
  7459. .mb-0 {
  7460. margin-bottom: 0 !important;
  7461. }
  7462. .mb-1 {
  7463. margin-bottom: 0.25rem !important;
  7464. }
  7465. .mb-2 {
  7466. margin-bottom: 0.5rem !important;
  7467. }
  7468. .mb-3 {
  7469. margin-bottom: 1rem !important;
  7470. }
  7471. .mb-4 {
  7472. margin-bottom: 1.5rem !important;
  7473. }
  7474. .mb-5 {
  7475. margin-bottom: 3rem !important;
  7476. }
  7477. .mb-auto {
  7478. margin-bottom: auto !important;
  7479. }
  7480. .ms-0 {
  7481. margin-left: 0 !important;
  7482. }
  7483. .ms-1 {
  7484. margin-left: 0.25rem !important;
  7485. }
  7486. .ms-2 {
  7487. margin-left: 0.5rem !important;
  7488. }
  7489. .ms-3 {
  7490. margin-left: 1rem !important;
  7491. }
  7492. .ms-4 {
  7493. margin-left: 1.5rem !important;
  7494. }
  7495. .ms-5 {
  7496. margin-left: 3rem !important;
  7497. }
  7498. .ms-auto {
  7499. margin-left: auto !important;
  7500. }
  7501. .p-0 {
  7502. padding: 0 !important;
  7503. }
  7504. .p-1 {
  7505. padding: 0.25rem !important;
  7506. }
  7507. .p-2 {
  7508. padding: 0.5rem !important;
  7509. }
  7510. .p-3 {
  7511. padding: 1rem !important;
  7512. }
  7513. .p-4 {
  7514. padding: 1.5rem !important;
  7515. }
  7516. .p-5 {
  7517. padding: 3rem !important;
  7518. }
  7519. .px-0 {
  7520. padding-right: 0 !important;
  7521. padding-left: 0 !important;
  7522. }
  7523. .px-1 {
  7524. padding-right: 0.25rem !important;
  7525. padding-left: 0.25rem !important;
  7526. }
  7527. .px-2 {
  7528. padding-right: 0.5rem !important;
  7529. padding-left: 0.5rem !important;
  7530. }
  7531. .px-3 {
  7532. padding-right: 1rem !important;
  7533. padding-left: 1rem !important;
  7534. }
  7535. .px-4 {
  7536. padding-right: 1.5rem !important;
  7537. padding-left: 1.5rem !important;
  7538. }
  7539. .px-5 {
  7540. padding-right: 3rem !important;
  7541. padding-left: 3rem !important;
  7542. }
  7543. .py-0 {
  7544. padding-top: 0 !important;
  7545. padding-bottom: 0 !important;
  7546. }
  7547. .py-1 {
  7548. padding-top: 0.25rem !important;
  7549. padding-bottom: 0.25rem !important;
  7550. }
  7551. .py-2 {
  7552. padding-top: 0.5rem !important;
  7553. padding-bottom: 0.5rem !important;
  7554. }
  7555. .py-3 {
  7556. padding-top: 1rem !important;
  7557. padding-bottom: 1rem !important;
  7558. }
  7559. .py-4 {
  7560. padding-top: 1.5rem !important;
  7561. padding-bottom: 1.5rem !important;
  7562. }
  7563. .py-5 {
  7564. padding-top: 3rem !important;
  7565. padding-bottom: 3rem !important;
  7566. }
  7567. .pt-0 {
  7568. padding-top: 0 !important;
  7569. }
  7570. .pt-1 {
  7571. padding-top: 0.25rem !important;
  7572. }
  7573. .pt-2 {
  7574. padding-top: 0.5rem !important;
  7575. }
  7576. .pt-3 {
  7577. padding-top: 1rem !important;
  7578. }
  7579. .pt-4 {
  7580. padding-top: 1.5rem !important;
  7581. }
  7582. .pt-5 {
  7583. padding-top: 3rem !important;
  7584. }
  7585. .pe-0 {
  7586. padding-right: 0 !important;
  7587. }
  7588. .pe-1 {
  7589. padding-right: 0.25rem !important;
  7590. }
  7591. .pe-2 {
  7592. padding-right: 0.5rem !important;
  7593. }
  7594. .pe-3 {
  7595. padding-right: 1rem !important;
  7596. }
  7597. .pe-4 {
  7598. padding-right: 1.5rem !important;
  7599. }
  7600. .pe-5 {
  7601. padding-right: 3rem !important;
  7602. }
  7603. .pb-0 {
  7604. padding-bottom: 0 !important;
  7605. }
  7606. .pb-1 {
  7607. padding-bottom: 0.25rem !important;
  7608. }
  7609. .pb-2 {
  7610. padding-bottom: 0.5rem !important;
  7611. }
  7612. .pb-3 {
  7613. padding-bottom: 1rem !important;
  7614. }
  7615. .pb-4 {
  7616. padding-bottom: 1.5rem !important;
  7617. }
  7618. .pb-5 {
  7619. padding-bottom: 3rem !important;
  7620. }
  7621. .ps-0 {
  7622. padding-left: 0 !important;
  7623. }
  7624. .ps-1 {
  7625. padding-left: 0.25rem !important;
  7626. }
  7627. .ps-2 {
  7628. padding-left: 0.5rem !important;
  7629. }
  7630. .ps-3 {
  7631. padding-left: 1rem !important;
  7632. }
  7633. .ps-4 {
  7634. padding-left: 1.5rem !important;
  7635. }
  7636. .ps-5 {
  7637. padding-left: 3rem !important;
  7638. }
  7639. .gap-0 {
  7640. gap: 0 !important;
  7641. }
  7642. .gap-1 {
  7643. gap: 0.25rem !important;
  7644. }
  7645. .gap-2 {
  7646. gap: 0.5rem !important;
  7647. }
  7648. .gap-3 {
  7649. gap: 1rem !important;
  7650. }
  7651. .gap-4 {
  7652. gap: 1.5rem !important;
  7653. }
  7654. .gap-5 {
  7655. gap: 3rem !important;
  7656. }
  7657. .row-gap-0 {
  7658. row-gap: 0 !important;
  7659. }
  7660. .row-gap-1 {
  7661. row-gap: 0.25rem !important;
  7662. }
  7663. .row-gap-2 {
  7664. row-gap: 0.5rem !important;
  7665. }
  7666. .row-gap-3 {
  7667. row-gap: 1rem !important;
  7668. }
  7669. .row-gap-4 {
  7670. row-gap: 1.5rem !important;
  7671. }
  7672. .row-gap-5 {
  7673. row-gap: 3rem !important;
  7674. }
  7675. .column-gap-0 {
  7676. -moz-column-gap: 0 !important;
  7677. column-gap: 0 !important;
  7678. }
  7679. .column-gap-1 {
  7680. -moz-column-gap: 0.25rem !important;
  7681. column-gap: 0.25rem !important;
  7682. }
  7683. .column-gap-2 {
  7684. -moz-column-gap: 0.5rem !important;
  7685. column-gap: 0.5rem !important;
  7686. }
  7687. .column-gap-3 {
  7688. -moz-column-gap: 1rem !important;
  7689. column-gap: 1rem !important;
  7690. }
  7691. .column-gap-4 {
  7692. -moz-column-gap: 1.5rem !important;
  7693. column-gap: 1.5rem !important;
  7694. }
  7695. .column-gap-5 {
  7696. -moz-column-gap: 3rem !important;
  7697. column-gap: 3rem !important;
  7698. }
  7699. .font-monospace {
  7700. font-family: var(--bs-font-monospace) !important;
  7701. }
  7702. .fs-1 {
  7703. font-size: calc(1.375rem + 1.5vw) !important;
  7704. }
  7705. .fs-2 {
  7706. font-size: calc(1.325rem + 0.9vw) !important;
  7707. }
  7708. .fs-3 {
  7709. font-size: calc(1.3rem + 0.6vw) !important;
  7710. }
  7711. .fs-4 {
  7712. font-size: calc(1.275rem + 0.3vw) !important;
  7713. }
  7714. .fs-5 {
  7715. font-size: 1.25rem !important;
  7716. }
  7717. .fs-6 {
  7718. font-size: 1rem !important;
  7719. }
  7720. .fst-italic {
  7721. font-style: italic !important;
  7722. }
  7723. .fst-normal {
  7724. font-style: normal !important;
  7725. }
  7726. .fw-lighter {
  7727. font-weight: lighter !important;
  7728. }
  7729. .fw-light {
  7730. font-weight: 300 !important;
  7731. }
  7732. .fw-normal {
  7733. font-weight: 400 !important;
  7734. }
  7735. .fw-medium {
  7736. font-weight: 500 !important;
  7737. }
  7738. .fw-semibold {
  7739. font-weight: 600 !important;
  7740. }
  7741. .fw-bold {
  7742. font-weight: 700 !important;
  7743. }
  7744. .fw-bolder {
  7745. font-weight: bolder !important;
  7746. }
  7747. .lh-1 {
  7748. line-height: 1 !important;
  7749. }
  7750. .lh-sm {
  7751. line-height: 1.25 !important;
  7752. }
  7753. .lh-base {
  7754. line-height: 1.5 !important;
  7755. }
  7756. .lh-lg {
  7757. line-height: 2 !important;
  7758. }
  7759. .text-start {
  7760. text-align: left !important;
  7761. }
  7762. .text-end {
  7763. text-align: right !important;
  7764. }
  7765. .text-center {
  7766. text-align: center !important;
  7767. }
  7768. .text-decoration-none {
  7769. text-decoration: none !important;
  7770. }
  7771. .text-decoration-underline {
  7772. text-decoration: underline !important;
  7773. }
  7774. .text-decoration-line-through {
  7775. text-decoration: line-through !important;
  7776. }
  7777. .text-lowercase {
  7778. text-transform: lowercase !important;
  7779. }
  7780. .text-uppercase {
  7781. text-transform: uppercase !important;
  7782. }
  7783. .text-capitalize {
  7784. text-transform: capitalize !important;
  7785. }
  7786. .text-wrap {
  7787. white-space: normal !important;
  7788. }
  7789. .text-nowrap {
  7790. white-space: nowrap !important;
  7791. }
  7792. /* rtl:begin:remove */
  7793. .text-break {
  7794. word-wrap: break-word !important;
  7795. word-break: break-word !important;
  7796. }
  7797. /* rtl:end:remove */
  7798. .text-primary {
  7799. --bs-text-opacity: 1;
  7800. color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
  7801. }
  7802. .text-secondary {
  7803. --bs-text-opacity: 1;
  7804. color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
  7805. }
  7806. .text-success {
  7807. --bs-text-opacity: 1;
  7808. color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
  7809. }
  7810. .text-info {
  7811. --bs-text-opacity: 1;
  7812. color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
  7813. }
  7814. .text-warning {
  7815. --bs-text-opacity: 1;
  7816. color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
  7817. }
  7818. .text-danger {
  7819. --bs-text-opacity: 1;
  7820. color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
  7821. }
  7822. .text-light {
  7823. --bs-text-opacity: 1;
  7824. color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
  7825. }
  7826. .text-dark {
  7827. --bs-text-opacity: 1;
  7828. color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
  7829. }
  7830. .text-black {
  7831. --bs-text-opacity: 1;
  7832. color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
  7833. }
  7834. .text-white {
  7835. --bs-text-opacity: 1;
  7836. color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
  7837. }
  7838. .text-body {
  7839. --bs-text-opacity: 1;
  7840. color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
  7841. }
  7842. .text-muted {
  7843. --bs-text-opacity: 1;
  7844. color: var(--bs-secondary-color) !important;
  7845. }
  7846. .text-black-50 {
  7847. --bs-text-opacity: 1;
  7848. color: rgba(0, 0, 0, 0.5) !important;
  7849. }
  7850. .text-white-50 {
  7851. --bs-text-opacity: 1;
  7852. color: rgba(255, 255, 255, 0.5) !important;
  7853. }
  7854. .text-body-secondary {
  7855. --bs-text-opacity: 1;
  7856. color: var(--bs-secondary-color) !important;
  7857. }
  7858. .text-body-tertiary {
  7859. --bs-text-opacity: 1;
  7860. color: var(--bs-tertiary-color) !important;
  7861. }
  7862. .text-body-emphasis {
  7863. --bs-text-opacity: 1;
  7864. color: var(--bs-emphasis-color) !important;
  7865. }
  7866. .text-reset {
  7867. --bs-text-opacity: 1;
  7868. color: inherit !important;
  7869. }
  7870. .text-opacity-25 {
  7871. --bs-text-opacity: 0.25;
  7872. }
  7873. .text-opacity-50 {
  7874. --bs-text-opacity: 0.5;
  7875. }
  7876. .text-opacity-75 {
  7877. --bs-text-opacity: 0.75;
  7878. }
  7879. .text-opacity-100 {
  7880. --bs-text-opacity: 1;
  7881. }
  7882. .text-primary-emphasis {
  7883. color: var(--bs-primary-text-emphasis) !important;
  7884. }
  7885. .text-secondary-emphasis {
  7886. color: var(--bs-secondary-text-emphasis) !important;
  7887. }
  7888. .text-success-emphasis {
  7889. color: var(--bs-success-text-emphasis) !important;
  7890. }
  7891. .text-info-emphasis {
  7892. color: var(--bs-info-text-emphasis) !important;
  7893. }
  7894. .text-warning-emphasis {
  7895. color: var(--bs-warning-text-emphasis) !important;
  7896. }
  7897. .text-danger-emphasis {
  7898. color: var(--bs-danger-text-emphasis) !important;
  7899. }
  7900. .text-light-emphasis {
  7901. color: var(--bs-light-text-emphasis) !important;
  7902. }
  7903. .text-dark-emphasis {
  7904. color: var(--bs-dark-text-emphasis) !important;
  7905. }
  7906. .link-opacity-10 {
  7907. --bs-link-opacity: 0.1;
  7908. }
  7909. .link-opacity-10-hover:hover {
  7910. --bs-link-opacity: 0.1;
  7911. }
  7912. .link-opacity-25 {
  7913. --bs-link-opacity: 0.25;
  7914. }
  7915. .link-opacity-25-hover:hover {
  7916. --bs-link-opacity: 0.25;
  7917. }
  7918. .link-opacity-50 {
  7919. --bs-link-opacity: 0.5;
  7920. }
  7921. .link-opacity-50-hover:hover {
  7922. --bs-link-opacity: 0.5;
  7923. }
  7924. .link-opacity-75 {
  7925. --bs-link-opacity: 0.75;
  7926. }
  7927. .link-opacity-75-hover:hover {
  7928. --bs-link-opacity: 0.75;
  7929. }
  7930. .link-opacity-100 {
  7931. --bs-link-opacity: 1;
  7932. }
  7933. .link-opacity-100-hover:hover {
  7934. --bs-link-opacity: 1;
  7935. }
  7936. .link-offset-1 {
  7937. text-underline-offset: 0.125em !important;
  7938. }
  7939. .link-offset-1-hover:hover {
  7940. text-underline-offset: 0.125em !important;
  7941. }
  7942. .link-offset-2 {
  7943. text-underline-offset: 0.25em !important;
  7944. }
  7945. .link-offset-2-hover:hover {
  7946. text-underline-offset: 0.25em !important;
  7947. }
  7948. .link-offset-3 {
  7949. text-underline-offset: 0.375em !important;
  7950. }
  7951. .link-offset-3-hover:hover {
  7952. text-underline-offset: 0.375em !important;
  7953. }
  7954. .link-underline-primary {
  7955. --bs-link-underline-opacity: 1;
  7956. -webkit-text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
  7957. text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
  7958. }
  7959. .link-underline-secondary {
  7960. --bs-link-underline-opacity: 1;
  7961. -webkit-text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
  7962. text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
  7963. }
  7964. .link-underline-success {
  7965. --bs-link-underline-opacity: 1;
  7966. -webkit-text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
  7967. text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
  7968. }
  7969. .link-underline-info {
  7970. --bs-link-underline-opacity: 1;
  7971. -webkit-text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
  7972. text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
  7973. }
  7974. .link-underline-warning {
  7975. --bs-link-underline-opacity: 1;
  7976. -webkit-text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
  7977. text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
  7978. }
  7979. .link-underline-danger {
  7980. --bs-link-underline-opacity: 1;
  7981. -webkit-text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
  7982. text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
  7983. }
  7984. .link-underline-light {
  7985. --bs-link-underline-opacity: 1;
  7986. -webkit-text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
  7987. text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
  7988. }
  7989. .link-underline-dark {
  7990. --bs-link-underline-opacity: 1;
  7991. -webkit-text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
  7992. text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
  7993. }
  7994. .link-underline {
  7995. --bs-link-underline-opacity: 1;
  7996. -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  7997. text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  7998. }
  7999. .link-underline-opacity-0 {
  8000. --bs-link-underline-opacity: 0;
  8001. }
  8002. .link-underline-opacity-0-hover:hover {
  8003. --bs-link-underline-opacity: 0;
  8004. }
  8005. .link-underline-opacity-10 {
  8006. --bs-link-underline-opacity: 0.1;
  8007. }
  8008. .link-underline-opacity-10-hover:hover {
  8009. --bs-link-underline-opacity: 0.1;
  8010. }
  8011. .link-underline-opacity-25 {
  8012. --bs-link-underline-opacity: 0.25;
  8013. }
  8014. .link-underline-opacity-25-hover:hover {
  8015. --bs-link-underline-opacity: 0.25;
  8016. }
  8017. .link-underline-opacity-50 {
  8018. --bs-link-underline-opacity: 0.5;
  8019. }
  8020. .link-underline-opacity-50-hover:hover {
  8021. --bs-link-underline-opacity: 0.5;
  8022. }
  8023. .link-underline-opacity-75 {
  8024. --bs-link-underline-opacity: 0.75;
  8025. }
  8026. .link-underline-opacity-75-hover:hover {
  8027. --bs-link-underline-opacity: 0.75;
  8028. }
  8029. .link-underline-opacity-100 {
  8030. --bs-link-underline-opacity: 1;
  8031. }
  8032. .link-underline-opacity-100-hover:hover {
  8033. --bs-link-underline-opacity: 1;
  8034. }
  8035. .bg-primary {
  8036. --bs-bg-opacity: 1;
  8037. background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
  8038. }
  8039. .bg-secondary {
  8040. --bs-bg-opacity: 1;
  8041. background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
  8042. }
  8043. .bg-success {
  8044. --bs-bg-opacity: 1;
  8045. background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
  8046. }
  8047. .bg-info {
  8048. --bs-bg-opacity: 1;
  8049. background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
  8050. }
  8051. .bg-warning {
  8052. --bs-bg-opacity: 1;
  8053. background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  8054. }
  8055. .bg-danger {
  8056. --bs-bg-opacity: 1;
  8057. background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
  8058. }
  8059. .bg-light {
  8060. --bs-bg-opacity: 1;
  8061. background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  8062. }
  8063. .bg-dark {
  8064. --bs-bg-opacity: 1;
  8065. background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  8066. }
  8067. .bg-black {
  8068. --bs-bg-opacity: 1;
  8069. background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
  8070. }
  8071. .bg-white {
  8072. --bs-bg-opacity: 1;
  8073. background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  8074. }
  8075. .bg-body {
  8076. --bs-bg-opacity: 1;
  8077. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  8078. }
  8079. .bg-transparent {
  8080. --bs-bg-opacity: 1;
  8081. background-color: transparent !important;
  8082. }
  8083. .bg-body-secondary {
  8084. --bs-bg-opacity: 1;
  8085. background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
  8086. }
  8087. .bg-body-tertiary {
  8088. --bs-bg-opacity: 1;
  8089. background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
  8090. }
  8091. .bg-opacity-10 {
  8092. --bs-bg-opacity: 0.1;
  8093. }
  8094. .bg-opacity-25 {
  8095. --bs-bg-opacity: 0.25;
  8096. }
  8097. .bg-opacity-50 {
  8098. --bs-bg-opacity: 0.5;
  8099. }
  8100. .bg-opacity-75 {
  8101. --bs-bg-opacity: 0.75;
  8102. }
  8103. .bg-opacity-100 {
  8104. --bs-bg-opacity: 1;
  8105. }
  8106. .bg-primary-subtle {
  8107. background-color: var(--bs-primary-bg-subtle) !important;
  8108. }
  8109. .bg-secondary-subtle {
  8110. background-color: var(--bs-secondary-bg-subtle) !important;
  8111. }
  8112. .bg-success-subtle {
  8113. background-color: var(--bs-success-bg-subtle) !important;
  8114. }
  8115. .bg-info-subtle {
  8116. background-color: var(--bs-info-bg-subtle) !important;
  8117. }
  8118. .bg-warning-subtle {
  8119. background-color: var(--bs-warning-bg-subtle) !important;
  8120. }
  8121. .bg-danger-subtle {
  8122. background-color: var(--bs-danger-bg-subtle) !important;
  8123. }
  8124. .bg-light-subtle {
  8125. background-color: var(--bs-light-bg-subtle) !important;
  8126. }
  8127. .bg-dark-subtle {
  8128. background-color: var(--bs-dark-bg-subtle) !important;
  8129. }
  8130. .bg-gradient {
  8131. background-image: var(--bs-gradient) !important;
  8132. }
  8133. .user-select-all {
  8134. -webkit-user-select: all !important;
  8135. -moz-user-select: all !important;
  8136. user-select: all !important;
  8137. }
  8138. .user-select-auto {
  8139. -webkit-user-select: auto !important;
  8140. -moz-user-select: auto !important;
  8141. user-select: auto !important;
  8142. }
  8143. .user-select-none {
  8144. -webkit-user-select: none !important;
  8145. -moz-user-select: none !important;
  8146. user-select: none !important;
  8147. }
  8148. .pe-none {
  8149. pointer-events: none !important;
  8150. }
  8151. .pe-auto {
  8152. pointer-events: auto !important;
  8153. }
  8154. .rounded {
  8155. border-radius: var(--bs-border-radius) !important;
  8156. }
  8157. .rounded-0 {
  8158. border-radius: 0 !important;
  8159. }
  8160. .rounded-1 {
  8161. border-radius: var(--bs-border-radius-sm) !important;
  8162. }
  8163. .rounded-2 {
  8164. border-radius: var(--bs-border-radius) !important;
  8165. }
  8166. .rounded-3 {
  8167. border-radius: var(--bs-border-radius-lg) !important;
  8168. }
  8169. .rounded-4 {
  8170. border-radius: var(--bs-border-radius-xl) !important;
  8171. }
  8172. .rounded-5 {
  8173. border-radius: var(--bs-border-radius-xxl) !important;
  8174. }
  8175. .rounded-circle {
  8176. border-radius: 50% !important;
  8177. }
  8178. .rounded-pill {
  8179. border-radius: var(--bs-border-radius-pill) !important;
  8180. }
  8181. .rounded-top {
  8182. border-top-left-radius: var(--bs-border-radius) !important;
  8183. border-top-right-radius: var(--bs-border-radius) !important;
  8184. }
  8185. .rounded-top-0 {
  8186. border-top-left-radius: 0 !important;
  8187. border-top-right-radius: 0 !important;
  8188. }
  8189. .rounded-top-1 {
  8190. border-top-left-radius: var(--bs-border-radius-sm) !important;
  8191. border-top-right-radius: var(--bs-border-radius-sm) !important;
  8192. }
  8193. .rounded-top-2 {
  8194. border-top-left-radius: var(--bs-border-radius) !important;
  8195. border-top-right-radius: var(--bs-border-radius) !important;
  8196. }
  8197. .rounded-top-3 {
  8198. border-top-left-radius: var(--bs-border-radius-lg) !important;
  8199. border-top-right-radius: var(--bs-border-radius-lg) !important;
  8200. }
  8201. .rounded-top-4 {
  8202. border-top-left-radius: var(--bs-border-radius-xl) !important;
  8203. border-top-right-radius: var(--bs-border-radius-xl) !important;
  8204. }
  8205. .rounded-top-5 {
  8206. border-top-left-radius: var(--bs-border-radius-xxl) !important;
  8207. border-top-right-radius: var(--bs-border-radius-xxl) !important;
  8208. }
  8209. .rounded-top-circle {
  8210. border-top-left-radius: 50% !important;
  8211. border-top-right-radius: 50% !important;
  8212. }
  8213. .rounded-top-pill {
  8214. border-top-left-radius: var(--bs-border-radius-pill) !important;
  8215. border-top-right-radius: var(--bs-border-radius-pill) !important;
  8216. }
  8217. .rounded-end {
  8218. border-top-right-radius: var(--bs-border-radius) !important;
  8219. border-bottom-right-radius: var(--bs-border-radius) !important;
  8220. }
  8221. .rounded-end-0 {
  8222. border-top-right-radius: 0 !important;
  8223. border-bottom-right-radius: 0 !important;
  8224. }
  8225. .rounded-end-1 {
  8226. border-top-right-radius: var(--bs-border-radius-sm) !important;
  8227. border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  8228. }
  8229. .rounded-end-2 {
  8230. border-top-right-radius: var(--bs-border-radius) !important;
  8231. border-bottom-right-radius: var(--bs-border-radius) !important;
  8232. }
  8233. .rounded-end-3 {
  8234. border-top-right-radius: var(--bs-border-radius-lg) !important;
  8235. border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  8236. }
  8237. .rounded-end-4 {
  8238. border-top-right-radius: var(--bs-border-radius-xl) !important;
  8239. border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  8240. }
  8241. .rounded-end-5 {
  8242. border-top-right-radius: var(--bs-border-radius-xxl) !important;
  8243. border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  8244. }
  8245. .rounded-end-circle {
  8246. border-top-right-radius: 50% !important;
  8247. border-bottom-right-radius: 50% !important;
  8248. }
  8249. .rounded-end-pill {
  8250. border-top-right-radius: var(--bs-border-radius-pill) !important;
  8251. border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  8252. }
  8253. .rounded-bottom {
  8254. border-bottom-right-radius: var(--bs-border-radius) !important;
  8255. border-bottom-left-radius: var(--bs-border-radius) !important;
  8256. }
  8257. .rounded-bottom-0 {
  8258. border-bottom-right-radius: 0 !important;
  8259. border-bottom-left-radius: 0 !important;
  8260. }
  8261. .rounded-bottom-1 {
  8262. border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  8263. border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  8264. }
  8265. .rounded-bottom-2 {
  8266. border-bottom-right-radius: var(--bs-border-radius) !important;
  8267. border-bottom-left-radius: var(--bs-border-radius) !important;
  8268. }
  8269. .rounded-bottom-3 {
  8270. border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  8271. border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  8272. }
  8273. .rounded-bottom-4 {
  8274. border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  8275. border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  8276. }
  8277. .rounded-bottom-5 {
  8278. border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  8279. border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  8280. }
  8281. .rounded-bottom-circle {
  8282. border-bottom-right-radius: 50% !important;
  8283. border-bottom-left-radius: 50% !important;
  8284. }
  8285. .rounded-bottom-pill {
  8286. border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  8287. border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  8288. }
  8289. .rounded-start {
  8290. border-bottom-left-radius: var(--bs-border-radius) !important;
  8291. border-top-left-radius: var(--bs-border-radius) !important;
  8292. }
  8293. .rounded-start-0 {
  8294. border-bottom-left-radius: 0 !important;
  8295. border-top-left-radius: 0 !important;
  8296. }
  8297. .rounded-start-1 {
  8298. border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  8299. border-top-left-radius: var(--bs-border-radius-sm) !important;
  8300. }
  8301. .rounded-start-2 {
  8302. border-bottom-left-radius: var(--bs-border-radius) !important;
  8303. border-top-left-radius: var(--bs-border-radius) !important;
  8304. }
  8305. .rounded-start-3 {
  8306. border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  8307. border-top-left-radius: var(--bs-border-radius-lg) !important;
  8308. }
  8309. .rounded-start-4 {
  8310. border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  8311. border-top-left-radius: var(--bs-border-radius-xl) !important;
  8312. }
  8313. .rounded-start-5 {
  8314. border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  8315. border-top-left-radius: var(--bs-border-radius-xxl) !important;
  8316. }
  8317. .rounded-start-circle {
  8318. border-bottom-left-radius: 50% !important;
  8319. border-top-left-radius: 50% !important;
  8320. }
  8321. .rounded-start-pill {
  8322. border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  8323. border-top-left-radius: var(--bs-border-radius-pill) !important;
  8324. }
  8325. .visible {
  8326. visibility: visible !important;
  8327. }
  8328. .invisible {
  8329. visibility: hidden !important;
  8330. }
  8331. .z-n1 {
  8332. z-index: -1 !important;
  8333. }
  8334. .z-0 {
  8335. z-index: 0 !important;
  8336. }
  8337. .z-1 {
  8338. z-index: 1 !important;
  8339. }
  8340. .z-2 {
  8341. z-index: 2 !important;
  8342. }
  8343. .z-3 {
  8344. z-index: 3 !important;
  8345. }
  8346. @media (min-width: 576px) {
  8347. .float-sm-start {
  8348. float: left !important;
  8349. }
  8350. .float-sm-end {
  8351. float: right !important;
  8352. }
  8353. .float-sm-none {
  8354. float: none !important;
  8355. }
  8356. .object-fit-sm-contain {
  8357. -o-object-fit: contain !important;
  8358. object-fit: contain !important;
  8359. }
  8360. .object-fit-sm-cover {
  8361. -o-object-fit: cover !important;
  8362. object-fit: cover !important;
  8363. }
  8364. .object-fit-sm-fill {
  8365. -o-object-fit: fill !important;
  8366. object-fit: fill !important;
  8367. }
  8368. .object-fit-sm-scale {
  8369. -o-object-fit: scale-down !important;
  8370. object-fit: scale-down !important;
  8371. }
  8372. .object-fit-sm-none {
  8373. -o-object-fit: none !important;
  8374. object-fit: none !important;
  8375. }
  8376. .d-sm-inline {
  8377. display: inline !important;
  8378. }
  8379. .d-sm-inline-block {
  8380. display: inline-block !important;
  8381. }
  8382. .d-sm-block {
  8383. display: block !important;
  8384. }
  8385. .d-sm-grid {
  8386. display: grid !important;
  8387. }
  8388. .d-sm-table {
  8389. display: table !important;
  8390. }
  8391. .d-sm-table-row {
  8392. display: table-row !important;
  8393. }
  8394. .d-sm-table-cell {
  8395. display: table-cell !important;
  8396. }
  8397. .d-sm-flex {
  8398. display: flex !important;
  8399. }
  8400. .d-sm-inline-flex {
  8401. display: inline-flex !important;
  8402. }
  8403. .d-sm-none {
  8404. display: none !important;
  8405. }
  8406. .flex-sm-fill {
  8407. flex: 1 1 auto !important;
  8408. }
  8409. .flex-sm-row {
  8410. flex-direction: row !important;
  8411. }
  8412. .flex-sm-column {
  8413. flex-direction: column !important;
  8414. }
  8415. .flex-sm-row-reverse {
  8416. flex-direction: row-reverse !important;
  8417. }
  8418. .flex-sm-column-reverse {
  8419. flex-direction: column-reverse !important;
  8420. }
  8421. .flex-sm-grow-0 {
  8422. flex-grow: 0 !important;
  8423. }
  8424. .flex-sm-grow-1 {
  8425. flex-grow: 1 !important;
  8426. }
  8427. .flex-sm-shrink-0 {
  8428. flex-shrink: 0 !important;
  8429. }
  8430. .flex-sm-shrink-1 {
  8431. flex-shrink: 1 !important;
  8432. }
  8433. .flex-sm-wrap {
  8434. flex-wrap: wrap !important;
  8435. }
  8436. .flex-sm-nowrap {
  8437. flex-wrap: nowrap !important;
  8438. }
  8439. .flex-sm-wrap-reverse {
  8440. flex-wrap: wrap-reverse !important;
  8441. }
  8442. .justify-content-sm-start {
  8443. justify-content: flex-start !important;
  8444. }
  8445. .justify-content-sm-end {
  8446. justify-content: flex-end !important;
  8447. }
  8448. .justify-content-sm-center {
  8449. justify-content: center !important;
  8450. }
  8451. .justify-content-sm-between {
  8452. justify-content: space-between !important;
  8453. }
  8454. .justify-content-sm-around {
  8455. justify-content: space-around !important;
  8456. }
  8457. .justify-content-sm-evenly {
  8458. justify-content: space-evenly !important;
  8459. }
  8460. .align-items-sm-start {
  8461. align-items: flex-start !important;
  8462. }
  8463. .align-items-sm-end {
  8464. align-items: flex-end !important;
  8465. }
  8466. .align-items-sm-center {
  8467. align-items: center !important;
  8468. }
  8469. .align-items-sm-baseline {
  8470. align-items: baseline !important;
  8471. }
  8472. .align-items-sm-stretch {
  8473. align-items: stretch !important;
  8474. }
  8475. .align-content-sm-start {
  8476. align-content: flex-start !important;
  8477. }
  8478. .align-content-sm-end {
  8479. align-content: flex-end !important;
  8480. }
  8481. .align-content-sm-center {
  8482. align-content: center !important;
  8483. }
  8484. .align-content-sm-between {
  8485. align-content: space-between !important;
  8486. }
  8487. .align-content-sm-around {
  8488. align-content: space-around !important;
  8489. }
  8490. .align-content-sm-stretch {
  8491. align-content: stretch !important;
  8492. }
  8493. .align-self-sm-auto {
  8494. align-self: auto !important;
  8495. }
  8496. .align-self-sm-start {
  8497. align-self: flex-start !important;
  8498. }
  8499. .align-self-sm-end {
  8500. align-self: flex-end !important;
  8501. }
  8502. .align-self-sm-center {
  8503. align-self: center !important;
  8504. }
  8505. .align-self-sm-baseline {
  8506. align-self: baseline !important;
  8507. }
  8508. .align-self-sm-stretch {
  8509. align-self: stretch !important;
  8510. }
  8511. .order-sm-first {
  8512. order: -1 !important;
  8513. }
  8514. .order-sm-0 {
  8515. order: 0 !important;
  8516. }
  8517. .order-sm-1 {
  8518. order: 1 !important;
  8519. }
  8520. .order-sm-2 {
  8521. order: 2 !important;
  8522. }
  8523. .order-sm-3 {
  8524. order: 3 !important;
  8525. }
  8526. .order-sm-4 {
  8527. order: 4 !important;
  8528. }
  8529. .order-sm-5 {
  8530. order: 5 !important;
  8531. }
  8532. .order-sm-last {
  8533. order: 6 !important;
  8534. }
  8535. .m-sm-0 {
  8536. margin: 0 !important;
  8537. }
  8538. .m-sm-1 {
  8539. margin: 0.25rem !important;
  8540. }
  8541. .m-sm-2 {
  8542. margin: 0.5rem !important;
  8543. }
  8544. .m-sm-3 {
  8545. margin: 1rem !important;
  8546. }
  8547. .m-sm-4 {
  8548. margin: 1.5rem !important;
  8549. }
  8550. .m-sm-5 {
  8551. margin: 3rem !important;
  8552. }
  8553. .m-sm-auto {
  8554. margin: auto !important;
  8555. }
  8556. .mx-sm-0 {
  8557. margin-right: 0 !important;
  8558. margin-left: 0 !important;
  8559. }
  8560. .mx-sm-1 {
  8561. margin-right: 0.25rem !important;
  8562. margin-left: 0.25rem !important;
  8563. }
  8564. .mx-sm-2 {
  8565. margin-right: 0.5rem !important;
  8566. margin-left: 0.5rem !important;
  8567. }
  8568. .mx-sm-3 {
  8569. margin-right: 1rem !important;
  8570. margin-left: 1rem !important;
  8571. }
  8572. .mx-sm-4 {
  8573. margin-right: 1.5rem !important;
  8574. margin-left: 1.5rem !important;
  8575. }
  8576. .mx-sm-5 {
  8577. margin-right: 3rem !important;
  8578. margin-left: 3rem !important;
  8579. }
  8580. .mx-sm-auto {
  8581. margin-right: auto !important;
  8582. margin-left: auto !important;
  8583. }
  8584. .my-sm-0 {
  8585. margin-top: 0 !important;
  8586. margin-bottom: 0 !important;
  8587. }
  8588. .my-sm-1 {
  8589. margin-top: 0.25rem !important;
  8590. margin-bottom: 0.25rem !important;
  8591. }
  8592. .my-sm-2 {
  8593. margin-top: 0.5rem !important;
  8594. margin-bottom: 0.5rem !important;
  8595. }
  8596. .my-sm-3 {
  8597. margin-top: 1rem !important;
  8598. margin-bottom: 1rem !important;
  8599. }
  8600. .my-sm-4 {
  8601. margin-top: 1.5rem !important;
  8602. margin-bottom: 1.5rem !important;
  8603. }
  8604. .my-sm-5 {
  8605. margin-top: 3rem !important;
  8606. margin-bottom: 3rem !important;
  8607. }
  8608. .my-sm-auto {
  8609. margin-top: auto !important;
  8610. margin-bottom: auto !important;
  8611. }
  8612. .mt-sm-0 {
  8613. margin-top: 0 !important;
  8614. }
  8615. .mt-sm-1 {
  8616. margin-top: 0.25rem !important;
  8617. }
  8618. .mt-sm-2 {
  8619. margin-top: 0.5rem !important;
  8620. }
  8621. .mt-sm-3 {
  8622. margin-top: 1rem !important;
  8623. }
  8624. .mt-sm-4 {
  8625. margin-top: 1.5rem !important;
  8626. }
  8627. .mt-sm-5 {
  8628. margin-top: 3rem !important;
  8629. }
  8630. .mt-sm-auto {
  8631. margin-top: auto !important;
  8632. }
  8633. .me-sm-0 {
  8634. margin-right: 0 !important;
  8635. }
  8636. .me-sm-1 {
  8637. margin-right: 0.25rem !important;
  8638. }
  8639. .me-sm-2 {
  8640. margin-right: 0.5rem !important;
  8641. }
  8642. .me-sm-3 {
  8643. margin-right: 1rem !important;
  8644. }
  8645. .me-sm-4 {
  8646. margin-right: 1.5rem !important;
  8647. }
  8648. .me-sm-5 {
  8649. margin-right: 3rem !important;
  8650. }
  8651. .me-sm-auto {
  8652. margin-right: auto !important;
  8653. }
  8654. .mb-sm-0 {
  8655. margin-bottom: 0 !important;
  8656. }
  8657. .mb-sm-1 {
  8658. margin-bottom: 0.25rem !important;
  8659. }
  8660. .mb-sm-2 {
  8661. margin-bottom: 0.5rem !important;
  8662. }
  8663. .mb-sm-3 {
  8664. margin-bottom: 1rem !important;
  8665. }
  8666. .mb-sm-4 {
  8667. margin-bottom: 1.5rem !important;
  8668. }
  8669. .mb-sm-5 {
  8670. margin-bottom: 3rem !important;
  8671. }
  8672. .mb-sm-auto {
  8673. margin-bottom: auto !important;
  8674. }
  8675. .ms-sm-0 {
  8676. margin-left: 0 !important;
  8677. }
  8678. .ms-sm-1 {
  8679. margin-left: 0.25rem !important;
  8680. }
  8681. .ms-sm-2 {
  8682. margin-left: 0.5rem !important;
  8683. }
  8684. .ms-sm-3 {
  8685. margin-left: 1rem !important;
  8686. }
  8687. .ms-sm-4 {
  8688. margin-left: 1.5rem !important;
  8689. }
  8690. .ms-sm-5 {
  8691. margin-left: 3rem !important;
  8692. }
  8693. .ms-sm-auto {
  8694. margin-left: auto !important;
  8695. }
  8696. .p-sm-0 {
  8697. padding: 0 !important;
  8698. }
  8699. .p-sm-1 {
  8700. padding: 0.25rem !important;
  8701. }
  8702. .p-sm-2 {
  8703. padding: 0.5rem !important;
  8704. }
  8705. .p-sm-3 {
  8706. padding: 1rem !important;
  8707. }
  8708. .p-sm-4 {
  8709. padding: 1.5rem !important;
  8710. }
  8711. .p-sm-5 {
  8712. padding: 3rem !important;
  8713. }
  8714. .px-sm-0 {
  8715. padding-right: 0 !important;
  8716. padding-left: 0 !important;
  8717. }
  8718. .px-sm-1 {
  8719. padding-right: 0.25rem !important;
  8720. padding-left: 0.25rem !important;
  8721. }
  8722. .px-sm-2 {
  8723. padding-right: 0.5rem !important;
  8724. padding-left: 0.5rem !important;
  8725. }
  8726. .px-sm-3 {
  8727. padding-right: 1rem !important;
  8728. padding-left: 1rem !important;
  8729. }
  8730. .px-sm-4 {
  8731. padding-right: 1.5rem !important;
  8732. padding-left: 1.5rem !important;
  8733. }
  8734. .px-sm-5 {
  8735. padding-right: 3rem !important;
  8736. padding-left: 3rem !important;
  8737. }
  8738. .py-sm-0 {
  8739. padding-top: 0 !important;
  8740. padding-bottom: 0 !important;
  8741. }
  8742. .py-sm-1 {
  8743. padding-top: 0.25rem !important;
  8744. padding-bottom: 0.25rem !important;
  8745. }
  8746. .py-sm-2 {
  8747. padding-top: 0.5rem !important;
  8748. padding-bottom: 0.5rem !important;
  8749. }
  8750. .py-sm-3 {
  8751. padding-top: 1rem !important;
  8752. padding-bottom: 1rem !important;
  8753. }
  8754. .py-sm-4 {
  8755. padding-top: 1.5rem !important;
  8756. padding-bottom: 1.5rem !important;
  8757. }
  8758. .py-sm-5 {
  8759. padding-top: 3rem !important;
  8760. padding-bottom: 3rem !important;
  8761. }
  8762. .pt-sm-0 {
  8763. padding-top: 0 !important;
  8764. }
  8765. .pt-sm-1 {
  8766. padding-top: 0.25rem !important;
  8767. }
  8768. .pt-sm-2 {
  8769. padding-top: 0.5rem !important;
  8770. }
  8771. .pt-sm-3 {
  8772. padding-top: 1rem !important;
  8773. }
  8774. .pt-sm-4 {
  8775. padding-top: 1.5rem !important;
  8776. }
  8777. .pt-sm-5 {
  8778. padding-top: 3rem !important;
  8779. }
  8780. .pe-sm-0 {
  8781. padding-right: 0 !important;
  8782. }
  8783. .pe-sm-1 {
  8784. padding-right: 0.25rem !important;
  8785. }
  8786. .pe-sm-2 {
  8787. padding-right: 0.5rem !important;
  8788. }
  8789. .pe-sm-3 {
  8790. padding-right: 1rem !important;
  8791. }
  8792. .pe-sm-4 {
  8793. padding-right: 1.5rem !important;
  8794. }
  8795. .pe-sm-5 {
  8796. padding-right: 3rem !important;
  8797. }
  8798. .pb-sm-0 {
  8799. padding-bottom: 0 !important;
  8800. }
  8801. .pb-sm-1 {
  8802. padding-bottom: 0.25rem !important;
  8803. }
  8804. .pb-sm-2 {
  8805. padding-bottom: 0.5rem !important;
  8806. }
  8807. .pb-sm-3 {
  8808. padding-bottom: 1rem !important;
  8809. }
  8810. .pb-sm-4 {
  8811. padding-bottom: 1.5rem !important;
  8812. }
  8813. .pb-sm-5 {
  8814. padding-bottom: 3rem !important;
  8815. }
  8816. .ps-sm-0 {
  8817. padding-left: 0 !important;
  8818. }
  8819. .ps-sm-1 {
  8820. padding-left: 0.25rem !important;
  8821. }
  8822. .ps-sm-2 {
  8823. padding-left: 0.5rem !important;
  8824. }
  8825. .ps-sm-3 {
  8826. padding-left: 1rem !important;
  8827. }
  8828. .ps-sm-4 {
  8829. padding-left: 1.5rem !important;
  8830. }
  8831. .ps-sm-5 {
  8832. padding-left: 3rem !important;
  8833. }
  8834. .gap-sm-0 {
  8835. gap: 0 !important;
  8836. }
  8837. .gap-sm-1 {
  8838. gap: 0.25rem !important;
  8839. }
  8840. .gap-sm-2 {
  8841. gap: 0.5rem !important;
  8842. }
  8843. .gap-sm-3 {
  8844. gap: 1rem !important;
  8845. }
  8846. .gap-sm-4 {
  8847. gap: 1.5rem !important;
  8848. }
  8849. .gap-sm-5 {
  8850. gap: 3rem !important;
  8851. }
  8852. .row-gap-sm-0 {
  8853. row-gap: 0 !important;
  8854. }
  8855. .row-gap-sm-1 {
  8856. row-gap: 0.25rem !important;
  8857. }
  8858. .row-gap-sm-2 {
  8859. row-gap: 0.5rem !important;
  8860. }
  8861. .row-gap-sm-3 {
  8862. row-gap: 1rem !important;
  8863. }
  8864. .row-gap-sm-4 {
  8865. row-gap: 1.5rem !important;
  8866. }
  8867. .row-gap-sm-5 {
  8868. row-gap: 3rem !important;
  8869. }
  8870. .column-gap-sm-0 {
  8871. -moz-column-gap: 0 !important;
  8872. column-gap: 0 !important;
  8873. }
  8874. .column-gap-sm-1 {
  8875. -moz-column-gap: 0.25rem !important;
  8876. column-gap: 0.25rem !important;
  8877. }
  8878. .column-gap-sm-2 {
  8879. -moz-column-gap: 0.5rem !important;
  8880. column-gap: 0.5rem !important;
  8881. }
  8882. .column-gap-sm-3 {
  8883. -moz-column-gap: 1rem !important;
  8884. column-gap: 1rem !important;
  8885. }
  8886. .column-gap-sm-4 {
  8887. -moz-column-gap: 1.5rem !important;
  8888. column-gap: 1.5rem !important;
  8889. }
  8890. .column-gap-sm-5 {
  8891. -moz-column-gap: 3rem !important;
  8892. column-gap: 3rem !important;
  8893. }
  8894. .text-sm-start {
  8895. text-align: left !important;
  8896. }
  8897. .text-sm-end {
  8898. text-align: right !important;
  8899. }
  8900. .text-sm-center {
  8901. text-align: center !important;
  8902. }
  8903. }
  8904. @media (min-width: 768px) {
  8905. .float-md-start {
  8906. float: left !important;
  8907. }
  8908. .float-md-end {
  8909. float: right !important;
  8910. }
  8911. .float-md-none {
  8912. float: none !important;
  8913. }
  8914. .object-fit-md-contain {
  8915. -o-object-fit: contain !important;
  8916. object-fit: contain !important;
  8917. }
  8918. .object-fit-md-cover {
  8919. -o-object-fit: cover !important;
  8920. object-fit: cover !important;
  8921. }
  8922. .object-fit-md-fill {
  8923. -o-object-fit: fill !important;
  8924. object-fit: fill !important;
  8925. }
  8926. .object-fit-md-scale {
  8927. -o-object-fit: scale-down !important;
  8928. object-fit: scale-down !important;
  8929. }
  8930. .object-fit-md-none {
  8931. -o-object-fit: none !important;
  8932. object-fit: none !important;
  8933. }
  8934. .d-md-inline {
  8935. display: inline !important;
  8936. }
  8937. .d-md-inline-block {
  8938. display: inline-block !important;
  8939. }
  8940. .d-md-block {
  8941. display: block !important;
  8942. }
  8943. .d-md-grid {
  8944. display: grid !important;
  8945. }
  8946. .d-md-table {
  8947. display: table !important;
  8948. }
  8949. .d-md-table-row {
  8950. display: table-row !important;
  8951. }
  8952. .d-md-table-cell {
  8953. display: table-cell !important;
  8954. }
  8955. .d-md-flex {
  8956. display: flex !important;
  8957. }
  8958. .d-md-inline-flex {
  8959. display: inline-flex !important;
  8960. }
  8961. .d-md-none {
  8962. display: none !important;
  8963. }
  8964. .flex-md-fill {
  8965. flex: 1 1 auto !important;
  8966. }
  8967. .flex-md-row {
  8968. flex-direction: row !important;
  8969. }
  8970. .flex-md-column {
  8971. flex-direction: column !important;
  8972. }
  8973. .flex-md-row-reverse {
  8974. flex-direction: row-reverse !important;
  8975. }
  8976. .flex-md-column-reverse {
  8977. flex-direction: column-reverse !important;
  8978. }
  8979. .flex-md-grow-0 {
  8980. flex-grow: 0 !important;
  8981. }
  8982. .flex-md-grow-1 {
  8983. flex-grow: 1 !important;
  8984. }
  8985. .flex-md-shrink-0 {
  8986. flex-shrink: 0 !important;
  8987. }
  8988. .flex-md-shrink-1 {
  8989. flex-shrink: 1 !important;
  8990. }
  8991. .flex-md-wrap {
  8992. flex-wrap: wrap !important;
  8993. }
  8994. .flex-md-nowrap {
  8995. flex-wrap: nowrap !important;
  8996. }
  8997. .flex-md-wrap-reverse {
  8998. flex-wrap: wrap-reverse !important;
  8999. }
  9000. .justify-content-md-start {
  9001. justify-content: flex-start !important;
  9002. }
  9003. .justify-content-md-end {
  9004. justify-content: flex-end !important;
  9005. }
  9006. .justify-content-md-center {
  9007. justify-content: center !important;
  9008. }
  9009. .justify-content-md-between {
  9010. justify-content: space-between !important;
  9011. }
  9012. .justify-content-md-around {
  9013. justify-content: space-around !important;
  9014. }
  9015. .justify-content-md-evenly {
  9016. justify-content: space-evenly !important;
  9017. }
  9018. .align-items-md-start {
  9019. align-items: flex-start !important;
  9020. }
  9021. .align-items-md-end {
  9022. align-items: flex-end !important;
  9023. }
  9024. .align-items-md-center {
  9025. align-items: center !important;
  9026. }
  9027. .align-items-md-baseline {
  9028. align-items: baseline !important;
  9029. }
  9030. .align-items-md-stretch {
  9031. align-items: stretch !important;
  9032. }
  9033. .align-content-md-start {
  9034. align-content: flex-start !important;
  9035. }
  9036. .align-content-md-end {
  9037. align-content: flex-end !important;
  9038. }
  9039. .align-content-md-center {
  9040. align-content: center !important;
  9041. }
  9042. .align-content-md-between {
  9043. align-content: space-between !important;
  9044. }
  9045. .align-content-md-around {
  9046. align-content: space-around !important;
  9047. }
  9048. .align-content-md-stretch {
  9049. align-content: stretch !important;
  9050. }
  9051. .align-self-md-auto {
  9052. align-self: auto !important;
  9053. }
  9054. .align-self-md-start {
  9055. align-self: flex-start !important;
  9056. }
  9057. .align-self-md-end {
  9058. align-self: flex-end !important;
  9059. }
  9060. .align-self-md-center {
  9061. align-self: center !important;
  9062. }
  9063. .align-self-md-baseline {
  9064. align-self: baseline !important;
  9065. }
  9066. .align-self-md-stretch {
  9067. align-self: stretch !important;
  9068. }
  9069. .order-md-first {
  9070. order: -1 !important;
  9071. }
  9072. .order-md-0 {
  9073. order: 0 !important;
  9074. }
  9075. .order-md-1 {
  9076. order: 1 !important;
  9077. }
  9078. .order-md-2 {
  9079. order: 2 !important;
  9080. }
  9081. .order-md-3 {
  9082. order: 3 !important;
  9083. }
  9084. .order-md-4 {
  9085. order: 4 !important;
  9086. }
  9087. .order-md-5 {
  9088. order: 5 !important;
  9089. }
  9090. .order-md-last {
  9091. order: 6 !important;
  9092. }
  9093. .m-md-0 {
  9094. margin: 0 !important;
  9095. }
  9096. .m-md-1 {
  9097. margin: 0.25rem !important;
  9098. }
  9099. .m-md-2 {
  9100. margin: 0.5rem !important;
  9101. }
  9102. .m-md-3 {
  9103. margin: 1rem !important;
  9104. }
  9105. .m-md-4 {
  9106. margin: 1.5rem !important;
  9107. }
  9108. .m-md-5 {
  9109. margin: 3rem !important;
  9110. }
  9111. .m-md-auto {
  9112. margin: auto !important;
  9113. }
  9114. .mx-md-0 {
  9115. margin-right: 0 !important;
  9116. margin-left: 0 !important;
  9117. }
  9118. .mx-md-1 {
  9119. margin-right: 0.25rem !important;
  9120. margin-left: 0.25rem !important;
  9121. }
  9122. .mx-md-2 {
  9123. margin-right: 0.5rem !important;
  9124. margin-left: 0.5rem !important;
  9125. }
  9126. .mx-md-3 {
  9127. margin-right: 1rem !important;
  9128. margin-left: 1rem !important;
  9129. }
  9130. .mx-md-4 {
  9131. margin-right: 1.5rem !important;
  9132. margin-left: 1.5rem !important;
  9133. }
  9134. .mx-md-5 {
  9135. margin-right: 3rem !important;
  9136. margin-left: 3rem !important;
  9137. }
  9138. .mx-md-auto {
  9139. margin-right: auto !important;
  9140. margin-left: auto !important;
  9141. }
  9142. .my-md-0 {
  9143. margin-top: 0 !important;
  9144. margin-bottom: 0 !important;
  9145. }
  9146. .my-md-1 {
  9147. margin-top: 0.25rem !important;
  9148. margin-bottom: 0.25rem !important;
  9149. }
  9150. .my-md-2 {
  9151. margin-top: 0.5rem !important;
  9152. margin-bottom: 0.5rem !important;
  9153. }
  9154. .my-md-3 {
  9155. margin-top: 1rem !important;
  9156. margin-bottom: 1rem !important;
  9157. }
  9158. .my-md-4 {
  9159. margin-top: 1.5rem !important;
  9160. margin-bottom: 1.5rem !important;
  9161. }
  9162. .my-md-5 {
  9163. margin-top: 3rem !important;
  9164. margin-bottom: 3rem !important;
  9165. }
  9166. .my-md-auto {
  9167. margin-top: auto !important;
  9168. margin-bottom: auto !important;
  9169. }
  9170. .mt-md-0 {
  9171. margin-top: 0 !important;
  9172. }
  9173. .mt-md-1 {
  9174. margin-top: 0.25rem !important;
  9175. }
  9176. .mt-md-2 {
  9177. margin-top: 0.5rem !important;
  9178. }
  9179. .mt-md-3 {
  9180. margin-top: 1rem !important;
  9181. }
  9182. .mt-md-4 {
  9183. margin-top: 1.5rem !important;
  9184. }
  9185. .mt-md-5 {
  9186. margin-top: 3rem !important;
  9187. }
  9188. .mt-md-auto {
  9189. margin-top: auto !important;
  9190. }
  9191. .me-md-0 {
  9192. margin-right: 0 !important;
  9193. }
  9194. .me-md-1 {
  9195. margin-right: 0.25rem !important;
  9196. }
  9197. .me-md-2 {
  9198. margin-right: 0.5rem !important;
  9199. }
  9200. .me-md-3 {
  9201. margin-right: 1rem !important;
  9202. }
  9203. .me-md-4 {
  9204. margin-right: 1.5rem !important;
  9205. }
  9206. .me-md-5 {
  9207. margin-right: 3rem !important;
  9208. }
  9209. .me-md-auto {
  9210. margin-right: auto !important;
  9211. }
  9212. .mb-md-0 {
  9213. margin-bottom: 0 !important;
  9214. }
  9215. .mb-md-1 {
  9216. margin-bottom: 0.25rem !important;
  9217. }
  9218. .mb-md-2 {
  9219. margin-bottom: 0.5rem !important;
  9220. }
  9221. .mb-md-3 {
  9222. margin-bottom: 1rem !important;
  9223. }
  9224. .mb-md-4 {
  9225. margin-bottom: 1.5rem !important;
  9226. }
  9227. .mb-md-5 {
  9228. margin-bottom: 3rem !important;
  9229. }
  9230. .mb-md-auto {
  9231. margin-bottom: auto !important;
  9232. }
  9233. .ms-md-0 {
  9234. margin-left: 0 !important;
  9235. }
  9236. .ms-md-1 {
  9237. margin-left: 0.25rem !important;
  9238. }
  9239. .ms-md-2 {
  9240. margin-left: 0.5rem !important;
  9241. }
  9242. .ms-md-3 {
  9243. margin-left: 1rem !important;
  9244. }
  9245. .ms-md-4 {
  9246. margin-left: 1.5rem !important;
  9247. }
  9248. .ms-md-5 {
  9249. margin-left: 3rem !important;
  9250. }
  9251. .ms-md-auto {
  9252. margin-left: auto !important;
  9253. }
  9254. .p-md-0 {
  9255. padding: 0 !important;
  9256. }
  9257. .p-md-1 {
  9258. padding: 0.25rem !important;
  9259. }
  9260. .p-md-2 {
  9261. padding: 0.5rem !important;
  9262. }
  9263. .p-md-3 {
  9264. padding: 1rem !important;
  9265. }
  9266. .p-md-4 {
  9267. padding: 1.5rem !important;
  9268. }
  9269. .p-md-5 {
  9270. padding: 3rem !important;
  9271. }
  9272. .px-md-0 {
  9273. padding-right: 0 !important;
  9274. padding-left: 0 !important;
  9275. }
  9276. .px-md-1 {
  9277. padding-right: 0.25rem !important;
  9278. padding-left: 0.25rem !important;
  9279. }
  9280. .px-md-2 {
  9281. padding-right: 0.5rem !important;
  9282. padding-left: 0.5rem !important;
  9283. }
  9284. .px-md-3 {
  9285. padding-right: 1rem !important;
  9286. padding-left: 1rem !important;
  9287. }
  9288. .px-md-4 {
  9289. padding-right: 1.5rem !important;
  9290. padding-left: 1.5rem !important;
  9291. }
  9292. .px-md-5 {
  9293. padding-right: 3rem !important;
  9294. padding-left: 3rem !important;
  9295. }
  9296. .py-md-0 {
  9297. padding-top: 0 !important;
  9298. padding-bottom: 0 !important;
  9299. }
  9300. .py-md-1 {
  9301. padding-top: 0.25rem !important;
  9302. padding-bottom: 0.25rem !important;
  9303. }
  9304. .py-md-2 {
  9305. padding-top: 0.5rem !important;
  9306. padding-bottom: 0.5rem !important;
  9307. }
  9308. .py-md-3 {
  9309. padding-top: 1rem !important;
  9310. padding-bottom: 1rem !important;
  9311. }
  9312. .py-md-4 {
  9313. padding-top: 1.5rem !important;
  9314. padding-bottom: 1.5rem !important;
  9315. }
  9316. .py-md-5 {
  9317. padding-top: 3rem !important;
  9318. padding-bottom: 3rem !important;
  9319. }
  9320. .pt-md-0 {
  9321. padding-top: 0 !important;
  9322. }
  9323. .pt-md-1 {
  9324. padding-top: 0.25rem !important;
  9325. }
  9326. .pt-md-2 {
  9327. padding-top: 0.5rem !important;
  9328. }
  9329. .pt-md-3 {
  9330. padding-top: 1rem !important;
  9331. }
  9332. .pt-md-4 {
  9333. padding-top: 1.5rem !important;
  9334. }
  9335. .pt-md-5 {
  9336. padding-top: 3rem !important;
  9337. }
  9338. .pe-md-0 {
  9339. padding-right: 0 !important;
  9340. }
  9341. .pe-md-1 {
  9342. padding-right: 0.25rem !important;
  9343. }
  9344. .pe-md-2 {
  9345. padding-right: 0.5rem !important;
  9346. }
  9347. .pe-md-3 {
  9348. padding-right: 1rem !important;
  9349. }
  9350. .pe-md-4 {
  9351. padding-right: 1.5rem !important;
  9352. }
  9353. .pe-md-5 {
  9354. padding-right: 3rem !important;
  9355. }
  9356. .pb-md-0 {
  9357. padding-bottom: 0 !important;
  9358. }
  9359. .pb-md-1 {
  9360. padding-bottom: 0.25rem !important;
  9361. }
  9362. .pb-md-2 {
  9363. padding-bottom: 0.5rem !important;
  9364. }
  9365. .pb-md-3 {
  9366. padding-bottom: 1rem !important;
  9367. }
  9368. .pb-md-4 {
  9369. padding-bottom: 1.5rem !important;
  9370. }
  9371. .pb-md-5 {
  9372. padding-bottom: 3rem !important;
  9373. }
  9374. .ps-md-0 {
  9375. padding-left: 0 !important;
  9376. }
  9377. .ps-md-1 {
  9378. padding-left: 0.25rem !important;
  9379. }
  9380. .ps-md-2 {
  9381. padding-left: 0.5rem !important;
  9382. }
  9383. .ps-md-3 {
  9384. padding-left: 1rem !important;
  9385. }
  9386. .ps-md-4 {
  9387. padding-left: 1.5rem !important;
  9388. }
  9389. .ps-md-5 {
  9390. padding-left: 3rem !important;
  9391. }
  9392. .gap-md-0 {
  9393. gap: 0 !important;
  9394. }
  9395. .gap-md-1 {
  9396. gap: 0.25rem !important;
  9397. }
  9398. .gap-md-2 {
  9399. gap: 0.5rem !important;
  9400. }
  9401. .gap-md-3 {
  9402. gap: 1rem !important;
  9403. }
  9404. .gap-md-4 {
  9405. gap: 1.5rem !important;
  9406. }
  9407. .gap-md-5 {
  9408. gap: 3rem !important;
  9409. }
  9410. .row-gap-md-0 {
  9411. row-gap: 0 !important;
  9412. }
  9413. .row-gap-md-1 {
  9414. row-gap: 0.25rem !important;
  9415. }
  9416. .row-gap-md-2 {
  9417. row-gap: 0.5rem !important;
  9418. }
  9419. .row-gap-md-3 {
  9420. row-gap: 1rem !important;
  9421. }
  9422. .row-gap-md-4 {
  9423. row-gap: 1.5rem !important;
  9424. }
  9425. .row-gap-md-5 {
  9426. row-gap: 3rem !important;
  9427. }
  9428. .column-gap-md-0 {
  9429. -moz-column-gap: 0 !important;
  9430. column-gap: 0 !important;
  9431. }
  9432. .column-gap-md-1 {
  9433. -moz-column-gap: 0.25rem !important;
  9434. column-gap: 0.25rem !important;
  9435. }
  9436. .column-gap-md-2 {
  9437. -moz-column-gap: 0.5rem !important;
  9438. column-gap: 0.5rem !important;
  9439. }
  9440. .column-gap-md-3 {
  9441. -moz-column-gap: 1rem !important;
  9442. column-gap: 1rem !important;
  9443. }
  9444. .column-gap-md-4 {
  9445. -moz-column-gap: 1.5rem !important;
  9446. column-gap: 1.5rem !important;
  9447. }
  9448. .column-gap-md-5 {
  9449. -moz-column-gap: 3rem !important;
  9450. column-gap: 3rem !important;
  9451. }
  9452. .text-md-start {
  9453. text-align: left !important;
  9454. }
  9455. .text-md-end {
  9456. text-align: right !important;
  9457. }
  9458. .text-md-center {
  9459. text-align: center !important;
  9460. }
  9461. }
  9462. @media (min-width: 992px) {
  9463. .float-lg-start {
  9464. float: left !important;
  9465. }
  9466. .float-lg-end {
  9467. float: right !important;
  9468. }
  9469. .float-lg-none {
  9470. float: none !important;
  9471. }
  9472. .object-fit-lg-contain {
  9473. -o-object-fit: contain !important;
  9474. object-fit: contain !important;
  9475. }
  9476. .object-fit-lg-cover {
  9477. -o-object-fit: cover !important;
  9478. object-fit: cover !important;
  9479. }
  9480. .object-fit-lg-fill {
  9481. -o-object-fit: fill !important;
  9482. object-fit: fill !important;
  9483. }
  9484. .object-fit-lg-scale {
  9485. -o-object-fit: scale-down !important;
  9486. object-fit: scale-down !important;
  9487. }
  9488. .object-fit-lg-none {
  9489. -o-object-fit: none !important;
  9490. object-fit: none !important;
  9491. }
  9492. .d-lg-inline {
  9493. display: inline !important;
  9494. }
  9495. .d-lg-inline-block {
  9496. display: inline-block !important;
  9497. }
  9498. .d-lg-block {
  9499. display: block !important;
  9500. }
  9501. .d-lg-grid {
  9502. display: grid !important;
  9503. }
  9504. .d-lg-table {
  9505. display: table !important;
  9506. }
  9507. .d-lg-table-row {
  9508. display: table-row !important;
  9509. }
  9510. .d-lg-table-cell {
  9511. display: table-cell !important;
  9512. }
  9513. .d-lg-flex {
  9514. display: flex !important;
  9515. }
  9516. .d-lg-inline-flex {
  9517. display: inline-flex !important;
  9518. }
  9519. .d-lg-none {
  9520. display: none !important;
  9521. }
  9522. .flex-lg-fill {
  9523. flex: 1 1 auto !important;
  9524. }
  9525. .flex-lg-row {
  9526. flex-direction: row !important;
  9527. }
  9528. .flex-lg-column {
  9529. flex-direction: column !important;
  9530. }
  9531. .flex-lg-row-reverse {
  9532. flex-direction: row-reverse !important;
  9533. }
  9534. .flex-lg-column-reverse {
  9535. flex-direction: column-reverse !important;
  9536. }
  9537. .flex-lg-grow-0 {
  9538. flex-grow: 0 !important;
  9539. }
  9540. .flex-lg-grow-1 {
  9541. flex-grow: 1 !important;
  9542. }
  9543. .flex-lg-shrink-0 {
  9544. flex-shrink: 0 !important;
  9545. }
  9546. .flex-lg-shrink-1 {
  9547. flex-shrink: 1 !important;
  9548. }
  9549. .flex-lg-wrap {
  9550. flex-wrap: wrap !important;
  9551. }
  9552. .flex-lg-nowrap {
  9553. flex-wrap: nowrap !important;
  9554. }
  9555. .flex-lg-wrap-reverse {
  9556. flex-wrap: wrap-reverse !important;
  9557. }
  9558. .justify-content-lg-start {
  9559. justify-content: flex-start !important;
  9560. }
  9561. .justify-content-lg-end {
  9562. justify-content: flex-end !important;
  9563. }
  9564. .justify-content-lg-center {
  9565. justify-content: center !important;
  9566. }
  9567. .justify-content-lg-between {
  9568. justify-content: space-between !important;
  9569. }
  9570. .justify-content-lg-around {
  9571. justify-content: space-around !important;
  9572. }
  9573. .justify-content-lg-evenly {
  9574. justify-content: space-evenly !important;
  9575. }
  9576. .align-items-lg-start {
  9577. align-items: flex-start !important;
  9578. }
  9579. .align-items-lg-end {
  9580. align-items: flex-end !important;
  9581. }
  9582. .align-items-lg-center {
  9583. align-items: center !important;
  9584. }
  9585. .align-items-lg-baseline {
  9586. align-items: baseline !important;
  9587. }
  9588. .align-items-lg-stretch {
  9589. align-items: stretch !important;
  9590. }
  9591. .align-content-lg-start {
  9592. align-content: flex-start !important;
  9593. }
  9594. .align-content-lg-end {
  9595. align-content: flex-end !important;
  9596. }
  9597. .align-content-lg-center {
  9598. align-content: center !important;
  9599. }
  9600. .align-content-lg-between {
  9601. align-content: space-between !important;
  9602. }
  9603. .align-content-lg-around {
  9604. align-content: space-around !important;
  9605. }
  9606. .align-content-lg-stretch {
  9607. align-content: stretch !important;
  9608. }
  9609. .align-self-lg-auto {
  9610. align-self: auto !important;
  9611. }
  9612. .align-self-lg-start {
  9613. align-self: flex-start !important;
  9614. }
  9615. .align-self-lg-end {
  9616. align-self: flex-end !important;
  9617. }
  9618. .align-self-lg-center {
  9619. align-self: center !important;
  9620. }
  9621. .align-self-lg-baseline {
  9622. align-self: baseline !important;
  9623. }
  9624. .align-self-lg-stretch {
  9625. align-self: stretch !important;
  9626. }
  9627. .order-lg-first {
  9628. order: -1 !important;
  9629. }
  9630. .order-lg-0 {
  9631. order: 0 !important;
  9632. }
  9633. .order-lg-1 {
  9634. order: 1 !important;
  9635. }
  9636. .order-lg-2 {
  9637. order: 2 !important;
  9638. }
  9639. .order-lg-3 {
  9640. order: 3 !important;
  9641. }
  9642. .order-lg-4 {
  9643. order: 4 !important;
  9644. }
  9645. .order-lg-5 {
  9646. order: 5 !important;
  9647. }
  9648. .order-lg-last {
  9649. order: 6 !important;
  9650. }
  9651. .m-lg-0 {
  9652. margin: 0 !important;
  9653. }
  9654. .m-lg-1 {
  9655. margin: 0.25rem !important;
  9656. }
  9657. .m-lg-2 {
  9658. margin: 0.5rem !important;
  9659. }
  9660. .m-lg-3 {
  9661. margin: 1rem !important;
  9662. }
  9663. .m-lg-4 {
  9664. margin: 1.5rem !important;
  9665. }
  9666. .m-lg-5 {
  9667. margin: 3rem !important;
  9668. }
  9669. .m-lg-auto {
  9670. margin: auto !important;
  9671. }
  9672. .mx-lg-0 {
  9673. margin-right: 0 !important;
  9674. margin-left: 0 !important;
  9675. }
  9676. .mx-lg-1 {
  9677. margin-right: 0.25rem !important;
  9678. margin-left: 0.25rem !important;
  9679. }
  9680. .mx-lg-2 {
  9681. margin-right: 0.5rem !important;
  9682. margin-left: 0.5rem !important;
  9683. }
  9684. .mx-lg-3 {
  9685. margin-right: 1rem !important;
  9686. margin-left: 1rem !important;
  9687. }
  9688. .mx-lg-4 {
  9689. margin-right: 1.5rem !important;
  9690. margin-left: 1.5rem !important;
  9691. }
  9692. .mx-lg-5 {
  9693. margin-right: 3rem !important;
  9694. margin-left: 3rem !important;
  9695. }
  9696. .mx-lg-auto {
  9697. margin-right: auto !important;
  9698. margin-left: auto !important;
  9699. }
  9700. .my-lg-0 {
  9701. margin-top: 0 !important;
  9702. margin-bottom: 0 !important;
  9703. }
  9704. .my-lg-1 {
  9705. margin-top: 0.25rem !important;
  9706. margin-bottom: 0.25rem !important;
  9707. }
  9708. .my-lg-2 {
  9709. margin-top: 0.5rem !important;
  9710. margin-bottom: 0.5rem !important;
  9711. }
  9712. .my-lg-3 {
  9713. margin-top: 1rem !important;
  9714. margin-bottom: 1rem !important;
  9715. }
  9716. .my-lg-4 {
  9717. margin-top: 1.5rem !important;
  9718. margin-bottom: 1.5rem !important;
  9719. }
  9720. .my-lg-5 {
  9721. margin-top: 3rem !important;
  9722. margin-bottom: 3rem !important;
  9723. }
  9724. .my-lg-auto {
  9725. margin-top: auto !important;
  9726. margin-bottom: auto !important;
  9727. }
  9728. .mt-lg-0 {
  9729. margin-top: 0 !important;
  9730. }
  9731. .mt-lg-1 {
  9732. margin-top: 0.25rem !important;
  9733. }
  9734. .mt-lg-2 {
  9735. margin-top: 0.5rem !important;
  9736. }
  9737. .mt-lg-3 {
  9738. margin-top: 1rem !important;
  9739. }
  9740. .mt-lg-4 {
  9741. margin-top: 1.5rem !important;
  9742. }
  9743. .mt-lg-5 {
  9744. margin-top: 3rem !important;
  9745. }
  9746. .mt-lg-auto {
  9747. margin-top: auto !important;
  9748. }
  9749. .me-lg-0 {
  9750. margin-right: 0 !important;
  9751. }
  9752. .me-lg-1 {
  9753. margin-right: 0.25rem !important;
  9754. }
  9755. .me-lg-2 {
  9756. margin-right: 0.5rem !important;
  9757. }
  9758. .me-lg-3 {
  9759. margin-right: 1rem !important;
  9760. }
  9761. .me-lg-4 {
  9762. margin-right: 1.5rem !important;
  9763. }
  9764. .me-lg-5 {
  9765. margin-right: 3rem !important;
  9766. }
  9767. .me-lg-auto {
  9768. margin-right: auto !important;
  9769. }
  9770. .mb-lg-0 {
  9771. margin-bottom: 0 !important;
  9772. }
  9773. .mb-lg-1 {
  9774. margin-bottom: 0.25rem !important;
  9775. }
  9776. .mb-lg-2 {
  9777. margin-bottom: 0.5rem !important;
  9778. }
  9779. .mb-lg-3 {
  9780. margin-bottom: 1rem !important;
  9781. }
  9782. .mb-lg-4 {
  9783. margin-bottom: 1.5rem !important;
  9784. }
  9785. .mb-lg-5 {
  9786. margin-bottom: 3rem !important;
  9787. }
  9788. .mb-lg-auto {
  9789. margin-bottom: auto !important;
  9790. }
  9791. .ms-lg-0 {
  9792. margin-left: 0 !important;
  9793. }
  9794. .ms-lg-1 {
  9795. margin-left: 0.25rem !important;
  9796. }
  9797. .ms-lg-2 {
  9798. margin-left: 0.5rem !important;
  9799. }
  9800. .ms-lg-3 {
  9801. margin-left: 1rem !important;
  9802. }
  9803. .ms-lg-4 {
  9804. margin-left: 1.5rem !important;
  9805. }
  9806. .ms-lg-5 {
  9807. margin-left: 3rem !important;
  9808. }
  9809. .ms-lg-auto {
  9810. margin-left: auto !important;
  9811. }
  9812. .p-lg-0 {
  9813. padding: 0 !important;
  9814. }
  9815. .p-lg-1 {
  9816. padding: 0.25rem !important;
  9817. }
  9818. .p-lg-2 {
  9819. padding: 0.5rem !important;
  9820. }
  9821. .p-lg-3 {
  9822. padding: 1rem !important;
  9823. }
  9824. .p-lg-4 {
  9825. padding: 1.5rem !important;
  9826. }
  9827. .p-lg-5 {
  9828. padding: 3rem !important;
  9829. }
  9830. .px-lg-0 {
  9831. padding-right: 0 !important;
  9832. padding-left: 0 !important;
  9833. }
  9834. .px-lg-1 {
  9835. padding-right: 0.25rem !important;
  9836. padding-left: 0.25rem !important;
  9837. }
  9838. .px-lg-2 {
  9839. padding-right: 0.5rem !important;
  9840. padding-left: 0.5rem !important;
  9841. }
  9842. .px-lg-3 {
  9843. padding-right: 1rem !important;
  9844. padding-left: 1rem !important;
  9845. }
  9846. .px-lg-4 {
  9847. padding-right: 1.5rem !important;
  9848. padding-left: 1.5rem !important;
  9849. }
  9850. .px-lg-5 {
  9851. padding-right: 3rem !important;
  9852. padding-left: 3rem !important;
  9853. }
  9854. .py-lg-0 {
  9855. padding-top: 0 !important;
  9856. padding-bottom: 0 !important;
  9857. }
  9858. .py-lg-1 {
  9859. padding-top: 0.25rem !important;
  9860. padding-bottom: 0.25rem !important;
  9861. }
  9862. .py-lg-2 {
  9863. padding-top: 0.5rem !important;
  9864. padding-bottom: 0.5rem !important;
  9865. }
  9866. .py-lg-3 {
  9867. padding-top: 1rem !important;
  9868. padding-bottom: 1rem !important;
  9869. }
  9870. .py-lg-4 {
  9871. padding-top: 1.5rem !important;
  9872. padding-bottom: 1.5rem !important;
  9873. }
  9874. .py-lg-5 {
  9875. padding-top: 3rem !important;
  9876. padding-bottom: 3rem !important;
  9877. }
  9878. .pt-lg-0 {
  9879. padding-top: 0 !important;
  9880. }
  9881. .pt-lg-1 {
  9882. padding-top: 0.25rem !important;
  9883. }
  9884. .pt-lg-2 {
  9885. padding-top: 0.5rem !important;
  9886. }
  9887. .pt-lg-3 {
  9888. padding-top: 1rem !important;
  9889. }
  9890. .pt-lg-4 {
  9891. padding-top: 1.5rem !important;
  9892. }
  9893. .pt-lg-5 {
  9894. padding-top: 3rem !important;
  9895. }
  9896. .pe-lg-0 {
  9897. padding-right: 0 !important;
  9898. }
  9899. .pe-lg-1 {
  9900. padding-right: 0.25rem !important;
  9901. }
  9902. .pe-lg-2 {
  9903. padding-right: 0.5rem !important;
  9904. }
  9905. .pe-lg-3 {
  9906. padding-right: 1rem !important;
  9907. }
  9908. .pe-lg-4 {
  9909. padding-right: 1.5rem !important;
  9910. }
  9911. .pe-lg-5 {
  9912. padding-right: 3rem !important;
  9913. }
  9914. .pb-lg-0 {
  9915. padding-bottom: 0 !important;
  9916. }
  9917. .pb-lg-1 {
  9918. padding-bottom: 0.25rem !important;
  9919. }
  9920. .pb-lg-2 {
  9921. padding-bottom: 0.5rem !important;
  9922. }
  9923. .pb-lg-3 {
  9924. padding-bottom: 1rem !important;
  9925. }
  9926. .pb-lg-4 {
  9927. padding-bottom: 1.5rem !important;
  9928. }
  9929. .pb-lg-5 {
  9930. padding-bottom: 3rem !important;
  9931. }
  9932. .ps-lg-0 {
  9933. padding-left: 0 !important;
  9934. }
  9935. .ps-lg-1 {
  9936. padding-left: 0.25rem !important;
  9937. }
  9938. .ps-lg-2 {
  9939. padding-left: 0.5rem !important;
  9940. }
  9941. .ps-lg-3 {
  9942. padding-left: 1rem !important;
  9943. }
  9944. .ps-lg-4 {
  9945. padding-left: 1.5rem !important;
  9946. }
  9947. .ps-lg-5 {
  9948. padding-left: 3rem !important;
  9949. }
  9950. .gap-lg-0 {
  9951. gap: 0 !important;
  9952. }
  9953. .gap-lg-1 {
  9954. gap: 0.25rem !important;
  9955. }
  9956. .gap-lg-2 {
  9957. gap: 0.5rem !important;
  9958. }
  9959. .gap-lg-3 {
  9960. gap: 1rem !important;
  9961. }
  9962. .gap-lg-4 {
  9963. gap: 1.5rem !important;
  9964. }
  9965. .gap-lg-5 {
  9966. gap: 3rem !important;
  9967. }
  9968. .row-gap-lg-0 {
  9969. row-gap: 0 !important;
  9970. }
  9971. .row-gap-lg-1 {
  9972. row-gap: 0.25rem !important;
  9973. }
  9974. .row-gap-lg-2 {
  9975. row-gap: 0.5rem !important;
  9976. }
  9977. .row-gap-lg-3 {
  9978. row-gap: 1rem !important;
  9979. }
  9980. .row-gap-lg-4 {
  9981. row-gap: 1.5rem !important;
  9982. }
  9983. .row-gap-lg-5 {
  9984. row-gap: 3rem !important;
  9985. }
  9986. .column-gap-lg-0 {
  9987. -moz-column-gap: 0 !important;
  9988. column-gap: 0 !important;
  9989. }
  9990. .column-gap-lg-1 {
  9991. -moz-column-gap: 0.25rem !important;
  9992. column-gap: 0.25rem !important;
  9993. }
  9994. .column-gap-lg-2 {
  9995. -moz-column-gap: 0.5rem !important;
  9996. column-gap: 0.5rem !important;
  9997. }
  9998. .column-gap-lg-3 {
  9999. -moz-column-gap: 1rem !important;
  10000. column-gap: 1rem !important;
  10001. }
  10002. .column-gap-lg-4 {
  10003. -moz-column-gap: 1.5rem !important;
  10004. column-gap: 1.5rem !important;
  10005. }
  10006. .column-gap-lg-5 {
  10007. -moz-column-gap: 3rem !important;
  10008. column-gap: 3rem !important;
  10009. }
  10010. .text-lg-start {
  10011. text-align: left !important;
  10012. }
  10013. .text-lg-end {
  10014. text-align: right !important;
  10015. }
  10016. .text-lg-center {
  10017. text-align: center !important;
  10018. }
  10019. }
  10020. @media (min-width: 1200px) {
  10021. .float-xl-start {
  10022. float: left !important;
  10023. }
  10024. .float-xl-end {
  10025. float: right !important;
  10026. }
  10027. .float-xl-none {
  10028. float: none !important;
  10029. }
  10030. .object-fit-xl-contain {
  10031. -o-object-fit: contain !important;
  10032. object-fit: contain !important;
  10033. }
  10034. .object-fit-xl-cover {
  10035. -o-object-fit: cover !important;
  10036. object-fit: cover !important;
  10037. }
  10038. .object-fit-xl-fill {
  10039. -o-object-fit: fill !important;
  10040. object-fit: fill !important;
  10041. }
  10042. .object-fit-xl-scale {
  10043. -o-object-fit: scale-down !important;
  10044. object-fit: scale-down !important;
  10045. }
  10046. .object-fit-xl-none {
  10047. -o-object-fit: none !important;
  10048. object-fit: none !important;
  10049. }
  10050. .d-xl-inline {
  10051. display: inline !important;
  10052. }
  10053. .d-xl-inline-block {
  10054. display: inline-block !important;
  10055. }
  10056. .d-xl-block {
  10057. display: block !important;
  10058. }
  10059. .d-xl-grid {
  10060. display: grid !important;
  10061. }
  10062. .d-xl-table {
  10063. display: table !important;
  10064. }
  10065. .d-xl-table-row {
  10066. display: table-row !important;
  10067. }
  10068. .d-xl-table-cell {
  10069. display: table-cell !important;
  10070. }
  10071. .d-xl-flex {
  10072. display: flex !important;
  10073. }
  10074. .d-xl-inline-flex {
  10075. display: inline-flex !important;
  10076. }
  10077. .d-xl-none {
  10078. display: none !important;
  10079. }
  10080. .flex-xl-fill {
  10081. flex: 1 1 auto !important;
  10082. }
  10083. .flex-xl-row {
  10084. flex-direction: row !important;
  10085. }
  10086. .flex-xl-column {
  10087. flex-direction: column !important;
  10088. }
  10089. .flex-xl-row-reverse {
  10090. flex-direction: row-reverse !important;
  10091. }
  10092. .flex-xl-column-reverse {
  10093. flex-direction: column-reverse !important;
  10094. }
  10095. .flex-xl-grow-0 {
  10096. flex-grow: 0 !important;
  10097. }
  10098. .flex-xl-grow-1 {
  10099. flex-grow: 1 !important;
  10100. }
  10101. .flex-xl-shrink-0 {
  10102. flex-shrink: 0 !important;
  10103. }
  10104. .flex-xl-shrink-1 {
  10105. flex-shrink: 1 !important;
  10106. }
  10107. .flex-xl-wrap {
  10108. flex-wrap: wrap !important;
  10109. }
  10110. .flex-xl-nowrap {
  10111. flex-wrap: nowrap !important;
  10112. }
  10113. .flex-xl-wrap-reverse {
  10114. flex-wrap: wrap-reverse !important;
  10115. }
  10116. .justify-content-xl-start {
  10117. justify-content: flex-start !important;
  10118. }
  10119. .justify-content-xl-end {
  10120. justify-content: flex-end !important;
  10121. }
  10122. .justify-content-xl-center {
  10123. justify-content: center !important;
  10124. }
  10125. .justify-content-xl-between {
  10126. justify-content: space-between !important;
  10127. }
  10128. .justify-content-xl-around {
  10129. justify-content: space-around !important;
  10130. }
  10131. .justify-content-xl-evenly {
  10132. justify-content: space-evenly !important;
  10133. }
  10134. .align-items-xl-start {
  10135. align-items: flex-start !important;
  10136. }
  10137. .align-items-xl-end {
  10138. align-items: flex-end !important;
  10139. }
  10140. .align-items-xl-center {
  10141. align-items: center !important;
  10142. }
  10143. .align-items-xl-baseline {
  10144. align-items: baseline !important;
  10145. }
  10146. .align-items-xl-stretch {
  10147. align-items: stretch !important;
  10148. }
  10149. .align-content-xl-start {
  10150. align-content: flex-start !important;
  10151. }
  10152. .align-content-xl-end {
  10153. align-content: flex-end !important;
  10154. }
  10155. .align-content-xl-center {
  10156. align-content: center !important;
  10157. }
  10158. .align-content-xl-between {
  10159. align-content: space-between !important;
  10160. }
  10161. .align-content-xl-around {
  10162. align-content: space-around !important;
  10163. }
  10164. .align-content-xl-stretch {
  10165. align-content: stretch !important;
  10166. }
  10167. .align-self-xl-auto {
  10168. align-self: auto !important;
  10169. }
  10170. .align-self-xl-start {
  10171. align-self: flex-start !important;
  10172. }
  10173. .align-self-xl-end {
  10174. align-self: flex-end !important;
  10175. }
  10176. .align-self-xl-center {
  10177. align-self: center !important;
  10178. }
  10179. .align-self-xl-baseline {
  10180. align-self: baseline !important;
  10181. }
  10182. .align-self-xl-stretch {
  10183. align-self: stretch !important;
  10184. }
  10185. .order-xl-first {
  10186. order: -1 !important;
  10187. }
  10188. .order-xl-0 {
  10189. order: 0 !important;
  10190. }
  10191. .order-xl-1 {
  10192. order: 1 !important;
  10193. }
  10194. .order-xl-2 {
  10195. order: 2 !important;
  10196. }
  10197. .order-xl-3 {
  10198. order: 3 !important;
  10199. }
  10200. .order-xl-4 {
  10201. order: 4 !important;
  10202. }
  10203. .order-xl-5 {
  10204. order: 5 !important;
  10205. }
  10206. .order-xl-last {
  10207. order: 6 !important;
  10208. }
  10209. .m-xl-0 {
  10210. margin: 0 !important;
  10211. }
  10212. .m-xl-1 {
  10213. margin: 0.25rem !important;
  10214. }
  10215. .m-xl-2 {
  10216. margin: 0.5rem !important;
  10217. }
  10218. .m-xl-3 {
  10219. margin: 1rem !important;
  10220. }
  10221. .m-xl-4 {
  10222. margin: 1.5rem !important;
  10223. }
  10224. .m-xl-5 {
  10225. margin: 3rem !important;
  10226. }
  10227. .m-xl-auto {
  10228. margin: auto !important;
  10229. }
  10230. .mx-xl-0 {
  10231. margin-right: 0 !important;
  10232. margin-left: 0 !important;
  10233. }
  10234. .mx-xl-1 {
  10235. margin-right: 0.25rem !important;
  10236. margin-left: 0.25rem !important;
  10237. }
  10238. .mx-xl-2 {
  10239. margin-right: 0.5rem !important;
  10240. margin-left: 0.5rem !important;
  10241. }
  10242. .mx-xl-3 {
  10243. margin-right: 1rem !important;
  10244. margin-left: 1rem !important;
  10245. }
  10246. .mx-xl-4 {
  10247. margin-right: 1.5rem !important;
  10248. margin-left: 1.5rem !important;
  10249. }
  10250. .mx-xl-5 {
  10251. margin-right: 3rem !important;
  10252. margin-left: 3rem !important;
  10253. }
  10254. .mx-xl-auto {
  10255. margin-right: auto !important;
  10256. margin-left: auto !important;
  10257. }
  10258. .my-xl-0 {
  10259. margin-top: 0 !important;
  10260. margin-bottom: 0 !important;
  10261. }
  10262. .my-xl-1 {
  10263. margin-top: 0.25rem !important;
  10264. margin-bottom: 0.25rem !important;
  10265. }
  10266. .my-xl-2 {
  10267. margin-top: 0.5rem !important;
  10268. margin-bottom: 0.5rem !important;
  10269. }
  10270. .my-xl-3 {
  10271. margin-top: 1rem !important;
  10272. margin-bottom: 1rem !important;
  10273. }
  10274. .my-xl-4 {
  10275. margin-top: 1.5rem !important;
  10276. margin-bottom: 1.5rem !important;
  10277. }
  10278. .my-xl-5 {
  10279. margin-top: 3rem !important;
  10280. margin-bottom: 3rem !important;
  10281. }
  10282. .my-xl-auto {
  10283. margin-top: auto !important;
  10284. margin-bottom: auto !important;
  10285. }
  10286. .mt-xl-0 {
  10287. margin-top: 0 !important;
  10288. }
  10289. .mt-xl-1 {
  10290. margin-top: 0.25rem !important;
  10291. }
  10292. .mt-xl-2 {
  10293. margin-top: 0.5rem !important;
  10294. }
  10295. .mt-xl-3 {
  10296. margin-top: 1rem !important;
  10297. }
  10298. .mt-xl-4 {
  10299. margin-top: 1.5rem !important;
  10300. }
  10301. .mt-xl-5 {
  10302. margin-top: 3rem !important;
  10303. }
  10304. .mt-xl-auto {
  10305. margin-top: auto !important;
  10306. }
  10307. .me-xl-0 {
  10308. margin-right: 0 !important;
  10309. }
  10310. .me-xl-1 {
  10311. margin-right: 0.25rem !important;
  10312. }
  10313. .me-xl-2 {
  10314. margin-right: 0.5rem !important;
  10315. }
  10316. .me-xl-3 {
  10317. margin-right: 1rem !important;
  10318. }
  10319. .me-xl-4 {
  10320. margin-right: 1.5rem !important;
  10321. }
  10322. .me-xl-5 {
  10323. margin-right: 3rem !important;
  10324. }
  10325. .me-xl-auto {
  10326. margin-right: auto !important;
  10327. }
  10328. .mb-xl-0 {
  10329. margin-bottom: 0 !important;
  10330. }
  10331. .mb-xl-1 {
  10332. margin-bottom: 0.25rem !important;
  10333. }
  10334. .mb-xl-2 {
  10335. margin-bottom: 0.5rem !important;
  10336. }
  10337. .mb-xl-3 {
  10338. margin-bottom: 1rem !important;
  10339. }
  10340. .mb-xl-4 {
  10341. margin-bottom: 1.5rem !important;
  10342. }
  10343. .mb-xl-5 {
  10344. margin-bottom: 3rem !important;
  10345. }
  10346. .mb-xl-auto {
  10347. margin-bottom: auto !important;
  10348. }
  10349. .ms-xl-0 {
  10350. margin-left: 0 !important;
  10351. }
  10352. .ms-xl-1 {
  10353. margin-left: 0.25rem !important;
  10354. }
  10355. .ms-xl-2 {
  10356. margin-left: 0.5rem !important;
  10357. }
  10358. .ms-xl-3 {
  10359. margin-left: 1rem !important;
  10360. }
  10361. .ms-xl-4 {
  10362. margin-left: 1.5rem !important;
  10363. }
  10364. .ms-xl-5 {
  10365. margin-left: 3rem !important;
  10366. }
  10367. .ms-xl-auto {
  10368. margin-left: auto !important;
  10369. }
  10370. .p-xl-0 {
  10371. padding: 0 !important;
  10372. }
  10373. .p-xl-1 {
  10374. padding: 0.25rem !important;
  10375. }
  10376. .p-xl-2 {
  10377. padding: 0.5rem !important;
  10378. }
  10379. .p-xl-3 {
  10380. padding: 1rem !important;
  10381. }
  10382. .p-xl-4 {
  10383. padding: 1.5rem !important;
  10384. }
  10385. .p-xl-5 {
  10386. padding: 3rem !important;
  10387. }
  10388. .px-xl-0 {
  10389. padding-right: 0 !important;
  10390. padding-left: 0 !important;
  10391. }
  10392. .px-xl-1 {
  10393. padding-right: 0.25rem !important;
  10394. padding-left: 0.25rem !important;
  10395. }
  10396. .px-xl-2 {
  10397. padding-right: 0.5rem !important;
  10398. padding-left: 0.5rem !important;
  10399. }
  10400. .px-xl-3 {
  10401. padding-right: 1rem !important;
  10402. padding-left: 1rem !important;
  10403. }
  10404. .px-xl-4 {
  10405. padding-right: 1.5rem !important;
  10406. padding-left: 1.5rem !important;
  10407. }
  10408. .px-xl-5 {
  10409. padding-right: 3rem !important;
  10410. padding-left: 3rem !important;
  10411. }
  10412. .py-xl-0 {
  10413. padding-top: 0 !important;
  10414. padding-bottom: 0 !important;
  10415. }
  10416. .py-xl-1 {
  10417. padding-top: 0.25rem !important;
  10418. padding-bottom: 0.25rem !important;
  10419. }
  10420. .py-xl-2 {
  10421. padding-top: 0.5rem !important;
  10422. padding-bottom: 0.5rem !important;
  10423. }
  10424. .py-xl-3 {
  10425. padding-top: 1rem !important;
  10426. padding-bottom: 1rem !important;
  10427. }
  10428. .py-xl-4 {
  10429. padding-top: 1.5rem !important;
  10430. padding-bottom: 1.5rem !important;
  10431. }
  10432. .py-xl-5 {
  10433. padding-top: 3rem !important;
  10434. padding-bottom: 3rem !important;
  10435. }
  10436. .pt-xl-0 {
  10437. padding-top: 0 !important;
  10438. }
  10439. .pt-xl-1 {
  10440. padding-top: 0.25rem !important;
  10441. }
  10442. .pt-xl-2 {
  10443. padding-top: 0.5rem !important;
  10444. }
  10445. .pt-xl-3 {
  10446. padding-top: 1rem !important;
  10447. }
  10448. .pt-xl-4 {
  10449. padding-top: 1.5rem !important;
  10450. }
  10451. .pt-xl-5 {
  10452. padding-top: 3rem !important;
  10453. }
  10454. .pe-xl-0 {
  10455. padding-right: 0 !important;
  10456. }
  10457. .pe-xl-1 {
  10458. padding-right: 0.25rem !important;
  10459. }
  10460. .pe-xl-2 {
  10461. padding-right: 0.5rem !important;
  10462. }
  10463. .pe-xl-3 {
  10464. padding-right: 1rem !important;
  10465. }
  10466. .pe-xl-4 {
  10467. padding-right: 1.5rem !important;
  10468. }
  10469. .pe-xl-5 {
  10470. padding-right: 3rem !important;
  10471. }
  10472. .pb-xl-0 {
  10473. padding-bottom: 0 !important;
  10474. }
  10475. .pb-xl-1 {
  10476. padding-bottom: 0.25rem !important;
  10477. }
  10478. .pb-xl-2 {
  10479. padding-bottom: 0.5rem !important;
  10480. }
  10481. .pb-xl-3 {
  10482. padding-bottom: 1rem !important;
  10483. }
  10484. .pb-xl-4 {
  10485. padding-bottom: 1.5rem !important;
  10486. }
  10487. .pb-xl-5 {
  10488. padding-bottom: 3rem !important;
  10489. }
  10490. .ps-xl-0 {
  10491. padding-left: 0 !important;
  10492. }
  10493. .ps-xl-1 {
  10494. padding-left: 0.25rem !important;
  10495. }
  10496. .ps-xl-2 {
  10497. padding-left: 0.5rem !important;
  10498. }
  10499. .ps-xl-3 {
  10500. padding-left: 1rem !important;
  10501. }
  10502. .ps-xl-4 {
  10503. padding-left: 1.5rem !important;
  10504. }
  10505. .ps-xl-5 {
  10506. padding-left: 3rem !important;
  10507. }
  10508. .gap-xl-0 {
  10509. gap: 0 !important;
  10510. }
  10511. .gap-xl-1 {
  10512. gap: 0.25rem !important;
  10513. }
  10514. .gap-xl-2 {
  10515. gap: 0.5rem !important;
  10516. }
  10517. .gap-xl-3 {
  10518. gap: 1rem !important;
  10519. }
  10520. .gap-xl-4 {
  10521. gap: 1.5rem !important;
  10522. }
  10523. .gap-xl-5 {
  10524. gap: 3rem !important;
  10525. }
  10526. .row-gap-xl-0 {
  10527. row-gap: 0 !important;
  10528. }
  10529. .row-gap-xl-1 {
  10530. row-gap: 0.25rem !important;
  10531. }
  10532. .row-gap-xl-2 {
  10533. row-gap: 0.5rem !important;
  10534. }
  10535. .row-gap-xl-3 {
  10536. row-gap: 1rem !important;
  10537. }
  10538. .row-gap-xl-4 {
  10539. row-gap: 1.5rem !important;
  10540. }
  10541. .row-gap-xl-5 {
  10542. row-gap: 3rem !important;
  10543. }
  10544. .column-gap-xl-0 {
  10545. -moz-column-gap: 0 !important;
  10546. column-gap: 0 !important;
  10547. }
  10548. .column-gap-xl-1 {
  10549. -moz-column-gap: 0.25rem !important;
  10550. column-gap: 0.25rem !important;
  10551. }
  10552. .column-gap-xl-2 {
  10553. -moz-column-gap: 0.5rem !important;
  10554. column-gap: 0.5rem !important;
  10555. }
  10556. .column-gap-xl-3 {
  10557. -moz-column-gap: 1rem !important;
  10558. column-gap: 1rem !important;
  10559. }
  10560. .column-gap-xl-4 {
  10561. -moz-column-gap: 1.5rem !important;
  10562. column-gap: 1.5rem !important;
  10563. }
  10564. .column-gap-xl-5 {
  10565. -moz-column-gap: 3rem !important;
  10566. column-gap: 3rem !important;
  10567. }
  10568. .text-xl-start {
  10569. text-align: left !important;
  10570. }
  10571. .text-xl-end {
  10572. text-align: right !important;
  10573. }
  10574. .text-xl-center {
  10575. text-align: center !important;
  10576. }
  10577. }
  10578. @media (min-width: 1400px) {
  10579. .float-xxl-start {
  10580. float: left !important;
  10581. }
  10582. .float-xxl-end {
  10583. float: right !important;
  10584. }
  10585. .float-xxl-none {
  10586. float: none !important;
  10587. }
  10588. .object-fit-xxl-contain {
  10589. -o-object-fit: contain !important;
  10590. object-fit: contain !important;
  10591. }
  10592. .object-fit-xxl-cover {
  10593. -o-object-fit: cover !important;
  10594. object-fit: cover !important;
  10595. }
  10596. .object-fit-xxl-fill {
  10597. -o-object-fit: fill !important;
  10598. object-fit: fill !important;
  10599. }
  10600. .object-fit-xxl-scale {
  10601. -o-object-fit: scale-down !important;
  10602. object-fit: scale-down !important;
  10603. }
  10604. .object-fit-xxl-none {
  10605. -o-object-fit: none !important;
  10606. object-fit: none !important;
  10607. }
  10608. .d-xxl-inline {
  10609. display: inline !important;
  10610. }
  10611. .d-xxl-inline-block {
  10612. display: inline-block !important;
  10613. }
  10614. .d-xxl-block {
  10615. display: block !important;
  10616. }
  10617. .d-xxl-grid {
  10618. display: grid !important;
  10619. }
  10620. .d-xxl-table {
  10621. display: table !important;
  10622. }
  10623. .d-xxl-table-row {
  10624. display: table-row !important;
  10625. }
  10626. .d-xxl-table-cell {
  10627. display: table-cell !important;
  10628. }
  10629. .d-xxl-flex {
  10630. display: flex !important;
  10631. }
  10632. .d-xxl-inline-flex {
  10633. display: inline-flex !important;
  10634. }
  10635. .d-xxl-none {
  10636. display: none !important;
  10637. }
  10638. .flex-xxl-fill {
  10639. flex: 1 1 auto !important;
  10640. }
  10641. .flex-xxl-row {
  10642. flex-direction: row !important;
  10643. }
  10644. .flex-xxl-column {
  10645. flex-direction: column !important;
  10646. }
  10647. .flex-xxl-row-reverse {
  10648. flex-direction: row-reverse !important;
  10649. }
  10650. .flex-xxl-column-reverse {
  10651. flex-direction: column-reverse !important;
  10652. }
  10653. .flex-xxl-grow-0 {
  10654. flex-grow: 0 !important;
  10655. }
  10656. .flex-xxl-grow-1 {
  10657. flex-grow: 1 !important;
  10658. }
  10659. .flex-xxl-shrink-0 {
  10660. flex-shrink: 0 !important;
  10661. }
  10662. .flex-xxl-shrink-1 {
  10663. flex-shrink: 1 !important;
  10664. }
  10665. .flex-xxl-wrap {
  10666. flex-wrap: wrap !important;
  10667. }
  10668. .flex-xxl-nowrap {
  10669. flex-wrap: nowrap !important;
  10670. }
  10671. .flex-xxl-wrap-reverse {
  10672. flex-wrap: wrap-reverse !important;
  10673. }
  10674. .justify-content-xxl-start {
  10675. justify-content: flex-start !important;
  10676. }
  10677. .justify-content-xxl-end {
  10678. justify-content: flex-end !important;
  10679. }
  10680. .justify-content-xxl-center {
  10681. justify-content: center !important;
  10682. }
  10683. .justify-content-xxl-between {
  10684. justify-content: space-between !important;
  10685. }
  10686. .justify-content-xxl-around {
  10687. justify-content: space-around !important;
  10688. }
  10689. .justify-content-xxl-evenly {
  10690. justify-content: space-evenly !important;
  10691. }
  10692. .align-items-xxl-start {
  10693. align-items: flex-start !important;
  10694. }
  10695. .align-items-xxl-end {
  10696. align-items: flex-end !important;
  10697. }
  10698. .align-items-xxl-center {
  10699. align-items: center !important;
  10700. }
  10701. .align-items-xxl-baseline {
  10702. align-items: baseline !important;
  10703. }
  10704. .align-items-xxl-stretch {
  10705. align-items: stretch !important;
  10706. }
  10707. .align-content-xxl-start {
  10708. align-content: flex-start !important;
  10709. }
  10710. .align-content-xxl-end {
  10711. align-content: flex-end !important;
  10712. }
  10713. .align-content-xxl-center {
  10714. align-content: center !important;
  10715. }
  10716. .align-content-xxl-between {
  10717. align-content: space-between !important;
  10718. }
  10719. .align-content-xxl-around {
  10720. align-content: space-around !important;
  10721. }
  10722. .align-content-xxl-stretch {
  10723. align-content: stretch !important;
  10724. }
  10725. .align-self-xxl-auto {
  10726. align-self: auto !important;
  10727. }
  10728. .align-self-xxl-start {
  10729. align-self: flex-start !important;
  10730. }
  10731. .align-self-xxl-end {
  10732. align-self: flex-end !important;
  10733. }
  10734. .align-self-xxl-center {
  10735. align-self: center !important;
  10736. }
  10737. .align-self-xxl-baseline {
  10738. align-self: baseline !important;
  10739. }
  10740. .align-self-xxl-stretch {
  10741. align-self: stretch !important;
  10742. }
  10743. .order-xxl-first {
  10744. order: -1 !important;
  10745. }
  10746. .order-xxl-0 {
  10747. order: 0 !important;
  10748. }
  10749. .order-xxl-1 {
  10750. order: 1 !important;
  10751. }
  10752. .order-xxl-2 {
  10753. order: 2 !important;
  10754. }
  10755. .order-xxl-3 {
  10756. order: 3 !important;
  10757. }
  10758. .order-xxl-4 {
  10759. order: 4 !important;
  10760. }
  10761. .order-xxl-5 {
  10762. order: 5 !important;
  10763. }
  10764. .order-xxl-last {
  10765. order: 6 !important;
  10766. }
  10767. .m-xxl-0 {
  10768. margin: 0 !important;
  10769. }
  10770. .m-xxl-1 {
  10771. margin: 0.25rem !important;
  10772. }
  10773. .m-xxl-2 {
  10774. margin: 0.5rem !important;
  10775. }
  10776. .m-xxl-3 {
  10777. margin: 1rem !important;
  10778. }
  10779. .m-xxl-4 {
  10780. margin: 1.5rem !important;
  10781. }
  10782. .m-xxl-5 {
  10783. margin: 3rem !important;
  10784. }
  10785. .m-xxl-auto {
  10786. margin: auto !important;
  10787. }
  10788. .mx-xxl-0 {
  10789. margin-right: 0 !important;
  10790. margin-left: 0 !important;
  10791. }
  10792. .mx-xxl-1 {
  10793. margin-right: 0.25rem !important;
  10794. margin-left: 0.25rem !important;
  10795. }
  10796. .mx-xxl-2 {
  10797. margin-right: 0.5rem !important;
  10798. margin-left: 0.5rem !important;
  10799. }
  10800. .mx-xxl-3 {
  10801. margin-right: 1rem !important;
  10802. margin-left: 1rem !important;
  10803. }
  10804. .mx-xxl-4 {
  10805. margin-right: 1.5rem !important;
  10806. margin-left: 1.5rem !important;
  10807. }
  10808. .mx-xxl-5 {
  10809. margin-right: 3rem !important;
  10810. margin-left: 3rem !important;
  10811. }
  10812. .mx-xxl-auto {
  10813. margin-right: auto !important;
  10814. margin-left: auto !important;
  10815. }
  10816. .my-xxl-0 {
  10817. margin-top: 0 !important;
  10818. margin-bottom: 0 !important;
  10819. }
  10820. .my-xxl-1 {
  10821. margin-top: 0.25rem !important;
  10822. margin-bottom: 0.25rem !important;
  10823. }
  10824. .my-xxl-2 {
  10825. margin-top: 0.5rem !important;
  10826. margin-bottom: 0.5rem !important;
  10827. }
  10828. .my-xxl-3 {
  10829. margin-top: 1rem !important;
  10830. margin-bottom: 1rem !important;
  10831. }
  10832. .my-xxl-4 {
  10833. margin-top: 1.5rem !important;
  10834. margin-bottom: 1.5rem !important;
  10835. }
  10836. .my-xxl-5 {
  10837. margin-top: 3rem !important;
  10838. margin-bottom: 3rem !important;
  10839. }
  10840. .my-xxl-auto {
  10841. margin-top: auto !important;
  10842. margin-bottom: auto !important;
  10843. }
  10844. .mt-xxl-0 {
  10845. margin-top: 0 !important;
  10846. }
  10847. .mt-xxl-1 {
  10848. margin-top: 0.25rem !important;
  10849. }
  10850. .mt-xxl-2 {
  10851. margin-top: 0.5rem !important;
  10852. }
  10853. .mt-xxl-3 {
  10854. margin-top: 1rem !important;
  10855. }
  10856. .mt-xxl-4 {
  10857. margin-top: 1.5rem !important;
  10858. }
  10859. .mt-xxl-5 {
  10860. margin-top: 3rem !important;
  10861. }
  10862. .mt-xxl-auto {
  10863. margin-top: auto !important;
  10864. }
  10865. .me-xxl-0 {
  10866. margin-right: 0 !important;
  10867. }
  10868. .me-xxl-1 {
  10869. margin-right: 0.25rem !important;
  10870. }
  10871. .me-xxl-2 {
  10872. margin-right: 0.5rem !important;
  10873. }
  10874. .me-xxl-3 {
  10875. margin-right: 1rem !important;
  10876. }
  10877. .me-xxl-4 {
  10878. margin-right: 1.5rem !important;
  10879. }
  10880. .me-xxl-5 {
  10881. margin-right: 3rem !important;
  10882. }
  10883. .me-xxl-auto {
  10884. margin-right: auto !important;
  10885. }
  10886. .mb-xxl-0 {
  10887. margin-bottom: 0 !important;
  10888. }
  10889. .mb-xxl-1 {
  10890. margin-bottom: 0.25rem !important;
  10891. }
  10892. .mb-xxl-2 {
  10893. margin-bottom: 0.5rem !important;
  10894. }
  10895. .mb-xxl-3 {
  10896. margin-bottom: 1rem !important;
  10897. }
  10898. .mb-xxl-4 {
  10899. margin-bottom: 1.5rem !important;
  10900. }
  10901. .mb-xxl-5 {
  10902. margin-bottom: 3rem !important;
  10903. }
  10904. .mb-xxl-auto {
  10905. margin-bottom: auto !important;
  10906. }
  10907. .ms-xxl-0 {
  10908. margin-left: 0 !important;
  10909. }
  10910. .ms-xxl-1 {
  10911. margin-left: 0.25rem !important;
  10912. }
  10913. .ms-xxl-2 {
  10914. margin-left: 0.5rem !important;
  10915. }
  10916. .ms-xxl-3 {
  10917. margin-left: 1rem !important;
  10918. }
  10919. .ms-xxl-4 {
  10920. margin-left: 1.5rem !important;
  10921. }
  10922. .ms-xxl-5 {
  10923. margin-left: 3rem !important;
  10924. }
  10925. .ms-xxl-auto {
  10926. margin-left: auto !important;
  10927. }
  10928. .p-xxl-0 {
  10929. padding: 0 !important;
  10930. }
  10931. .p-xxl-1 {
  10932. padding: 0.25rem !important;
  10933. }
  10934. .p-xxl-2 {
  10935. padding: 0.5rem !important;
  10936. }
  10937. .p-xxl-3 {
  10938. padding: 1rem !important;
  10939. }
  10940. .p-xxl-4 {
  10941. padding: 1.5rem !important;
  10942. }
  10943. .p-xxl-5 {
  10944. padding: 3rem !important;
  10945. }
  10946. .px-xxl-0 {
  10947. padding-right: 0 !important;
  10948. padding-left: 0 !important;
  10949. }
  10950. .px-xxl-1 {
  10951. padding-right: 0.25rem !important;
  10952. padding-left: 0.25rem !important;
  10953. }
  10954. .px-xxl-2 {
  10955. padding-right: 0.5rem !important;
  10956. padding-left: 0.5rem !important;
  10957. }
  10958. .px-xxl-3 {
  10959. padding-right: 1rem !important;
  10960. padding-left: 1rem !important;
  10961. }
  10962. .px-xxl-4 {
  10963. padding-right: 1.5rem !important;
  10964. padding-left: 1.5rem !important;
  10965. }
  10966. .px-xxl-5 {
  10967. padding-right: 3rem !important;
  10968. padding-left: 3rem !important;
  10969. }
  10970. .py-xxl-0 {
  10971. padding-top: 0 !important;
  10972. padding-bottom: 0 !important;
  10973. }
  10974. .py-xxl-1 {
  10975. padding-top: 0.25rem !important;
  10976. padding-bottom: 0.25rem !important;
  10977. }
  10978. .py-xxl-2 {
  10979. padding-top: 0.5rem !important;
  10980. padding-bottom: 0.5rem !important;
  10981. }
  10982. .py-xxl-3 {
  10983. padding-top: 1rem !important;
  10984. padding-bottom: 1rem !important;
  10985. }
  10986. .py-xxl-4 {
  10987. padding-top: 1.5rem !important;
  10988. padding-bottom: 1.5rem !important;
  10989. }
  10990. .py-xxl-5 {
  10991. padding-top: 3rem !important;
  10992. padding-bottom: 3rem !important;
  10993. }
  10994. .pt-xxl-0 {
  10995. padding-top: 0 !important;
  10996. }
  10997. .pt-xxl-1 {
  10998. padding-top: 0.25rem !important;
  10999. }
  11000. .pt-xxl-2 {
  11001. padding-top: 0.5rem !important;
  11002. }
  11003. .pt-xxl-3 {
  11004. padding-top: 1rem !important;
  11005. }
  11006. .pt-xxl-4 {
  11007. padding-top: 1.5rem !important;
  11008. }
  11009. .pt-xxl-5 {
  11010. padding-top: 3rem !important;
  11011. }
  11012. .pe-xxl-0 {
  11013. padding-right: 0 !important;
  11014. }
  11015. .pe-xxl-1 {
  11016. padding-right: 0.25rem !important;
  11017. }
  11018. .pe-xxl-2 {
  11019. padding-right: 0.5rem !important;
  11020. }
  11021. .pe-xxl-3 {
  11022. padding-right: 1rem !important;
  11023. }
  11024. .pe-xxl-4 {
  11025. padding-right: 1.5rem !important;
  11026. }
  11027. .pe-xxl-5 {
  11028. padding-right: 3rem !important;
  11029. }
  11030. .pb-xxl-0 {
  11031. padding-bottom: 0 !important;
  11032. }
  11033. .pb-xxl-1 {
  11034. padding-bottom: 0.25rem !important;
  11035. }
  11036. .pb-xxl-2 {
  11037. padding-bottom: 0.5rem !important;
  11038. }
  11039. .pb-xxl-3 {
  11040. padding-bottom: 1rem !important;
  11041. }
  11042. .pb-xxl-4 {
  11043. padding-bottom: 1.5rem !important;
  11044. }
  11045. .pb-xxl-5 {
  11046. padding-bottom: 3rem !important;
  11047. }
  11048. .ps-xxl-0 {
  11049. padding-left: 0 !important;
  11050. }
  11051. .ps-xxl-1 {
  11052. padding-left: 0.25rem !important;
  11053. }
  11054. .ps-xxl-2 {
  11055. padding-left: 0.5rem !important;
  11056. }
  11057. .ps-xxl-3 {
  11058. padding-left: 1rem !important;
  11059. }
  11060. .ps-xxl-4 {
  11061. padding-left: 1.5rem !important;
  11062. }
  11063. .ps-xxl-5 {
  11064. padding-left: 3rem !important;
  11065. }
  11066. .gap-xxl-0 {
  11067. gap: 0 !important;
  11068. }
  11069. .gap-xxl-1 {
  11070. gap: 0.25rem !important;
  11071. }
  11072. .gap-xxl-2 {
  11073. gap: 0.5rem !important;
  11074. }
  11075. .gap-xxl-3 {
  11076. gap: 1rem !important;
  11077. }
  11078. .gap-xxl-4 {
  11079. gap: 1.5rem !important;
  11080. }
  11081. .gap-xxl-5 {
  11082. gap: 3rem !important;
  11083. }
  11084. .row-gap-xxl-0 {
  11085. row-gap: 0 !important;
  11086. }
  11087. .row-gap-xxl-1 {
  11088. row-gap: 0.25rem !important;
  11089. }
  11090. .row-gap-xxl-2 {
  11091. row-gap: 0.5rem !important;
  11092. }
  11093. .row-gap-xxl-3 {
  11094. row-gap: 1rem !important;
  11095. }
  11096. .row-gap-xxl-4 {
  11097. row-gap: 1.5rem !important;
  11098. }
  11099. .row-gap-xxl-5 {
  11100. row-gap: 3rem !important;
  11101. }
  11102. .column-gap-xxl-0 {
  11103. -moz-column-gap: 0 !important;
  11104. column-gap: 0 !important;
  11105. }
  11106. .column-gap-xxl-1 {
  11107. -moz-column-gap: 0.25rem !important;
  11108. column-gap: 0.25rem !important;
  11109. }
  11110. .column-gap-xxl-2 {
  11111. -moz-column-gap: 0.5rem !important;
  11112. column-gap: 0.5rem !important;
  11113. }
  11114. .column-gap-xxl-3 {
  11115. -moz-column-gap: 1rem !important;
  11116. column-gap: 1rem !important;
  11117. }
  11118. .column-gap-xxl-4 {
  11119. -moz-column-gap: 1.5rem !important;
  11120. column-gap: 1.5rem !important;
  11121. }
  11122. .column-gap-xxl-5 {
  11123. -moz-column-gap: 3rem !important;
  11124. column-gap: 3rem !important;
  11125. }
  11126. .text-xxl-start {
  11127. text-align: left !important;
  11128. }
  11129. .text-xxl-end {
  11130. text-align: right !important;
  11131. }
  11132. .text-xxl-center {
  11133. text-align: center !important;
  11134. }
  11135. }
  11136. @media (min-width: 1200px) {
  11137. .fs-1 {
  11138. font-size: 2.5rem !important;
  11139. }
  11140. .fs-2 {
  11141. font-size: 2rem !important;
  11142. }
  11143. .fs-3 {
  11144. font-size: 1.75rem !important;
  11145. }
  11146. .fs-4 {
  11147. font-size: 1.5rem !important;
  11148. }
  11149. }
  11150. @media print {
  11151. .d-print-inline {
  11152. display: inline !important;
  11153. }
  11154. .d-print-inline-block {
  11155. display: inline-block !important;
  11156. }
  11157. .d-print-block {
  11158. display: block !important;
  11159. }
  11160. .d-print-grid {
  11161. display: grid !important;
  11162. }
  11163. .d-print-table {
  11164. display: table !important;
  11165. }
  11166. .d-print-table-row {
  11167. display: table-row !important;
  11168. }
  11169. .d-print-table-cell {
  11170. display: table-cell !important;
  11171. }
  11172. .d-print-flex {
  11173. display: flex !important;
  11174. }
  11175. .d-print-inline-flex {
  11176. display: inline-flex !important;
  11177. }
  11178. .d-print-none {
  11179. display: none !important;
  11180. }
  11181. }
  11182. /*# sourceMappingURL=bootstrap.css.map */