Template.html 335 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485
  1. <meta charset="utf-8">
  2. <style>
  3. /*!
  4. * Bootstrap v5.3.3 (https://getbootstrap.com/)
  5. * Copyright 2011-2024 The Bootstrap Authors
  6. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  7. */
  8. :root, [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-heading-color: inherit;
  96. --bs-link-color: #0d6efd;
  97. --bs-link-color-rgb: 13, 110, 253;
  98. --bs-link-decoration: underline;
  99. --bs-link-hover-color: #0a58ca;
  100. --bs-link-hover-color-rgb: 10, 88, 202;
  101. --bs-code-color: #d63384;
  102. --bs-highlight-color: #212529;
  103. --bs-highlight-bg: #fff3cd;
  104. --bs-border-width: 1px;
  105. --bs-border-style: solid;
  106. --bs-border-color: #dee2e6;
  107. --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  108. --bs-border-radius: 0.375rem;
  109. --bs-border-radius-sm: 0.25rem;
  110. --bs-border-radius-lg: 0.5rem;
  111. --bs-border-radius-xl: 1rem;
  112. --bs-border-radius-xxl: 2rem;
  113. --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  114. --bs-border-radius-pill: 50rem;
  115. --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  116. --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  117. --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  118. --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  119. --bs-focus-ring-width: 0.25rem;
  120. --bs-focus-ring-opacity: 0.25;
  121. --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  122. --bs-form-valid-color: #198754;
  123. --bs-form-valid-border-color: #198754;
  124. --bs-form-invalid-color: #dc3545;
  125. --bs-form-invalid-border-color: #dc3545
  126. }
  127. [data-bs-theme=dark] {
  128. color-scheme: dark;
  129. --bs-body-color: #dee2e6;
  130. --bs-body-color-rgb: 222, 226, 230;
  131. --bs-body-bg: #212529;
  132. --bs-body-bg-rgb: 33, 37, 41;
  133. --bs-emphasis-color: #fff;
  134. --bs-emphasis-color-rgb: 255, 255, 255;
  135. --bs-secondary-color: rgba(222, 226, 230, 0.75);
  136. --bs-secondary-color-rgb: 222, 226, 230;
  137. --bs-secondary-bg: #343a40;
  138. --bs-secondary-bg-rgb: 52, 58, 64;
  139. --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  140. --bs-tertiary-color-rgb: 222, 226, 230;
  141. --bs-tertiary-bg: #2b3035;
  142. --bs-tertiary-bg-rgb: 43, 48, 53;
  143. --bs-primary-text-emphasis: #6ea8fe;
  144. --bs-secondary-text-emphasis: #a7acb1;
  145. --bs-success-text-emphasis: #75b798;
  146. --bs-info-text-emphasis: #6edff6;
  147. --bs-warning-text-emphasis: #ffda6a;
  148. --bs-danger-text-emphasis: #ea868f;
  149. --bs-light-text-emphasis: #f8f9fa;
  150. --bs-dark-text-emphasis: #dee2e6;
  151. --bs-primary-bg-subtle: #031633;
  152. --bs-secondary-bg-subtle: #161719;
  153. --bs-success-bg-subtle: #051b11;
  154. --bs-info-bg-subtle: #032830;
  155. --bs-warning-bg-subtle: #332701;
  156. --bs-danger-bg-subtle: #2c0b0e;
  157. --bs-light-bg-subtle: #343a40;
  158. --bs-dark-bg-subtle: #1a1d20;
  159. --bs-primary-border-subtle: #084298;
  160. --bs-secondary-border-subtle: #41464b;
  161. --bs-success-border-subtle: #0f5132;
  162. --bs-info-border-subtle: #087990;
  163. --bs-warning-border-subtle: #997404;
  164. --bs-danger-border-subtle: #842029;
  165. --bs-light-border-subtle: #495057;
  166. --bs-dark-border-subtle: #343a40;
  167. --bs-heading-color: inherit;
  168. --bs-link-color: #6ea8fe;
  169. --bs-link-hover-color: #8bb9fe;
  170. --bs-link-color-rgb: 110, 168, 254;
  171. --bs-link-hover-color-rgb: 139, 185, 254;
  172. --bs-code-color: #e685b5;
  173. --bs-highlight-color: #dee2e6;
  174. --bs-highlight-bg: #664d03;
  175. --bs-border-color: #495057;
  176. --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  177. --bs-form-valid-color: #75b798;
  178. --bs-form-valid-border-color: #75b798;
  179. --bs-form-invalid-color: #ea868f;
  180. --bs-form-invalid-border-color: #ea868f
  181. }
  182. *, ::after, ::before {
  183. box-sizing: border-box
  184. }
  185. @media (prefers-reduced-motion: no-preference) {
  186. :root {
  187. scroll-behavior: smooth
  188. }
  189. }
  190. body {
  191. margin: 0;
  192. font-family: var(--bs-body-font-family);
  193. font-size: var(--bs-body-font-size);
  194. font-weight: var(--bs-body-font-weight);
  195. line-height: var(--bs-body-line-height);
  196. color: var(--bs-body-color);
  197. text-align: var(--bs-body-text-align);
  198. background-color: var(--bs-body-bg);
  199. -webkit-text-size-adjust: 100%;
  200. -webkit-tap-highlight-color: transparent
  201. }
  202. hr {
  203. margin: 1rem 0;
  204. color: inherit;
  205. border: 0;
  206. border-top: var(--bs-border-width) solid;
  207. opacity: .25
  208. }
  209. .h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  210. margin-top: 0;
  211. margin-bottom: .5rem;
  212. font-weight: 500;
  213. line-height: 1.2;
  214. color: var(--bs-heading-color)
  215. }
  216. .h1, h1 {
  217. font-size: calc(1.375rem + 1.5vw)
  218. }
  219. @media (min-width: 1200px) {
  220. .h1, h1 {
  221. font-size: 2.5rem
  222. }
  223. }
  224. .h2, h2 {
  225. font-size: calc(1.325rem + .9vw)
  226. }
  227. @media (min-width: 1200px) {
  228. .h2, h2 {
  229. font-size: 2rem
  230. }
  231. }
  232. .h3, h3 {
  233. font-size: calc(1.3rem + .6vw)
  234. }
  235. @media (min-width: 1200px) {
  236. .h3, h3 {
  237. font-size: 1.75rem
  238. }
  239. }
  240. .h4, h4 {
  241. font-size: calc(1.275rem + .3vw)
  242. }
  243. @media (min-width: 1200px) {
  244. .h4, h4 {
  245. font-size: 1.5rem
  246. }
  247. }
  248. .h5, h5 {
  249. font-size: 1.25rem
  250. }
  251. .h6, h6 {
  252. font-size: 1rem
  253. }
  254. p {
  255. margin-top: 0;
  256. margin-bottom: 1rem
  257. }
  258. abbr[title] {
  259. -webkit-text-decoration: underline dotted;
  260. text-decoration: underline dotted;
  261. cursor: help;
  262. -webkit-text-decoration-skip-ink: none;
  263. text-decoration-skip-ink: none
  264. }
  265. address {
  266. margin-bottom: 1rem;
  267. font-style: normal;
  268. line-height: inherit
  269. }
  270. ol, ul {
  271. padding-left: 2rem
  272. }
  273. dl, ol, ul {
  274. margin-top: 0;
  275. margin-bottom: 1rem
  276. }
  277. ol ol, ol ul, ul ol, ul ul {
  278. margin-bottom: 0
  279. }
  280. dt {
  281. font-weight: 700
  282. }
  283. dd {
  284. margin-bottom: .5rem;
  285. margin-left: 0
  286. }
  287. blockquote {
  288. margin: 0 0 1rem
  289. }
  290. b, strong {
  291. font-weight: bolder
  292. }
  293. .small, small {
  294. font-size: .875em
  295. }
  296. .mark, mark {
  297. padding: .1875em;
  298. color: var(--bs-highlight-color);
  299. background-color: var(--bs-highlight-bg)
  300. }
  301. sub, sup {
  302. position: relative;
  303. font-size: .75em;
  304. line-height: 0;
  305. vertical-align: baseline
  306. }
  307. sub {
  308. bottom: -.25em
  309. }
  310. sup {
  311. top: -.5em
  312. }
  313. a {
  314. color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  315. text-decoration: underline
  316. }
  317. a:hover {
  318. --bs-link-color-rgb: var(--bs-link-hover-color-rgb)
  319. }
  320. a:not([href]):not([class]), a:not([href]):not([class]):hover {
  321. color: inherit;
  322. text-decoration: none
  323. }
  324. code, kbd, pre, samp {
  325. font-family: var(--bs-font-monospace);
  326. font-size: 1em
  327. }
  328. pre {
  329. display: block;
  330. margin-top: 0;
  331. margin-bottom: 1rem;
  332. overflow: auto;
  333. font-size: .875em
  334. }
  335. pre code {
  336. font-size: inherit;
  337. color: inherit;
  338. word-break: normal
  339. }
  340. code {
  341. font-size: .875em;
  342. color: var(--bs-code-color);
  343. word-wrap: break-word
  344. }
  345. a > code {
  346. color: inherit
  347. }
  348. kbd {
  349. padding: .1875rem .375rem;
  350. font-size: .875em;
  351. color: var(--bs-body-bg);
  352. background-color: var(--bs-body-color);
  353. border-radius: .25rem
  354. }
  355. kbd kbd {
  356. padding: 0;
  357. font-size: 1em
  358. }
  359. figure {
  360. margin: 0 0 1rem
  361. }
  362. img, svg {
  363. vertical-align: middle
  364. }
  365. table {
  366. caption-side: bottom;
  367. border-collapse: collapse
  368. }
  369. caption {
  370. padding-top: .5rem;
  371. padding-bottom: .5rem;
  372. color: var(--bs-secondary-color);
  373. text-align: left
  374. }
  375. th {
  376. text-align: inherit;
  377. text-align: -webkit-match-parent
  378. }
  379. tbody, td, tfoot, th, thead, tr {
  380. border-color: inherit;
  381. border-style: solid;
  382. border-width: 0
  383. }
  384. label {
  385. display: inline-block
  386. }
  387. button {
  388. border-radius: 0
  389. }
  390. button:focus:not(:focus-visible) {
  391. outline: 0
  392. }
  393. button, input, optgroup, select, textarea {
  394. margin: 0;
  395. font-family: inherit;
  396. font-size: inherit;
  397. line-height: inherit
  398. }
  399. button, select {
  400. text-transform: none
  401. }
  402. [role=button] {
  403. cursor: pointer
  404. }
  405. select {
  406. word-wrap: normal
  407. }
  408. select:disabled {
  409. opacity: 1
  410. }
  411. [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  412. display: none !important
  413. }
  414. [type=button], [type=reset], [type=submit], button {
  415. -webkit-appearance: button
  416. }
  417. [type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
  418. cursor: pointer
  419. }
  420. ::-moz-focus-inner {
  421. padding: 0;
  422. border-style: none
  423. }
  424. textarea {
  425. resize: vertical
  426. }
  427. fieldset {
  428. min-width: 0;
  429. padding: 0;
  430. margin: 0;
  431. border: 0
  432. }
  433. legend {
  434. float: left;
  435. width: 100%;
  436. padding: 0;
  437. margin-bottom: .5rem;
  438. font-size: calc(1.275rem + .3vw);
  439. line-height: inherit
  440. }
  441. @media (min-width: 1200px) {
  442. legend {
  443. font-size: 1.5rem
  444. }
  445. }
  446. legend + * {
  447. clear: left
  448. }
  449. ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-fields-wrapper, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-text, ::-webkit-datetime-edit-year-field {
  450. padding: 0
  451. }
  452. ::-webkit-inner-spin-button {
  453. height: auto
  454. }
  455. [type=search] {
  456. -webkit-appearance: textfield;
  457. outline-offset: -2px
  458. }
  459. ::-webkit-search-decoration {
  460. -webkit-appearance: none
  461. }
  462. ::-webkit-color-swatch-wrapper {
  463. padding: 0
  464. }
  465. ::-webkit-file-upload-button {
  466. font: inherit;
  467. -webkit-appearance: button
  468. }
  469. ::file-selector-button {
  470. font: inherit;
  471. -webkit-appearance: button
  472. }
  473. output {
  474. display: inline-block
  475. }
  476. iframe {
  477. border: 0
  478. }
  479. summary {
  480. display: list-item;
  481. cursor: pointer
  482. }
  483. progress {
  484. vertical-align: baseline
  485. }
  486. [hidden] {
  487. display: none !important
  488. }
  489. .lead {
  490. font-size: 1.25rem;
  491. font-weight: 300
  492. }
  493. .display-1 {
  494. font-size: calc(1.625rem + 4.5vw);
  495. font-weight: 300;
  496. line-height: 1.2
  497. }
  498. @media (min-width: 1200px) {
  499. .display-1 {
  500. font-size: 5rem
  501. }
  502. }
  503. .display-2 {
  504. font-size: calc(1.575rem + 3.9vw);
  505. font-weight: 300;
  506. line-height: 1.2
  507. }
  508. @media (min-width: 1200px) {
  509. .display-2 {
  510. font-size: 4.5rem
  511. }
  512. }
  513. .display-3 {
  514. font-size: calc(1.525rem + 3.3vw);
  515. font-weight: 300;
  516. line-height: 1.2
  517. }
  518. @media (min-width: 1200px) {
  519. .display-3 {
  520. font-size: 4rem
  521. }
  522. }
  523. .display-4 {
  524. font-size: calc(1.475rem + 2.7vw);
  525. font-weight: 300;
  526. line-height: 1.2
  527. }
  528. @media (min-width: 1200px) {
  529. .display-4 {
  530. font-size: 3.5rem
  531. }
  532. }
  533. .display-5 {
  534. font-size: calc(1.425rem + 2.1vw);
  535. font-weight: 300;
  536. line-height: 1.2
  537. }
  538. @media (min-width: 1200px) {
  539. .display-5 {
  540. font-size: 3rem
  541. }
  542. }
  543. .display-6 {
  544. font-size: calc(1.375rem + 1.5vw);
  545. font-weight: 300;
  546. line-height: 1.2
  547. }
  548. @media (min-width: 1200px) {
  549. .display-6 {
  550. font-size: 2.5rem
  551. }
  552. }
  553. .list-unstyled {
  554. padding-left: 0;
  555. list-style: none
  556. }
  557. .list-inline {
  558. padding-left: 0;
  559. list-style: none
  560. }
  561. .list-inline-item {
  562. display: inline-block
  563. }
  564. .list-inline-item:not(:last-child) {
  565. margin-right: .5rem
  566. }
  567. .initialism {
  568. font-size: .875em;
  569. text-transform: uppercase
  570. }
  571. .blockquote {
  572. margin-bottom: 1rem;
  573. font-size: 1.25rem
  574. }
  575. .blockquote > :last-child {
  576. margin-bottom: 0
  577. }
  578. .blockquote-footer {
  579. margin-top: -1rem;
  580. margin-bottom: 1rem;
  581. font-size: .875em;
  582. color: #6c757d
  583. }
  584. .blockquote-footer::before {
  585. content: "— "
  586. }
  587. .img-fluid {
  588. max-width: 100%;
  589. height: auto
  590. }
  591. .img-thumbnail {
  592. padding: .25rem;
  593. background-color: var(--bs-body-bg);
  594. border: var(--bs-border-width) solid var(--bs-border-color);
  595. border-radius: var(--bs-border-radius);
  596. max-width: 100%;
  597. height: auto
  598. }
  599. .figure {
  600. display: inline-block
  601. }
  602. .figure-img {
  603. margin-bottom: .5rem;
  604. line-height: 1
  605. }
  606. .figure-caption {
  607. font-size: .875em;
  608. color: var(--bs-secondary-color)
  609. }
  610. .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  611. --bs-gutter-x: 1.5rem;
  612. --bs-gutter-y: 0;
  613. width: 100%;
  614. padding-right: calc(var(--bs-gutter-x) * .5);
  615. padding-left: calc(var(--bs-gutter-x) * .5);
  616. margin-right: auto;
  617. margin-left: auto
  618. }
  619. @media (min-width: 576px) {
  620. .container, .container-sm {
  621. max-width: 540px
  622. }
  623. }
  624. @media (min-width: 768px) {
  625. .container, .container-md, .container-sm {
  626. max-width: 720px
  627. }
  628. }
  629. @media (min-width: 992px) {
  630. .container, .container-lg, .container-md, .container-sm {
  631. max-width: 960px
  632. }
  633. }
  634. @media (min-width: 1200px) {
  635. .container, .container-lg, .container-md, .container-sm, .container-xl {
  636. max-width: 1140px
  637. }
  638. }
  639. @media (min-width: 1400px) {
  640. .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  641. max-width: 1320px
  642. }
  643. }
  644. :root {
  645. --bs-breakpoint-xs: 0;
  646. --bs-breakpoint-sm: 576px;
  647. --bs-breakpoint-md: 768px;
  648. --bs-breakpoint-lg: 992px;
  649. --bs-breakpoint-xl: 1200px;
  650. --bs-breakpoint-xxl: 1400px
  651. }
  652. .row {
  653. --bs-gutter-x: 1.5rem;
  654. --bs-gutter-y: 0;
  655. display: flex;
  656. flex-wrap: wrap;
  657. margin-top: calc(-1 * var(--bs-gutter-y));
  658. margin-right: calc(-.5 * var(--bs-gutter-x));
  659. margin-left: calc(-.5 * var(--bs-gutter-x))
  660. }
  661. .row > * {
  662. flex-shrink: 0;
  663. width: 100%;
  664. max-width: 100%;
  665. padding-right: calc(var(--bs-gutter-x) * .5);
  666. padding-left: calc(var(--bs-gutter-x) * .5);
  667. margin-top: var(--bs-gutter-y)
  668. }
  669. .col {
  670. flex: 1 0 0%
  671. }
  672. .row-cols-auto > * {
  673. flex: 0 0 auto;
  674. width: auto
  675. }
  676. .row-cols-1 > * {
  677. flex: 0 0 auto;
  678. width: 100%
  679. }
  680. .row-cols-2 > * {
  681. flex: 0 0 auto;
  682. width: 50%
  683. }
  684. .row-cols-3 > * {
  685. flex: 0 0 auto;
  686. width: 33.33333333%
  687. }
  688. .row-cols-4 > * {
  689. flex: 0 0 auto;
  690. width: 25%
  691. }
  692. .row-cols-5 > * {
  693. flex: 0 0 auto;
  694. width: 20%
  695. }
  696. .row-cols-6 > * {
  697. flex: 0 0 auto;
  698. width: 16.66666667%
  699. }
  700. .col-auto {
  701. flex: 0 0 auto;
  702. width: auto
  703. }
  704. .col-1 {
  705. flex: 0 0 auto;
  706. width: 8.33333333%
  707. }
  708. .col-2 {
  709. flex: 0 0 auto;
  710. width: 16.66666667%
  711. }
  712. .col-3 {
  713. flex: 0 0 auto;
  714. width: 25%
  715. }
  716. .col-4 {
  717. flex: 0 0 auto;
  718. width: 33.33333333%
  719. }
  720. .col-5 {
  721. flex: 0 0 auto;
  722. width: 41.66666667%
  723. }
  724. .col-6 {
  725. flex: 0 0 auto;
  726. width: 50%
  727. }
  728. .col-7 {
  729. flex: 0 0 auto;
  730. width: 58.33333333%
  731. }
  732. .col-8 {
  733. flex: 0 0 auto;
  734. width: 66.66666667%
  735. }
  736. .col-9 {
  737. flex: 0 0 auto;
  738. width: 75%
  739. }
  740. .col-10 {
  741. flex: 0 0 auto;
  742. width: 83.33333333%
  743. }
  744. .col-11 {
  745. flex: 0 0 auto;
  746. width: 91.66666667%
  747. }
  748. .col-12 {
  749. flex: 0 0 auto;
  750. width: 100%
  751. }
  752. .offset-1 {
  753. margin-left: 8.33333333%
  754. }
  755. .offset-2 {
  756. margin-left: 16.66666667%
  757. }
  758. .offset-3 {
  759. margin-left: 25%
  760. }
  761. .offset-4 {
  762. margin-left: 33.33333333%
  763. }
  764. .offset-5 {
  765. margin-left: 41.66666667%
  766. }
  767. .offset-6 {
  768. margin-left: 50%
  769. }
  770. .offset-7 {
  771. margin-left: 58.33333333%
  772. }
  773. .offset-8 {
  774. margin-left: 66.66666667%
  775. }
  776. .offset-9 {
  777. margin-left: 75%
  778. }
  779. .offset-10 {
  780. margin-left: 83.33333333%
  781. }
  782. .offset-11 {
  783. margin-left: 91.66666667%
  784. }
  785. .g-0, .gx-0 {
  786. --bs-gutter-x: 0
  787. }
  788. .g-0, .gy-0 {
  789. --bs-gutter-y: 0
  790. }
  791. .g-1, .gx-1 {
  792. --bs-gutter-x: 0.25rem
  793. }
  794. .g-1, .gy-1 {
  795. --bs-gutter-y: 0.25rem
  796. }
  797. .g-2, .gx-2 {
  798. --bs-gutter-x: 0.5rem
  799. }
  800. .g-2, .gy-2 {
  801. --bs-gutter-y: 0.5rem
  802. }
  803. .g-3, .gx-3 {
  804. --bs-gutter-x: 1rem
  805. }
  806. .g-3, .gy-3 {
  807. --bs-gutter-y: 1rem
  808. }
  809. .g-4, .gx-4 {
  810. --bs-gutter-x: 1.5rem
  811. }
  812. .g-4, .gy-4 {
  813. --bs-gutter-y: 1.5rem
  814. }
  815. .g-5, .gx-5 {
  816. --bs-gutter-x: 3rem
  817. }
  818. .g-5, .gy-5 {
  819. --bs-gutter-y: 3rem
  820. }
  821. @media (min-width: 576px) {
  822. .col-sm {
  823. flex: 1 0 0%
  824. }
  825. .row-cols-sm-auto > * {
  826. flex: 0 0 auto;
  827. width: auto
  828. }
  829. .row-cols-sm-1 > * {
  830. flex: 0 0 auto;
  831. width: 100%
  832. }
  833. .row-cols-sm-2 > * {
  834. flex: 0 0 auto;
  835. width: 50%
  836. }
  837. .row-cols-sm-3 > * {
  838. flex: 0 0 auto;
  839. width: 33.33333333%
  840. }
  841. .row-cols-sm-4 > * {
  842. flex: 0 0 auto;
  843. width: 25%
  844. }
  845. .row-cols-sm-5 > * {
  846. flex: 0 0 auto;
  847. width: 20%
  848. }
  849. .row-cols-sm-6 > * {
  850. flex: 0 0 auto;
  851. width: 16.66666667%
  852. }
  853. .col-sm-auto {
  854. flex: 0 0 auto;
  855. width: auto
  856. }
  857. .col-sm-1 {
  858. flex: 0 0 auto;
  859. width: 8.33333333%
  860. }
  861. .col-sm-2 {
  862. flex: 0 0 auto;
  863. width: 16.66666667%
  864. }
  865. .col-sm-3 {
  866. flex: 0 0 auto;
  867. width: 25%
  868. }
  869. .col-sm-4 {
  870. flex: 0 0 auto;
  871. width: 33.33333333%
  872. }
  873. .col-sm-5 {
  874. flex: 0 0 auto;
  875. width: 41.66666667%
  876. }
  877. .col-sm-6 {
  878. flex: 0 0 auto;
  879. width: 50%
  880. }
  881. .col-sm-7 {
  882. flex: 0 0 auto;
  883. width: 58.33333333%
  884. }
  885. .col-sm-8 {
  886. flex: 0 0 auto;
  887. width: 66.66666667%
  888. }
  889. .col-sm-9 {
  890. flex: 0 0 auto;
  891. width: 75%
  892. }
  893. .col-sm-10 {
  894. flex: 0 0 auto;
  895. width: 83.33333333%
  896. }
  897. .col-sm-11 {
  898. flex: 0 0 auto;
  899. width: 91.66666667%
  900. }
  901. .col-sm-12 {
  902. flex: 0 0 auto;
  903. width: 100%
  904. }
  905. .offset-sm-0 {
  906. margin-left: 0
  907. }
  908. .offset-sm-1 {
  909. margin-left: 8.33333333%
  910. }
  911. .offset-sm-2 {
  912. margin-left: 16.66666667%
  913. }
  914. .offset-sm-3 {
  915. margin-left: 25%
  916. }
  917. .offset-sm-4 {
  918. margin-left: 33.33333333%
  919. }
  920. .offset-sm-5 {
  921. margin-left: 41.66666667%
  922. }
  923. .offset-sm-6 {
  924. margin-left: 50%
  925. }
  926. .offset-sm-7 {
  927. margin-left: 58.33333333%
  928. }
  929. .offset-sm-8 {
  930. margin-left: 66.66666667%
  931. }
  932. .offset-sm-9 {
  933. margin-left: 75%
  934. }
  935. .offset-sm-10 {
  936. margin-left: 83.33333333%
  937. }
  938. .offset-sm-11 {
  939. margin-left: 91.66666667%
  940. }
  941. .g-sm-0, .gx-sm-0 {
  942. --bs-gutter-x: 0
  943. }
  944. .g-sm-0, .gy-sm-0 {
  945. --bs-gutter-y: 0
  946. }
  947. .g-sm-1, .gx-sm-1 {
  948. --bs-gutter-x: 0.25rem
  949. }
  950. .g-sm-1, .gy-sm-1 {
  951. --bs-gutter-y: 0.25rem
  952. }
  953. .g-sm-2, .gx-sm-2 {
  954. --bs-gutter-x: 0.5rem
  955. }
  956. .g-sm-2, .gy-sm-2 {
  957. --bs-gutter-y: 0.5rem
  958. }
  959. .g-sm-3, .gx-sm-3 {
  960. --bs-gutter-x: 1rem
  961. }
  962. .g-sm-3, .gy-sm-3 {
  963. --bs-gutter-y: 1rem
  964. }
  965. .g-sm-4, .gx-sm-4 {
  966. --bs-gutter-x: 1.5rem
  967. }
  968. .g-sm-4, .gy-sm-4 {
  969. --bs-gutter-y: 1.5rem
  970. }
  971. .g-sm-5, .gx-sm-5 {
  972. --bs-gutter-x: 3rem
  973. }
  974. .g-sm-5, .gy-sm-5 {
  975. --bs-gutter-y: 3rem
  976. }
  977. }
  978. @media (min-width: 768px) {
  979. .col-md {
  980. flex: 1 0 0%
  981. }
  982. .row-cols-md-auto > * {
  983. flex: 0 0 auto;
  984. width: auto
  985. }
  986. .row-cols-md-1 > * {
  987. flex: 0 0 auto;
  988. width: 100%
  989. }
  990. .row-cols-md-2 > * {
  991. flex: 0 0 auto;
  992. width: 50%
  993. }
  994. .row-cols-md-3 > * {
  995. flex: 0 0 auto;
  996. width: 33.33333333%
  997. }
  998. .row-cols-md-4 > * {
  999. flex: 0 0 auto;
  1000. width: 25%
  1001. }
  1002. .row-cols-md-5 > * {
  1003. flex: 0 0 auto;
  1004. width: 20%
  1005. }
  1006. .row-cols-md-6 > * {
  1007. flex: 0 0 auto;
  1008. width: 16.66666667%
  1009. }
  1010. .col-md-auto {
  1011. flex: 0 0 auto;
  1012. width: auto
  1013. }
  1014. .col-md-1 {
  1015. flex: 0 0 auto;
  1016. width: 8.33333333%
  1017. }
  1018. .col-md-2 {
  1019. flex: 0 0 auto;
  1020. width: 16.66666667%
  1021. }
  1022. .col-md-3 {
  1023. flex: 0 0 auto;
  1024. width: 25%
  1025. }
  1026. .col-md-4 {
  1027. flex: 0 0 auto;
  1028. width: 33.33333333%
  1029. }
  1030. .col-md-5 {
  1031. flex: 0 0 auto;
  1032. width: 41.66666667%
  1033. }
  1034. .col-md-6 {
  1035. flex: 0 0 auto;
  1036. width: 50%
  1037. }
  1038. .col-md-7 {
  1039. flex: 0 0 auto;
  1040. width: 58.33333333%
  1041. }
  1042. .col-md-8 {
  1043. flex: 0 0 auto;
  1044. width: 66.66666667%
  1045. }
  1046. .col-md-9 {
  1047. flex: 0 0 auto;
  1048. width: 75%
  1049. }
  1050. .col-md-10 {
  1051. flex: 0 0 auto;
  1052. width: 83.33333333%
  1053. }
  1054. .col-md-11 {
  1055. flex: 0 0 auto;
  1056. width: 91.66666667%
  1057. }
  1058. .col-md-12 {
  1059. flex: 0 0 auto;
  1060. width: 100%
  1061. }
  1062. .offset-md-0 {
  1063. margin-left: 0
  1064. }
  1065. .offset-md-1 {
  1066. margin-left: 8.33333333%
  1067. }
  1068. .offset-md-2 {
  1069. margin-left: 16.66666667%
  1070. }
  1071. .offset-md-3 {
  1072. margin-left: 25%
  1073. }
  1074. .offset-md-4 {
  1075. margin-left: 33.33333333%
  1076. }
  1077. .offset-md-5 {
  1078. margin-left: 41.66666667%
  1079. }
  1080. .offset-md-6 {
  1081. margin-left: 50%
  1082. }
  1083. .offset-md-7 {
  1084. margin-left: 58.33333333%
  1085. }
  1086. .offset-md-8 {
  1087. margin-left: 66.66666667%
  1088. }
  1089. .offset-md-9 {
  1090. margin-left: 75%
  1091. }
  1092. .offset-md-10 {
  1093. margin-left: 83.33333333%
  1094. }
  1095. .offset-md-11 {
  1096. margin-left: 91.66666667%
  1097. }
  1098. .g-md-0, .gx-md-0 {
  1099. --bs-gutter-x: 0
  1100. }
  1101. .g-md-0, .gy-md-0 {
  1102. --bs-gutter-y: 0
  1103. }
  1104. .g-md-1, .gx-md-1 {
  1105. --bs-gutter-x: 0.25rem
  1106. }
  1107. .g-md-1, .gy-md-1 {
  1108. --bs-gutter-y: 0.25rem
  1109. }
  1110. .g-md-2, .gx-md-2 {
  1111. --bs-gutter-x: 0.5rem
  1112. }
  1113. .g-md-2, .gy-md-2 {
  1114. --bs-gutter-y: 0.5rem
  1115. }
  1116. .g-md-3, .gx-md-3 {
  1117. --bs-gutter-x: 1rem
  1118. }
  1119. .g-md-3, .gy-md-3 {
  1120. --bs-gutter-y: 1rem
  1121. }
  1122. .g-md-4, .gx-md-4 {
  1123. --bs-gutter-x: 1.5rem
  1124. }
  1125. .g-md-4, .gy-md-4 {
  1126. --bs-gutter-y: 1.5rem
  1127. }
  1128. .g-md-5, .gx-md-5 {
  1129. --bs-gutter-x: 3rem
  1130. }
  1131. .g-md-5, .gy-md-5 {
  1132. --bs-gutter-y: 3rem
  1133. }
  1134. }
  1135. @media (min-width: 992px) {
  1136. .col-lg {
  1137. flex: 1 0 0%
  1138. }
  1139. .row-cols-lg-auto > * {
  1140. flex: 0 0 auto;
  1141. width: auto
  1142. }
  1143. .row-cols-lg-1 > * {
  1144. flex: 0 0 auto;
  1145. width: 100%
  1146. }
  1147. .row-cols-lg-2 > * {
  1148. flex: 0 0 auto;
  1149. width: 50%
  1150. }
  1151. .row-cols-lg-3 > * {
  1152. flex: 0 0 auto;
  1153. width: 33.33333333%
  1154. }
  1155. .row-cols-lg-4 > * {
  1156. flex: 0 0 auto;
  1157. width: 25%
  1158. }
  1159. .row-cols-lg-5 > * {
  1160. flex: 0 0 auto;
  1161. width: 20%
  1162. }
  1163. .row-cols-lg-6 > * {
  1164. flex: 0 0 auto;
  1165. width: 16.66666667%
  1166. }
  1167. .col-lg-auto {
  1168. flex: 0 0 auto;
  1169. width: auto
  1170. }
  1171. .col-lg-1 {
  1172. flex: 0 0 auto;
  1173. width: 8.33333333%
  1174. }
  1175. .col-lg-2 {
  1176. flex: 0 0 auto;
  1177. width: 16.66666667%
  1178. }
  1179. .col-lg-3 {
  1180. flex: 0 0 auto;
  1181. width: 25%
  1182. }
  1183. .col-lg-4 {
  1184. flex: 0 0 auto;
  1185. width: 33.33333333%
  1186. }
  1187. .col-lg-5 {
  1188. flex: 0 0 auto;
  1189. width: 41.66666667%
  1190. }
  1191. .col-lg-6 {
  1192. flex: 0 0 auto;
  1193. width: 50%
  1194. }
  1195. .col-lg-7 {
  1196. flex: 0 0 auto;
  1197. width: 58.33333333%
  1198. }
  1199. .col-lg-8 {
  1200. flex: 0 0 auto;
  1201. width: 66.66666667%
  1202. }
  1203. .col-lg-9 {
  1204. flex: 0 0 auto;
  1205. width: 75%
  1206. }
  1207. .col-lg-10 {
  1208. flex: 0 0 auto;
  1209. width: 83.33333333%
  1210. }
  1211. .col-lg-11 {
  1212. flex: 0 0 auto;
  1213. width: 91.66666667%
  1214. }
  1215. .col-lg-12 {
  1216. flex: 0 0 auto;
  1217. width: 100%
  1218. }
  1219. .offset-lg-0 {
  1220. margin-left: 0
  1221. }
  1222. .offset-lg-1 {
  1223. margin-left: 8.33333333%
  1224. }
  1225. .offset-lg-2 {
  1226. margin-left: 16.66666667%
  1227. }
  1228. .offset-lg-3 {
  1229. margin-left: 25%
  1230. }
  1231. .offset-lg-4 {
  1232. margin-left: 33.33333333%
  1233. }
  1234. .offset-lg-5 {
  1235. margin-left: 41.66666667%
  1236. }
  1237. .offset-lg-6 {
  1238. margin-left: 50%
  1239. }
  1240. .offset-lg-7 {
  1241. margin-left: 58.33333333%
  1242. }
  1243. .offset-lg-8 {
  1244. margin-left: 66.66666667%
  1245. }
  1246. .offset-lg-9 {
  1247. margin-left: 75%
  1248. }
  1249. .offset-lg-10 {
  1250. margin-left: 83.33333333%
  1251. }
  1252. .offset-lg-11 {
  1253. margin-left: 91.66666667%
  1254. }
  1255. .g-lg-0, .gx-lg-0 {
  1256. --bs-gutter-x: 0
  1257. }
  1258. .g-lg-0, .gy-lg-0 {
  1259. --bs-gutter-y: 0
  1260. }
  1261. .g-lg-1, .gx-lg-1 {
  1262. --bs-gutter-x: 0.25rem
  1263. }
  1264. .g-lg-1, .gy-lg-1 {
  1265. --bs-gutter-y: 0.25rem
  1266. }
  1267. .g-lg-2, .gx-lg-2 {
  1268. --bs-gutter-x: 0.5rem
  1269. }
  1270. .g-lg-2, .gy-lg-2 {
  1271. --bs-gutter-y: 0.5rem
  1272. }
  1273. .g-lg-3, .gx-lg-3 {
  1274. --bs-gutter-x: 1rem
  1275. }
  1276. .g-lg-3, .gy-lg-3 {
  1277. --bs-gutter-y: 1rem
  1278. }
  1279. .g-lg-4, .gx-lg-4 {
  1280. --bs-gutter-x: 1.5rem
  1281. }
  1282. .g-lg-4, .gy-lg-4 {
  1283. --bs-gutter-y: 1.5rem
  1284. }
  1285. .g-lg-5, .gx-lg-5 {
  1286. --bs-gutter-x: 3rem
  1287. }
  1288. .g-lg-5, .gy-lg-5 {
  1289. --bs-gutter-y: 3rem
  1290. }
  1291. }
  1292. @media (min-width: 1200px) {
  1293. .col-xl {
  1294. flex: 1 0 0%
  1295. }
  1296. .row-cols-xl-auto > * {
  1297. flex: 0 0 auto;
  1298. width: auto
  1299. }
  1300. .row-cols-xl-1 > * {
  1301. flex: 0 0 auto;
  1302. width: 100%
  1303. }
  1304. .row-cols-xl-2 > * {
  1305. flex: 0 0 auto;
  1306. width: 50%
  1307. }
  1308. .row-cols-xl-3 > * {
  1309. flex: 0 0 auto;
  1310. width: 33.33333333%
  1311. }
  1312. .row-cols-xl-4 > * {
  1313. flex: 0 0 auto;
  1314. width: 25%
  1315. }
  1316. .row-cols-xl-5 > * {
  1317. flex: 0 0 auto;
  1318. width: 20%
  1319. }
  1320. .row-cols-xl-6 > * {
  1321. flex: 0 0 auto;
  1322. width: 16.66666667%
  1323. }
  1324. .col-xl-auto {
  1325. flex: 0 0 auto;
  1326. width: auto
  1327. }
  1328. .col-xl-1 {
  1329. flex: 0 0 auto;
  1330. width: 8.33333333%
  1331. }
  1332. .col-xl-2 {
  1333. flex: 0 0 auto;
  1334. width: 16.66666667%
  1335. }
  1336. .col-xl-3 {
  1337. flex: 0 0 auto;
  1338. width: 25%
  1339. }
  1340. .col-xl-4 {
  1341. flex: 0 0 auto;
  1342. width: 33.33333333%
  1343. }
  1344. .col-xl-5 {
  1345. flex: 0 0 auto;
  1346. width: 41.66666667%
  1347. }
  1348. .col-xl-6 {
  1349. flex: 0 0 auto;
  1350. width: 50%
  1351. }
  1352. .col-xl-7 {
  1353. flex: 0 0 auto;
  1354. width: 58.33333333%
  1355. }
  1356. .col-xl-8 {
  1357. flex: 0 0 auto;
  1358. width: 66.66666667%
  1359. }
  1360. .col-xl-9 {
  1361. flex: 0 0 auto;
  1362. width: 75%
  1363. }
  1364. .col-xl-10 {
  1365. flex: 0 0 auto;
  1366. width: 83.33333333%
  1367. }
  1368. .col-xl-11 {
  1369. flex: 0 0 auto;
  1370. width: 91.66666667%
  1371. }
  1372. .col-xl-12 {
  1373. flex: 0 0 auto;
  1374. width: 100%
  1375. }
  1376. .offset-xl-0 {
  1377. margin-left: 0
  1378. }
  1379. .offset-xl-1 {
  1380. margin-left: 8.33333333%
  1381. }
  1382. .offset-xl-2 {
  1383. margin-left: 16.66666667%
  1384. }
  1385. .offset-xl-3 {
  1386. margin-left: 25%
  1387. }
  1388. .offset-xl-4 {
  1389. margin-left: 33.33333333%
  1390. }
  1391. .offset-xl-5 {
  1392. margin-left: 41.66666667%
  1393. }
  1394. .offset-xl-6 {
  1395. margin-left: 50%
  1396. }
  1397. .offset-xl-7 {
  1398. margin-left: 58.33333333%
  1399. }
  1400. .offset-xl-8 {
  1401. margin-left: 66.66666667%
  1402. }
  1403. .offset-xl-9 {
  1404. margin-left: 75%
  1405. }
  1406. .offset-xl-10 {
  1407. margin-left: 83.33333333%
  1408. }
  1409. .offset-xl-11 {
  1410. margin-left: 91.66666667%
  1411. }
  1412. .g-xl-0, .gx-xl-0 {
  1413. --bs-gutter-x: 0
  1414. }
  1415. .g-xl-0, .gy-xl-0 {
  1416. --bs-gutter-y: 0
  1417. }
  1418. .g-xl-1, .gx-xl-1 {
  1419. --bs-gutter-x: 0.25rem
  1420. }
  1421. .g-xl-1, .gy-xl-1 {
  1422. --bs-gutter-y: 0.25rem
  1423. }
  1424. .g-xl-2, .gx-xl-2 {
  1425. --bs-gutter-x: 0.5rem
  1426. }
  1427. .g-xl-2, .gy-xl-2 {
  1428. --bs-gutter-y: 0.5rem
  1429. }
  1430. .g-xl-3, .gx-xl-3 {
  1431. --bs-gutter-x: 1rem
  1432. }
  1433. .g-xl-3, .gy-xl-3 {
  1434. --bs-gutter-y: 1rem
  1435. }
  1436. .g-xl-4, .gx-xl-4 {
  1437. --bs-gutter-x: 1.5rem
  1438. }
  1439. .g-xl-4, .gy-xl-4 {
  1440. --bs-gutter-y: 1.5rem
  1441. }
  1442. .g-xl-5, .gx-xl-5 {
  1443. --bs-gutter-x: 3rem
  1444. }
  1445. .g-xl-5, .gy-xl-5 {
  1446. --bs-gutter-y: 3rem
  1447. }
  1448. }
  1449. @media (min-width: 1400px) {
  1450. .col-xxl {
  1451. flex: 1 0 0%
  1452. }
  1453. .row-cols-xxl-auto > * {
  1454. flex: 0 0 auto;
  1455. width: auto
  1456. }
  1457. .row-cols-xxl-1 > * {
  1458. flex: 0 0 auto;
  1459. width: 100%
  1460. }
  1461. .row-cols-xxl-2 > * {
  1462. flex: 0 0 auto;
  1463. width: 50%
  1464. }
  1465. .row-cols-xxl-3 > * {
  1466. flex: 0 0 auto;
  1467. width: 33.33333333%
  1468. }
  1469. .row-cols-xxl-4 > * {
  1470. flex: 0 0 auto;
  1471. width: 25%
  1472. }
  1473. .row-cols-xxl-5 > * {
  1474. flex: 0 0 auto;
  1475. width: 20%
  1476. }
  1477. .row-cols-xxl-6 > * {
  1478. flex: 0 0 auto;
  1479. width: 16.66666667%
  1480. }
  1481. .col-xxl-auto {
  1482. flex: 0 0 auto;
  1483. width: auto
  1484. }
  1485. .col-xxl-1 {
  1486. flex: 0 0 auto;
  1487. width: 8.33333333%
  1488. }
  1489. .col-xxl-2 {
  1490. flex: 0 0 auto;
  1491. width: 16.66666667%
  1492. }
  1493. .col-xxl-3 {
  1494. flex: 0 0 auto;
  1495. width: 25%
  1496. }
  1497. .col-xxl-4 {
  1498. flex: 0 0 auto;
  1499. width: 33.33333333%
  1500. }
  1501. .col-xxl-5 {
  1502. flex: 0 0 auto;
  1503. width: 41.66666667%
  1504. }
  1505. .col-xxl-6 {
  1506. flex: 0 0 auto;
  1507. width: 50%
  1508. }
  1509. .col-xxl-7 {
  1510. flex: 0 0 auto;
  1511. width: 58.33333333%
  1512. }
  1513. .col-xxl-8 {
  1514. flex: 0 0 auto;
  1515. width: 66.66666667%
  1516. }
  1517. .col-xxl-9 {
  1518. flex: 0 0 auto;
  1519. width: 75%
  1520. }
  1521. .col-xxl-10 {
  1522. flex: 0 0 auto;
  1523. width: 83.33333333%
  1524. }
  1525. .col-xxl-11 {
  1526. flex: 0 0 auto;
  1527. width: 91.66666667%
  1528. }
  1529. .col-xxl-12 {
  1530. flex: 0 0 auto;
  1531. width: 100%
  1532. }
  1533. .offset-xxl-0 {
  1534. margin-left: 0
  1535. }
  1536. .offset-xxl-1 {
  1537. margin-left: 8.33333333%
  1538. }
  1539. .offset-xxl-2 {
  1540. margin-left: 16.66666667%
  1541. }
  1542. .offset-xxl-3 {
  1543. margin-left: 25%
  1544. }
  1545. .offset-xxl-4 {
  1546. margin-left: 33.33333333%
  1547. }
  1548. .offset-xxl-5 {
  1549. margin-left: 41.66666667%
  1550. }
  1551. .offset-xxl-6 {
  1552. margin-left: 50%
  1553. }
  1554. .offset-xxl-7 {
  1555. margin-left: 58.33333333%
  1556. }
  1557. .offset-xxl-8 {
  1558. margin-left: 66.66666667%
  1559. }
  1560. .offset-xxl-9 {
  1561. margin-left: 75%
  1562. }
  1563. .offset-xxl-10 {
  1564. margin-left: 83.33333333%
  1565. }
  1566. .offset-xxl-11 {
  1567. margin-left: 91.66666667%
  1568. }
  1569. .g-xxl-0, .gx-xxl-0 {
  1570. --bs-gutter-x: 0
  1571. }
  1572. .g-xxl-0, .gy-xxl-0 {
  1573. --bs-gutter-y: 0
  1574. }
  1575. .g-xxl-1, .gx-xxl-1 {
  1576. --bs-gutter-x: 0.25rem
  1577. }
  1578. .g-xxl-1, .gy-xxl-1 {
  1579. --bs-gutter-y: 0.25rem
  1580. }
  1581. .g-xxl-2, .gx-xxl-2 {
  1582. --bs-gutter-x: 0.5rem
  1583. }
  1584. .g-xxl-2, .gy-xxl-2 {
  1585. --bs-gutter-y: 0.5rem
  1586. }
  1587. .g-xxl-3, .gx-xxl-3 {
  1588. --bs-gutter-x: 1rem
  1589. }
  1590. .g-xxl-3, .gy-xxl-3 {
  1591. --bs-gutter-y: 1rem
  1592. }
  1593. .g-xxl-4, .gx-xxl-4 {
  1594. --bs-gutter-x: 1.5rem
  1595. }
  1596. .g-xxl-4, .gy-xxl-4 {
  1597. --bs-gutter-y: 1.5rem
  1598. }
  1599. .g-xxl-5, .gx-xxl-5 {
  1600. --bs-gutter-x: 3rem
  1601. }
  1602. .g-xxl-5, .gy-xxl-5 {
  1603. --bs-gutter-y: 3rem
  1604. }
  1605. }
  1606. .table {
  1607. --bs-table-color-type: initial;
  1608. --bs-table-bg-type: initial;
  1609. --bs-table-color-state: initial;
  1610. --bs-table-bg-state: initial;
  1611. --bs-table-color: var(--bs-emphasis-color);
  1612. --bs-table-bg: var(--bs-body-bg);
  1613. --bs-table-border-color: var(--bs-border-color);
  1614. --bs-table-accent-bg: transparent;
  1615. --bs-table-striped-color: var(--bs-emphasis-color);
  1616. --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  1617. --bs-table-active-color: var(--bs-emphasis-color);
  1618. --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  1619. --bs-table-hover-color: var(--bs-emphasis-color);
  1620. --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  1621. width: 100%;
  1622. margin-bottom: 1rem;
  1623. vertical-align: top;
  1624. border-color: var(--bs-table-border-color)
  1625. }
  1626. .table > :not(caption) > * > * {
  1627. padding: .5rem .5rem;
  1628. color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  1629. background-color: var(--bs-table-bg);
  1630. border-bottom-width: var(--bs-border-width);
  1631. box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)))
  1632. }
  1633. .table > tbody {
  1634. vertical-align: inherit
  1635. }
  1636. .table > thead {
  1637. vertical-align: bottom
  1638. }
  1639. .table-group-divider {
  1640. border-top: calc(var(--bs-border-width) * 2) solid currentcolor
  1641. }
  1642. .caption-top {
  1643. caption-side: top
  1644. }
  1645. .table-sm > :not(caption) > * > * {
  1646. padding: .25rem .25rem
  1647. }
  1648. .table-bordered > :not(caption) > * {
  1649. border-width: var(--bs-border-width) 0
  1650. }
  1651. .table-bordered > :not(caption) > * > * {
  1652. border-width: 0 var(--bs-border-width)
  1653. }
  1654. .table-borderless > :not(caption) > * > * {
  1655. border-bottom-width: 0
  1656. }
  1657. .table-borderless > :not(:first-child) {
  1658. border-top-width: 0
  1659. }
  1660. .table-striped > tbody > tr:nth-of-type(odd) > * {
  1661. --bs-table-color-type: var(--bs-table-striped-color);
  1662. --bs-table-bg-type: var(--bs-table-striped-bg)
  1663. }
  1664. .table-striped-columns > :not(caption) > tr > :nth-child(2n) {
  1665. --bs-table-color-type: var(--bs-table-striped-color);
  1666. --bs-table-bg-type: var(--bs-table-striped-bg)
  1667. }
  1668. .table-active {
  1669. --bs-table-color-state: var(--bs-table-active-color);
  1670. --bs-table-bg-state: var(--bs-table-active-bg)
  1671. }
  1672. .table-hover > tbody > tr:hover > * {
  1673. --bs-table-color-state: var(--bs-table-hover-color);
  1674. --bs-table-bg-state: var(--bs-table-hover-bg)
  1675. }
  1676. .table-primary {
  1677. --bs-table-color: #000;
  1678. --bs-table-bg: #cfe2ff;
  1679. --bs-table-border-color: #a6b5cc;
  1680. --bs-table-striped-bg: #c5d7f2;
  1681. --bs-table-striped-color: #000;
  1682. --bs-table-active-bg: #bacbe6;
  1683. --bs-table-active-color: #000;
  1684. --bs-table-hover-bg: #bfd1ec;
  1685. --bs-table-hover-color: #000;
  1686. color: var(--bs-table-color);
  1687. border-color: var(--bs-table-border-color)
  1688. }
  1689. .table-secondary {
  1690. --bs-table-color: #000;
  1691. --bs-table-bg: #e2e3e5;
  1692. --bs-table-border-color: #b5b6b7;
  1693. --bs-table-striped-bg: #d7d8da;
  1694. --bs-table-striped-color: #000;
  1695. --bs-table-active-bg: #cbccce;
  1696. --bs-table-active-color: #000;
  1697. --bs-table-hover-bg: #d1d2d4;
  1698. --bs-table-hover-color: #000;
  1699. color: var(--bs-table-color);
  1700. border-color: var(--bs-table-border-color)
  1701. }
  1702. .table-success {
  1703. --bs-table-color: #000;
  1704. --bs-table-bg: #d1e7dd;
  1705. --bs-table-border-color: #a7b9b1;
  1706. --bs-table-striped-bg: #c7dbd2;
  1707. --bs-table-striped-color: #000;
  1708. --bs-table-active-bg: #bcd0c7;
  1709. --bs-table-active-color: #000;
  1710. --bs-table-hover-bg: #c1d6cc;
  1711. --bs-table-hover-color: #000;
  1712. color: var(--bs-table-color);
  1713. border-color: var(--bs-table-border-color)
  1714. }
  1715. .table-info {
  1716. --bs-table-color: #000;
  1717. --bs-table-bg: #cff4fc;
  1718. --bs-table-border-color: #a6c3ca;
  1719. --bs-table-striped-bg: #c5e8ef;
  1720. --bs-table-striped-color: #000;
  1721. --bs-table-active-bg: #badce3;
  1722. --bs-table-active-color: #000;
  1723. --bs-table-hover-bg: #bfe2e9;
  1724. --bs-table-hover-color: #000;
  1725. color: var(--bs-table-color);
  1726. border-color: var(--bs-table-border-color)
  1727. }
  1728. .table-warning {
  1729. --bs-table-color: #000;
  1730. --bs-table-bg: #fff3cd;
  1731. --bs-table-border-color: #ccc2a4;
  1732. --bs-table-striped-bg: #f2e7c3;
  1733. --bs-table-striped-color: #000;
  1734. --bs-table-active-bg: #e6dbb9;
  1735. --bs-table-active-color: #000;
  1736. --bs-table-hover-bg: #ece1be;
  1737. --bs-table-hover-color: #000;
  1738. color: var(--bs-table-color);
  1739. border-color: var(--bs-table-border-color)
  1740. }
  1741. .table-danger {
  1742. --bs-table-color: #000;
  1743. --bs-table-bg: #f8d7da;
  1744. --bs-table-border-color: #c6acae;
  1745. --bs-table-striped-bg: #eccccf;
  1746. --bs-table-striped-color: #000;
  1747. --bs-table-active-bg: #dfc2c4;
  1748. --bs-table-active-color: #000;
  1749. --bs-table-hover-bg: #e5c7ca;
  1750. --bs-table-hover-color: #000;
  1751. color: var(--bs-table-color);
  1752. border-color: var(--bs-table-border-color)
  1753. }
  1754. .table-light {
  1755. --bs-table-color: #000;
  1756. --bs-table-bg: #f8f9fa;
  1757. --bs-table-border-color: #c6c7c8;
  1758. --bs-table-striped-bg: #ecedee;
  1759. --bs-table-striped-color: #000;
  1760. --bs-table-active-bg: #dfe0e1;
  1761. --bs-table-active-color: #000;
  1762. --bs-table-hover-bg: #e5e6e7;
  1763. --bs-table-hover-color: #000;
  1764. color: var(--bs-table-color);
  1765. border-color: var(--bs-table-border-color)
  1766. }
  1767. .table-dark {
  1768. --bs-table-color: #fff;
  1769. --bs-table-bg: #212529;
  1770. --bs-table-border-color: #4d5154;
  1771. --bs-table-striped-bg: #2c3034;
  1772. --bs-table-striped-color: #fff;
  1773. --bs-table-active-bg: #373b3e;
  1774. --bs-table-active-color: #fff;
  1775. --bs-table-hover-bg: #323539;
  1776. --bs-table-hover-color: #fff;
  1777. color: var(--bs-table-color);
  1778. border-color: var(--bs-table-border-color)
  1779. }
  1780. .table-responsive {
  1781. overflow-x: auto;
  1782. -webkit-overflow-scrolling: touch
  1783. }
  1784. @media (max-width: 575.98px) {
  1785. .table-responsive-sm {
  1786. overflow-x: auto;
  1787. -webkit-overflow-scrolling: touch
  1788. }
  1789. }
  1790. @media (max-width: 767.98px) {
  1791. .table-responsive-md {
  1792. overflow-x: auto;
  1793. -webkit-overflow-scrolling: touch
  1794. }
  1795. }
  1796. @media (max-width: 991.98px) {
  1797. .table-responsive-lg {
  1798. overflow-x: auto;
  1799. -webkit-overflow-scrolling: touch
  1800. }
  1801. }
  1802. @media (max-width: 1199.98px) {
  1803. .table-responsive-xl {
  1804. overflow-x: auto;
  1805. -webkit-overflow-scrolling: touch
  1806. }
  1807. }
  1808. @media (max-width: 1399.98px) {
  1809. .table-responsive-xxl {
  1810. overflow-x: auto;
  1811. -webkit-overflow-scrolling: touch
  1812. }
  1813. }
  1814. .form-label {
  1815. margin-bottom: .5rem
  1816. }
  1817. .col-form-label {
  1818. padding-top: calc(.375rem + var(--bs-border-width));
  1819. padding-bottom: calc(.375rem + var(--bs-border-width));
  1820. margin-bottom: 0;
  1821. font-size: inherit;
  1822. line-height: 1.5
  1823. }
  1824. .col-form-label-lg {
  1825. padding-top: calc(.5rem + var(--bs-border-width));
  1826. padding-bottom: calc(.5rem + var(--bs-border-width));
  1827. font-size: 1.25rem
  1828. }
  1829. .col-form-label-sm {
  1830. padding-top: calc(.25rem + var(--bs-border-width));
  1831. padding-bottom: calc(.25rem + var(--bs-border-width));
  1832. font-size: .875rem
  1833. }
  1834. .form-text {
  1835. margin-top: .25rem;
  1836. font-size: .875em;
  1837. color: var(--bs-secondary-color)
  1838. }
  1839. .form-control {
  1840. display: block;
  1841. width: 100%;
  1842. padding: .375rem .75rem;
  1843. font-size: 1rem;
  1844. font-weight: 400;
  1845. line-height: 1.5;
  1846. color: var(--bs-body-color);
  1847. -webkit-appearance: none;
  1848. -moz-appearance: none;
  1849. appearance: none;
  1850. background-color: var(--bs-body-bg);
  1851. background-clip: padding-box;
  1852. border: var(--bs-border-width) solid var(--bs-border-color);
  1853. border-radius: var(--bs-border-radius);
  1854. transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
  1855. }
  1856. @media (prefers-reduced-motion: reduce) {
  1857. .form-control {
  1858. transition: none
  1859. }
  1860. }
  1861. .form-control[type=file] {
  1862. overflow: hidden
  1863. }
  1864. .form-control[type=file]:not(:disabled):not([readonly]) {
  1865. cursor: pointer
  1866. }
  1867. .form-control:focus {
  1868. color: var(--bs-body-color);
  1869. background-color: var(--bs-body-bg);
  1870. border-color: #86b7fe;
  1871. outline: 0;
  1872. box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
  1873. }
  1874. .form-control::-webkit-date-and-time-value {
  1875. min-width: 85px;
  1876. height: 1.5em;
  1877. margin: 0
  1878. }
  1879. .form-control::-webkit-datetime-edit {
  1880. display: block;
  1881. padding: 0
  1882. }
  1883. .form-control::-moz-placeholder {
  1884. color: var(--bs-secondary-color);
  1885. opacity: 1
  1886. }
  1887. .form-control::placeholder {
  1888. color: var(--bs-secondary-color);
  1889. opacity: 1
  1890. }
  1891. .form-control:disabled {
  1892. background-color: var(--bs-secondary-bg);
  1893. opacity: 1
  1894. }
  1895. .form-control::-webkit-file-upload-button {
  1896. padding: .375rem .75rem;
  1897. margin: -.375rem -.75rem;
  1898. -webkit-margin-end: .75rem;
  1899. margin-inline-end: .75rem;
  1900. color: var(--bs-body-color);
  1901. background-color: var(--bs-tertiary-bg);
  1902. pointer-events: none;
  1903. border-color: inherit;
  1904. border-style: solid;
  1905. border-width: 0;
  1906. border-inline-end-width: var(--bs-border-width);
  1907. border-radius: 0;
  1908. -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  1909. transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
  1910. }
  1911. .form-control::file-selector-button {
  1912. padding: .375rem .75rem;
  1913. margin: -.375rem -.75rem;
  1914. -webkit-margin-end: .75rem;
  1915. margin-inline-end: .75rem;
  1916. color: var(--bs-body-color);
  1917. background-color: var(--bs-tertiary-bg);
  1918. pointer-events: none;
  1919. border-color: inherit;
  1920. border-style: solid;
  1921. border-width: 0;
  1922. border-inline-end-width: var(--bs-border-width);
  1923. border-radius: 0;
  1924. transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
  1925. }
  1926. @media (prefers-reduced-motion: reduce) {
  1927. .form-control::-webkit-file-upload-button {
  1928. -webkit-transition: none;
  1929. transition: none
  1930. }
  1931. .form-control::file-selector-button {
  1932. transition: none
  1933. }
  1934. }
  1935. .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  1936. background-color: var(--bs-secondary-bg)
  1937. }
  1938. .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  1939. background-color: var(--bs-secondary-bg)
  1940. }
  1941. .form-control-plaintext {
  1942. display: block;
  1943. width: 100%;
  1944. padding: .375rem 0;
  1945. margin-bottom: 0;
  1946. line-height: 1.5;
  1947. color: var(--bs-body-color);
  1948. background-color: transparent;
  1949. border: solid transparent;
  1950. border-width: var(--bs-border-width) 0
  1951. }
  1952. .form-control-plaintext:focus {
  1953. outline: 0
  1954. }
  1955. .form-control-plaintext.form-control-lg, .form-control-plaintext.form-control-sm {
  1956. padding-right: 0;
  1957. padding-left: 0
  1958. }
  1959. .form-control-sm {
  1960. min-height: calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));
  1961. padding: .25rem .5rem;
  1962. font-size: .875rem;
  1963. border-radius: var(--bs-border-radius-sm)
  1964. }
  1965. .form-control-sm::-webkit-file-upload-button {
  1966. padding: .25rem .5rem;
  1967. margin: -.25rem -.5rem;
  1968. -webkit-margin-end: .5rem;
  1969. margin-inline-end: .5rem
  1970. }
  1971. .form-control-sm::file-selector-button {
  1972. padding: .25rem .5rem;
  1973. margin: -.25rem -.5rem;
  1974. -webkit-margin-end: .5rem;
  1975. margin-inline-end: .5rem
  1976. }
  1977. .form-control-lg {
  1978. min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  1979. padding: .5rem 1rem;
  1980. font-size: 1.25rem;
  1981. border-radius: var(--bs-border-radius-lg)
  1982. }
  1983. .form-control-lg::-webkit-file-upload-button {
  1984. padding: .5rem 1rem;
  1985. margin: -.5rem -1rem;
  1986. -webkit-margin-end: 1rem;
  1987. margin-inline-end: 1rem
  1988. }
  1989. .form-control-lg::file-selector-button {
  1990. padding: .5rem 1rem;
  1991. margin: -.5rem -1rem;
  1992. -webkit-margin-end: 1rem;
  1993. margin-inline-end: 1rem
  1994. }
  1995. textarea.form-control {
  1996. min-height: calc(1.5em + .75rem + calc(var(--bs-border-width) * 2))
  1997. }
  1998. textarea.form-control-sm {
  1999. min-height: calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))
  2000. }
  2001. textarea.form-control-lg {
  2002. min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))
  2003. }
  2004. .form-control-color {
  2005. width: 3rem;
  2006. height: calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));
  2007. padding: .375rem
  2008. }
  2009. .form-control-color:not(:disabled):not([readonly]) {
  2010. cursor: pointer
  2011. }
  2012. .form-control-color::-moz-color-swatch {
  2013. border: 0 !important;
  2014. border-radius: var(--bs-border-radius)
  2015. }
  2016. .form-control-color::-webkit-color-swatch {
  2017. border: 0 !important;
  2018. border-radius: var(--bs-border-radius)
  2019. }
  2020. .form-control-color.form-control-sm {
  2021. height: calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))
  2022. }
  2023. .form-control-color.form-control-lg {
  2024. height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))
  2025. }
  2026. .form-select {
  2027. --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");
  2028. display: block;
  2029. width: 100%;
  2030. padding: .375rem 2.25rem .375rem .75rem;
  2031. font-size: 1rem;
  2032. font-weight: 400;
  2033. line-height: 1.5;
  2034. color: var(--bs-body-color);
  2035. -webkit-appearance: none;
  2036. -moz-appearance: none;
  2037. appearance: none;
  2038. background-color: var(--bs-body-bg);
  2039. background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  2040. background-repeat: no-repeat;
  2041. background-position: right .75rem center;
  2042. background-size: 16px 12px;
  2043. border: var(--bs-border-width) solid var(--bs-border-color);
  2044. border-radius: var(--bs-border-radius);
  2045. transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
  2046. }
  2047. @media (prefers-reduced-motion: reduce) {
  2048. .form-select {
  2049. transition: none
  2050. }
  2051. }
  2052. .form-select:focus {
  2053. border-color: #86b7fe;
  2054. outline: 0;
  2055. box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
  2056. }
  2057. .form-select[multiple], .form-select[size]:not([size="1"]) {
  2058. padding-right: .75rem;
  2059. background-image: none
  2060. }
  2061. .form-select:disabled {
  2062. background-color: var(--bs-secondary-bg)
  2063. }
  2064. .form-select:-moz-focusring {
  2065. color: transparent;
  2066. text-shadow: 0 0 0 var(--bs-body-color)
  2067. }
  2068. .form-select-sm {
  2069. padding-top: .25rem;
  2070. padding-bottom: .25rem;
  2071. padding-left: .5rem;
  2072. font-size: .875rem;
  2073. border-radius: var(--bs-border-radius-sm)
  2074. }
  2075. .form-select-lg {
  2076. padding-top: .5rem;
  2077. padding-bottom: .5rem;
  2078. padding-left: 1rem;
  2079. font-size: 1.25rem;
  2080. border-radius: var(--bs-border-radius-lg)
  2081. }
  2082. [data-bs-theme=dark] .form-select {
  2083. --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='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")
  2084. }
  2085. .form-check {
  2086. display: block;
  2087. min-height: 1.5rem;
  2088. padding-left: 1.5em;
  2089. margin-bottom: .125rem
  2090. }
  2091. .form-check .form-check-input {
  2092. float: left;
  2093. margin-left: -1.5em
  2094. }
  2095. .form-check-reverse {
  2096. padding-right: 1.5em;
  2097. padding-left: 0;
  2098. text-align: right
  2099. }
  2100. .form-check-reverse .form-check-input {
  2101. float: right;
  2102. margin-right: -1.5em;
  2103. margin-left: 0
  2104. }
  2105. .form-check-input {
  2106. --bs-form-check-bg: var(--bs-body-bg);
  2107. flex-shrink: 0;
  2108. width: 1em;
  2109. height: 1em;
  2110. margin-top: .25em;
  2111. vertical-align: top;
  2112. -webkit-appearance: none;
  2113. -moz-appearance: none;
  2114. appearance: none;
  2115. background-color: var(--bs-form-check-bg);
  2116. background-image: var(--bs-form-check-bg-image);
  2117. background-repeat: no-repeat;
  2118. background-position: center;
  2119. background-size: contain;
  2120. border: var(--bs-border-width) solid var(--bs-border-color);
  2121. -webkit-print-color-adjust: exact;
  2122. color-adjust: exact;
  2123. print-color-adjust: exact
  2124. }
  2125. .form-check-input[type=checkbox] {
  2126. border-radius: .25em
  2127. }
  2128. .form-check-input[type=radio] {
  2129. border-radius: 50%
  2130. }
  2131. .form-check-input:active {
  2132. filter: brightness(90%)
  2133. }
  2134. .form-check-input:focus {
  2135. border-color: #86b7fe;
  2136. outline: 0;
  2137. box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
  2138. }
  2139. .form-check-input:checked {
  2140. background-color: #0d6efd;
  2141. border-color: #0d6efd
  2142. }
  2143. .form-check-input:checked[type=checkbox] {
  2144. --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")
  2145. }
  2146. .form-check-input:checked[type=radio] {
  2147. --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")
  2148. }
  2149. .form-check-input[type=checkbox]:indeterminate {
  2150. background-color: #0d6efd;
  2151. border-color: #0d6efd;
  2152. --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")
  2153. }
  2154. .form-check-input:disabled {
  2155. pointer-events: none;
  2156. filter: none;
  2157. opacity: .5
  2158. }
  2159. .form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {
  2160. cursor: default;
  2161. opacity: .5
  2162. }
  2163. .form-switch {
  2164. padding-left: 2.5em
  2165. }
  2166. .form-switch .form-check-input {
  2167. --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");
  2168. width: 2em;
  2169. margin-left: -2.5em;
  2170. background-image: var(--bs-form-switch-bg);
  2171. background-position: left center;
  2172. border-radius: 2em;
  2173. transition: background-position .15s ease-in-out
  2174. }
  2175. @media (prefers-reduced-motion: reduce) {
  2176. .form-switch .form-check-input {
  2177. transition: none
  2178. }
  2179. }
  2180. .form-switch .form-check-input:focus {
  2181. --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")
  2182. }
  2183. .form-switch .form-check-input:checked {
  2184. background-position: right center;
  2185. --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")
  2186. }
  2187. .form-switch.form-check-reverse {
  2188. padding-right: 2.5em;
  2189. padding-left: 0
  2190. }
  2191. .form-switch.form-check-reverse .form-check-input {
  2192. margin-right: -2.5em;
  2193. margin-left: 0
  2194. }
  2195. .form-check-inline {
  2196. display: inline-block;
  2197. margin-right: 1rem
  2198. }
  2199. .btn-check {
  2200. position: absolute;
  2201. clip: rect(0, 0, 0, 0);
  2202. pointer-events: none
  2203. }
  2204. .btn-check:disabled + .btn, .btn-check[disabled] + .btn {
  2205. pointer-events: none;
  2206. filter: none;
  2207. opacity: .65
  2208. }
  2209. [data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  2210. --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")
  2211. }
  2212. .form-range {
  2213. width: 100%;
  2214. height: 1.5rem;
  2215. padding: 0;
  2216. -webkit-appearance: none;
  2217. -moz-appearance: none;
  2218. appearance: none;
  2219. background-color: transparent
  2220. }
  2221. .form-range:focus {
  2222. outline: 0
  2223. }
  2224. .form-range:focus::-webkit-slider-thumb {
  2225. box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(13, 110, 253, .25)
  2226. }
  2227. .form-range:focus::-moz-range-thumb {
  2228. box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(13, 110, 253, .25)
  2229. }
  2230. .form-range::-moz-focus-outer {
  2231. border: 0
  2232. }
  2233. .form-range::-webkit-slider-thumb {
  2234. width: 1rem;
  2235. height: 1rem;
  2236. margin-top: -.25rem;
  2237. -webkit-appearance: none;
  2238. appearance: none;
  2239. background-color: #0d6efd;
  2240. border: 0;
  2241. border-radius: 1rem;
  2242. -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  2243. transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
  2244. }
  2245. @media (prefers-reduced-motion: reduce) {
  2246. .form-range::-webkit-slider-thumb {
  2247. -webkit-transition: none;
  2248. transition: none
  2249. }
  2250. }
  2251. .form-range::-webkit-slider-thumb:active {
  2252. background-color: #b6d4fe
  2253. }
  2254. .form-range::-webkit-slider-runnable-track {
  2255. width: 100%;
  2256. height: .5rem;
  2257. color: transparent;
  2258. cursor: pointer;
  2259. background-color: var(--bs-secondary-bg);
  2260. border-color: transparent;
  2261. border-radius: 1rem
  2262. }
  2263. .form-range::-moz-range-thumb {
  2264. width: 1rem;
  2265. height: 1rem;
  2266. -moz-appearance: none;
  2267. appearance: none;
  2268. background-color: #0d6efd;
  2269. border: 0;
  2270. border-radius: 1rem;
  2271. -moz-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  2272. transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
  2273. }
  2274. @media (prefers-reduced-motion: reduce) {
  2275. .form-range::-moz-range-thumb {
  2276. -moz-transition: none;
  2277. transition: none
  2278. }
  2279. }
  2280. .form-range::-moz-range-thumb:active {
  2281. background-color: #b6d4fe
  2282. }
  2283. .form-range::-moz-range-track {
  2284. width: 100%;
  2285. height: .5rem;
  2286. color: transparent;
  2287. cursor: pointer;
  2288. background-color: var(--bs-secondary-bg);
  2289. border-color: transparent;
  2290. border-radius: 1rem
  2291. }
  2292. .form-range:disabled {
  2293. pointer-events: none
  2294. }
  2295. .form-range:disabled::-webkit-slider-thumb {
  2296. background-color: var(--bs-secondary-color)
  2297. }
  2298. .form-range:disabled::-moz-range-thumb {
  2299. background-color: var(--bs-secondary-color)
  2300. }
  2301. .form-floating {
  2302. position: relative
  2303. }
  2304. .form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
  2305. height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  2306. min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  2307. line-height: 1.25
  2308. }
  2309. .form-floating > label {
  2310. position: absolute;
  2311. top: 0;
  2312. left: 0;
  2313. z-index: 2;
  2314. height: 100%;
  2315. padding: 1rem .75rem;
  2316. overflow: hidden;
  2317. text-align: start;
  2318. text-overflow: ellipsis;
  2319. white-space: nowrap;
  2320. pointer-events: none;
  2321. border: var(--bs-border-width) solid transparent;
  2322. transform-origin: 0 0;
  2323. transition: opacity .1s ease-in-out, transform .1s ease-in-out
  2324. }
  2325. @media (prefers-reduced-motion: reduce) {
  2326. .form-floating > label {
  2327. transition: none
  2328. }
  2329. }
  2330. .form-floating > .form-control, .form-floating > .form-control-plaintext {
  2331. padding: 1rem .75rem
  2332. }
  2333. .form-floating > .form-control-plaintext::-moz-placeholder, .form-floating > .form-control::-moz-placeholder {
  2334. color: transparent
  2335. }
  2336. .form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  2337. color: transparent
  2338. }
  2339. .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown), .form-floating > .form-control:not(:-moz-placeholder-shown) {
  2340. padding-top: 1.625rem;
  2341. padding-bottom: .625rem
  2342. }
  2343. .form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown), .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  2344. padding-top: 1.625rem;
  2345. padding-bottom: .625rem
  2346. }
  2347. .form-floating > .form-control-plaintext:-webkit-autofill, .form-floating > .form-control:-webkit-autofill {
  2348. padding-top: 1.625rem;
  2349. padding-bottom: .625rem
  2350. }
  2351. .form-floating > .form-select {
  2352. padding-top: 1.625rem;
  2353. padding-bottom: .625rem
  2354. }
  2355. .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  2356. color: rgba(var(--bs-body-color-rgb), .65);
  2357. transform: scale(.85) translateY(-.5rem) translateX(.15rem)
  2358. }
  2359. .form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
  2360. color: rgba(var(--bs-body-color-rgb), .65);
  2361. transform: scale(.85) translateY(-.5rem) translateX(.15rem)
  2362. }
  2363. .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
  2364. position: absolute;
  2365. inset: 1rem 0.375rem;
  2366. z-index: -1;
  2367. height: 1.5em;
  2368. content: "";
  2369. background-color: var(--bs-body-bg);
  2370. border-radius: var(--bs-border-radius)
  2371. }
  2372. .form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
  2373. position: absolute;
  2374. inset: 1rem 0.375rem;
  2375. z-index: -1;
  2376. height: 1.5em;
  2377. content: "";
  2378. background-color: var(--bs-body-bg);
  2379. border-radius: var(--bs-border-radius)
  2380. }
  2381. .form-floating > .form-control:-webkit-autofill ~ label {
  2382. color: rgba(var(--bs-body-color-rgb), .65);
  2383. transform: scale(.85) translateY(-.5rem) translateX(.15rem)
  2384. }
  2385. .form-floating > .form-control-plaintext ~ label {
  2386. border-width: var(--bs-border-width) 0
  2387. }
  2388. .form-floating > .form-control:disabled ~ label, .form-floating > :disabled ~ label {
  2389. color: #6c757d
  2390. }
  2391. .form-floating > .form-control:disabled ~ label::after, .form-floating > :disabled ~ label::after {
  2392. background-color: var(--bs-secondary-bg)
  2393. }
  2394. .input-group {
  2395. position: relative;
  2396. display: flex;
  2397. flex-wrap: wrap;
  2398. align-items: stretch;
  2399. width: 100%
  2400. }
  2401. .input-group > .form-control, .input-group > .form-floating, .input-group > .form-select {
  2402. position: relative;
  2403. flex: 1 1 auto;
  2404. width: 1%;
  2405. min-width: 0
  2406. }
  2407. .input-group > .form-control:focus, .input-group > .form-floating:focus-within, .input-group > .form-select:focus {
  2408. z-index: 5
  2409. }
  2410. .input-group .btn {
  2411. position: relative;
  2412. z-index: 2
  2413. }
  2414. .input-group .btn:focus {
  2415. z-index: 5
  2416. }
  2417. .input-group-text {
  2418. display: flex;
  2419. align-items: center;
  2420. padding: .375rem .75rem;
  2421. font-size: 1rem;
  2422. font-weight: 400;
  2423. line-height: 1.5;
  2424. color: var(--bs-body-color);
  2425. text-align: center;
  2426. white-space: nowrap;
  2427. background-color: var(--bs-tertiary-bg);
  2428. border: var(--bs-border-width) solid var(--bs-border-color);
  2429. border-radius: var(--bs-border-radius)
  2430. }
  2431. .input-group-lg > .btn, .input-group-lg > .form-control, .input-group-lg > .form-select, .input-group-lg > .input-group-text {
  2432. padding: .5rem 1rem;
  2433. font-size: 1.25rem;
  2434. border-radius: var(--bs-border-radius-lg)
  2435. }
  2436. .input-group-sm > .btn, .input-group-sm > .form-control, .input-group-sm > .form-select, .input-group-sm > .input-group-text {
  2437. padding: .25rem .5rem;
  2438. font-size: .875rem;
  2439. border-radius: var(--bs-border-radius-sm)
  2440. }
  2441. .input-group-lg > .form-select, .input-group-sm > .form-select {
  2442. padding-right: 3rem
  2443. }
  2444. .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control, .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select, .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  2445. border-top-right-radius: 0;
  2446. border-bottom-right-radius: 0
  2447. }
  2448. .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4), .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control, .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select, .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  2449. border-top-right-radius: 0;
  2450. border-bottom-right-radius: 0
  2451. }
  2452. .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  2453. margin-left: calc(var(--bs-border-width) * -1);
  2454. border-top-left-radius: 0;
  2455. border-bottom-left-radius: 0
  2456. }
  2457. .input-group > .form-floating:not(:first-child) > .form-control, .input-group > .form-floating:not(:first-child) > .form-select {
  2458. border-top-left-radius: 0;
  2459. border-bottom-left-radius: 0
  2460. }
  2461. .valid-feedback {
  2462. display: none;
  2463. width: 100%;
  2464. margin-top: .25rem;
  2465. font-size: .875em;
  2466. color: var(--bs-form-valid-color)
  2467. }
  2468. .valid-tooltip {
  2469. position: absolute;
  2470. top: 100%;
  2471. z-index: 5;
  2472. display: none;
  2473. max-width: 100%;
  2474. padding: .25rem .5rem;
  2475. margin-top: .1rem;
  2476. font-size: .875rem;
  2477. color: #fff;
  2478. background-color: var(--bs-success);
  2479. border-radius: var(--bs-border-radius)
  2480. }
  2481. .is-valid ~ .valid-feedback, .is-valid ~ .valid-tooltip, .was-validated :valid ~ .valid-feedback, .was-validated :valid ~ .valid-tooltip {
  2482. display: block
  2483. }
  2484. .form-control.is-valid, .was-validated .form-control:valid {
  2485. border-color: var(--bs-form-valid-border-color);
  2486. padding-right: calc(1.5em + .75rem);
  2487. 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");
  2488. background-repeat: no-repeat;
  2489. background-position: right calc(.375em + .1875rem) center;
  2490. background-size: calc(.75em + .375rem) calc(.75em + .375rem)
  2491. }
  2492. .form-control.is-valid:focus, .was-validated .form-control:valid:focus {
  2493. border-color: var(--bs-form-valid-border-color);
  2494. box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), .25)
  2495. }
  2496. .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  2497. padding-right: calc(1.5em + .75rem);
  2498. background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
  2499. }
  2500. .form-select.is-valid, .was-validated .form-select:valid {
  2501. border-color: var(--bs-form-valid-border-color)
  2502. }
  2503. .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"], .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"] {
  2504. --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");
  2505. padding-right: 4.125rem;
  2506. background-position: right .75rem center, center right 2.25rem;
  2507. background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem)
  2508. }
  2509. .form-select.is-valid:focus, .was-validated .form-select:valid:focus {
  2510. border-color: var(--bs-form-valid-border-color);
  2511. box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), .25)
  2512. }
  2513. .form-control-color.is-valid, .was-validated .form-control-color:valid {
  2514. width: calc(3rem + calc(1.5em + .75rem))
  2515. }
  2516. .form-check-input.is-valid, .was-validated .form-check-input:valid {
  2517. border-color: var(--bs-form-valid-border-color)
  2518. }
  2519. .form-check-input.is-valid:checked, .was-validated .form-check-input:valid:checked {
  2520. background-color: var(--bs-form-valid-color)
  2521. }
  2522. .form-check-input.is-valid:focus, .was-validated .form-check-input:valid:focus {
  2523. box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), .25)
  2524. }
  2525. .form-check-input.is-valid ~ .form-check-label, .was-validated .form-check-input:valid ~ .form-check-label {
  2526. color: var(--bs-form-valid-color)
  2527. }
  2528. .form-check-inline .form-check-input ~ .valid-feedback {
  2529. margin-left: .5em
  2530. }
  2531. .input-group > .form-control:not(:focus).is-valid, .input-group > .form-floating:not(:focus-within).is-valid, .input-group > .form-select:not(:focus).is-valid, .was-validated .input-group > .form-control:not(:focus):valid, .was-validated .input-group > .form-floating:not(:focus-within):valid, .was-validated .input-group > .form-select:not(:focus):valid {
  2532. z-index: 3
  2533. }
  2534. .invalid-feedback {
  2535. display: none;
  2536. width: 100%;
  2537. margin-top: .25rem;
  2538. font-size: .875em;
  2539. color: var(--bs-form-invalid-color)
  2540. }
  2541. .invalid-tooltip {
  2542. position: absolute;
  2543. top: 100%;
  2544. z-index: 5;
  2545. display: none;
  2546. max-width: 100%;
  2547. padding: .25rem .5rem;
  2548. margin-top: .1rem;
  2549. font-size: .875rem;
  2550. color: #fff;
  2551. background-color: var(--bs-danger);
  2552. border-radius: var(--bs-border-radius)
  2553. }
  2554. .is-invalid ~ .invalid-feedback, .is-invalid ~ .invalid-tooltip, .was-validated :invalid ~ .invalid-feedback, .was-validated :invalid ~ .invalid-tooltip {
  2555. display: block
  2556. }
  2557. .form-control.is-invalid, .was-validated .form-control:invalid {
  2558. border-color: var(--bs-form-invalid-border-color);
  2559. padding-right: calc(1.5em + .75rem);
  2560. 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");
  2561. background-repeat: no-repeat;
  2562. background-position: right calc(.375em + .1875rem) center;
  2563. background-size: calc(.75em + .375rem) calc(.75em + .375rem)
  2564. }
  2565. .form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
  2566. border-color: var(--bs-form-invalid-border-color);
  2567. box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25)
  2568. }
  2569. .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  2570. padding-right: calc(1.5em + .75rem);
  2571. background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem)
  2572. }
  2573. .form-select.is-invalid, .was-validated .form-select:invalid {
  2574. border-color: var(--bs-form-invalid-border-color)
  2575. }
  2576. .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"], .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"] {
  2577. --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");
  2578. padding-right: 4.125rem;
  2579. background-position: right .75rem center, center right 2.25rem;
  2580. background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem)
  2581. }
  2582. .form-select.is-invalid:focus, .was-validated .form-select:invalid:focus {
  2583. border-color: var(--bs-form-invalid-border-color);
  2584. box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25)
  2585. }
  2586. .form-control-color.is-invalid, .was-validated .form-control-color:invalid {
  2587. width: calc(3rem + calc(1.5em + .75rem))
  2588. }
  2589. .form-check-input.is-invalid, .was-validated .form-check-input:invalid {
  2590. border-color: var(--bs-form-invalid-border-color)
  2591. }
  2592. .form-check-input.is-invalid:checked, .was-validated .form-check-input:invalid:checked {
  2593. background-color: var(--bs-form-invalid-color)
  2594. }
  2595. .form-check-input.is-invalid:focus, .was-validated .form-check-input:invalid:focus {
  2596. box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25)
  2597. }
  2598. .form-check-input.is-invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .form-check-label {
  2599. color: var(--bs-form-invalid-color)
  2600. }
  2601. .form-check-inline .form-check-input ~ .invalid-feedback {
  2602. margin-left: .5em
  2603. }
  2604. .input-group > .form-control:not(:focus).is-invalid, .input-group > .form-floating:not(:focus-within).is-invalid, .input-group > .form-select:not(:focus).is-invalid, .was-validated .input-group > .form-control:not(:focus):invalid, .was-validated .input-group > .form-floating:not(:focus-within):invalid, .was-validated .input-group > .form-select:not(:focus):invalid {
  2605. z-index: 4
  2606. }
  2607. .btn {
  2608. --bs-btn-padding-x: 0.75rem;
  2609. --bs-btn-padding-y: 0.375rem;
  2610. --bs-btn-font-family: ;
  2611. --bs-btn-font-size: 1rem;
  2612. --bs-btn-font-weight: 400;
  2613. --bs-btn-line-height: 1.5;
  2614. --bs-btn-color: var(--bs-body-color);
  2615. --bs-btn-bg: transparent;
  2616. --bs-btn-border-width: var(--bs-border-width);
  2617. --bs-btn-border-color: transparent;
  2618. --bs-btn-border-radius: var(--bs-border-radius);
  2619. --bs-btn-hover-border-color: transparent;
  2620. --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  2621. --bs-btn-disabled-opacity: 0.65;
  2622. --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  2623. display: inline-block;
  2624. padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  2625. font-family: var(--bs-btn-font-family);
  2626. font-size: var(--bs-btn-font-size);
  2627. font-weight: var(--bs-btn-font-weight);
  2628. line-height: var(--bs-btn-line-height);
  2629. color: var(--bs-btn-color);
  2630. text-align: center;
  2631. text-decoration: none;
  2632. vertical-align: middle;
  2633. cursor: pointer;
  2634. -webkit-user-select: none;
  2635. -moz-user-select: none;
  2636. user-select: none;
  2637. border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  2638. border-radius: var(--bs-btn-border-radius);
  2639. background-color: var(--bs-btn-bg);
  2640. transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
  2641. }
  2642. @media (prefers-reduced-motion: reduce) {
  2643. .btn {
  2644. transition: none
  2645. }
  2646. }
  2647. .btn:hover {
  2648. color: var(--bs-btn-hover-color);
  2649. background-color: var(--bs-btn-hover-bg);
  2650. border-color: var(--bs-btn-hover-border-color)
  2651. }
  2652. .btn-check + .btn:hover {
  2653. color: var(--bs-btn-color);
  2654. background-color: var(--bs-btn-bg);
  2655. border-color: var(--bs-btn-border-color)
  2656. }
  2657. .btn:focus-visible {
  2658. color: var(--bs-btn-hover-color);
  2659. background-color: var(--bs-btn-hover-bg);
  2660. border-color: var(--bs-btn-hover-border-color);
  2661. outline: 0;
  2662. box-shadow: var(--bs-btn-focus-box-shadow)
  2663. }
  2664. .btn-check:focus-visible + .btn {
  2665. border-color: var(--bs-btn-hover-border-color);
  2666. outline: 0;
  2667. box-shadow: var(--bs-btn-focus-box-shadow)
  2668. }
  2669. .btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  2670. color: var(--bs-btn-active-color);
  2671. background-color: var(--bs-btn-active-bg);
  2672. border-color: var(--bs-btn-active-border-color)
  2673. }
  2674. .btn-check:checked + .btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check) + .btn:active:focus-visible {
  2675. box-shadow: var(--bs-btn-focus-box-shadow)
  2676. }
  2677. .btn-check:checked:focus-visible + .btn {
  2678. box-shadow: var(--bs-btn-focus-box-shadow)
  2679. }
  2680. .btn.disabled, .btn:disabled, fieldset:disabled .btn {
  2681. color: var(--bs-btn-disabled-color);
  2682. pointer-events: none;
  2683. background-color: var(--bs-btn-disabled-bg);
  2684. border-color: var(--bs-btn-disabled-border-color);
  2685. opacity: var(--bs-btn-disabled-opacity)
  2686. }
  2687. .btn-primary {
  2688. --bs-btn-color: #fff;
  2689. --bs-btn-bg: #0d6efd;
  2690. --bs-btn-border-color: #0d6efd;
  2691. --bs-btn-hover-color: #fff;
  2692. --bs-btn-hover-bg: #0b5ed7;
  2693. --bs-btn-hover-border-color: #0a58ca;
  2694. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  2695. --bs-btn-active-color: #fff;
  2696. --bs-btn-active-bg: #0a58ca;
  2697. --bs-btn-active-border-color: #0a53be;
  2698. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2699. --bs-btn-disabled-color: #fff;
  2700. --bs-btn-disabled-bg: #0d6efd;
  2701. --bs-btn-disabled-border-color: #0d6efd
  2702. }
  2703. .btn-secondary {
  2704. --bs-btn-color: #fff;
  2705. --bs-btn-bg: #6c757d;
  2706. --bs-btn-border-color: #6c757d;
  2707. --bs-btn-hover-color: #fff;
  2708. --bs-btn-hover-bg: #5c636a;
  2709. --bs-btn-hover-border-color: #565e64;
  2710. --bs-btn-focus-shadow-rgb: 130, 138, 145;
  2711. --bs-btn-active-color: #fff;
  2712. --bs-btn-active-bg: #565e64;
  2713. --bs-btn-active-border-color: #51585e;
  2714. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2715. --bs-btn-disabled-color: #fff;
  2716. --bs-btn-disabled-bg: #6c757d;
  2717. --bs-btn-disabled-border-color: #6c757d
  2718. }
  2719. .btn-success {
  2720. --bs-btn-color: #fff;
  2721. --bs-btn-bg: #198754;
  2722. --bs-btn-border-color: #198754;
  2723. --bs-btn-hover-color: #fff;
  2724. --bs-btn-hover-bg: #157347;
  2725. --bs-btn-hover-border-color: #146c43;
  2726. --bs-btn-focus-shadow-rgb: 60, 153, 110;
  2727. --bs-btn-active-color: #fff;
  2728. --bs-btn-active-bg: #146c43;
  2729. --bs-btn-active-border-color: #13653f;
  2730. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2731. --bs-btn-disabled-color: #fff;
  2732. --bs-btn-disabled-bg: #198754;
  2733. --bs-btn-disabled-border-color: #198754
  2734. }
  2735. .btn-info {
  2736. --bs-btn-color: #000;
  2737. --bs-btn-bg: #0dcaf0;
  2738. --bs-btn-border-color: #0dcaf0;
  2739. --bs-btn-hover-color: #000;
  2740. --bs-btn-hover-bg: #31d2f2;
  2741. --bs-btn-hover-border-color: #25cff2;
  2742. --bs-btn-focus-shadow-rgb: 11, 172, 204;
  2743. --bs-btn-active-color: #000;
  2744. --bs-btn-active-bg: #3dd5f3;
  2745. --bs-btn-active-border-color: #25cff2;
  2746. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2747. --bs-btn-disabled-color: #000;
  2748. --bs-btn-disabled-bg: #0dcaf0;
  2749. --bs-btn-disabled-border-color: #0dcaf0
  2750. }
  2751. .btn-warning {
  2752. --bs-btn-color: #000;
  2753. --bs-btn-bg: #ffc107;
  2754. --bs-btn-border-color: #ffc107;
  2755. --bs-btn-hover-color: #000;
  2756. --bs-btn-hover-bg: #ffca2c;
  2757. --bs-btn-hover-border-color: #ffc720;
  2758. --bs-btn-focus-shadow-rgb: 217, 164, 6;
  2759. --bs-btn-active-color: #000;
  2760. --bs-btn-active-bg: #ffcd39;
  2761. --bs-btn-active-border-color: #ffc720;
  2762. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2763. --bs-btn-disabled-color: #000;
  2764. --bs-btn-disabled-bg: #ffc107;
  2765. --bs-btn-disabled-border-color: #ffc107
  2766. }
  2767. .btn-danger {
  2768. --bs-btn-color: #fff;
  2769. --bs-btn-bg: #dc3545;
  2770. --bs-btn-border-color: #dc3545;
  2771. --bs-btn-hover-color: #fff;
  2772. --bs-btn-hover-bg: #bb2d3b;
  2773. --bs-btn-hover-border-color: #b02a37;
  2774. --bs-btn-focus-shadow-rgb: 225, 83, 97;
  2775. --bs-btn-active-color: #fff;
  2776. --bs-btn-active-bg: #b02a37;
  2777. --bs-btn-active-border-color: #a52834;
  2778. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2779. --bs-btn-disabled-color: #fff;
  2780. --bs-btn-disabled-bg: #dc3545;
  2781. --bs-btn-disabled-border-color: #dc3545
  2782. }
  2783. .btn-light {
  2784. --bs-btn-color: #000;
  2785. --bs-btn-bg: #f8f9fa;
  2786. --bs-btn-border-color: #f8f9fa;
  2787. --bs-btn-hover-color: #000;
  2788. --bs-btn-hover-bg: #d3d4d5;
  2789. --bs-btn-hover-border-color: #c6c7c8;
  2790. --bs-btn-focus-shadow-rgb: 211, 212, 213;
  2791. --bs-btn-active-color: #000;
  2792. --bs-btn-active-bg: #c6c7c8;
  2793. --bs-btn-active-border-color: #babbbc;
  2794. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2795. --bs-btn-disabled-color: #000;
  2796. --bs-btn-disabled-bg: #f8f9fa;
  2797. --bs-btn-disabled-border-color: #f8f9fa
  2798. }
  2799. .btn-dark {
  2800. --bs-btn-color: #fff;
  2801. --bs-btn-bg: #212529;
  2802. --bs-btn-border-color: #212529;
  2803. --bs-btn-hover-color: #fff;
  2804. --bs-btn-hover-bg: #424649;
  2805. --bs-btn-hover-border-color: #373b3e;
  2806. --bs-btn-focus-shadow-rgb: 66, 70, 73;
  2807. --bs-btn-active-color: #fff;
  2808. --bs-btn-active-bg: #4d5154;
  2809. --bs-btn-active-border-color: #373b3e;
  2810. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2811. --bs-btn-disabled-color: #fff;
  2812. --bs-btn-disabled-bg: #212529;
  2813. --bs-btn-disabled-border-color: #212529
  2814. }
  2815. .btn-outline-primary {
  2816. --bs-btn-color: #0d6efd;
  2817. --bs-btn-border-color: #0d6efd;
  2818. --bs-btn-hover-color: #fff;
  2819. --bs-btn-hover-bg: #0d6efd;
  2820. --bs-btn-hover-border-color: #0d6efd;
  2821. --bs-btn-focus-shadow-rgb: 13, 110, 253;
  2822. --bs-btn-active-color: #fff;
  2823. --bs-btn-active-bg: #0d6efd;
  2824. --bs-btn-active-border-color: #0d6efd;
  2825. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2826. --bs-btn-disabled-color: #0d6efd;
  2827. --bs-btn-disabled-bg: transparent;
  2828. --bs-btn-disabled-border-color: #0d6efd;
  2829. --bs-gradient: none
  2830. }
  2831. .btn-outline-secondary {
  2832. --bs-btn-color: #6c757d;
  2833. --bs-btn-border-color: #6c757d;
  2834. --bs-btn-hover-color: #fff;
  2835. --bs-btn-hover-bg: #6c757d;
  2836. --bs-btn-hover-border-color: #6c757d;
  2837. --bs-btn-focus-shadow-rgb: 108, 117, 125;
  2838. --bs-btn-active-color: #fff;
  2839. --bs-btn-active-bg: #6c757d;
  2840. --bs-btn-active-border-color: #6c757d;
  2841. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2842. --bs-btn-disabled-color: #6c757d;
  2843. --bs-btn-disabled-bg: transparent;
  2844. --bs-btn-disabled-border-color: #6c757d;
  2845. --bs-gradient: none
  2846. }
  2847. .btn-outline-success {
  2848. --bs-btn-color: #198754;
  2849. --bs-btn-border-color: #198754;
  2850. --bs-btn-hover-color: #fff;
  2851. --bs-btn-hover-bg: #198754;
  2852. --bs-btn-hover-border-color: #198754;
  2853. --bs-btn-focus-shadow-rgb: 25, 135, 84;
  2854. --bs-btn-active-color: #fff;
  2855. --bs-btn-active-bg: #198754;
  2856. --bs-btn-active-border-color: #198754;
  2857. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2858. --bs-btn-disabled-color: #198754;
  2859. --bs-btn-disabled-bg: transparent;
  2860. --bs-btn-disabled-border-color: #198754;
  2861. --bs-gradient: none
  2862. }
  2863. .btn-outline-info {
  2864. --bs-btn-color: #0dcaf0;
  2865. --bs-btn-border-color: #0dcaf0;
  2866. --bs-btn-hover-color: #000;
  2867. --bs-btn-hover-bg: #0dcaf0;
  2868. --bs-btn-hover-border-color: #0dcaf0;
  2869. --bs-btn-focus-shadow-rgb: 13, 202, 240;
  2870. --bs-btn-active-color: #000;
  2871. --bs-btn-active-bg: #0dcaf0;
  2872. --bs-btn-active-border-color: #0dcaf0;
  2873. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2874. --bs-btn-disabled-color: #0dcaf0;
  2875. --bs-btn-disabled-bg: transparent;
  2876. --bs-btn-disabled-border-color: #0dcaf0;
  2877. --bs-gradient: none
  2878. }
  2879. .btn-outline-warning {
  2880. --bs-btn-color: #ffc107;
  2881. --bs-btn-border-color: #ffc107;
  2882. --bs-btn-hover-color: #000;
  2883. --bs-btn-hover-bg: #ffc107;
  2884. --bs-btn-hover-border-color: #ffc107;
  2885. --bs-btn-focus-shadow-rgb: 255, 193, 7;
  2886. --bs-btn-active-color: #000;
  2887. --bs-btn-active-bg: #ffc107;
  2888. --bs-btn-active-border-color: #ffc107;
  2889. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2890. --bs-btn-disabled-color: #ffc107;
  2891. --bs-btn-disabled-bg: transparent;
  2892. --bs-btn-disabled-border-color: #ffc107;
  2893. --bs-gradient: none
  2894. }
  2895. .btn-outline-danger {
  2896. --bs-btn-color: #dc3545;
  2897. --bs-btn-border-color: #dc3545;
  2898. --bs-btn-hover-color: #fff;
  2899. --bs-btn-hover-bg: #dc3545;
  2900. --bs-btn-hover-border-color: #dc3545;
  2901. --bs-btn-focus-shadow-rgb: 220, 53, 69;
  2902. --bs-btn-active-color: #fff;
  2903. --bs-btn-active-bg: #dc3545;
  2904. --bs-btn-active-border-color: #dc3545;
  2905. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2906. --bs-btn-disabled-color: #dc3545;
  2907. --bs-btn-disabled-bg: transparent;
  2908. --bs-btn-disabled-border-color: #dc3545;
  2909. --bs-gradient: none
  2910. }
  2911. .btn-outline-light {
  2912. --bs-btn-color: #f8f9fa;
  2913. --bs-btn-border-color: #f8f9fa;
  2914. --bs-btn-hover-color: #000;
  2915. --bs-btn-hover-bg: #f8f9fa;
  2916. --bs-btn-hover-border-color: #f8f9fa;
  2917. --bs-btn-focus-shadow-rgb: 248, 249, 250;
  2918. --bs-btn-active-color: #000;
  2919. --bs-btn-active-bg: #f8f9fa;
  2920. --bs-btn-active-border-color: #f8f9fa;
  2921. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2922. --bs-btn-disabled-color: #f8f9fa;
  2923. --bs-btn-disabled-bg: transparent;
  2924. --bs-btn-disabled-border-color: #f8f9fa;
  2925. --bs-gradient: none
  2926. }
  2927. .btn-outline-dark {
  2928. --bs-btn-color: #212529;
  2929. --bs-btn-border-color: #212529;
  2930. --bs-btn-hover-color: #fff;
  2931. --bs-btn-hover-bg: #212529;
  2932. --bs-btn-hover-border-color: #212529;
  2933. --bs-btn-focus-shadow-rgb: 33, 37, 41;
  2934. --bs-btn-active-color: #fff;
  2935. --bs-btn-active-bg: #212529;
  2936. --bs-btn-active-border-color: #212529;
  2937. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2938. --bs-btn-disabled-color: #212529;
  2939. --bs-btn-disabled-bg: transparent;
  2940. --bs-btn-disabled-border-color: #212529;
  2941. --bs-gradient: none
  2942. }
  2943. .btn-link {
  2944. --bs-btn-font-weight: 400;
  2945. --bs-btn-color: var(--bs-link-color);
  2946. --bs-btn-bg: transparent;
  2947. --bs-btn-border-color: transparent;
  2948. --bs-btn-hover-color: var(--bs-link-hover-color);
  2949. --bs-btn-hover-border-color: transparent;
  2950. --bs-btn-active-color: var(--bs-link-hover-color);
  2951. --bs-btn-active-border-color: transparent;
  2952. --bs-btn-disabled-color: #6c757d;
  2953. --bs-btn-disabled-border-color: transparent;
  2954. --bs-btn-box-shadow: 0 0 0 #000;
  2955. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  2956. text-decoration: underline
  2957. }
  2958. .btn-link:focus-visible {
  2959. color: var(--bs-btn-color)
  2960. }
  2961. .btn-link:hover {
  2962. color: var(--bs-btn-hover-color)
  2963. }
  2964. .btn-group-lg > .btn, .btn-lg {
  2965. --bs-btn-padding-y: 0.5rem;
  2966. --bs-btn-padding-x: 1rem;
  2967. --bs-btn-font-size: 1.25rem;
  2968. --bs-btn-border-radius: var(--bs-border-radius-lg)
  2969. }
  2970. .btn-group-sm > .btn, .btn-sm {
  2971. --bs-btn-padding-y: 0.25rem;
  2972. --bs-btn-padding-x: 0.5rem;
  2973. --bs-btn-font-size: 0.875rem;
  2974. --bs-btn-border-radius: var(--bs-border-radius-sm)
  2975. }
  2976. .fade {
  2977. transition: opacity .15s linear
  2978. }
  2979. @media (prefers-reduced-motion: reduce) {
  2980. .fade {
  2981. transition: none
  2982. }
  2983. }
  2984. .fade:not(.show) {
  2985. opacity: 0
  2986. }
  2987. .collapse:not(.show) {
  2988. display: none
  2989. }
  2990. .collapsing {
  2991. height: 0;
  2992. overflow: hidden;
  2993. transition: height .35s ease
  2994. }
  2995. @media (prefers-reduced-motion: reduce) {
  2996. .collapsing {
  2997. transition: none
  2998. }
  2999. }
  3000. .collapsing.collapse-horizontal {
  3001. width: 0;
  3002. height: auto;
  3003. transition: width .35s ease
  3004. }
  3005. @media (prefers-reduced-motion: reduce) {
  3006. .collapsing.collapse-horizontal {
  3007. transition: none
  3008. }
  3009. }
  3010. .dropdown, .dropdown-center, .dropend, .dropstart, .dropup, .dropup-center {
  3011. position: relative
  3012. }
  3013. .dropdown-toggle {
  3014. white-space: nowrap
  3015. }
  3016. .dropdown-toggle::after {
  3017. display: inline-block;
  3018. margin-left: .255em;
  3019. vertical-align: .255em;
  3020. content: "";
  3021. border-top: .3em solid;
  3022. border-right: .3em solid transparent;
  3023. border-bottom: 0;
  3024. border-left: .3em solid transparent
  3025. }
  3026. .dropdown-toggle:empty::after {
  3027. margin-left: 0
  3028. }
  3029. .dropdown-menu {
  3030. --bs-dropdown-zindex: 1000;
  3031. --bs-dropdown-min-width: 10rem;
  3032. --bs-dropdown-padding-x: 0;
  3033. --bs-dropdown-padding-y: 0.5rem;
  3034. --bs-dropdown-spacer: 0.125rem;
  3035. --bs-dropdown-font-size: 1rem;
  3036. --bs-dropdown-color: var(--bs-body-color);
  3037. --bs-dropdown-bg: var(--bs-body-bg);
  3038. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3039. --bs-dropdown-border-radius: var(--bs-border-radius);
  3040. --bs-dropdown-border-width: var(--bs-border-width);
  3041. --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  3042. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3043. --bs-dropdown-divider-margin-y: 0.5rem;
  3044. --bs-dropdown-box-shadow: var(--bs-box-shadow);
  3045. --bs-dropdown-link-color: var(--bs-body-color);
  3046. --bs-dropdown-link-hover-color: var(--bs-body-color);
  3047. --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  3048. --bs-dropdown-link-active-color: #fff;
  3049. --bs-dropdown-link-active-bg: #0d6efd;
  3050. --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  3051. --bs-dropdown-item-padding-x: 1rem;
  3052. --bs-dropdown-item-padding-y: 0.25rem;
  3053. --bs-dropdown-header-color: #6c757d;
  3054. --bs-dropdown-header-padding-x: 1rem;
  3055. --bs-dropdown-header-padding-y: 0.5rem;
  3056. position: absolute;
  3057. z-index: var(--bs-dropdown-zindex);
  3058. display: none;
  3059. min-width: var(--bs-dropdown-min-width);
  3060. padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  3061. margin: 0;
  3062. font-size: var(--bs-dropdown-font-size);
  3063. color: var(--bs-dropdown-color);
  3064. text-align: left;
  3065. list-style: none;
  3066. background-color: var(--bs-dropdown-bg);
  3067. background-clip: padding-box;
  3068. border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  3069. border-radius: var(--bs-dropdown-border-radius)
  3070. }
  3071. .dropdown-menu[data-bs-popper] {
  3072. top: 100%;
  3073. left: 0;
  3074. margin-top: var(--bs-dropdown-spacer)
  3075. }
  3076. .dropdown-menu-start {
  3077. --bs-position: start
  3078. }
  3079. .dropdown-menu-start[data-bs-popper] {
  3080. right: auto;
  3081. left: 0
  3082. }
  3083. .dropdown-menu-end {
  3084. --bs-position: end
  3085. }
  3086. .dropdown-menu-end[data-bs-popper] {
  3087. right: 0;
  3088. left: auto
  3089. }
  3090. @media (min-width: 576px) {
  3091. .dropdown-menu-sm-start {
  3092. --bs-position: start
  3093. }
  3094. .dropdown-menu-sm-start[data-bs-popper] {
  3095. right: auto;
  3096. left: 0
  3097. }
  3098. .dropdown-menu-sm-end {
  3099. --bs-position: end
  3100. }
  3101. .dropdown-menu-sm-end[data-bs-popper] {
  3102. right: 0;
  3103. left: auto
  3104. }
  3105. }
  3106. @media (min-width: 768px) {
  3107. .dropdown-menu-md-start {
  3108. --bs-position: start
  3109. }
  3110. .dropdown-menu-md-start[data-bs-popper] {
  3111. right: auto;
  3112. left: 0
  3113. }
  3114. .dropdown-menu-md-end {
  3115. --bs-position: end
  3116. }
  3117. .dropdown-menu-md-end[data-bs-popper] {
  3118. right: 0;
  3119. left: auto
  3120. }
  3121. }
  3122. @media (min-width: 992px) {
  3123. .dropdown-menu-lg-start {
  3124. --bs-position: start
  3125. }
  3126. .dropdown-menu-lg-start[data-bs-popper] {
  3127. right: auto;
  3128. left: 0
  3129. }
  3130. .dropdown-menu-lg-end {
  3131. --bs-position: end
  3132. }
  3133. .dropdown-menu-lg-end[data-bs-popper] {
  3134. right: 0;
  3135. left: auto
  3136. }
  3137. }
  3138. @media (min-width: 1200px) {
  3139. .dropdown-menu-xl-start {
  3140. --bs-position: start
  3141. }
  3142. .dropdown-menu-xl-start[data-bs-popper] {
  3143. right: auto;
  3144. left: 0
  3145. }
  3146. .dropdown-menu-xl-end {
  3147. --bs-position: end
  3148. }
  3149. .dropdown-menu-xl-end[data-bs-popper] {
  3150. right: 0;
  3151. left: auto
  3152. }
  3153. }
  3154. @media (min-width: 1400px) {
  3155. .dropdown-menu-xxl-start {
  3156. --bs-position: start
  3157. }
  3158. .dropdown-menu-xxl-start[data-bs-popper] {
  3159. right: auto;
  3160. left: 0
  3161. }
  3162. .dropdown-menu-xxl-end {
  3163. --bs-position: end
  3164. }
  3165. .dropdown-menu-xxl-end[data-bs-popper] {
  3166. right: 0;
  3167. left: auto
  3168. }
  3169. }
  3170. .dropup .dropdown-menu[data-bs-popper] {
  3171. top: auto;
  3172. bottom: 100%;
  3173. margin-top: 0;
  3174. margin-bottom: var(--bs-dropdown-spacer)
  3175. }
  3176. .dropup .dropdown-toggle::after {
  3177. display: inline-block;
  3178. margin-left: .255em;
  3179. vertical-align: .255em;
  3180. content: "";
  3181. border-top: 0;
  3182. border-right: .3em solid transparent;
  3183. border-bottom: .3em solid;
  3184. border-left: .3em solid transparent
  3185. }
  3186. .dropup .dropdown-toggle:empty::after {
  3187. margin-left: 0
  3188. }
  3189. .dropend .dropdown-menu[data-bs-popper] {
  3190. top: 0;
  3191. right: auto;
  3192. left: 100%;
  3193. margin-top: 0;
  3194. margin-left: var(--bs-dropdown-spacer)
  3195. }
  3196. .dropend .dropdown-toggle::after {
  3197. display: inline-block;
  3198. margin-left: .255em;
  3199. vertical-align: .255em;
  3200. content: "";
  3201. border-top: .3em solid transparent;
  3202. border-right: 0;
  3203. border-bottom: .3em solid transparent;
  3204. border-left: .3em solid
  3205. }
  3206. .dropend .dropdown-toggle:empty::after {
  3207. margin-left: 0
  3208. }
  3209. .dropend .dropdown-toggle::after {
  3210. vertical-align: 0
  3211. }
  3212. .dropstart .dropdown-menu[data-bs-popper] {
  3213. top: 0;
  3214. right: 100%;
  3215. left: auto;
  3216. margin-top: 0;
  3217. margin-right: var(--bs-dropdown-spacer)
  3218. }
  3219. .dropstart .dropdown-toggle::after {
  3220. display: inline-block;
  3221. margin-left: .255em;
  3222. vertical-align: .255em;
  3223. content: ""
  3224. }
  3225. .dropstart .dropdown-toggle::after {
  3226. display: none
  3227. }
  3228. .dropstart .dropdown-toggle::before {
  3229. display: inline-block;
  3230. margin-right: .255em;
  3231. vertical-align: .255em;
  3232. content: "";
  3233. border-top: .3em solid transparent;
  3234. border-right: .3em solid;
  3235. border-bottom: .3em solid transparent
  3236. }
  3237. .dropstart .dropdown-toggle:empty::after {
  3238. margin-left: 0
  3239. }
  3240. .dropstart .dropdown-toggle::before {
  3241. vertical-align: 0
  3242. }
  3243. .dropdown-divider {
  3244. height: 0;
  3245. margin: var(--bs-dropdown-divider-margin-y) 0;
  3246. overflow: hidden;
  3247. border-top: 1px solid var(--bs-dropdown-divider-bg);
  3248. opacity: 1
  3249. }
  3250. .dropdown-item {
  3251. display: block;
  3252. width: 100%;
  3253. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3254. clear: both;
  3255. font-weight: 400;
  3256. color: var(--bs-dropdown-link-color);
  3257. text-align: inherit;
  3258. text-decoration: none;
  3259. white-space: nowrap;
  3260. background-color: transparent;
  3261. border: 0;
  3262. border-radius: var(--bs-dropdown-item-border-radius, 0)
  3263. }
  3264. .dropdown-item:focus, .dropdown-item:hover {
  3265. color: var(--bs-dropdown-link-hover-color);
  3266. background-color: var(--bs-dropdown-link-hover-bg)
  3267. }
  3268. .dropdown-item.active, .dropdown-item:active {
  3269. color: var(--bs-dropdown-link-active-color);
  3270. text-decoration: none;
  3271. background-color: var(--bs-dropdown-link-active-bg)
  3272. }
  3273. .dropdown-item.disabled, .dropdown-item:disabled {
  3274. color: var(--bs-dropdown-link-disabled-color);
  3275. pointer-events: none;
  3276. background-color: transparent
  3277. }
  3278. .dropdown-menu.show {
  3279. display: block
  3280. }
  3281. .dropdown-header {
  3282. display: block;
  3283. padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  3284. margin-bottom: 0;
  3285. font-size: .875rem;
  3286. color: var(--bs-dropdown-header-color);
  3287. white-space: nowrap
  3288. }
  3289. .dropdown-item-text {
  3290. display: block;
  3291. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3292. color: var(--bs-dropdown-link-color)
  3293. }
  3294. .dropdown-menu-dark {
  3295. --bs-dropdown-color: #dee2e6;
  3296. --bs-dropdown-bg: #343a40;
  3297. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3298. --bs-dropdown-box-shadow: ;
  3299. --bs-dropdown-link-color: #dee2e6;
  3300. --bs-dropdown-link-hover-color: #fff;
  3301. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3302. --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  3303. --bs-dropdown-link-active-color: #fff;
  3304. --bs-dropdown-link-active-bg: #0d6efd;
  3305. --bs-dropdown-link-disabled-color: #adb5bd;
  3306. --bs-dropdown-header-color: #adb5bd
  3307. }
  3308. .btn-group, .btn-group-vertical {
  3309. position: relative;
  3310. display: inline-flex;
  3311. vertical-align: middle
  3312. }
  3313. .btn-group-vertical > .btn, .btn-group > .btn {
  3314. position: relative;
  3315. flex: 1 1 auto
  3316. }
  3317. .btn-group-vertical > .btn-check:checked + .btn, .btn-group-vertical > .btn-check:focus + .btn, .btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:hover, .btn-group > .btn-check:checked + .btn, .btn-group > .btn-check:focus + .btn, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus, .btn-group > .btn:hover {
  3318. z-index: 1
  3319. }
  3320. .btn-toolbar {
  3321. display: flex;
  3322. flex-wrap: wrap;
  3323. justify-content: flex-start
  3324. }
  3325. .btn-toolbar .input-group {
  3326. width: auto
  3327. }
  3328. .btn-group {
  3329. border-radius: var(--bs-border-radius)
  3330. }
  3331. .btn-group > .btn-group:not(:first-child), .btn-group > :not(.btn-check:first-child) + .btn {
  3332. margin-left: calc(var(--bs-border-width) * -1)
  3333. }
  3334. .btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn.dropdown-toggle-split:first-child, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  3335. border-top-right-radius: 0;
  3336. border-bottom-right-radius: 0
  3337. }
  3338. .btn-group > .btn-group:not(:first-child) > .btn, .btn-group > .btn:nth-child(n+3), .btn-group > :not(.btn-check) + .btn {
  3339. border-top-left-radius: 0;
  3340. border-bottom-left-radius: 0
  3341. }
  3342. .dropdown-toggle-split {
  3343. padding-right: .5625rem;
  3344. padding-left: .5625rem
  3345. }
  3346. .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after {
  3347. margin-left: 0
  3348. }
  3349. .dropstart .dropdown-toggle-split::before {
  3350. margin-right: 0
  3351. }
  3352. .btn-group-sm > .btn + .dropdown-toggle-split, .btn-sm + .dropdown-toggle-split {
  3353. padding-right: .375rem;
  3354. padding-left: .375rem
  3355. }
  3356. .btn-group-lg > .btn + .dropdown-toggle-split, .btn-lg + .dropdown-toggle-split {
  3357. padding-right: .75rem;
  3358. padding-left: .75rem
  3359. }
  3360. .btn-group-vertical {
  3361. flex-direction: column;
  3362. align-items: flex-start;
  3363. justify-content: center
  3364. }
  3365. .btn-group-vertical > .btn, .btn-group-vertical > .btn-group {
  3366. width: 100%
  3367. }
  3368. .btn-group-vertical > .btn-group:not(:first-child), .btn-group-vertical > .btn:not(:first-child) {
  3369. margin-top: calc(var(--bs-border-width) * -1)
  3370. }
  3371. .btn-group-vertical > .btn-group:not(:last-child) > .btn, .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
  3372. border-bottom-right-radius: 0;
  3373. border-bottom-left-radius: 0
  3374. }
  3375. .btn-group-vertical > .btn-group:not(:first-child) > .btn, .btn-group-vertical > .btn ~ .btn {
  3376. border-top-left-radius: 0;
  3377. border-top-right-radius: 0
  3378. }
  3379. .nav {
  3380. --bs-nav-link-padding-x: 1rem;
  3381. --bs-nav-link-padding-y: 0.5rem;
  3382. --bs-nav-link-font-weight: ;
  3383. --bs-nav-link-color: var(--bs-link-color);
  3384. --bs-nav-link-hover-color: var(--bs-link-hover-color);
  3385. --bs-nav-link-disabled-color: var(--bs-secondary-color);
  3386. display: flex;
  3387. flex-wrap: wrap;
  3388. padding-left: 0;
  3389. margin-bottom: 0;
  3390. list-style: none
  3391. }
  3392. .nav-link {
  3393. display: block;
  3394. padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  3395. font-size: var(--bs-nav-link-font-size);
  3396. font-weight: var(--bs-nav-link-font-weight);
  3397. color: var(--bs-nav-link-color);
  3398. text-decoration: none;
  3399. background: 0 0;
  3400. border: 0;
  3401. transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out
  3402. }
  3403. @media (prefers-reduced-motion: reduce) {
  3404. .nav-link {
  3405. transition: none
  3406. }
  3407. }
  3408. .nav-link:focus, .nav-link:hover {
  3409. color: var(--bs-nav-link-hover-color)
  3410. }
  3411. .nav-link:focus-visible {
  3412. outline: 0;
  3413. box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
  3414. }
  3415. .nav-link.disabled, .nav-link:disabled {
  3416. color: var(--bs-nav-link-disabled-color);
  3417. pointer-events: none;
  3418. cursor: default
  3419. }
  3420. .nav-tabs {
  3421. --bs-nav-tabs-border-width: var(--bs-border-width);
  3422. --bs-nav-tabs-border-color: var(--bs-border-color);
  3423. --bs-nav-tabs-border-radius: var(--bs-border-radius);
  3424. --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  3425. --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  3426. --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  3427. --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  3428. border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)
  3429. }
  3430. .nav-tabs .nav-link {
  3431. margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  3432. border: var(--bs-nav-tabs-border-width) solid transparent;
  3433. border-top-left-radius: var(--bs-nav-tabs-border-radius);
  3434. border-top-right-radius: var(--bs-nav-tabs-border-radius)
  3435. }
  3436. .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  3437. isolation: isolate;
  3438. border-color: var(--bs-nav-tabs-link-hover-border-color)
  3439. }
  3440. .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  3441. color: var(--bs-nav-tabs-link-active-color);
  3442. background-color: var(--bs-nav-tabs-link-active-bg);
  3443. border-color: var(--bs-nav-tabs-link-active-border-color)
  3444. }
  3445. .nav-tabs .dropdown-menu {
  3446. margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  3447. border-top-left-radius: 0;
  3448. border-top-right-radius: 0
  3449. }
  3450. .nav-pills {
  3451. --bs-nav-pills-border-radius: var(--bs-border-radius);
  3452. --bs-nav-pills-link-active-color: #fff;
  3453. --bs-nav-pills-link-active-bg: #0d6efd
  3454. }
  3455. .nav-pills .nav-link {
  3456. border-radius: var(--bs-nav-pills-border-radius)
  3457. }
  3458. .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  3459. color: var(--bs-nav-pills-link-active-color);
  3460. background-color: var(--bs-nav-pills-link-active-bg)
  3461. }
  3462. .nav-underline {
  3463. --bs-nav-underline-gap: 1rem;
  3464. --bs-nav-underline-border-width: 0.125rem;
  3465. --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  3466. gap: var(--bs-nav-underline-gap)
  3467. }
  3468. .nav-underline .nav-link {
  3469. padding-right: 0;
  3470. padding-left: 0;
  3471. border-bottom: var(--bs-nav-underline-border-width) solid transparent
  3472. }
  3473. .nav-underline .nav-link:focus, .nav-underline .nav-link:hover {
  3474. border-bottom-color: currentcolor
  3475. }
  3476. .nav-underline .nav-link.active, .nav-underline .show > .nav-link {
  3477. font-weight: 700;
  3478. color: var(--bs-nav-underline-link-active-color);
  3479. border-bottom-color: currentcolor
  3480. }
  3481. .nav-fill .nav-item, .nav-fill > .nav-link {
  3482. flex: 1 1 auto;
  3483. text-align: center
  3484. }
  3485. .nav-justified .nav-item, .nav-justified > .nav-link {
  3486. flex-basis: 0;
  3487. flex-grow: 1;
  3488. text-align: center
  3489. }
  3490. .nav-fill .nav-item .nav-link, .nav-justified .nav-item .nav-link {
  3491. width: 100%
  3492. }
  3493. .tab-content > .tab-pane {
  3494. display: none
  3495. }
  3496. .tab-content > .active {
  3497. display: block
  3498. }
  3499. .navbar {
  3500. --bs-navbar-padding-x: 0;
  3501. --bs-navbar-padding-y: 0.5rem;
  3502. --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  3503. --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  3504. --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  3505. --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3506. --bs-navbar-brand-padding-y: 0.3125rem;
  3507. --bs-navbar-brand-margin-end: 1rem;
  3508. --bs-navbar-brand-font-size: 1.25rem;
  3509. --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3510. --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3511. --bs-navbar-nav-link-padding-x: 0.5rem;
  3512. --bs-navbar-toggler-padding-y: 0.25rem;
  3513. --bs-navbar-toggler-padding-x: 0.75rem;
  3514. --bs-navbar-toggler-font-size: 1.25rem;
  3515. --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");
  3516. --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  3517. --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  3518. --bs-navbar-toggler-focus-width: 0.25rem;
  3519. --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  3520. position: relative;
  3521. display: flex;
  3522. flex-wrap: wrap;
  3523. align-items: center;
  3524. justify-content: space-between;
  3525. padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)
  3526. }
  3527. .navbar > .container, .navbar > .container-fluid, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar > .container-xl, .navbar > .container-xxl {
  3528. display: flex;
  3529. flex-wrap: inherit;
  3530. align-items: center;
  3531. justify-content: space-between
  3532. }
  3533. .navbar-brand {
  3534. padding-top: var(--bs-navbar-brand-padding-y);
  3535. padding-bottom: var(--bs-navbar-brand-padding-y);
  3536. margin-right: var(--bs-navbar-brand-margin-end);
  3537. font-size: var(--bs-navbar-brand-font-size);
  3538. color: var(--bs-navbar-brand-color);
  3539. text-decoration: none;
  3540. white-space: nowrap
  3541. }
  3542. .navbar-brand:focus, .navbar-brand:hover {
  3543. color: var(--bs-navbar-brand-hover-color)
  3544. }
  3545. .navbar-nav {
  3546. --bs-nav-link-padding-x: 0;
  3547. --bs-nav-link-padding-y: 0.5rem;
  3548. --bs-nav-link-font-weight: ;
  3549. --bs-nav-link-color: var(--bs-navbar-color);
  3550. --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  3551. --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  3552. display: flex;
  3553. flex-direction: column;
  3554. padding-left: 0;
  3555. margin-bottom: 0;
  3556. list-style: none
  3557. }
  3558. .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  3559. color: var(--bs-navbar-active-color)
  3560. }
  3561. .navbar-nav .dropdown-menu {
  3562. position: static
  3563. }
  3564. .navbar-text {
  3565. padding-top: .5rem;
  3566. padding-bottom: .5rem;
  3567. color: var(--bs-navbar-color)
  3568. }
  3569. .navbar-text a, .navbar-text a:focus, .navbar-text a:hover {
  3570. color: var(--bs-navbar-active-color)
  3571. }
  3572. .navbar-collapse {
  3573. flex-basis: 100%;
  3574. flex-grow: 1;
  3575. align-items: center
  3576. }
  3577. .navbar-toggler {
  3578. padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  3579. font-size: var(--bs-navbar-toggler-font-size);
  3580. line-height: 1;
  3581. color: var(--bs-navbar-color);
  3582. background-color: transparent;
  3583. border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  3584. border-radius: var(--bs-navbar-toggler-border-radius);
  3585. transition: var(--bs-navbar-toggler-transition)
  3586. }
  3587. @media (prefers-reduced-motion: reduce) {
  3588. .navbar-toggler {
  3589. transition: none
  3590. }
  3591. }
  3592. .navbar-toggler:hover {
  3593. text-decoration: none
  3594. }
  3595. .navbar-toggler:focus {
  3596. text-decoration: none;
  3597. outline: 0;
  3598. box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width)
  3599. }
  3600. .navbar-toggler-icon {
  3601. display: inline-block;
  3602. width: 1.5em;
  3603. height: 1.5em;
  3604. vertical-align: middle;
  3605. background-image: var(--bs-navbar-toggler-icon-bg);
  3606. background-repeat: no-repeat;
  3607. background-position: center;
  3608. background-size: 100%
  3609. }
  3610. .navbar-nav-scroll {
  3611. max-height: var(--bs-scroll-height, 75vh);
  3612. overflow-y: auto
  3613. }
  3614. @media (min-width: 576px) {
  3615. .navbar-expand-sm {
  3616. flex-wrap: nowrap;
  3617. justify-content: flex-start
  3618. }
  3619. .navbar-expand-sm .navbar-nav {
  3620. flex-direction: row
  3621. }
  3622. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3623. position: absolute
  3624. }
  3625. .navbar-expand-sm .navbar-nav .nav-link {
  3626. padding-right: var(--bs-navbar-nav-link-padding-x);
  3627. padding-left: var(--bs-navbar-nav-link-padding-x)
  3628. }
  3629. .navbar-expand-sm .navbar-nav-scroll {
  3630. overflow: visible
  3631. }
  3632. .navbar-expand-sm .navbar-collapse {
  3633. display: flex !important;
  3634. flex-basis: auto
  3635. }
  3636. .navbar-expand-sm .navbar-toggler {
  3637. display: none
  3638. }
  3639. .navbar-expand-sm .offcanvas {
  3640. position: static;
  3641. z-index: auto;
  3642. flex-grow: 1;
  3643. width: auto !important;
  3644. height: auto !important;
  3645. visibility: visible !important;
  3646. background-color: transparent !important;
  3647. border: 0 !important;
  3648. transform: none !important;
  3649. transition: none
  3650. }
  3651. .navbar-expand-sm .offcanvas .offcanvas-header {
  3652. display: none
  3653. }
  3654. .navbar-expand-sm .offcanvas .offcanvas-body {
  3655. display: flex;
  3656. flex-grow: 0;
  3657. padding: 0;
  3658. overflow-y: visible
  3659. }
  3660. }
  3661. @media (min-width: 768px) {
  3662. .navbar-expand-md {
  3663. flex-wrap: nowrap;
  3664. justify-content: flex-start
  3665. }
  3666. .navbar-expand-md .navbar-nav {
  3667. flex-direction: row
  3668. }
  3669. .navbar-expand-md .navbar-nav .dropdown-menu {
  3670. position: absolute
  3671. }
  3672. .navbar-expand-md .navbar-nav .nav-link {
  3673. padding-right: var(--bs-navbar-nav-link-padding-x);
  3674. padding-left: var(--bs-navbar-nav-link-padding-x)
  3675. }
  3676. .navbar-expand-md .navbar-nav-scroll {
  3677. overflow: visible
  3678. }
  3679. .navbar-expand-md .navbar-collapse {
  3680. display: flex !important;
  3681. flex-basis: auto
  3682. }
  3683. .navbar-expand-md .navbar-toggler {
  3684. display: none
  3685. }
  3686. .navbar-expand-md .offcanvas {
  3687. position: static;
  3688. z-index: auto;
  3689. flex-grow: 1;
  3690. width: auto !important;
  3691. height: auto !important;
  3692. visibility: visible !important;
  3693. background-color: transparent !important;
  3694. border: 0 !important;
  3695. transform: none !important;
  3696. transition: none
  3697. }
  3698. .navbar-expand-md .offcanvas .offcanvas-header {
  3699. display: none
  3700. }
  3701. .navbar-expand-md .offcanvas .offcanvas-body {
  3702. display: flex;
  3703. flex-grow: 0;
  3704. padding: 0;
  3705. overflow-y: visible
  3706. }
  3707. }
  3708. @media (min-width: 992px) {
  3709. .navbar-expand-lg {
  3710. flex-wrap: nowrap;
  3711. justify-content: flex-start
  3712. }
  3713. .navbar-expand-lg .navbar-nav {
  3714. flex-direction: row
  3715. }
  3716. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3717. position: absolute
  3718. }
  3719. .navbar-expand-lg .navbar-nav .nav-link {
  3720. padding-right: var(--bs-navbar-nav-link-padding-x);
  3721. padding-left: var(--bs-navbar-nav-link-padding-x)
  3722. }
  3723. .navbar-expand-lg .navbar-nav-scroll {
  3724. overflow: visible
  3725. }
  3726. .navbar-expand-lg .navbar-collapse {
  3727. display: flex !important;
  3728. flex-basis: auto
  3729. }
  3730. .navbar-expand-lg .navbar-toggler {
  3731. display: none
  3732. }
  3733. .navbar-expand-lg .offcanvas {
  3734. position: static;
  3735. z-index: auto;
  3736. flex-grow: 1;
  3737. width: auto !important;
  3738. height: auto !important;
  3739. visibility: visible !important;
  3740. background-color: transparent !important;
  3741. border: 0 !important;
  3742. transform: none !important;
  3743. transition: none
  3744. }
  3745. .navbar-expand-lg .offcanvas .offcanvas-header {
  3746. display: none
  3747. }
  3748. .navbar-expand-lg .offcanvas .offcanvas-body {
  3749. display: flex;
  3750. flex-grow: 0;
  3751. padding: 0;
  3752. overflow-y: visible
  3753. }
  3754. }
  3755. @media (min-width: 1200px) {
  3756. .navbar-expand-xl {
  3757. flex-wrap: nowrap;
  3758. justify-content: flex-start
  3759. }
  3760. .navbar-expand-xl .navbar-nav {
  3761. flex-direction: row
  3762. }
  3763. .navbar-expand-xl .navbar-nav .dropdown-menu {
  3764. position: absolute
  3765. }
  3766. .navbar-expand-xl .navbar-nav .nav-link {
  3767. padding-right: var(--bs-navbar-nav-link-padding-x);
  3768. padding-left: var(--bs-navbar-nav-link-padding-x)
  3769. }
  3770. .navbar-expand-xl .navbar-nav-scroll {
  3771. overflow: visible
  3772. }
  3773. .navbar-expand-xl .navbar-collapse {
  3774. display: flex !important;
  3775. flex-basis: auto
  3776. }
  3777. .navbar-expand-xl .navbar-toggler {
  3778. display: none
  3779. }
  3780. .navbar-expand-xl .offcanvas {
  3781. position: static;
  3782. z-index: auto;
  3783. flex-grow: 1;
  3784. width: auto !important;
  3785. height: auto !important;
  3786. visibility: visible !important;
  3787. background-color: transparent !important;
  3788. border: 0 !important;
  3789. transform: none !important;
  3790. transition: none
  3791. }
  3792. .navbar-expand-xl .offcanvas .offcanvas-header {
  3793. display: none
  3794. }
  3795. .navbar-expand-xl .offcanvas .offcanvas-body {
  3796. display: flex;
  3797. flex-grow: 0;
  3798. padding: 0;
  3799. overflow-y: visible
  3800. }
  3801. }
  3802. @media (min-width: 1400px) {
  3803. .navbar-expand-xxl {
  3804. flex-wrap: nowrap;
  3805. justify-content: flex-start
  3806. }
  3807. .navbar-expand-xxl .navbar-nav {
  3808. flex-direction: row
  3809. }
  3810. .navbar-expand-xxl .navbar-nav .dropdown-menu {
  3811. position: absolute
  3812. }
  3813. .navbar-expand-xxl .navbar-nav .nav-link {
  3814. padding-right: var(--bs-navbar-nav-link-padding-x);
  3815. padding-left: var(--bs-navbar-nav-link-padding-x)
  3816. }
  3817. .navbar-expand-xxl .navbar-nav-scroll {
  3818. overflow: visible
  3819. }
  3820. .navbar-expand-xxl .navbar-collapse {
  3821. display: flex !important;
  3822. flex-basis: auto
  3823. }
  3824. .navbar-expand-xxl .navbar-toggler {
  3825. display: none
  3826. }
  3827. .navbar-expand-xxl .offcanvas {
  3828. position: static;
  3829. z-index: auto;
  3830. flex-grow: 1;
  3831. width: auto !important;
  3832. height: auto !important;
  3833. visibility: visible !important;
  3834. background-color: transparent !important;
  3835. border: 0 !important;
  3836. transform: none !important;
  3837. transition: none
  3838. }
  3839. .navbar-expand-xxl .offcanvas .offcanvas-header {
  3840. display: none
  3841. }
  3842. .navbar-expand-xxl .offcanvas .offcanvas-body {
  3843. display: flex;
  3844. flex-grow: 0;
  3845. padding: 0;
  3846. overflow-y: visible
  3847. }
  3848. }
  3849. .navbar-expand {
  3850. flex-wrap: nowrap;
  3851. justify-content: flex-start
  3852. }
  3853. .navbar-expand .navbar-nav {
  3854. flex-direction: row
  3855. }
  3856. .navbar-expand .navbar-nav .dropdown-menu {
  3857. position: absolute
  3858. }
  3859. .navbar-expand .navbar-nav .nav-link {
  3860. padding-right: var(--bs-navbar-nav-link-padding-x);
  3861. padding-left: var(--bs-navbar-nav-link-padding-x)
  3862. }
  3863. .navbar-expand .navbar-nav-scroll {
  3864. overflow: visible
  3865. }
  3866. .navbar-expand .navbar-collapse {
  3867. display: flex !important;
  3868. flex-basis: auto
  3869. }
  3870. .navbar-expand .navbar-toggler {
  3871. display: none
  3872. }
  3873. .navbar-expand .offcanvas {
  3874. position: static;
  3875. z-index: auto;
  3876. flex-grow: 1;
  3877. width: auto !important;
  3878. height: auto !important;
  3879. visibility: visible !important;
  3880. background-color: transparent !important;
  3881. border: 0 !important;
  3882. transform: none !important;
  3883. transition: none
  3884. }
  3885. .navbar-expand .offcanvas .offcanvas-header {
  3886. display: none
  3887. }
  3888. .navbar-expand .offcanvas .offcanvas-body {
  3889. display: flex;
  3890. flex-grow: 0;
  3891. padding: 0;
  3892. overflow-y: visible
  3893. }
  3894. .navbar-dark, .navbar[data-bs-theme=dark] {
  3895. --bs-navbar-color: rgba(255, 255, 255, 0.55);
  3896. --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  3897. --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  3898. --bs-navbar-active-color: #fff;
  3899. --bs-navbar-brand-color: #fff;
  3900. --bs-navbar-brand-hover-color: #fff;
  3901. --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  3902. --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")
  3903. }
  3904. [data-bs-theme=dark] .navbar-toggler-icon {
  3905. --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")
  3906. }
  3907. .card {
  3908. --bs-card-spacer-y: 1rem;
  3909. --bs-card-spacer-x: 1rem;
  3910. --bs-card-title-spacer-y: 0.5rem;
  3911. --bs-card-title-color: ;
  3912. --bs-card-subtitle-color: ;
  3913. --bs-card-border-width: var(--bs-border-width);
  3914. --bs-card-border-color: var(--bs-border-color-translucent);
  3915. --bs-card-border-radius: var(--bs-border-radius);
  3916. --bs-card-box-shadow: ;
  3917. --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  3918. --bs-card-cap-padding-y: 0.5rem;
  3919. --bs-card-cap-padding-x: 1rem;
  3920. --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  3921. --bs-card-cap-color: ;
  3922. --bs-card-height: ;
  3923. --bs-card-color: ;
  3924. --bs-card-bg: var(--bs-body-bg);
  3925. --bs-card-img-overlay-padding: 1rem;
  3926. --bs-card-group-margin: 0.75rem;
  3927. position: relative;
  3928. display: flex;
  3929. flex-direction: column;
  3930. min-width: 0;
  3931. height: var(--bs-card-height);
  3932. color: var(--bs-body-color);
  3933. word-wrap: break-word;
  3934. background-color: var(--bs-card-bg);
  3935. background-clip: border-box;
  3936. border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  3937. border-radius: var(--bs-card-border-radius)
  3938. }
  3939. .card > hr {
  3940. margin-right: 0;
  3941. margin-left: 0
  3942. }
  3943. .card > .list-group {
  3944. border-top: inherit;
  3945. border-bottom: inherit
  3946. }
  3947. .card > .list-group:first-child {
  3948. border-top-width: 0;
  3949. border-top-left-radius: var(--bs-card-inner-border-radius);
  3950. border-top-right-radius: var(--bs-card-inner-border-radius)
  3951. }
  3952. .card > .list-group:last-child {
  3953. border-bottom-width: 0;
  3954. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  3955. border-bottom-left-radius: var(--bs-card-inner-border-radius)
  3956. }
  3957. .card > .card-header + .list-group, .card > .list-group + .card-footer {
  3958. border-top: 0
  3959. }
  3960. .card-body {
  3961. flex: 1 1 auto;
  3962. padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  3963. color: var(--bs-card-color)
  3964. }
  3965. .card-title {
  3966. margin-bottom: var(--bs-card-title-spacer-y);
  3967. color: var(--bs-card-title-color)
  3968. }
  3969. .card-subtitle {
  3970. margin-top: calc(-.5 * var(--bs-card-title-spacer-y));
  3971. margin-bottom: 0;
  3972. color: var(--bs-card-subtitle-color)
  3973. }
  3974. .card-text:last-child {
  3975. margin-bottom: 0
  3976. }
  3977. .card-link + .card-link {
  3978. margin-left: var(--bs-card-spacer-x)
  3979. }
  3980. .card-header {
  3981. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  3982. margin-bottom: 0;
  3983. color: var(--bs-card-cap-color);
  3984. background-color: var(--bs-card-cap-bg);
  3985. border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color)
  3986. }
  3987. .card-header:first-child {
  3988. border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0
  3989. }
  3990. .card-footer {
  3991. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  3992. color: var(--bs-card-cap-color);
  3993. background-color: var(--bs-card-cap-bg);
  3994. border-top: var(--bs-card-border-width) solid var(--bs-card-border-color)
  3995. }
  3996. .card-footer:last-child {
  3997. border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)
  3998. }
  3999. .card-header-tabs {
  4000. margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  4001. margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  4002. margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
  4003. border-bottom: 0
  4004. }
  4005. .card-header-tabs .nav-link.active {
  4006. background-color: var(--bs-card-bg);
  4007. border-bottom-color: var(--bs-card-bg)
  4008. }
  4009. .card-header-pills {
  4010. margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  4011. margin-left: calc(-.5 * var(--bs-card-cap-padding-x))
  4012. }
  4013. .card-img-overlay {
  4014. position: absolute;
  4015. top: 0;
  4016. right: 0;
  4017. bottom: 0;
  4018. left: 0;
  4019. padding: var(--bs-card-img-overlay-padding);
  4020. border-radius: var(--bs-card-inner-border-radius)
  4021. }
  4022. .card-img, .card-img-bottom, .card-img-top {
  4023. width: 100%
  4024. }
  4025. .card-img, .card-img-top {
  4026. border-top-left-radius: var(--bs-card-inner-border-radius);
  4027. border-top-right-radius: var(--bs-card-inner-border-radius)
  4028. }
  4029. .card-img, .card-img-bottom {
  4030. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  4031. border-bottom-left-radius: var(--bs-card-inner-border-radius)
  4032. }
  4033. .card-group > .card {
  4034. margin-bottom: var(--bs-card-group-margin)
  4035. }
  4036. @media (min-width: 576px) {
  4037. .card-group {
  4038. display: flex;
  4039. flex-flow: row wrap
  4040. }
  4041. .card-group > .card {
  4042. flex: 1 0 0%;
  4043. margin-bottom: 0
  4044. }
  4045. .card-group > .card + .card {
  4046. margin-left: 0;
  4047. border-left: 0
  4048. }
  4049. .card-group > .card:not(:last-child) {
  4050. border-top-right-radius: 0;
  4051. border-bottom-right-radius: 0
  4052. }
  4053. .card-group > .card:not(:last-child) .card-header, .card-group > .card:not(:last-child) .card-img-top {
  4054. border-top-right-radius: 0
  4055. }
  4056. .card-group > .card:not(:last-child) .card-footer, .card-group > .card:not(:last-child) .card-img-bottom {
  4057. border-bottom-right-radius: 0
  4058. }
  4059. .card-group > .card:not(:first-child) {
  4060. border-top-left-radius: 0;
  4061. border-bottom-left-radius: 0
  4062. }
  4063. .card-group > .card:not(:first-child) .card-header, .card-group > .card:not(:first-child) .card-img-top {
  4064. border-top-left-radius: 0
  4065. }
  4066. .card-group > .card:not(:first-child) .card-footer, .card-group > .card:not(:first-child) .card-img-bottom {
  4067. border-bottom-left-radius: 0
  4068. }
  4069. }
  4070. .accordion {
  4071. --bs-accordion-color: var(--bs-body-color);
  4072. --bs-accordion-bg: var(--bs-body-bg);
  4073. --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;
  4074. --bs-accordion-border-color: var(--bs-border-color);
  4075. --bs-accordion-border-width: var(--bs-border-width);
  4076. --bs-accordion-border-radius: var(--bs-border-radius);
  4077. --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  4078. --bs-accordion-btn-padding-x: 1.25rem;
  4079. --bs-accordion-btn-padding-y: 1rem;
  4080. --bs-accordion-btn-color: var(--bs-body-color);
  4081. --bs-accordion-btn-bg: var(--bs-accordion-bg);
  4082. --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  4083. --bs-accordion-btn-icon-width: 1.25rem;
  4084. --bs-accordion-btn-icon-transform: rotate(-180deg);
  4085. --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  4086. --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
  4087. --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4088. --bs-accordion-body-padding-x: 1.25rem;
  4089. --bs-accordion-body-padding-y: 1rem;
  4090. --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  4091. --bs-accordion-active-bg: var(--bs-primary-bg-subtle)
  4092. }
  4093. .accordion-button {
  4094. position: relative;
  4095. display: flex;
  4096. align-items: center;
  4097. width: 100%;
  4098. padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  4099. font-size: 1rem;
  4100. color: var(--bs-accordion-btn-color);
  4101. text-align: left;
  4102. background-color: var(--bs-accordion-btn-bg);
  4103. border: 0;
  4104. border-radius: 0;
  4105. overflow-anchor: none;
  4106. transition: var(--bs-accordion-transition)
  4107. }
  4108. @media (prefers-reduced-motion: reduce) {
  4109. .accordion-button {
  4110. transition: none
  4111. }
  4112. }
  4113. .accordion-button:not(.collapsed) {
  4114. color: var(--bs-accordion-active-color);
  4115. background-color: var(--bs-accordion-active-bg);
  4116. box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)
  4117. }
  4118. .accordion-button:not(.collapsed)::after {
  4119. background-image: var(--bs-accordion-btn-active-icon);
  4120. transform: var(--bs-accordion-btn-icon-transform)
  4121. }
  4122. .accordion-button::after {
  4123. flex-shrink: 0;
  4124. width: var(--bs-accordion-btn-icon-width);
  4125. height: var(--bs-accordion-btn-icon-width);
  4126. margin-left: auto;
  4127. content: "";
  4128. background-image: var(--bs-accordion-btn-icon);
  4129. background-repeat: no-repeat;
  4130. background-size: var(--bs-accordion-btn-icon-width);
  4131. transition: var(--bs-accordion-btn-icon-transition)
  4132. }
  4133. @media (prefers-reduced-motion: reduce) {
  4134. .accordion-button::after {
  4135. transition: none
  4136. }
  4137. }
  4138. .accordion-button:hover {
  4139. z-index: 2
  4140. }
  4141. .accordion-button:focus {
  4142. z-index: 3;
  4143. outline: 0;
  4144. box-shadow: var(--bs-accordion-btn-focus-box-shadow)
  4145. }
  4146. .accordion-header {
  4147. margin-bottom: 0
  4148. }
  4149. .accordion-item {
  4150. color: var(--bs-accordion-color);
  4151. background-color: var(--bs-accordion-bg);
  4152. border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)
  4153. }
  4154. .accordion-item:first-of-type {
  4155. border-top-left-radius: var(--bs-accordion-border-radius);
  4156. border-top-right-radius: var(--bs-accordion-border-radius)
  4157. }
  4158. .accordion-item:first-of-type > .accordion-header .accordion-button {
  4159. border-top-left-radius: var(--bs-accordion-inner-border-radius);
  4160. border-top-right-radius: var(--bs-accordion-inner-border-radius)
  4161. }
  4162. .accordion-item:not(:first-of-type) {
  4163. border-top: 0
  4164. }
  4165. .accordion-item:last-of-type {
  4166. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4167. border-bottom-left-radius: var(--bs-accordion-border-radius)
  4168. }
  4169. .accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  4170. border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  4171. border-bottom-left-radius: var(--bs-accordion-inner-border-radius)
  4172. }
  4173. .accordion-item:last-of-type > .accordion-collapse {
  4174. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4175. border-bottom-left-radius: var(--bs-accordion-border-radius)
  4176. }
  4177. .accordion-body {
  4178. padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)
  4179. }
  4180. .accordion-flush > .accordion-item {
  4181. border-right: 0;
  4182. border-left: 0;
  4183. border-radius: 0
  4184. }
  4185. .accordion-flush > .accordion-item:first-child {
  4186. border-top: 0
  4187. }
  4188. .accordion-flush > .accordion-item:last-child {
  4189. border-bottom: 0
  4190. }
  4191. .accordion-flush > .accordion-item > .accordion-header .accordion-button, .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  4192. border-radius: 0
  4193. }
  4194. .accordion-flush > .accordion-item > .accordion-collapse {
  4195. border-radius: 0
  4196. }
  4197. [data-bs-theme=dark] .accordion-button::after {
  4198. --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");
  4199. --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")
  4200. }
  4201. .breadcrumb {
  4202. --bs-breadcrumb-padding-x: 0;
  4203. --bs-breadcrumb-padding-y: 0;
  4204. --bs-breadcrumb-margin-bottom: 1rem;
  4205. --bs-breadcrumb-bg: ;
  4206. --bs-breadcrumb-border-radius: ;
  4207. --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  4208. --bs-breadcrumb-item-padding-x: 0.5rem;
  4209. --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  4210. display: flex;
  4211. flex-wrap: wrap;
  4212. padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  4213. margin-bottom: var(--bs-breadcrumb-margin-bottom);
  4214. font-size: var(--bs-breadcrumb-font-size);
  4215. list-style: none;
  4216. background-color: var(--bs-breadcrumb-bg);
  4217. border-radius: var(--bs-breadcrumb-border-radius)
  4218. }
  4219. .breadcrumb-item + .breadcrumb-item {
  4220. padding-left: var(--bs-breadcrumb-item-padding-x)
  4221. }
  4222. .breadcrumb-item + .breadcrumb-item::before {
  4223. float: left;
  4224. padding-right: var(--bs-breadcrumb-item-padding-x);
  4225. color: var(--bs-breadcrumb-divider-color);
  4226. content: var(--bs-breadcrumb-divider, "/")
  4227. }
  4228. .breadcrumb-item.active {
  4229. color: var(--bs-breadcrumb-item-active-color)
  4230. }
  4231. .pagination {
  4232. --bs-pagination-padding-x: 0.75rem;
  4233. --bs-pagination-padding-y: 0.375rem;
  4234. --bs-pagination-font-size: 1rem;
  4235. --bs-pagination-color: var(--bs-link-color);
  4236. --bs-pagination-bg: var(--bs-body-bg);
  4237. --bs-pagination-border-width: var(--bs-border-width);
  4238. --bs-pagination-border-color: var(--bs-border-color);
  4239. --bs-pagination-border-radius: var(--bs-border-radius);
  4240. --bs-pagination-hover-color: var(--bs-link-hover-color);
  4241. --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  4242. --bs-pagination-hover-border-color: var(--bs-border-color);
  4243. --bs-pagination-focus-color: var(--bs-link-hover-color);
  4244. --bs-pagination-focus-bg: var(--bs-secondary-bg);
  4245. --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4246. --bs-pagination-active-color: #fff;
  4247. --bs-pagination-active-bg: #0d6efd;
  4248. --bs-pagination-active-border-color: #0d6efd;
  4249. --bs-pagination-disabled-color: var(--bs-secondary-color);
  4250. --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  4251. --bs-pagination-disabled-border-color: var(--bs-border-color);
  4252. display: flex;
  4253. padding-left: 0;
  4254. list-style: none
  4255. }
  4256. .page-link {
  4257. position: relative;
  4258. display: block;
  4259. padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  4260. font-size: var(--bs-pagination-font-size);
  4261. color: var(--bs-pagination-color);
  4262. text-decoration: none;
  4263. background-color: var(--bs-pagination-bg);
  4264. border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  4265. transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
  4266. }
  4267. @media (prefers-reduced-motion: reduce) {
  4268. .page-link {
  4269. transition: none
  4270. }
  4271. }
  4272. .page-link:hover {
  4273. z-index: 2;
  4274. color: var(--bs-pagination-hover-color);
  4275. background-color: var(--bs-pagination-hover-bg);
  4276. border-color: var(--bs-pagination-hover-border-color)
  4277. }
  4278. .page-link:focus {
  4279. z-index: 3;
  4280. color: var(--bs-pagination-focus-color);
  4281. background-color: var(--bs-pagination-focus-bg);
  4282. outline: 0;
  4283. box-shadow: var(--bs-pagination-focus-box-shadow)
  4284. }
  4285. .active > .page-link, .page-link.active {
  4286. z-index: 3;
  4287. color: var(--bs-pagination-active-color);
  4288. background-color: var(--bs-pagination-active-bg);
  4289. border-color: var(--bs-pagination-active-border-color)
  4290. }
  4291. .disabled > .page-link, .page-link.disabled {
  4292. color: var(--bs-pagination-disabled-color);
  4293. pointer-events: none;
  4294. background-color: var(--bs-pagination-disabled-bg);
  4295. border-color: var(--bs-pagination-disabled-border-color)
  4296. }
  4297. .page-item:not(:first-child) .page-link {
  4298. margin-left: calc(var(--bs-border-width) * -1)
  4299. }
  4300. .page-item:first-child .page-link {
  4301. border-top-left-radius: var(--bs-pagination-border-radius);
  4302. border-bottom-left-radius: var(--bs-pagination-border-radius)
  4303. }
  4304. .page-item:last-child .page-link {
  4305. border-top-right-radius: var(--bs-pagination-border-radius);
  4306. border-bottom-right-radius: var(--bs-pagination-border-radius)
  4307. }
  4308. .pagination-lg {
  4309. --bs-pagination-padding-x: 1.5rem;
  4310. --bs-pagination-padding-y: 0.75rem;
  4311. --bs-pagination-font-size: 1.25rem;
  4312. --bs-pagination-border-radius: var(--bs-border-radius-lg)
  4313. }
  4314. .pagination-sm {
  4315. --bs-pagination-padding-x: 0.5rem;
  4316. --bs-pagination-padding-y: 0.25rem;
  4317. --bs-pagination-font-size: 0.875rem;
  4318. --bs-pagination-border-radius: var(--bs-border-radius-sm)
  4319. }
  4320. .badge {
  4321. --bs-badge-padding-x: 0.65em;
  4322. --bs-badge-padding-y: 0.35em;
  4323. --bs-badge-font-size: 0.75em;
  4324. --bs-badge-font-weight: 700;
  4325. --bs-badge-color: #fff;
  4326. --bs-badge-border-radius: var(--bs-border-radius);
  4327. display: inline-block;
  4328. padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  4329. font-size: var(--bs-badge-font-size);
  4330. font-weight: var(--bs-badge-font-weight);
  4331. line-height: 1;
  4332. color: var(--bs-badge-color);
  4333. text-align: center;
  4334. white-space: nowrap;
  4335. vertical-align: baseline;
  4336. border-radius: var(--bs-badge-border-radius)
  4337. }
  4338. .badge:empty {
  4339. display: none
  4340. }
  4341. .btn .badge {
  4342. position: relative;
  4343. top: -1px
  4344. }
  4345. .alert {
  4346. --bs-alert-bg: transparent;
  4347. --bs-alert-padding-x: 1rem;
  4348. --bs-alert-padding-y: 1rem;
  4349. --bs-alert-margin-bottom: 1rem;
  4350. --bs-alert-color: inherit;
  4351. --bs-alert-border-color: transparent;
  4352. --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  4353. --bs-alert-border-radius: var(--bs-border-radius);
  4354. --bs-alert-link-color: inherit;
  4355. position: relative;
  4356. padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  4357. margin-bottom: var(--bs-alert-margin-bottom);
  4358. color: var(--bs-alert-color);
  4359. background-color: var(--bs-alert-bg);
  4360. border: var(--bs-alert-border);
  4361. border-radius: var(--bs-alert-border-radius)
  4362. }
  4363. .alert-heading {
  4364. color: inherit
  4365. }
  4366. .alert-link {
  4367. font-weight: 700;
  4368. color: var(--bs-alert-link-color)
  4369. }
  4370. .alert-dismissible {
  4371. padding-right: 3rem
  4372. }
  4373. .alert-dismissible .btn-close {
  4374. position: absolute;
  4375. top: 0;
  4376. right: 0;
  4377. z-index: 2;
  4378. padding: 1.25rem 1rem
  4379. }
  4380. .alert-primary {
  4381. --bs-alert-color: var(--bs-primary-text-emphasis);
  4382. --bs-alert-bg: var(--bs-primary-bg-subtle);
  4383. --bs-alert-border-color: var(--bs-primary-border-subtle);
  4384. --bs-alert-link-color: var(--bs-primary-text-emphasis)
  4385. }
  4386. .alert-secondary {
  4387. --bs-alert-color: var(--bs-secondary-text-emphasis);
  4388. --bs-alert-bg: var(--bs-secondary-bg-subtle);
  4389. --bs-alert-border-color: var(--bs-secondary-border-subtle);
  4390. --bs-alert-link-color: var(--bs-secondary-text-emphasis)
  4391. }
  4392. .alert-success {
  4393. --bs-alert-color: var(--bs-success-text-emphasis);
  4394. --bs-alert-bg: var(--bs-success-bg-subtle);
  4395. --bs-alert-border-color: var(--bs-success-border-subtle);
  4396. --bs-alert-link-color: var(--bs-success-text-emphasis)
  4397. }
  4398. .alert-info {
  4399. --bs-alert-color: var(--bs-info-text-emphasis);
  4400. --bs-alert-bg: var(--bs-info-bg-subtle);
  4401. --bs-alert-border-color: var(--bs-info-border-subtle);
  4402. --bs-alert-link-color: var(--bs-info-text-emphasis)
  4403. }
  4404. .alert-warning {
  4405. --bs-alert-color: var(--bs-warning-text-emphasis);
  4406. --bs-alert-bg: var(--bs-warning-bg-subtle);
  4407. --bs-alert-border-color: var(--bs-warning-border-subtle);
  4408. --bs-alert-link-color: var(--bs-warning-text-emphasis)
  4409. }
  4410. .alert-danger {
  4411. --bs-alert-color: var(--bs-danger-text-emphasis);
  4412. --bs-alert-bg: var(--bs-danger-bg-subtle);
  4413. --bs-alert-border-color: var(--bs-danger-border-subtle);
  4414. --bs-alert-link-color: var(--bs-danger-text-emphasis)
  4415. }
  4416. .alert-light {
  4417. --bs-alert-color: var(--bs-light-text-emphasis);
  4418. --bs-alert-bg: var(--bs-light-bg-subtle);
  4419. --bs-alert-border-color: var(--bs-light-border-subtle);
  4420. --bs-alert-link-color: var(--bs-light-text-emphasis)
  4421. }
  4422. .alert-dark {
  4423. --bs-alert-color: var(--bs-dark-text-emphasis);
  4424. --bs-alert-bg: var(--bs-dark-bg-subtle);
  4425. --bs-alert-border-color: var(--bs-dark-border-subtle);
  4426. --bs-alert-link-color: var(--bs-dark-text-emphasis)
  4427. }
  4428. @keyframes progress-bar-stripes {
  4429. 0% {
  4430. background-position-x: 1rem
  4431. }
  4432. }
  4433. .progress, .progress-stacked {
  4434. --bs-progress-height: 1rem;
  4435. --bs-progress-font-size: 0.75rem;
  4436. --bs-progress-bg: var(--bs-secondary-bg);
  4437. --bs-progress-border-radius: var(--bs-border-radius);
  4438. --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  4439. --bs-progress-bar-color: #fff;
  4440. --bs-progress-bar-bg: #0d6efd;
  4441. --bs-progress-bar-transition: width 0.6s ease;
  4442. display: flex;
  4443. height: var(--bs-progress-height);
  4444. overflow: hidden;
  4445. font-size: var(--bs-progress-font-size);
  4446. background-color: var(--bs-progress-bg);
  4447. border-radius: var(--bs-progress-border-radius)
  4448. }
  4449. .progress-bar {
  4450. display: flex;
  4451. flex-direction: column;
  4452. justify-content: center;
  4453. overflow: hidden;
  4454. color: var(--bs-progress-bar-color);
  4455. text-align: center;
  4456. white-space: nowrap;
  4457. background-color: var(--bs-progress-bar-bg);
  4458. transition: var(--bs-progress-bar-transition)
  4459. }
  4460. @media (prefers-reduced-motion: reduce) {
  4461. .progress-bar {
  4462. transition: none
  4463. }
  4464. }
  4465. .progress-bar-striped {
  4466. background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
  4467. background-size: var(--bs-progress-height) var(--bs-progress-height)
  4468. }
  4469. .progress-stacked > .progress {
  4470. overflow: visible
  4471. }
  4472. .progress-stacked > .progress > .progress-bar {
  4473. width: 100%
  4474. }
  4475. .progress-bar-animated {
  4476. animation: 1s linear infinite progress-bar-stripes
  4477. }
  4478. @media (prefers-reduced-motion: reduce) {
  4479. .progress-bar-animated {
  4480. animation: none
  4481. }
  4482. }
  4483. .list-group {
  4484. --bs-list-group-color: var(--bs-body-color);
  4485. --bs-list-group-bg: var(--bs-body-bg);
  4486. --bs-list-group-border-color: var(--bs-border-color);
  4487. --bs-list-group-border-width: var(--bs-border-width);
  4488. --bs-list-group-border-radius: var(--bs-border-radius);
  4489. --bs-list-group-item-padding-x: 1rem;
  4490. --bs-list-group-item-padding-y: 0.5rem;
  4491. --bs-list-group-action-color: var(--bs-secondary-color);
  4492. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4493. --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  4494. --bs-list-group-action-active-color: var(--bs-body-color);
  4495. --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  4496. --bs-list-group-disabled-color: var(--bs-secondary-color);
  4497. --bs-list-group-disabled-bg: var(--bs-body-bg);
  4498. --bs-list-group-active-color: #fff;
  4499. --bs-list-group-active-bg: #0d6efd;
  4500. --bs-list-group-active-border-color: #0d6efd;
  4501. display: flex;
  4502. flex-direction: column;
  4503. padding-left: 0;
  4504. margin-bottom: 0;
  4505. border-radius: var(--bs-list-group-border-radius)
  4506. }
  4507. .list-group-numbered {
  4508. list-style-type: none;
  4509. counter-reset: section
  4510. }
  4511. .list-group-numbered > .list-group-item::before {
  4512. content: counters(section, ".") ". ";
  4513. counter-increment: section
  4514. }
  4515. .list-group-item-action {
  4516. width: 100%;
  4517. color: var(--bs-list-group-action-color);
  4518. text-align: inherit
  4519. }
  4520. .list-group-item-action:focus, .list-group-item-action:hover {
  4521. z-index: 1;
  4522. color: var(--bs-list-group-action-hover-color);
  4523. text-decoration: none;
  4524. background-color: var(--bs-list-group-action-hover-bg)
  4525. }
  4526. .list-group-item-action:active {
  4527. color: var(--bs-list-group-action-active-color);
  4528. background-color: var(--bs-list-group-action-active-bg)
  4529. }
  4530. .list-group-item {
  4531. position: relative;
  4532. display: block;
  4533. padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  4534. color: var(--bs-list-group-color);
  4535. text-decoration: none;
  4536. background-color: var(--bs-list-group-bg);
  4537. border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)
  4538. }
  4539. .list-group-item:first-child {
  4540. border-top-left-radius: inherit;
  4541. border-top-right-radius: inherit
  4542. }
  4543. .list-group-item:last-child {
  4544. border-bottom-right-radius: inherit;
  4545. border-bottom-left-radius: inherit
  4546. }
  4547. .list-group-item.disabled, .list-group-item:disabled {
  4548. color: var(--bs-list-group-disabled-color);
  4549. pointer-events: none;
  4550. background-color: var(--bs-list-group-disabled-bg)
  4551. }
  4552. .list-group-item.active {
  4553. z-index: 2;
  4554. color: var(--bs-list-group-active-color);
  4555. background-color: var(--bs-list-group-active-bg);
  4556. border-color: var(--bs-list-group-active-border-color)
  4557. }
  4558. .list-group-item + .list-group-item {
  4559. border-top-width: 0
  4560. }
  4561. .list-group-item + .list-group-item.active {
  4562. margin-top: calc(-1 * var(--bs-list-group-border-width));
  4563. border-top-width: var(--bs-list-group-border-width)
  4564. }
  4565. .list-group-horizontal {
  4566. flex-direction: row
  4567. }
  4568. .list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  4569. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4570. border-top-right-radius: 0
  4571. }
  4572. .list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  4573. border-top-right-radius: var(--bs-list-group-border-radius);
  4574. border-bottom-left-radius: 0
  4575. }
  4576. .list-group-horizontal > .list-group-item.active {
  4577. margin-top: 0
  4578. }
  4579. .list-group-horizontal > .list-group-item + .list-group-item {
  4580. border-top-width: var(--bs-list-group-border-width);
  4581. border-left-width: 0
  4582. }
  4583. .list-group-horizontal > .list-group-item + .list-group-item.active {
  4584. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4585. border-left-width: var(--bs-list-group-border-width)
  4586. }
  4587. @media (min-width: 576px) {
  4588. .list-group-horizontal-sm {
  4589. flex-direction: row
  4590. }
  4591. .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
  4592. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4593. border-top-right-radius: 0
  4594. }
  4595. .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
  4596. border-top-right-radius: var(--bs-list-group-border-radius);
  4597. border-bottom-left-radius: 0
  4598. }
  4599. .list-group-horizontal-sm > .list-group-item.active {
  4600. margin-top: 0
  4601. }
  4602. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  4603. border-top-width: var(--bs-list-group-border-width);
  4604. border-left-width: 0
  4605. }
  4606. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  4607. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4608. border-left-width: var(--bs-list-group-border-width)
  4609. }
  4610. }
  4611. @media (min-width: 768px) {
  4612. .list-group-horizontal-md {
  4613. flex-direction: row
  4614. }
  4615. .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
  4616. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4617. border-top-right-radius: 0
  4618. }
  4619. .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
  4620. border-top-right-radius: var(--bs-list-group-border-radius);
  4621. border-bottom-left-radius: 0
  4622. }
  4623. .list-group-horizontal-md > .list-group-item.active {
  4624. margin-top: 0
  4625. }
  4626. .list-group-horizontal-md > .list-group-item + .list-group-item {
  4627. border-top-width: var(--bs-list-group-border-width);
  4628. border-left-width: 0
  4629. }
  4630. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  4631. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4632. border-left-width: var(--bs-list-group-border-width)
  4633. }
  4634. }
  4635. @media (min-width: 992px) {
  4636. .list-group-horizontal-lg {
  4637. flex-direction: row
  4638. }
  4639. .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
  4640. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4641. border-top-right-radius: 0
  4642. }
  4643. .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
  4644. border-top-right-radius: var(--bs-list-group-border-radius);
  4645. border-bottom-left-radius: 0
  4646. }
  4647. .list-group-horizontal-lg > .list-group-item.active {
  4648. margin-top: 0
  4649. }
  4650. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  4651. border-top-width: var(--bs-list-group-border-width);
  4652. border-left-width: 0
  4653. }
  4654. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  4655. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4656. border-left-width: var(--bs-list-group-border-width)
  4657. }
  4658. }
  4659. @media (min-width: 1200px) {
  4660. .list-group-horizontal-xl {
  4661. flex-direction: row
  4662. }
  4663. .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
  4664. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4665. border-top-right-radius: 0
  4666. }
  4667. .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
  4668. border-top-right-radius: var(--bs-list-group-border-radius);
  4669. border-bottom-left-radius: 0
  4670. }
  4671. .list-group-horizontal-xl > .list-group-item.active {
  4672. margin-top: 0
  4673. }
  4674. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  4675. border-top-width: var(--bs-list-group-border-width);
  4676. border-left-width: 0
  4677. }
  4678. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  4679. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4680. border-left-width: var(--bs-list-group-border-width)
  4681. }
  4682. }
  4683. @media (min-width: 1400px) {
  4684. .list-group-horizontal-xxl {
  4685. flex-direction: row
  4686. }
  4687. .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
  4688. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4689. border-top-right-radius: 0
  4690. }
  4691. .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
  4692. border-top-right-radius: var(--bs-list-group-border-radius);
  4693. border-bottom-left-radius: 0
  4694. }
  4695. .list-group-horizontal-xxl > .list-group-item.active {
  4696. margin-top: 0
  4697. }
  4698. .list-group-horizontal-xxl > .list-group-item + .list-group-item {
  4699. border-top-width: var(--bs-list-group-border-width);
  4700. border-left-width: 0
  4701. }
  4702. .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
  4703. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4704. border-left-width: var(--bs-list-group-border-width)
  4705. }
  4706. }
  4707. .list-group-flush {
  4708. border-radius: 0
  4709. }
  4710. .list-group-flush > .list-group-item {
  4711. border-width: 0 0 var(--bs-list-group-border-width)
  4712. }
  4713. .list-group-flush > .list-group-item:last-child {
  4714. border-bottom-width: 0
  4715. }
  4716. .list-group-item-primary {
  4717. --bs-list-group-color: var(--bs-primary-text-emphasis);
  4718. --bs-list-group-bg: var(--bs-primary-bg-subtle);
  4719. --bs-list-group-border-color: var(--bs-primary-border-subtle);
  4720. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4721. --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  4722. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4723. --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  4724. --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  4725. --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  4726. --bs-list-group-active-border-color: var(--bs-primary-text-emphasis)
  4727. }
  4728. .list-group-item-secondary {
  4729. --bs-list-group-color: var(--bs-secondary-text-emphasis);
  4730. --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  4731. --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  4732. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4733. --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  4734. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4735. --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  4736. --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  4737. --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  4738. --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis)
  4739. }
  4740. .list-group-item-success {
  4741. --bs-list-group-color: var(--bs-success-text-emphasis);
  4742. --bs-list-group-bg: var(--bs-success-bg-subtle);
  4743. --bs-list-group-border-color: var(--bs-success-border-subtle);
  4744. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4745. --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  4746. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4747. --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  4748. --bs-list-group-active-color: var(--bs-success-bg-subtle);
  4749. --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  4750. --bs-list-group-active-border-color: var(--bs-success-text-emphasis)
  4751. }
  4752. .list-group-item-info {
  4753. --bs-list-group-color: var(--bs-info-text-emphasis);
  4754. --bs-list-group-bg: var(--bs-info-bg-subtle);
  4755. --bs-list-group-border-color: var(--bs-info-border-subtle);
  4756. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4757. --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  4758. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4759. --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  4760. --bs-list-group-active-color: var(--bs-info-bg-subtle);
  4761. --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  4762. --bs-list-group-active-border-color: var(--bs-info-text-emphasis)
  4763. }
  4764. .list-group-item-warning {
  4765. --bs-list-group-color: var(--bs-warning-text-emphasis);
  4766. --bs-list-group-bg: var(--bs-warning-bg-subtle);
  4767. --bs-list-group-border-color: var(--bs-warning-border-subtle);
  4768. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4769. --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  4770. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4771. --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  4772. --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  4773. --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  4774. --bs-list-group-active-border-color: var(--bs-warning-text-emphasis)
  4775. }
  4776. .list-group-item-danger {
  4777. --bs-list-group-color: var(--bs-danger-text-emphasis);
  4778. --bs-list-group-bg: var(--bs-danger-bg-subtle);
  4779. --bs-list-group-border-color: var(--bs-danger-border-subtle);
  4780. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4781. --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  4782. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4783. --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  4784. --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  4785. --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  4786. --bs-list-group-active-border-color: var(--bs-danger-text-emphasis)
  4787. }
  4788. .list-group-item-light {
  4789. --bs-list-group-color: var(--bs-light-text-emphasis);
  4790. --bs-list-group-bg: var(--bs-light-bg-subtle);
  4791. --bs-list-group-border-color: var(--bs-light-border-subtle);
  4792. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4793. --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  4794. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4795. --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  4796. --bs-list-group-active-color: var(--bs-light-bg-subtle);
  4797. --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  4798. --bs-list-group-active-border-color: var(--bs-light-text-emphasis)
  4799. }
  4800. .list-group-item-dark {
  4801. --bs-list-group-color: var(--bs-dark-text-emphasis);
  4802. --bs-list-group-bg: var(--bs-dark-bg-subtle);
  4803. --bs-list-group-border-color: var(--bs-dark-border-subtle);
  4804. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4805. --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  4806. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4807. --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  4808. --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  4809. --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  4810. --bs-list-group-active-border-color: var(--bs-dark-text-emphasis)
  4811. }
  4812. .btn-close {
  4813. --bs-btn-close-color: #000;
  4814. --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");
  4815. --bs-btn-close-opacity: 0.5;
  4816. --bs-btn-close-hover-opacity: 0.75;
  4817. --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4818. --bs-btn-close-focus-opacity: 1;
  4819. --bs-btn-close-disabled-opacity: 0.25;
  4820. --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  4821. box-sizing: content-box;
  4822. width: 1em;
  4823. height: 1em;
  4824. padding: .25em .25em;
  4825. color: var(--bs-btn-close-color);
  4826. background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  4827. border: 0;
  4828. border-radius: .375rem;
  4829. opacity: var(--bs-btn-close-opacity)
  4830. }
  4831. .btn-close:hover {
  4832. color: var(--bs-btn-close-color);
  4833. text-decoration: none;
  4834. opacity: var(--bs-btn-close-hover-opacity)
  4835. }
  4836. .btn-close:focus {
  4837. outline: 0;
  4838. box-shadow: var(--bs-btn-close-focus-shadow);
  4839. opacity: var(--bs-btn-close-focus-opacity)
  4840. }
  4841. .btn-close.disabled, .btn-close:disabled {
  4842. pointer-events: none;
  4843. -webkit-user-select: none;
  4844. -moz-user-select: none;
  4845. user-select: none;
  4846. opacity: var(--bs-btn-close-disabled-opacity)
  4847. }
  4848. .btn-close-white {
  4849. filter: var(--bs-btn-close-white-filter)
  4850. }
  4851. [data-bs-theme=dark] .btn-close {
  4852. filter: var(--bs-btn-close-white-filter)
  4853. }
  4854. .toast {
  4855. --bs-toast-zindex: 1090;
  4856. --bs-toast-padding-x: 0.75rem;
  4857. --bs-toast-padding-y: 0.5rem;
  4858. --bs-toast-spacing: 1.5rem;
  4859. --bs-toast-max-width: 350px;
  4860. --bs-toast-font-size: 0.875rem;
  4861. --bs-toast-color: ;
  4862. --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  4863. --bs-toast-border-width: var(--bs-border-width);
  4864. --bs-toast-border-color: var(--bs-border-color-translucent);
  4865. --bs-toast-border-radius: var(--bs-border-radius);
  4866. --bs-toast-box-shadow: var(--bs-box-shadow);
  4867. --bs-toast-header-color: var(--bs-secondary-color);
  4868. --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  4869. --bs-toast-header-border-color: var(--bs-border-color-translucent);
  4870. width: var(--bs-toast-max-width);
  4871. max-width: 100%;
  4872. font-size: var(--bs-toast-font-size);
  4873. color: var(--bs-toast-color);
  4874. pointer-events: auto;
  4875. background-color: var(--bs-toast-bg);
  4876. background-clip: padding-box;
  4877. border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  4878. box-shadow: var(--bs-toast-box-shadow);
  4879. border-radius: var(--bs-toast-border-radius)
  4880. }
  4881. .toast.showing {
  4882. opacity: 0
  4883. }
  4884. .toast:not(.show) {
  4885. display: none
  4886. }
  4887. .toast-container {
  4888. --bs-toast-zindex: 1090;
  4889. position: absolute;
  4890. z-index: var(--bs-toast-zindex);
  4891. width: -webkit-max-content;
  4892. width: -moz-max-content;
  4893. width: max-content;
  4894. max-width: 100%;
  4895. pointer-events: none
  4896. }
  4897. .toast-container > :not(:last-child) {
  4898. margin-bottom: var(--bs-toast-spacing)
  4899. }
  4900. .toast-header {
  4901. display: flex;
  4902. align-items: center;
  4903. padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  4904. color: var(--bs-toast-header-color);
  4905. background-color: var(--bs-toast-header-bg);
  4906. background-clip: padding-box;
  4907. border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  4908. border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  4909. border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))
  4910. }
  4911. .toast-header .btn-close {
  4912. margin-right: calc(-.5 * var(--bs-toast-padding-x));
  4913. margin-left: var(--bs-toast-padding-x)
  4914. }
  4915. .toast-body {
  4916. padding: var(--bs-toast-padding-x);
  4917. word-wrap: break-word
  4918. }
  4919. .modal {
  4920. --bs-modal-zindex: 1055;
  4921. --bs-modal-width: 500px;
  4922. --bs-modal-padding: 1rem;
  4923. --bs-modal-margin: 0.5rem;
  4924. --bs-modal-color: ;
  4925. --bs-modal-bg: var(--bs-body-bg);
  4926. --bs-modal-border-color: var(--bs-border-color-translucent);
  4927. --bs-modal-border-width: var(--bs-border-width);
  4928. --bs-modal-border-radius: var(--bs-border-radius-lg);
  4929. --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  4930. --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  4931. --bs-modal-header-padding-x: 1rem;
  4932. --bs-modal-header-padding-y: 1rem;
  4933. --bs-modal-header-padding: 1rem 1rem;
  4934. --bs-modal-header-border-color: var(--bs-border-color);
  4935. --bs-modal-header-border-width: var(--bs-border-width);
  4936. --bs-modal-title-line-height: 1.5;
  4937. --bs-modal-footer-gap: 0.5rem;
  4938. --bs-modal-footer-bg: ;
  4939. --bs-modal-footer-border-color: var(--bs-border-color);
  4940. --bs-modal-footer-border-width: var(--bs-border-width);
  4941. position: fixed;
  4942. top: 0;
  4943. left: 0;
  4944. z-index: var(--bs-modal-zindex);
  4945. display: none;
  4946. width: 100%;
  4947. height: 100%;
  4948. overflow-x: hidden;
  4949. overflow-y: auto;
  4950. outline: 0
  4951. }
  4952. .modal-dialog {
  4953. position: relative;
  4954. width: auto;
  4955. margin: var(--bs-modal-margin);
  4956. pointer-events: none
  4957. }
  4958. .modal.fade .modal-dialog {
  4959. transition: transform .3s ease-out;
  4960. transform: translate(0, -50px)
  4961. }
  4962. @media (prefers-reduced-motion: reduce) {
  4963. .modal.fade .modal-dialog {
  4964. transition: none
  4965. }
  4966. }
  4967. .modal.show .modal-dialog {
  4968. transform: none
  4969. }
  4970. .modal.modal-static .modal-dialog {
  4971. transform: scale(1.02)
  4972. }
  4973. .modal-dialog-scrollable {
  4974. height: calc(100% - var(--bs-modal-margin) * 2)
  4975. }
  4976. .modal-dialog-scrollable .modal-content {
  4977. max-height: 100%;
  4978. overflow: hidden
  4979. }
  4980. .modal-dialog-scrollable .modal-body {
  4981. overflow-y: auto
  4982. }
  4983. .modal-dialog-centered {
  4984. display: flex;
  4985. align-items: center;
  4986. min-height: calc(100% - var(--bs-modal-margin) * 2)
  4987. }
  4988. .modal-content {
  4989. position: relative;
  4990. display: flex;
  4991. flex-direction: column;
  4992. width: 100%;
  4993. color: var(--bs-modal-color);
  4994. pointer-events: auto;
  4995. background-color: var(--bs-modal-bg);
  4996. background-clip: padding-box;
  4997. border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  4998. border-radius: var(--bs-modal-border-radius);
  4999. outline: 0
  5000. }
  5001. .modal-backdrop {
  5002. --bs-backdrop-zindex: 1050;
  5003. --bs-backdrop-bg: #000;
  5004. --bs-backdrop-opacity: 0.5;
  5005. position: fixed;
  5006. top: 0;
  5007. left: 0;
  5008. z-index: var(--bs-backdrop-zindex);
  5009. width: 100vw;
  5010. height: 100vh;
  5011. background-color: var(--bs-backdrop-bg)
  5012. }
  5013. .modal-backdrop.fade {
  5014. opacity: 0
  5015. }
  5016. .modal-backdrop.show {
  5017. opacity: var(--bs-backdrop-opacity)
  5018. }
  5019. .modal-header {
  5020. display: flex;
  5021. flex-shrink: 0;
  5022. align-items: center;
  5023. padding: var(--bs-modal-header-padding);
  5024. border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  5025. border-top-left-radius: var(--bs-modal-inner-border-radius);
  5026. border-top-right-radius: var(--bs-modal-inner-border-radius)
  5027. }
  5028. .modal-header .btn-close {
  5029. padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
  5030. margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto
  5031. }
  5032. .modal-title {
  5033. margin-bottom: 0;
  5034. line-height: var(--bs-modal-title-line-height)
  5035. }
  5036. .modal-body {
  5037. position: relative;
  5038. flex: 1 1 auto;
  5039. padding: var(--bs-modal-padding)
  5040. }
  5041. .modal-footer {
  5042. display: flex;
  5043. flex-shrink: 0;
  5044. flex-wrap: wrap;
  5045. align-items: center;
  5046. justify-content: flex-end;
  5047. padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
  5048. background-color: var(--bs-modal-footer-bg);
  5049. border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  5050. border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  5051. border-bottom-left-radius: var(--bs-modal-inner-border-radius)
  5052. }
  5053. .modal-footer > * {
  5054. margin: calc(var(--bs-modal-footer-gap) * .5)
  5055. }
  5056. @media (min-width: 576px) {
  5057. .modal {
  5058. --bs-modal-margin: 1.75rem;
  5059. --bs-modal-box-shadow: var(--bs-box-shadow)
  5060. }
  5061. .modal-dialog {
  5062. max-width: var(--bs-modal-width);
  5063. margin-right: auto;
  5064. margin-left: auto
  5065. }
  5066. .modal-sm {
  5067. --bs-modal-width: 300px
  5068. }
  5069. }
  5070. @media (min-width: 992px) {
  5071. .modal-lg, .modal-xl {
  5072. --bs-modal-width: 800px
  5073. }
  5074. }
  5075. @media (min-width: 1200px) {
  5076. .modal-xl {
  5077. --bs-modal-width: 1140px
  5078. }
  5079. }
  5080. .modal-fullscreen {
  5081. width: 100vw;
  5082. max-width: none;
  5083. height: 100%;
  5084. margin: 0
  5085. }
  5086. .modal-fullscreen .modal-content {
  5087. height: 100%;
  5088. border: 0;
  5089. border-radius: 0
  5090. }
  5091. .modal-fullscreen .modal-footer, .modal-fullscreen .modal-header {
  5092. border-radius: 0
  5093. }
  5094. .modal-fullscreen .modal-body {
  5095. overflow-y: auto
  5096. }
  5097. @media (max-width: 575.98px) {
  5098. .modal-fullscreen-sm-down {
  5099. width: 100vw;
  5100. max-width: none;
  5101. height: 100%;
  5102. margin: 0
  5103. }
  5104. .modal-fullscreen-sm-down .modal-content {
  5105. height: 100%;
  5106. border: 0;
  5107. border-radius: 0
  5108. }
  5109. .modal-fullscreen-sm-down .modal-footer, .modal-fullscreen-sm-down .modal-header {
  5110. border-radius: 0
  5111. }
  5112. .modal-fullscreen-sm-down .modal-body {
  5113. overflow-y: auto
  5114. }
  5115. }
  5116. @media (max-width: 767.98px) {
  5117. .modal-fullscreen-md-down {
  5118. width: 100vw;
  5119. max-width: none;
  5120. height: 100%;
  5121. margin: 0
  5122. }
  5123. .modal-fullscreen-md-down .modal-content {
  5124. height: 100%;
  5125. border: 0;
  5126. border-radius: 0
  5127. }
  5128. .modal-fullscreen-md-down .modal-footer, .modal-fullscreen-md-down .modal-header {
  5129. border-radius: 0
  5130. }
  5131. .modal-fullscreen-md-down .modal-body {
  5132. overflow-y: auto
  5133. }
  5134. }
  5135. @media (max-width: 991.98px) {
  5136. .modal-fullscreen-lg-down {
  5137. width: 100vw;
  5138. max-width: none;
  5139. height: 100%;
  5140. margin: 0
  5141. }
  5142. .modal-fullscreen-lg-down .modal-content {
  5143. height: 100%;
  5144. border: 0;
  5145. border-radius: 0
  5146. }
  5147. .modal-fullscreen-lg-down .modal-footer, .modal-fullscreen-lg-down .modal-header {
  5148. border-radius: 0
  5149. }
  5150. .modal-fullscreen-lg-down .modal-body {
  5151. overflow-y: auto
  5152. }
  5153. }
  5154. @media (max-width: 1199.98px) {
  5155. .modal-fullscreen-xl-down {
  5156. width: 100vw;
  5157. max-width: none;
  5158. height: 100%;
  5159. margin: 0
  5160. }
  5161. .modal-fullscreen-xl-down .modal-content {
  5162. height: 100%;
  5163. border: 0;
  5164. border-radius: 0
  5165. }
  5166. .modal-fullscreen-xl-down .modal-footer, .modal-fullscreen-xl-down .modal-header {
  5167. border-radius: 0
  5168. }
  5169. .modal-fullscreen-xl-down .modal-body {
  5170. overflow-y: auto
  5171. }
  5172. }
  5173. @media (max-width: 1399.98px) {
  5174. .modal-fullscreen-xxl-down {
  5175. width: 100vw;
  5176. max-width: none;
  5177. height: 100%;
  5178. margin: 0
  5179. }
  5180. .modal-fullscreen-xxl-down .modal-content {
  5181. height: 100%;
  5182. border: 0;
  5183. border-radius: 0
  5184. }
  5185. .modal-fullscreen-xxl-down .modal-footer, .modal-fullscreen-xxl-down .modal-header {
  5186. border-radius: 0
  5187. }
  5188. .modal-fullscreen-xxl-down .modal-body {
  5189. overflow-y: auto
  5190. }
  5191. }
  5192. .tooltip {
  5193. --bs-tooltip-zindex: 1080;
  5194. --bs-tooltip-max-width: 200px;
  5195. --bs-tooltip-padding-x: 0.5rem;
  5196. --bs-tooltip-padding-y: 0.25rem;
  5197. --bs-tooltip-margin: ;
  5198. --bs-tooltip-font-size: 0.875rem;
  5199. --bs-tooltip-color: var(--bs-body-bg);
  5200. --bs-tooltip-bg: var(--bs-emphasis-color);
  5201. --bs-tooltip-border-radius: var(--bs-border-radius);
  5202. --bs-tooltip-opacity: 0.9;
  5203. --bs-tooltip-arrow-width: 0.8rem;
  5204. --bs-tooltip-arrow-height: 0.4rem;
  5205. z-index: var(--bs-tooltip-zindex);
  5206. display: block;
  5207. margin: var(--bs-tooltip-margin);
  5208. font-family: var(--bs-font-sans-serif);
  5209. font-style: normal;
  5210. font-weight: 400;
  5211. line-height: 1.5;
  5212. text-align: left;
  5213. text-align: start;
  5214. text-decoration: none;
  5215. text-shadow: none;
  5216. text-transform: none;
  5217. letter-spacing: normal;
  5218. word-break: normal;
  5219. white-space: normal;
  5220. word-spacing: normal;
  5221. line-break: auto;
  5222. font-size: var(--bs-tooltip-font-size);
  5223. word-wrap: break-word;
  5224. opacity: 0
  5225. }
  5226. .tooltip.show {
  5227. opacity: var(--bs-tooltip-opacity)
  5228. }
  5229. .tooltip .tooltip-arrow {
  5230. display: block;
  5231. width: var(--bs-tooltip-arrow-width);
  5232. height: var(--bs-tooltip-arrow-height)
  5233. }
  5234. .tooltip .tooltip-arrow::before {
  5235. position: absolute;
  5236. content: "";
  5237. border-color: transparent;
  5238. border-style: solid
  5239. }
  5240. .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow, .bs-tooltip-top .tooltip-arrow {
  5241. bottom: calc(-1 * var(--bs-tooltip-arrow-height))
  5242. }
  5243. .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before, .bs-tooltip-top .tooltip-arrow::before {
  5244. top: -1px;
  5245. border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;
  5246. border-top-color: var(--bs-tooltip-bg)
  5247. }
  5248. .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow, .bs-tooltip-end .tooltip-arrow {
  5249. left: calc(-1 * var(--bs-tooltip-arrow-height));
  5250. width: var(--bs-tooltip-arrow-height);
  5251. height: var(--bs-tooltip-arrow-width)
  5252. }
  5253. .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before, .bs-tooltip-end .tooltip-arrow::before {
  5254. right: -1px;
  5255. border-width: calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;
  5256. border-right-color: var(--bs-tooltip-bg)
  5257. }
  5258. .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow, .bs-tooltip-bottom .tooltip-arrow {
  5259. top: calc(-1 * var(--bs-tooltip-arrow-height))
  5260. }
  5261. .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before, .bs-tooltip-bottom .tooltip-arrow::before {
  5262. bottom: -1px;
  5263. border-width: 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);
  5264. border-bottom-color: var(--bs-tooltip-bg)
  5265. }
  5266. .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow, .bs-tooltip-start .tooltip-arrow {
  5267. right: calc(-1 * var(--bs-tooltip-arrow-height));
  5268. width: var(--bs-tooltip-arrow-height);
  5269. height: var(--bs-tooltip-arrow-width)
  5270. }
  5271. .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before, .bs-tooltip-start .tooltip-arrow::before {
  5272. left: -1px;
  5273. border-width: calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);
  5274. border-left-color: var(--bs-tooltip-bg)
  5275. }
  5276. .tooltip-inner {
  5277. max-width: var(--bs-tooltip-max-width);
  5278. padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  5279. color: var(--bs-tooltip-color);
  5280. text-align: center;
  5281. background-color: var(--bs-tooltip-bg);
  5282. border-radius: var(--bs-tooltip-border-radius)
  5283. }
  5284. .popover {
  5285. --bs-popover-zindex: 1070;
  5286. --bs-popover-max-width: 276px;
  5287. --bs-popover-font-size: 0.875rem;
  5288. --bs-popover-bg: var(--bs-body-bg);
  5289. --bs-popover-border-width: var(--bs-border-width);
  5290. --bs-popover-border-color: var(--bs-border-color-translucent);
  5291. --bs-popover-border-radius: var(--bs-border-radius-lg);
  5292. --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
  5293. --bs-popover-box-shadow: var(--bs-box-shadow);
  5294. --bs-popover-header-padding-x: 1rem;
  5295. --bs-popover-header-padding-y: 0.5rem;
  5296. --bs-popover-header-font-size: 1rem;
  5297. --bs-popover-header-color: inherit;
  5298. --bs-popover-header-bg: var(--bs-secondary-bg);
  5299. --bs-popover-body-padding-x: 1rem;
  5300. --bs-popover-body-padding-y: 1rem;
  5301. --bs-popover-body-color: var(--bs-body-color);
  5302. --bs-popover-arrow-width: 1rem;
  5303. --bs-popover-arrow-height: 0.5rem;
  5304. --bs-popover-arrow-border: var(--bs-popover-border-color);
  5305. z-index: var(--bs-popover-zindex);
  5306. display: block;
  5307. max-width: var(--bs-popover-max-width);
  5308. font-family: var(--bs-font-sans-serif);
  5309. font-style: normal;
  5310. font-weight: 400;
  5311. line-height: 1.5;
  5312. text-align: left;
  5313. text-align: start;
  5314. text-decoration: none;
  5315. text-shadow: none;
  5316. text-transform: none;
  5317. letter-spacing: normal;
  5318. word-break: normal;
  5319. white-space: normal;
  5320. word-spacing: normal;
  5321. line-break: auto;
  5322. font-size: var(--bs-popover-font-size);
  5323. word-wrap: break-word;
  5324. background-color: var(--bs-popover-bg);
  5325. background-clip: padding-box;
  5326. border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5327. border-radius: var(--bs-popover-border-radius)
  5328. }
  5329. .popover .popover-arrow {
  5330. display: block;
  5331. width: var(--bs-popover-arrow-width);
  5332. height: var(--bs-popover-arrow-height)
  5333. }
  5334. .popover .popover-arrow::after, .popover .popover-arrow::before {
  5335. position: absolute;
  5336. display: block;
  5337. content: "";
  5338. border-color: transparent;
  5339. border-style: solid;
  5340. border-width: 0
  5341. }
  5342. .bs-popover-auto[data-popper-placement^=top] > .popover-arrow, .bs-popover-top > .popover-arrow {
  5343. bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))
  5344. }
  5345. .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-top > .popover-arrow::before {
  5346. border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0
  5347. }
  5348. .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::before {
  5349. bottom: 0;
  5350. border-top-color: var(--bs-popover-arrow-border)
  5351. }
  5352. .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after, .bs-popover-top > .popover-arrow::after {
  5353. bottom: var(--bs-popover-border-width);
  5354. border-top-color: var(--bs-popover-bg)
  5355. }
  5356. .bs-popover-auto[data-popper-placement^=right] > .popover-arrow, .bs-popover-end > .popover-arrow {
  5357. left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5358. width: var(--bs-popover-arrow-height);
  5359. height: var(--bs-popover-arrow-width)
  5360. }
  5361. .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-end > .popover-arrow::before {
  5362. border-width: calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0
  5363. }
  5364. .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::before {
  5365. left: 0;
  5366. border-right-color: var(--bs-popover-arrow-border)
  5367. }
  5368. .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after, .bs-popover-end > .popover-arrow::after {
  5369. left: var(--bs-popover-border-width);
  5370. border-right-color: var(--bs-popover-bg)
  5371. }
  5372. .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow, .bs-popover-bottom > .popover-arrow {
  5373. top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))
  5374. }
  5375. .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-bottom > .popover-arrow::before {
  5376. border-width: 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)
  5377. }
  5378. .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::before {
  5379. top: 0;
  5380. border-bottom-color: var(--bs-popover-arrow-border)
  5381. }
  5382. .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after, .bs-popover-bottom > .popover-arrow::after {
  5383. top: var(--bs-popover-border-width);
  5384. border-bottom-color: var(--bs-popover-bg)
  5385. }
  5386. .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before, .bs-popover-bottom .popover-header::before {
  5387. position: absolute;
  5388. top: 0;
  5389. left: 50%;
  5390. display: block;
  5391. width: var(--bs-popover-arrow-width);
  5392. margin-left: calc(-.5 * var(--bs-popover-arrow-width));
  5393. content: "";
  5394. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg)
  5395. }
  5396. .bs-popover-auto[data-popper-placement^=left] > .popover-arrow, .bs-popover-start > .popover-arrow {
  5397. right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5398. width: var(--bs-popover-arrow-height);
  5399. height: var(--bs-popover-arrow-width)
  5400. }
  5401. .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-start > .popover-arrow::before {
  5402. border-width: calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height)
  5403. }
  5404. .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::before {
  5405. right: 0;
  5406. border-left-color: var(--bs-popover-arrow-border)
  5407. }
  5408. .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after, .bs-popover-start > .popover-arrow::after {
  5409. right: var(--bs-popover-border-width);
  5410. border-left-color: var(--bs-popover-bg)
  5411. }
  5412. .popover-header {
  5413. padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  5414. margin-bottom: 0;
  5415. font-size: var(--bs-popover-header-font-size);
  5416. color: var(--bs-popover-header-color);
  5417. background-color: var(--bs-popover-header-bg);
  5418. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5419. border-top-left-radius: var(--bs-popover-inner-border-radius);
  5420. border-top-right-radius: var(--bs-popover-inner-border-radius)
  5421. }
  5422. .popover-header:empty {
  5423. display: none
  5424. }
  5425. .popover-body {
  5426. padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  5427. color: var(--bs-popover-body-color)
  5428. }
  5429. .carousel {
  5430. position: relative
  5431. }
  5432. .carousel.pointer-event {
  5433. touch-action: pan-y
  5434. }
  5435. .carousel-inner {
  5436. position: relative;
  5437. width: 100%;
  5438. overflow: hidden
  5439. }
  5440. .carousel-inner::after {
  5441. display: block;
  5442. clear: both;
  5443. content: ""
  5444. }
  5445. .carousel-item {
  5446. position: relative;
  5447. display: none;
  5448. float: left;
  5449. width: 100%;
  5450. margin-right: -100%;
  5451. -webkit-backface-visibility: hidden;
  5452. backface-visibility: hidden;
  5453. transition: transform .6s ease-in-out
  5454. }
  5455. @media (prefers-reduced-motion: reduce) {
  5456. .carousel-item {
  5457. transition: none
  5458. }
  5459. }
  5460. .carousel-item-next, .carousel-item-prev, .carousel-item.active {
  5461. display: block
  5462. }
  5463. .active.carousel-item-end, .carousel-item-next:not(.carousel-item-start) {
  5464. transform: translateX(100%)
  5465. }
  5466. .active.carousel-item-start, .carousel-item-prev:not(.carousel-item-end) {
  5467. transform: translateX(-100%)
  5468. }
  5469. .carousel-fade .carousel-item {
  5470. opacity: 0;
  5471. transition-property: opacity;
  5472. transform: none
  5473. }
  5474. .carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end, .carousel-fade .carousel-item.active {
  5475. z-index: 1;
  5476. opacity: 1
  5477. }
  5478. .carousel-fade .active.carousel-item-end, .carousel-fade .active.carousel-item-start {
  5479. z-index: 0;
  5480. opacity: 0;
  5481. transition: opacity 0s .6s
  5482. }
  5483. @media (prefers-reduced-motion: reduce) {
  5484. .carousel-fade .active.carousel-item-end, .carousel-fade .active.carousel-item-start {
  5485. transition: none
  5486. }
  5487. }
  5488. .carousel-control-next, .carousel-control-prev {
  5489. position: absolute;
  5490. top: 0;
  5491. bottom: 0;
  5492. z-index: 1;
  5493. display: flex;
  5494. align-items: center;
  5495. justify-content: center;
  5496. width: 15%;
  5497. padding: 0;
  5498. color: #fff;
  5499. text-align: center;
  5500. background: 0 0;
  5501. border: 0;
  5502. opacity: .5;
  5503. transition: opacity .15s ease
  5504. }
  5505. @media (prefers-reduced-motion: reduce) {
  5506. .carousel-control-next, .carousel-control-prev {
  5507. transition: none
  5508. }
  5509. }
  5510. .carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
  5511. color: #fff;
  5512. text-decoration: none;
  5513. outline: 0;
  5514. opacity: .9
  5515. }
  5516. .carousel-control-prev {
  5517. left: 0
  5518. }
  5519. .carousel-control-next {
  5520. right: 0
  5521. }
  5522. .carousel-control-next-icon, .carousel-control-prev-icon {
  5523. display: inline-block;
  5524. width: 2rem;
  5525. height: 2rem;
  5526. background-repeat: no-repeat;
  5527. background-position: 50%;
  5528. background-size: 100% 100%
  5529. }
  5530. .carousel-control-prev-icon {
  5531. 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")
  5532. }
  5533. .carousel-control-next-icon {
  5534. 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")
  5535. }
  5536. .carousel-indicators {
  5537. position: absolute;
  5538. right: 0;
  5539. bottom: 0;
  5540. left: 0;
  5541. z-index: 2;
  5542. display: flex;
  5543. justify-content: center;
  5544. padding: 0;
  5545. margin-right: 15%;
  5546. margin-bottom: 1rem;
  5547. margin-left: 15%
  5548. }
  5549. .carousel-indicators [data-bs-target] {
  5550. box-sizing: content-box;
  5551. flex: 0 1 auto;
  5552. width: 30px;
  5553. height: 3px;
  5554. padding: 0;
  5555. margin-right: 3px;
  5556. margin-left: 3px;
  5557. text-indent: -999px;
  5558. cursor: pointer;
  5559. background-color: #fff;
  5560. background-clip: padding-box;
  5561. border: 0;
  5562. border-top: 10px solid transparent;
  5563. border-bottom: 10px solid transparent;
  5564. opacity: .5;
  5565. transition: opacity .6s ease
  5566. }
  5567. @media (prefers-reduced-motion: reduce) {
  5568. .carousel-indicators [data-bs-target] {
  5569. transition: none
  5570. }
  5571. }
  5572. .carousel-indicators .active {
  5573. opacity: 1
  5574. }
  5575. .carousel-caption {
  5576. position: absolute;
  5577. right: 15%;
  5578. bottom: 1.25rem;
  5579. left: 15%;
  5580. padding-top: 1.25rem;
  5581. padding-bottom: 1.25rem;
  5582. color: #fff;
  5583. text-align: center
  5584. }
  5585. .carousel-dark .carousel-control-next-icon, .carousel-dark .carousel-control-prev-icon {
  5586. filter: invert(1) grayscale(100)
  5587. }
  5588. .carousel-dark .carousel-indicators [data-bs-target] {
  5589. background-color: #000
  5590. }
  5591. .carousel-dark .carousel-caption {
  5592. color: #000
  5593. }
  5594. [data-bs-theme=dark] .carousel .carousel-control-next-icon, [data-bs-theme=dark] .carousel .carousel-control-prev-icon, [data-bs-theme=dark].carousel .carousel-control-next-icon, [data-bs-theme=dark].carousel .carousel-control-prev-icon {
  5595. filter: invert(1) grayscale(100)
  5596. }
  5597. [data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target], [data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
  5598. background-color: #000
  5599. }
  5600. [data-bs-theme=dark] .carousel .carousel-caption, [data-bs-theme=dark].carousel .carousel-caption {
  5601. color: #000
  5602. }
  5603. .spinner-border, .spinner-grow {
  5604. display: inline-block;
  5605. width: var(--bs-spinner-width);
  5606. height: var(--bs-spinner-height);
  5607. vertical-align: var(--bs-spinner-vertical-align);
  5608. border-radius: 50%;
  5609. animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)
  5610. }
  5611. @keyframes spinner-border {
  5612. to {
  5613. transform: rotate(360deg)
  5614. }
  5615. }
  5616. .spinner-border {
  5617. --bs-spinner-width: 2rem;
  5618. --bs-spinner-height: 2rem;
  5619. --bs-spinner-vertical-align: -0.125em;
  5620. --bs-spinner-border-width: 0.25em;
  5621. --bs-spinner-animation-speed: 0.75s;
  5622. --bs-spinner-animation-name: spinner-border;
  5623. border: var(--bs-spinner-border-width) solid currentcolor;
  5624. border-right-color: transparent
  5625. }
  5626. .spinner-border-sm {
  5627. --bs-spinner-width: 1rem;
  5628. --bs-spinner-height: 1rem;
  5629. --bs-spinner-border-width: 0.2em
  5630. }
  5631. @keyframes spinner-grow {
  5632. 0% {
  5633. transform: scale(0)
  5634. }
  5635. 50% {
  5636. opacity: 1;
  5637. transform: none
  5638. }
  5639. }
  5640. .spinner-grow {
  5641. --bs-spinner-width: 2rem;
  5642. --bs-spinner-height: 2rem;
  5643. --bs-spinner-vertical-align: -0.125em;
  5644. --bs-spinner-animation-speed: 0.75s;
  5645. --bs-spinner-animation-name: spinner-grow;
  5646. background-color: currentcolor;
  5647. opacity: 0
  5648. }
  5649. .spinner-grow-sm {
  5650. --bs-spinner-width: 1rem;
  5651. --bs-spinner-height: 1rem
  5652. }
  5653. @media (prefers-reduced-motion: reduce) {
  5654. .spinner-border, .spinner-grow {
  5655. --bs-spinner-animation-speed: 1.5s
  5656. }
  5657. }
  5658. .offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {
  5659. --bs-offcanvas-zindex: 1045;
  5660. --bs-offcanvas-width: 400px;
  5661. --bs-offcanvas-height: 30vh;
  5662. --bs-offcanvas-padding-x: 1rem;
  5663. --bs-offcanvas-padding-y: 1rem;
  5664. --bs-offcanvas-color: var(--bs-body-color);
  5665. --bs-offcanvas-bg: var(--bs-body-bg);
  5666. --bs-offcanvas-border-width: var(--bs-border-width);
  5667. --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  5668. --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
  5669. --bs-offcanvas-transition: transform 0.3s ease-in-out;
  5670. --bs-offcanvas-title-line-height: 1.5
  5671. }
  5672. @media (max-width: 575.98px) {
  5673. .offcanvas-sm {
  5674. position: fixed;
  5675. bottom: 0;
  5676. z-index: var(--bs-offcanvas-zindex);
  5677. display: flex;
  5678. flex-direction: column;
  5679. max-width: 100%;
  5680. color: var(--bs-offcanvas-color);
  5681. visibility: hidden;
  5682. background-color: var(--bs-offcanvas-bg);
  5683. background-clip: padding-box;
  5684. outline: 0;
  5685. transition: var(--bs-offcanvas-transition)
  5686. }
  5687. }
  5688. @media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  5689. .offcanvas-sm {
  5690. transition: none
  5691. }
  5692. }
  5693. @media (max-width: 575.98px) {
  5694. .offcanvas-sm.offcanvas-start {
  5695. top: 0;
  5696. left: 0;
  5697. width: var(--bs-offcanvas-width);
  5698. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5699. transform: translateX(-100%)
  5700. }
  5701. .offcanvas-sm.offcanvas-end {
  5702. top: 0;
  5703. right: 0;
  5704. width: var(--bs-offcanvas-width);
  5705. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5706. transform: translateX(100%)
  5707. }
  5708. .offcanvas-sm.offcanvas-top {
  5709. top: 0;
  5710. right: 0;
  5711. left: 0;
  5712. height: var(--bs-offcanvas-height);
  5713. max-height: 100%;
  5714. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5715. transform: translateY(-100%)
  5716. }
  5717. .offcanvas-sm.offcanvas-bottom {
  5718. right: 0;
  5719. left: 0;
  5720. height: var(--bs-offcanvas-height);
  5721. max-height: 100%;
  5722. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5723. transform: translateY(100%)
  5724. }
  5725. .offcanvas-sm.show:not(.hiding), .offcanvas-sm.showing {
  5726. transform: none
  5727. }
  5728. .offcanvas-sm.hiding, .offcanvas-sm.show, .offcanvas-sm.showing {
  5729. visibility: visible
  5730. }
  5731. }
  5732. @media (min-width: 576px) {
  5733. .offcanvas-sm {
  5734. --bs-offcanvas-height: auto;
  5735. --bs-offcanvas-border-width: 0;
  5736. background-color: transparent !important
  5737. }
  5738. .offcanvas-sm .offcanvas-header {
  5739. display: none
  5740. }
  5741. .offcanvas-sm .offcanvas-body {
  5742. display: flex;
  5743. flex-grow: 0;
  5744. padding: 0;
  5745. overflow-y: visible;
  5746. background-color: transparent !important
  5747. }
  5748. }
  5749. @media (max-width: 767.98px) {
  5750. .offcanvas-md {
  5751. position: fixed;
  5752. bottom: 0;
  5753. z-index: var(--bs-offcanvas-zindex);
  5754. display: flex;
  5755. flex-direction: column;
  5756. max-width: 100%;
  5757. color: var(--bs-offcanvas-color);
  5758. visibility: hidden;
  5759. background-color: var(--bs-offcanvas-bg);
  5760. background-clip: padding-box;
  5761. outline: 0;
  5762. transition: var(--bs-offcanvas-transition)
  5763. }
  5764. }
  5765. @media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  5766. .offcanvas-md {
  5767. transition: none
  5768. }
  5769. }
  5770. @media (max-width: 767.98px) {
  5771. .offcanvas-md.offcanvas-start {
  5772. top: 0;
  5773. left: 0;
  5774. width: var(--bs-offcanvas-width);
  5775. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5776. transform: translateX(-100%)
  5777. }
  5778. .offcanvas-md.offcanvas-end {
  5779. top: 0;
  5780. right: 0;
  5781. width: var(--bs-offcanvas-width);
  5782. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5783. transform: translateX(100%)
  5784. }
  5785. .offcanvas-md.offcanvas-top {
  5786. top: 0;
  5787. right: 0;
  5788. left: 0;
  5789. height: var(--bs-offcanvas-height);
  5790. max-height: 100%;
  5791. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5792. transform: translateY(-100%)
  5793. }
  5794. .offcanvas-md.offcanvas-bottom {
  5795. right: 0;
  5796. left: 0;
  5797. height: var(--bs-offcanvas-height);
  5798. max-height: 100%;
  5799. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5800. transform: translateY(100%)
  5801. }
  5802. .offcanvas-md.show:not(.hiding), .offcanvas-md.showing {
  5803. transform: none
  5804. }
  5805. .offcanvas-md.hiding, .offcanvas-md.show, .offcanvas-md.showing {
  5806. visibility: visible
  5807. }
  5808. }
  5809. @media (min-width: 768px) {
  5810. .offcanvas-md {
  5811. --bs-offcanvas-height: auto;
  5812. --bs-offcanvas-border-width: 0;
  5813. background-color: transparent !important
  5814. }
  5815. .offcanvas-md .offcanvas-header {
  5816. display: none
  5817. }
  5818. .offcanvas-md .offcanvas-body {
  5819. display: flex;
  5820. flex-grow: 0;
  5821. padding: 0;
  5822. overflow-y: visible;
  5823. background-color: transparent !important
  5824. }
  5825. }
  5826. @media (max-width: 991.98px) {
  5827. .offcanvas-lg {
  5828. position: fixed;
  5829. bottom: 0;
  5830. z-index: var(--bs-offcanvas-zindex);
  5831. display: flex;
  5832. flex-direction: column;
  5833. max-width: 100%;
  5834. color: var(--bs-offcanvas-color);
  5835. visibility: hidden;
  5836. background-color: var(--bs-offcanvas-bg);
  5837. background-clip: padding-box;
  5838. outline: 0;
  5839. transition: var(--bs-offcanvas-transition)
  5840. }
  5841. }
  5842. @media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  5843. .offcanvas-lg {
  5844. transition: none
  5845. }
  5846. }
  5847. @media (max-width: 991.98px) {
  5848. .offcanvas-lg.offcanvas-start {
  5849. top: 0;
  5850. left: 0;
  5851. width: var(--bs-offcanvas-width);
  5852. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5853. transform: translateX(-100%)
  5854. }
  5855. .offcanvas-lg.offcanvas-end {
  5856. top: 0;
  5857. right: 0;
  5858. width: var(--bs-offcanvas-width);
  5859. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5860. transform: translateX(100%)
  5861. }
  5862. .offcanvas-lg.offcanvas-top {
  5863. top: 0;
  5864. right: 0;
  5865. left: 0;
  5866. height: var(--bs-offcanvas-height);
  5867. max-height: 100%;
  5868. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5869. transform: translateY(-100%)
  5870. }
  5871. .offcanvas-lg.offcanvas-bottom {
  5872. right: 0;
  5873. left: 0;
  5874. height: var(--bs-offcanvas-height);
  5875. max-height: 100%;
  5876. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5877. transform: translateY(100%)
  5878. }
  5879. .offcanvas-lg.show:not(.hiding), .offcanvas-lg.showing {
  5880. transform: none
  5881. }
  5882. .offcanvas-lg.hiding, .offcanvas-lg.show, .offcanvas-lg.showing {
  5883. visibility: visible
  5884. }
  5885. }
  5886. @media (min-width: 992px) {
  5887. .offcanvas-lg {
  5888. --bs-offcanvas-height: auto;
  5889. --bs-offcanvas-border-width: 0;
  5890. background-color: transparent !important
  5891. }
  5892. .offcanvas-lg .offcanvas-header {
  5893. display: none
  5894. }
  5895. .offcanvas-lg .offcanvas-body {
  5896. display: flex;
  5897. flex-grow: 0;
  5898. padding: 0;
  5899. overflow-y: visible;
  5900. background-color: transparent !important
  5901. }
  5902. }
  5903. @media (max-width: 1199.98px) {
  5904. .offcanvas-xl {
  5905. position: fixed;
  5906. bottom: 0;
  5907. z-index: var(--bs-offcanvas-zindex);
  5908. display: flex;
  5909. flex-direction: column;
  5910. max-width: 100%;
  5911. color: var(--bs-offcanvas-color);
  5912. visibility: hidden;
  5913. background-color: var(--bs-offcanvas-bg);
  5914. background-clip: padding-box;
  5915. outline: 0;
  5916. transition: var(--bs-offcanvas-transition)
  5917. }
  5918. }
  5919. @media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  5920. .offcanvas-xl {
  5921. transition: none
  5922. }
  5923. }
  5924. @media (max-width: 1199.98px) {
  5925. .offcanvas-xl.offcanvas-start {
  5926. top: 0;
  5927. left: 0;
  5928. width: var(--bs-offcanvas-width);
  5929. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5930. transform: translateX(-100%)
  5931. }
  5932. .offcanvas-xl.offcanvas-end {
  5933. top: 0;
  5934. right: 0;
  5935. width: var(--bs-offcanvas-width);
  5936. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5937. transform: translateX(100%)
  5938. }
  5939. .offcanvas-xl.offcanvas-top {
  5940. top: 0;
  5941. right: 0;
  5942. left: 0;
  5943. height: var(--bs-offcanvas-height);
  5944. max-height: 100%;
  5945. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5946. transform: translateY(-100%)
  5947. }
  5948. .offcanvas-xl.offcanvas-bottom {
  5949. right: 0;
  5950. left: 0;
  5951. height: var(--bs-offcanvas-height);
  5952. max-height: 100%;
  5953. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5954. transform: translateY(100%)
  5955. }
  5956. .offcanvas-xl.show:not(.hiding), .offcanvas-xl.showing {
  5957. transform: none
  5958. }
  5959. .offcanvas-xl.hiding, .offcanvas-xl.show, .offcanvas-xl.showing {
  5960. visibility: visible
  5961. }
  5962. }
  5963. @media (min-width: 1200px) {
  5964. .offcanvas-xl {
  5965. --bs-offcanvas-height: auto;
  5966. --bs-offcanvas-border-width: 0;
  5967. background-color: transparent !important
  5968. }
  5969. .offcanvas-xl .offcanvas-header {
  5970. display: none
  5971. }
  5972. .offcanvas-xl .offcanvas-body {
  5973. display: flex;
  5974. flex-grow: 0;
  5975. padding: 0;
  5976. overflow-y: visible;
  5977. background-color: transparent !important
  5978. }
  5979. }
  5980. @media (max-width: 1399.98px) {
  5981. .offcanvas-xxl {
  5982. position: fixed;
  5983. bottom: 0;
  5984. z-index: var(--bs-offcanvas-zindex);
  5985. display: flex;
  5986. flex-direction: column;
  5987. max-width: 100%;
  5988. color: var(--bs-offcanvas-color);
  5989. visibility: hidden;
  5990. background-color: var(--bs-offcanvas-bg);
  5991. background-clip: padding-box;
  5992. outline: 0;
  5993. transition: var(--bs-offcanvas-transition)
  5994. }
  5995. }
  5996. @media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  5997. .offcanvas-xxl {
  5998. transition: none
  5999. }
  6000. }
  6001. @media (max-width: 1399.98px) {
  6002. .offcanvas-xxl.offcanvas-start {
  6003. top: 0;
  6004. left: 0;
  6005. width: var(--bs-offcanvas-width);
  6006. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6007. transform: translateX(-100%)
  6008. }
  6009. .offcanvas-xxl.offcanvas-end {
  6010. top: 0;
  6011. right: 0;
  6012. width: var(--bs-offcanvas-width);
  6013. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6014. transform: translateX(100%)
  6015. }
  6016. .offcanvas-xxl.offcanvas-top {
  6017. top: 0;
  6018. right: 0;
  6019. left: 0;
  6020. height: var(--bs-offcanvas-height);
  6021. max-height: 100%;
  6022. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6023. transform: translateY(-100%)
  6024. }
  6025. .offcanvas-xxl.offcanvas-bottom {
  6026. right: 0;
  6027. left: 0;
  6028. height: var(--bs-offcanvas-height);
  6029. max-height: 100%;
  6030. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6031. transform: translateY(100%)
  6032. }
  6033. .offcanvas-xxl.show:not(.hiding), .offcanvas-xxl.showing {
  6034. transform: none
  6035. }
  6036. .offcanvas-xxl.hiding, .offcanvas-xxl.show, .offcanvas-xxl.showing {
  6037. visibility: visible
  6038. }
  6039. }
  6040. @media (min-width: 1400px) {
  6041. .offcanvas-xxl {
  6042. --bs-offcanvas-height: auto;
  6043. --bs-offcanvas-border-width: 0;
  6044. background-color: transparent !important
  6045. }
  6046. .offcanvas-xxl .offcanvas-header {
  6047. display: none
  6048. }
  6049. .offcanvas-xxl .offcanvas-body {
  6050. display: flex;
  6051. flex-grow: 0;
  6052. padding: 0;
  6053. overflow-y: visible;
  6054. background-color: transparent !important
  6055. }
  6056. }
  6057. .offcanvas {
  6058. position: fixed;
  6059. bottom: 0;
  6060. z-index: var(--bs-offcanvas-zindex);
  6061. display: flex;
  6062. flex-direction: column;
  6063. max-width: 100%;
  6064. color: var(--bs-offcanvas-color);
  6065. visibility: hidden;
  6066. background-color: var(--bs-offcanvas-bg);
  6067. background-clip: padding-box;
  6068. outline: 0;
  6069. transition: var(--bs-offcanvas-transition)
  6070. }
  6071. @media (prefers-reduced-motion: reduce) {
  6072. .offcanvas {
  6073. transition: none
  6074. }
  6075. }
  6076. .offcanvas.offcanvas-start {
  6077. top: 0;
  6078. left: 0;
  6079. width: var(--bs-offcanvas-width);
  6080. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6081. transform: translateX(-100%)
  6082. }
  6083. .offcanvas.offcanvas-end {
  6084. top: 0;
  6085. right: 0;
  6086. width: var(--bs-offcanvas-width);
  6087. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6088. transform: translateX(100%)
  6089. }
  6090. .offcanvas.offcanvas-top {
  6091. top: 0;
  6092. right: 0;
  6093. left: 0;
  6094. height: var(--bs-offcanvas-height);
  6095. max-height: 100%;
  6096. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6097. transform: translateY(-100%)
  6098. }
  6099. .offcanvas.offcanvas-bottom {
  6100. right: 0;
  6101. left: 0;
  6102. height: var(--bs-offcanvas-height);
  6103. max-height: 100%;
  6104. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6105. transform: translateY(100%)
  6106. }
  6107. .offcanvas.show:not(.hiding), .offcanvas.showing {
  6108. transform: none
  6109. }
  6110. .offcanvas.hiding, .offcanvas.show, .offcanvas.showing {
  6111. visibility: visible
  6112. }
  6113. .offcanvas-backdrop {
  6114. position: fixed;
  6115. top: 0;
  6116. left: 0;
  6117. z-index: 1040;
  6118. width: 100vw;
  6119. height: 100vh;
  6120. background-color: #000
  6121. }
  6122. .offcanvas-backdrop.fade {
  6123. opacity: 0
  6124. }
  6125. .offcanvas-backdrop.show {
  6126. opacity: .5
  6127. }
  6128. .offcanvas-header {
  6129. display: flex;
  6130. align-items: center;
  6131. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)
  6132. }
  6133. .offcanvas-header .btn-close {
  6134. padding: calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);
  6135. margin: calc(-.5 * var(--bs-offcanvas-padding-y)) calc(-.5 * var(--bs-offcanvas-padding-x)) calc(-.5 * var(--bs-offcanvas-padding-y)) auto
  6136. }
  6137. .offcanvas-title {
  6138. margin-bottom: 0;
  6139. line-height: var(--bs-offcanvas-title-line-height)
  6140. }
  6141. .offcanvas-body {
  6142. flex-grow: 1;
  6143. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6144. overflow-y: auto
  6145. }
  6146. .placeholder {
  6147. display: inline-block;
  6148. min-height: 1em;
  6149. vertical-align: middle;
  6150. cursor: wait;
  6151. background-color: currentcolor;
  6152. opacity: .5
  6153. }
  6154. .placeholder.btn::before {
  6155. display: inline-block;
  6156. content: ""
  6157. }
  6158. .placeholder-xs {
  6159. min-height: .6em
  6160. }
  6161. .placeholder-sm {
  6162. min-height: .8em
  6163. }
  6164. .placeholder-lg {
  6165. min-height: 1.2em
  6166. }
  6167. .placeholder-glow .placeholder {
  6168. animation: placeholder-glow 2s ease-in-out infinite
  6169. }
  6170. @keyframes placeholder-glow {
  6171. 50% {
  6172. opacity: .2
  6173. }
  6174. }
  6175. .placeholder-wave {
  6176. -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6177. mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6178. -webkit-mask-size: 200% 100%;
  6179. mask-size: 200% 100%;
  6180. animation: placeholder-wave 2s linear infinite
  6181. }
  6182. @keyframes placeholder-wave {
  6183. 100% {
  6184. -webkit-mask-position: -200% 0%;
  6185. mask-position: -200% 0%
  6186. }
  6187. }
  6188. .clearfix::after {
  6189. display: block;
  6190. clear: both;
  6191. content: ""
  6192. }
  6193. .text-bg-primary {
  6194. color: #fff !important;
  6195. background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important
  6196. }
  6197. .text-bg-secondary {
  6198. color: #fff !important;
  6199. background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important
  6200. }
  6201. .text-bg-success {
  6202. color: #fff !important;
  6203. background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important
  6204. }
  6205. .text-bg-info {
  6206. color: #000 !important;
  6207. background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important
  6208. }
  6209. .text-bg-warning {
  6210. color: #000 !important;
  6211. background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important
  6212. }
  6213. .text-bg-danger {
  6214. color: #fff !important;
  6215. background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important
  6216. }
  6217. .text-bg-light {
  6218. color: #000 !important;
  6219. background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important
  6220. }
  6221. .text-bg-dark {
  6222. color: #fff !important;
  6223. background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important
  6224. }
  6225. .link-primary {
  6226. color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  6227. -webkit-text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6228. text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important
  6229. }
  6230. .link-primary:focus, .link-primary:hover {
  6231. color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  6232. -webkit-text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
  6233. text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important
  6234. }
  6235. .link-secondary {
  6236. color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  6237. -webkit-text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6238. text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important
  6239. }
  6240. .link-secondary:focus, .link-secondary:hover {
  6241. color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  6242. -webkit-text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
  6243. text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important
  6244. }
  6245. .link-success {
  6246. color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  6247. -webkit-text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6248. text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important
  6249. }
  6250. .link-success:focus, .link-success:hover {
  6251. color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
  6252. -webkit-text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
  6253. text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important
  6254. }
  6255. .link-info {
  6256. color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  6257. -webkit-text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6258. text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important
  6259. }
  6260. .link-info:focus, .link-info:hover {
  6261. color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  6262. -webkit-text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
  6263. text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important
  6264. }
  6265. .link-warning {
  6266. color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  6267. -webkit-text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6268. text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important
  6269. }
  6270. .link-warning:focus, .link-warning:hover {
  6271. color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  6272. -webkit-text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
  6273. text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important
  6274. }
  6275. .link-danger {
  6276. color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  6277. -webkit-text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6278. text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important
  6279. }
  6280. .link-danger:focus, .link-danger:hover {
  6281. color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  6282. -webkit-text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
  6283. text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important
  6284. }
  6285. .link-light {
  6286. color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  6287. -webkit-text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6288. text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important
  6289. }
  6290. .link-light:focus, .link-light:hover {
  6291. color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  6292. -webkit-text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
  6293. text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important
  6294. }
  6295. .link-dark {
  6296. color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  6297. -webkit-text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6298. text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important
  6299. }
  6300. .link-dark:focus, .link-dark:hover {
  6301. color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  6302. -webkit-text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
  6303. text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important
  6304. }
  6305. .link-body-emphasis {
  6306. color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  6307. -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6308. text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important
  6309. }
  6310. .link-body-emphasis:focus, .link-body-emphasis:hover {
  6311. color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, .75)) !important;
  6312. -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
  6313. text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important
  6314. }
  6315. .focus-ring:focus {
  6316. outline: 0;
  6317. 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)
  6318. }
  6319. .icon-link {
  6320. display: inline-flex;
  6321. gap: .375rem;
  6322. align-items: center;
  6323. -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  6324. text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  6325. text-underline-offset: 0.25em;
  6326. -webkit-backface-visibility: hidden;
  6327. backface-visibility: hidden
  6328. }
  6329. .icon-link > .bi {
  6330. flex-shrink: 0;
  6331. width: 1em;
  6332. height: 1em;
  6333. fill: currentcolor;
  6334. transition: .2s ease-in-out transform
  6335. }
  6336. @media (prefers-reduced-motion: reduce) {
  6337. .icon-link > .bi {
  6338. transition: none
  6339. }
  6340. }
  6341. .icon-link-hover:focus-visible > .bi, .icon-link-hover:hover > .bi {
  6342. transform: var(--bs-icon-link-transform, translate3d(.25em, 0, 0))
  6343. }
  6344. .ratio {
  6345. position: relative;
  6346. width: 100%
  6347. }
  6348. .ratio::before {
  6349. display: block;
  6350. padding-top: var(--bs-aspect-ratio);
  6351. content: ""
  6352. }
  6353. .ratio > * {
  6354. position: absolute;
  6355. top: 0;
  6356. left: 0;
  6357. width: 100%;
  6358. height: 100%
  6359. }
  6360. .ratio-1x1 {
  6361. --bs-aspect-ratio: 100%
  6362. }
  6363. .ratio-4x3 {
  6364. --bs-aspect-ratio: 75%
  6365. }
  6366. .ratio-16x9 {
  6367. --bs-aspect-ratio: 56.25%
  6368. }
  6369. .ratio-21x9 {
  6370. --bs-aspect-ratio: 42.8571428571%
  6371. }
  6372. .fixed-top {
  6373. position: fixed;
  6374. top: 0;
  6375. right: 0;
  6376. left: 0;
  6377. z-index: 1030
  6378. }
  6379. .fixed-bottom {
  6380. position: fixed;
  6381. right: 0;
  6382. bottom: 0;
  6383. left: 0;
  6384. z-index: 1030
  6385. }
  6386. .sticky-top {
  6387. position: -webkit-sticky;
  6388. position: sticky;
  6389. top: 0;
  6390. z-index: 1020
  6391. }
  6392. .sticky-bottom {
  6393. position: -webkit-sticky;
  6394. position: sticky;
  6395. bottom: 0;
  6396. z-index: 1020
  6397. }
  6398. @media (min-width: 576px) {
  6399. .sticky-sm-top {
  6400. position: -webkit-sticky;
  6401. position: sticky;
  6402. top: 0;
  6403. z-index: 1020
  6404. }
  6405. .sticky-sm-bottom {
  6406. position: -webkit-sticky;
  6407. position: sticky;
  6408. bottom: 0;
  6409. z-index: 1020
  6410. }
  6411. }
  6412. @media (min-width: 768px) {
  6413. .sticky-md-top {
  6414. position: -webkit-sticky;
  6415. position: sticky;
  6416. top: 0;
  6417. z-index: 1020
  6418. }
  6419. .sticky-md-bottom {
  6420. position: -webkit-sticky;
  6421. position: sticky;
  6422. bottom: 0;
  6423. z-index: 1020
  6424. }
  6425. }
  6426. @media (min-width: 992px) {
  6427. .sticky-lg-top {
  6428. position: -webkit-sticky;
  6429. position: sticky;
  6430. top: 0;
  6431. z-index: 1020
  6432. }
  6433. .sticky-lg-bottom {
  6434. position: -webkit-sticky;
  6435. position: sticky;
  6436. bottom: 0;
  6437. z-index: 1020
  6438. }
  6439. }
  6440. @media (min-width: 1200px) {
  6441. .sticky-xl-top {
  6442. position: -webkit-sticky;
  6443. position: sticky;
  6444. top: 0;
  6445. z-index: 1020
  6446. }
  6447. .sticky-xl-bottom {
  6448. position: -webkit-sticky;
  6449. position: sticky;
  6450. bottom: 0;
  6451. z-index: 1020
  6452. }
  6453. }
  6454. @media (min-width: 1400px) {
  6455. .sticky-xxl-top {
  6456. position: -webkit-sticky;
  6457. position: sticky;
  6458. top: 0;
  6459. z-index: 1020
  6460. }
  6461. .sticky-xxl-bottom {
  6462. position: -webkit-sticky;
  6463. position: sticky;
  6464. bottom: 0;
  6465. z-index: 1020
  6466. }
  6467. }
  6468. .hstack {
  6469. display: flex;
  6470. flex-direction: row;
  6471. align-items: center;
  6472. align-self: stretch
  6473. }
  6474. .vstack {
  6475. display: flex;
  6476. flex: 1 1 auto;
  6477. flex-direction: column;
  6478. align-self: stretch
  6479. }
  6480. .visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
  6481. width: 1px !important;
  6482. height: 1px !important;
  6483. padding: 0 !important;
  6484. margin: -1px !important;
  6485. overflow: hidden !important;
  6486. clip: rect(0, 0, 0, 0) !important;
  6487. white-space: nowrap !important;
  6488. border: 0 !important
  6489. }
  6490. .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption), .visually-hidden:not(caption) {
  6491. position: absolute !important
  6492. }
  6493. .stretched-link::after {
  6494. position: absolute;
  6495. top: 0;
  6496. right: 0;
  6497. bottom: 0;
  6498. left: 0;
  6499. z-index: 1;
  6500. content: ""
  6501. }
  6502. .text-truncate {
  6503. overflow: hidden;
  6504. text-overflow: ellipsis;
  6505. white-space: nowrap
  6506. }
  6507. .vr {
  6508. display: inline-block;
  6509. align-self: stretch;
  6510. width: var(--bs-border-width);
  6511. min-height: 1em;
  6512. background-color: currentcolor;
  6513. opacity: .25
  6514. }
  6515. .align-baseline {
  6516. vertical-align: baseline !important
  6517. }
  6518. .align-top {
  6519. vertical-align: top !important
  6520. }
  6521. .align-middle {
  6522. vertical-align: middle !important
  6523. }
  6524. .align-bottom {
  6525. vertical-align: bottom !important
  6526. }
  6527. .align-text-bottom {
  6528. vertical-align: text-bottom !important
  6529. }
  6530. .align-text-top {
  6531. vertical-align: text-top !important
  6532. }
  6533. .float-start {
  6534. float: left !important
  6535. }
  6536. .float-end {
  6537. float: right !important
  6538. }
  6539. .float-none {
  6540. float: none !important
  6541. }
  6542. .object-fit-contain {
  6543. -o-object-fit: contain !important;
  6544. object-fit: contain !important
  6545. }
  6546. .object-fit-cover {
  6547. -o-object-fit: cover !important;
  6548. object-fit: cover !important
  6549. }
  6550. .object-fit-fill {
  6551. -o-object-fit: fill !important;
  6552. object-fit: fill !important
  6553. }
  6554. .object-fit-scale {
  6555. -o-object-fit: scale-down !important;
  6556. object-fit: scale-down !important
  6557. }
  6558. .object-fit-none {
  6559. -o-object-fit: none !important;
  6560. object-fit: none !important
  6561. }
  6562. .opacity-0 {
  6563. opacity: 0 !important
  6564. }
  6565. .opacity-25 {
  6566. opacity: .25 !important
  6567. }
  6568. .opacity-50 {
  6569. opacity: .5 !important
  6570. }
  6571. .opacity-75 {
  6572. opacity: .75 !important
  6573. }
  6574. .opacity-100 {
  6575. opacity: 1 !important
  6576. }
  6577. .overflow-auto {
  6578. overflow: auto !important
  6579. }
  6580. .overflow-hidden {
  6581. overflow: hidden !important
  6582. }
  6583. .overflow-visible {
  6584. overflow: visible !important
  6585. }
  6586. .overflow-scroll {
  6587. overflow: scroll !important
  6588. }
  6589. .overflow-x-auto {
  6590. overflow-x: auto !important
  6591. }
  6592. .overflow-x-hidden {
  6593. overflow-x: hidden !important
  6594. }
  6595. .overflow-x-visible {
  6596. overflow-x: visible !important
  6597. }
  6598. .overflow-x-scroll {
  6599. overflow-x: scroll !important
  6600. }
  6601. .overflow-y-auto {
  6602. overflow-y: auto !important
  6603. }
  6604. .overflow-y-hidden {
  6605. overflow-y: hidden !important
  6606. }
  6607. .overflow-y-visible {
  6608. overflow-y: visible !important
  6609. }
  6610. .overflow-y-scroll {
  6611. overflow-y: scroll !important
  6612. }
  6613. .d-inline {
  6614. display: inline !important
  6615. }
  6616. .d-inline-block {
  6617. display: inline-block !important
  6618. }
  6619. .d-block {
  6620. display: block !important
  6621. }
  6622. .d-grid {
  6623. display: grid !important
  6624. }
  6625. .d-inline-grid {
  6626. display: inline-grid !important
  6627. }
  6628. .d-table {
  6629. display: table !important
  6630. }
  6631. .d-table-row {
  6632. display: table-row !important
  6633. }
  6634. .d-table-cell {
  6635. display: table-cell !important
  6636. }
  6637. .d-flex {
  6638. display: flex !important
  6639. }
  6640. .d-inline-flex {
  6641. display: inline-flex !important
  6642. }
  6643. .d-none {
  6644. display: none !important
  6645. }
  6646. .shadow {
  6647. box-shadow: var(--bs-box-shadow) !important
  6648. }
  6649. .shadow-sm {
  6650. box-shadow: var(--bs-box-shadow-sm) !important
  6651. }
  6652. .shadow-lg {
  6653. box-shadow: var(--bs-box-shadow-lg) !important
  6654. }
  6655. .shadow-none {
  6656. box-shadow: none !important
  6657. }
  6658. .focus-ring-primary {
  6659. --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))
  6660. }
  6661. .focus-ring-secondary {
  6662. --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))
  6663. }
  6664. .focus-ring-success {
  6665. --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))
  6666. }
  6667. .focus-ring-info {
  6668. --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))
  6669. }
  6670. .focus-ring-warning {
  6671. --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))
  6672. }
  6673. .focus-ring-danger {
  6674. --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))
  6675. }
  6676. .focus-ring-light {
  6677. --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity))
  6678. }
  6679. .focus-ring-dark {
  6680. --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity))
  6681. }
  6682. .position-static {
  6683. position: static !important
  6684. }
  6685. .position-relative {
  6686. position: relative !important
  6687. }
  6688. .position-absolute {
  6689. position: absolute !important
  6690. }
  6691. .position-fixed {
  6692. position: fixed !important
  6693. }
  6694. .position-sticky {
  6695. position: -webkit-sticky !important;
  6696. position: sticky !important
  6697. }
  6698. .top-0 {
  6699. top: 0 !important
  6700. }
  6701. .top-50 {
  6702. top: 50% !important
  6703. }
  6704. .top-100 {
  6705. top: 100% !important
  6706. }
  6707. .bottom-0 {
  6708. bottom: 0 !important
  6709. }
  6710. .bottom-50 {
  6711. bottom: 50% !important
  6712. }
  6713. .bottom-100 {
  6714. bottom: 100% !important
  6715. }
  6716. .start-0 {
  6717. left: 0 !important
  6718. }
  6719. .start-50 {
  6720. left: 50% !important
  6721. }
  6722. .start-100 {
  6723. left: 100% !important
  6724. }
  6725. .end-0 {
  6726. right: 0 !important
  6727. }
  6728. .end-50 {
  6729. right: 50% !important
  6730. }
  6731. .end-100 {
  6732. right: 100% !important
  6733. }
  6734. .translate-middle {
  6735. transform: translate(-50%, -50%) !important
  6736. }
  6737. .translate-middle-x {
  6738. transform: translateX(-50%) !important
  6739. }
  6740. .translate-middle-y {
  6741. transform: translateY(-50%) !important
  6742. }
  6743. .border {
  6744. border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
  6745. }
  6746. .border-0 {
  6747. border: 0 !important
  6748. }
  6749. .border-top {
  6750. border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
  6751. }
  6752. .border-top-0 {
  6753. border-top: 0 !important
  6754. }
  6755. .border-end {
  6756. border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
  6757. }
  6758. .border-end-0 {
  6759. border-right: 0 !important
  6760. }
  6761. .border-bottom {
  6762. border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
  6763. }
  6764. .border-bottom-0 {
  6765. border-bottom: 0 !important
  6766. }
  6767. .border-start {
  6768. border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
  6769. }
  6770. .border-start-0 {
  6771. border-left: 0 !important
  6772. }
  6773. .border-primary {
  6774. --bs-border-opacity: 1;
  6775. border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important
  6776. }
  6777. .border-secondary {
  6778. --bs-border-opacity: 1;
  6779. border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important
  6780. }
  6781. .border-success {
  6782. --bs-border-opacity: 1;
  6783. border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important
  6784. }
  6785. .border-info {
  6786. --bs-border-opacity: 1;
  6787. border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important
  6788. }
  6789. .border-warning {
  6790. --bs-border-opacity: 1;
  6791. border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important
  6792. }
  6793. .border-danger {
  6794. --bs-border-opacity: 1;
  6795. border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important
  6796. }
  6797. .border-light {
  6798. --bs-border-opacity: 1;
  6799. border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important
  6800. }
  6801. .border-dark {
  6802. --bs-border-opacity: 1;
  6803. border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important
  6804. }
  6805. .border-black {
  6806. --bs-border-opacity: 1;
  6807. border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important
  6808. }
  6809. .border-white {
  6810. --bs-border-opacity: 1;
  6811. border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important
  6812. }
  6813. .border-primary-subtle {
  6814. border-color: var(--bs-primary-border-subtle) !important
  6815. }
  6816. .border-secondary-subtle {
  6817. border-color: var(--bs-secondary-border-subtle) !important
  6818. }
  6819. .border-success-subtle {
  6820. border-color: var(--bs-success-border-subtle) !important
  6821. }
  6822. .border-info-subtle {
  6823. border-color: var(--bs-info-border-subtle) !important
  6824. }
  6825. .border-warning-subtle {
  6826. border-color: var(--bs-warning-border-subtle) !important
  6827. }
  6828. .border-danger-subtle {
  6829. border-color: var(--bs-danger-border-subtle) !important
  6830. }
  6831. .border-light-subtle {
  6832. border-color: var(--bs-light-border-subtle) !important
  6833. }
  6834. .border-dark-subtle {
  6835. border-color: var(--bs-dark-border-subtle) !important
  6836. }
  6837. .border-1 {
  6838. border-width: 1px !important
  6839. }
  6840. .border-2 {
  6841. border-width: 2px !important
  6842. }
  6843. .border-3 {
  6844. border-width: 3px !important
  6845. }
  6846. .border-4 {
  6847. border-width: 4px !important
  6848. }
  6849. .border-5 {
  6850. border-width: 5px !important
  6851. }
  6852. .border-opacity-10 {
  6853. --bs-border-opacity: 0.1
  6854. }
  6855. .border-opacity-25 {
  6856. --bs-border-opacity: 0.25
  6857. }
  6858. .border-opacity-50 {
  6859. --bs-border-opacity: 0.5
  6860. }
  6861. .border-opacity-75 {
  6862. --bs-border-opacity: 0.75
  6863. }
  6864. .border-opacity-100 {
  6865. --bs-border-opacity: 1
  6866. }
  6867. .w-25 {
  6868. width: 25% !important
  6869. }
  6870. .w-50 {
  6871. width: 50% !important
  6872. }
  6873. .w-75 {
  6874. width: 75% !important
  6875. }
  6876. .w-100 {
  6877. width: 100% !important
  6878. }
  6879. .w-auto {
  6880. width: auto !important
  6881. }
  6882. .mw-100 {
  6883. max-width: 100% !important
  6884. }
  6885. .vw-100 {
  6886. width: 100vw !important
  6887. }
  6888. .min-vw-100 {
  6889. min-width: 100vw !important
  6890. }
  6891. .h-25 {
  6892. height: 25% !important
  6893. }
  6894. .h-50 {
  6895. height: 50% !important
  6896. }
  6897. .h-75 {
  6898. height: 75% !important
  6899. }
  6900. .h-100 {
  6901. height: 100% !important
  6902. }
  6903. .h-auto {
  6904. height: auto !important
  6905. }
  6906. .mh-100 {
  6907. max-height: 100% !important
  6908. }
  6909. .vh-100 {
  6910. height: 100vh !important
  6911. }
  6912. .min-vh-100 {
  6913. min-height: 100vh !important
  6914. }
  6915. .flex-fill {
  6916. flex: 1 1 auto !important
  6917. }
  6918. .flex-row {
  6919. flex-direction: row !important
  6920. }
  6921. .flex-column {
  6922. flex-direction: column !important
  6923. }
  6924. .flex-row-reverse {
  6925. flex-direction: row-reverse !important
  6926. }
  6927. .flex-column-reverse {
  6928. flex-direction: column-reverse !important
  6929. }
  6930. .flex-grow-0 {
  6931. flex-grow: 0 !important
  6932. }
  6933. .flex-grow-1 {
  6934. flex-grow: 1 !important
  6935. }
  6936. .flex-shrink-0 {
  6937. flex-shrink: 0 !important
  6938. }
  6939. .flex-shrink-1 {
  6940. flex-shrink: 1 !important
  6941. }
  6942. .flex-wrap {
  6943. flex-wrap: wrap !important
  6944. }
  6945. .flex-nowrap {
  6946. flex-wrap: nowrap !important
  6947. }
  6948. .flex-wrap-reverse {
  6949. flex-wrap: wrap-reverse !important
  6950. }
  6951. .justify-content-start {
  6952. justify-content: flex-start !important
  6953. }
  6954. .justify-content-end {
  6955. justify-content: flex-end !important
  6956. }
  6957. .justify-content-center {
  6958. justify-content: center !important
  6959. }
  6960. .justify-content-between {
  6961. justify-content: space-between !important
  6962. }
  6963. .justify-content-around {
  6964. justify-content: space-around !important
  6965. }
  6966. .justify-content-evenly {
  6967. justify-content: space-evenly !important
  6968. }
  6969. .align-items-start {
  6970. align-items: flex-start !important
  6971. }
  6972. .align-items-end {
  6973. align-items: flex-end !important
  6974. }
  6975. .align-items-center {
  6976. align-items: center !important
  6977. }
  6978. .align-items-baseline {
  6979. align-items: baseline !important
  6980. }
  6981. .align-items-stretch {
  6982. align-items: stretch !important
  6983. }
  6984. .align-content-start {
  6985. align-content: flex-start !important
  6986. }
  6987. .align-content-end {
  6988. align-content: flex-end !important
  6989. }
  6990. .align-content-center {
  6991. align-content: center !important
  6992. }
  6993. .align-content-between {
  6994. align-content: space-between !important
  6995. }
  6996. .align-content-around {
  6997. align-content: space-around !important
  6998. }
  6999. .align-content-stretch {
  7000. align-content: stretch !important
  7001. }
  7002. .align-self-auto {
  7003. align-self: auto !important
  7004. }
  7005. .align-self-start {
  7006. align-self: flex-start !important
  7007. }
  7008. .align-self-end {
  7009. align-self: flex-end !important
  7010. }
  7011. .align-self-center {
  7012. align-self: center !important
  7013. }
  7014. .align-self-baseline {
  7015. align-self: baseline !important
  7016. }
  7017. .align-self-stretch {
  7018. align-self: stretch !important
  7019. }
  7020. .order-first {
  7021. order: -1 !important
  7022. }
  7023. .order-0 {
  7024. order: 0 !important
  7025. }
  7026. .order-1 {
  7027. order: 1 !important
  7028. }
  7029. .order-2 {
  7030. order: 2 !important
  7031. }
  7032. .order-3 {
  7033. order: 3 !important
  7034. }
  7035. .order-4 {
  7036. order: 4 !important
  7037. }
  7038. .order-5 {
  7039. order: 5 !important
  7040. }
  7041. .order-last {
  7042. order: 6 !important
  7043. }
  7044. .m-0 {
  7045. margin: 0 !important
  7046. }
  7047. .m-1 {
  7048. margin: .25rem !important
  7049. }
  7050. .m-2 {
  7051. margin: .5rem !important
  7052. }
  7053. .m-3 {
  7054. margin: 1rem !important
  7055. }
  7056. .m-4 {
  7057. margin: 1.5rem !important
  7058. }
  7059. .m-5 {
  7060. margin: 3rem !important
  7061. }
  7062. .m-auto {
  7063. margin: auto !important
  7064. }
  7065. .mx-0 {
  7066. margin-right: 0 !important;
  7067. margin-left: 0 !important
  7068. }
  7069. .mx-1 {
  7070. margin-right: .25rem !important;
  7071. margin-left: .25rem !important
  7072. }
  7073. .mx-2 {
  7074. margin-right: .5rem !important;
  7075. margin-left: .5rem !important
  7076. }
  7077. .mx-3 {
  7078. margin-right: 1rem !important;
  7079. margin-left: 1rem !important
  7080. }
  7081. .mx-4 {
  7082. margin-right: 1.5rem !important;
  7083. margin-left: 1.5rem !important
  7084. }
  7085. .mx-5 {
  7086. margin-right: 3rem !important;
  7087. margin-left: 3rem !important
  7088. }
  7089. .mx-auto {
  7090. margin-right: auto !important;
  7091. margin-left: auto !important
  7092. }
  7093. .my-0 {
  7094. margin-top: 0 !important;
  7095. margin-bottom: 0 !important
  7096. }
  7097. .my-1 {
  7098. margin-top: .25rem !important;
  7099. margin-bottom: .25rem !important
  7100. }
  7101. .my-2 {
  7102. margin-top: .5rem !important;
  7103. margin-bottom: .5rem !important
  7104. }
  7105. .my-3 {
  7106. margin-top: 1rem !important;
  7107. margin-bottom: 1rem !important
  7108. }
  7109. .my-4 {
  7110. margin-top: 1.5rem !important;
  7111. margin-bottom: 1.5rem !important
  7112. }
  7113. .my-5 {
  7114. margin-top: 3rem !important;
  7115. margin-bottom: 3rem !important
  7116. }
  7117. .my-auto {
  7118. margin-top: auto !important;
  7119. margin-bottom: auto !important
  7120. }
  7121. .mt-0 {
  7122. margin-top: 0 !important
  7123. }
  7124. .mt-1 {
  7125. margin-top: .25rem !important
  7126. }
  7127. .mt-2 {
  7128. margin-top: .5rem !important
  7129. }
  7130. .mt-3 {
  7131. margin-top: 1rem !important
  7132. }
  7133. .mt-4 {
  7134. margin-top: 1.5rem !important
  7135. }
  7136. .mt-5 {
  7137. margin-top: 3rem !important
  7138. }
  7139. .mt-auto {
  7140. margin-top: auto !important
  7141. }
  7142. .me-0 {
  7143. margin-right: 0 !important
  7144. }
  7145. .me-1 {
  7146. margin-right: .25rem !important
  7147. }
  7148. .me-2 {
  7149. margin-right: .5rem !important
  7150. }
  7151. .me-3 {
  7152. margin-right: 1rem !important
  7153. }
  7154. .me-4 {
  7155. margin-right: 1.5rem !important
  7156. }
  7157. .me-5 {
  7158. margin-right: 3rem !important
  7159. }
  7160. .me-auto {
  7161. margin-right: auto !important
  7162. }
  7163. .mb-0 {
  7164. margin-bottom: 0 !important
  7165. }
  7166. .mb-1 {
  7167. margin-bottom: .25rem !important
  7168. }
  7169. .mb-2 {
  7170. margin-bottom: .5rem !important
  7171. }
  7172. .mb-3 {
  7173. margin-bottom: 1rem !important
  7174. }
  7175. .mb-4 {
  7176. margin-bottom: 1.5rem !important
  7177. }
  7178. .mb-5 {
  7179. margin-bottom: 3rem !important
  7180. }
  7181. .mb-auto {
  7182. margin-bottom: auto !important
  7183. }
  7184. .ms-0 {
  7185. margin-left: 0 !important
  7186. }
  7187. .ms-1 {
  7188. margin-left: .25rem !important
  7189. }
  7190. .ms-2 {
  7191. margin-left: .5rem !important
  7192. }
  7193. .ms-3 {
  7194. margin-left: 1rem !important
  7195. }
  7196. .ms-4 {
  7197. margin-left: 1.5rem !important
  7198. }
  7199. .ms-5 {
  7200. margin-left: 3rem !important
  7201. }
  7202. .ms-auto {
  7203. margin-left: auto !important
  7204. }
  7205. .p-0 {
  7206. padding: 0 !important
  7207. }
  7208. .p-1 {
  7209. padding: .25rem !important
  7210. }
  7211. .p-2 {
  7212. padding: .5rem !important
  7213. }
  7214. .p-3 {
  7215. padding: 1rem !important
  7216. }
  7217. .p-4 {
  7218. padding: 1.5rem !important
  7219. }
  7220. .p-5 {
  7221. padding: 3rem !important
  7222. }
  7223. .px-0 {
  7224. padding-right: 0 !important;
  7225. padding-left: 0 !important
  7226. }
  7227. .px-1 {
  7228. padding-right: .25rem !important;
  7229. padding-left: .25rem !important
  7230. }
  7231. .px-2 {
  7232. padding-right: .5rem !important;
  7233. padding-left: .5rem !important
  7234. }
  7235. .px-3 {
  7236. padding-right: 1rem !important;
  7237. padding-left: 1rem !important
  7238. }
  7239. .px-4 {
  7240. padding-right: 1.5rem !important;
  7241. padding-left: 1.5rem !important
  7242. }
  7243. .px-5 {
  7244. padding-right: 3rem !important;
  7245. padding-left: 3rem !important
  7246. }
  7247. .py-0 {
  7248. padding-top: 0 !important;
  7249. padding-bottom: 0 !important
  7250. }
  7251. .py-1 {
  7252. padding-top: .25rem !important;
  7253. padding-bottom: .25rem !important
  7254. }
  7255. .py-2 {
  7256. padding-top: .5rem !important;
  7257. padding-bottom: .5rem !important
  7258. }
  7259. .py-3 {
  7260. padding-top: 1rem !important;
  7261. padding-bottom: 1rem !important
  7262. }
  7263. .py-4 {
  7264. padding-top: 1.5rem !important;
  7265. padding-bottom: 1.5rem !important
  7266. }
  7267. .py-5 {
  7268. padding-top: 3rem !important;
  7269. padding-bottom: 3rem !important
  7270. }
  7271. .pt-0 {
  7272. padding-top: 0 !important
  7273. }
  7274. .pt-1 {
  7275. padding-top: .25rem !important
  7276. }
  7277. .pt-2 {
  7278. padding-top: .5rem !important
  7279. }
  7280. .pt-3 {
  7281. padding-top: 1rem !important
  7282. }
  7283. .pt-4 {
  7284. padding-top: 1.5rem !important
  7285. }
  7286. .pt-5 {
  7287. padding-top: 3rem !important
  7288. }
  7289. .pe-0 {
  7290. padding-right: 0 !important
  7291. }
  7292. .pe-1 {
  7293. padding-right: .25rem !important
  7294. }
  7295. .pe-2 {
  7296. padding-right: .5rem !important
  7297. }
  7298. .pe-3 {
  7299. padding-right: 1rem !important
  7300. }
  7301. .pe-4 {
  7302. padding-right: 1.5rem !important
  7303. }
  7304. .pe-5 {
  7305. padding-right: 3rem !important
  7306. }
  7307. .pb-0 {
  7308. padding-bottom: 0 !important
  7309. }
  7310. .pb-1 {
  7311. padding-bottom: .25rem !important
  7312. }
  7313. .pb-2 {
  7314. padding-bottom: .5rem !important
  7315. }
  7316. .pb-3 {
  7317. padding-bottom: 1rem !important
  7318. }
  7319. .pb-4 {
  7320. padding-bottom: 1.5rem !important
  7321. }
  7322. .pb-5 {
  7323. padding-bottom: 3rem !important
  7324. }
  7325. .ps-0 {
  7326. padding-left: 0 !important
  7327. }
  7328. .ps-1 {
  7329. padding-left: .25rem !important
  7330. }
  7331. .ps-2 {
  7332. padding-left: .5rem !important
  7333. }
  7334. .ps-3 {
  7335. padding-left: 1rem !important
  7336. }
  7337. .ps-4 {
  7338. padding-left: 1.5rem !important
  7339. }
  7340. .ps-5 {
  7341. padding-left: 3rem !important
  7342. }
  7343. .gap-0 {
  7344. gap: 0 !important
  7345. }
  7346. .gap-1 {
  7347. gap: .25rem !important
  7348. }
  7349. .gap-2 {
  7350. gap: .5rem !important
  7351. }
  7352. .gap-3 {
  7353. gap: 1rem !important
  7354. }
  7355. .gap-4 {
  7356. gap: 1.5rem !important
  7357. }
  7358. .gap-5 {
  7359. gap: 3rem !important
  7360. }
  7361. .row-gap-0 {
  7362. row-gap: 0 !important
  7363. }
  7364. .row-gap-1 {
  7365. row-gap: .25rem !important
  7366. }
  7367. .row-gap-2 {
  7368. row-gap: .5rem !important
  7369. }
  7370. .row-gap-3 {
  7371. row-gap: 1rem !important
  7372. }
  7373. .row-gap-4 {
  7374. row-gap: 1.5rem !important
  7375. }
  7376. .row-gap-5 {
  7377. row-gap: 3rem !important
  7378. }
  7379. .column-gap-0 {
  7380. -moz-column-gap: 0 !important;
  7381. column-gap: 0 !important
  7382. }
  7383. .column-gap-1 {
  7384. -moz-column-gap: 0.25rem !important;
  7385. column-gap: .25rem !important
  7386. }
  7387. .column-gap-2 {
  7388. -moz-column-gap: 0.5rem !important;
  7389. column-gap: .5rem !important
  7390. }
  7391. .column-gap-3 {
  7392. -moz-column-gap: 1rem !important;
  7393. column-gap: 1rem !important
  7394. }
  7395. .column-gap-4 {
  7396. -moz-column-gap: 1.5rem !important;
  7397. column-gap: 1.5rem !important
  7398. }
  7399. .column-gap-5 {
  7400. -moz-column-gap: 3rem !important;
  7401. column-gap: 3rem !important
  7402. }
  7403. .font-monospace {
  7404. font-family: var(--bs-font-monospace) !important
  7405. }
  7406. .fs-1 {
  7407. font-size: calc(1.375rem + 1.5vw) !important
  7408. }
  7409. .fs-2 {
  7410. font-size: calc(1.325rem + .9vw) !important
  7411. }
  7412. .fs-3 {
  7413. font-size: calc(1.3rem + .6vw) !important
  7414. }
  7415. .fs-4 {
  7416. font-size: calc(1.275rem + .3vw) !important
  7417. }
  7418. .fs-5 {
  7419. font-size: 1.25rem !important
  7420. }
  7421. .fs-6 {
  7422. font-size: 1rem !important
  7423. }
  7424. .fst-italic {
  7425. font-style: italic !important
  7426. }
  7427. .fst-normal {
  7428. font-style: normal !important
  7429. }
  7430. .fw-lighter {
  7431. font-weight: lighter !important
  7432. }
  7433. .fw-light {
  7434. font-weight: 300 !important
  7435. }
  7436. .fw-normal {
  7437. font-weight: 400 !important
  7438. }
  7439. .fw-medium {
  7440. font-weight: 500 !important
  7441. }
  7442. .fw-semibold {
  7443. font-weight: 600 !important
  7444. }
  7445. .fw-bold {
  7446. font-weight: 700 !important
  7447. }
  7448. .fw-bolder {
  7449. font-weight: bolder !important
  7450. }
  7451. .lh-1 {
  7452. line-height: 1 !important
  7453. }
  7454. .lh-sm {
  7455. line-height: 1.25 !important
  7456. }
  7457. .lh-base {
  7458. line-height: 1.5 !important
  7459. }
  7460. .lh-lg {
  7461. line-height: 2 !important
  7462. }
  7463. .text-start {
  7464. text-align: left !important
  7465. }
  7466. .text-end {
  7467. text-align: right !important
  7468. }
  7469. .text-center {
  7470. text-align: center !important
  7471. }
  7472. .text-decoration-none {
  7473. text-decoration: none !important
  7474. }
  7475. .text-decoration-underline {
  7476. text-decoration: underline !important
  7477. }
  7478. .text-decoration-line-through {
  7479. text-decoration: line-through !important
  7480. }
  7481. .text-lowercase {
  7482. text-transform: lowercase !important
  7483. }
  7484. .text-uppercase {
  7485. text-transform: uppercase !important
  7486. }
  7487. .text-capitalize {
  7488. text-transform: capitalize !important
  7489. }
  7490. .text-wrap {
  7491. white-space: normal !important
  7492. }
  7493. .text-nowrap {
  7494. white-space: nowrap !important
  7495. }
  7496. .text-break {
  7497. word-wrap: break-word !important;
  7498. word-break: break-word !important
  7499. }
  7500. .text-primary {
  7501. --bs-text-opacity: 1;
  7502. color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important
  7503. }
  7504. .text-secondary {
  7505. --bs-text-opacity: 1;
  7506. color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important
  7507. }
  7508. .text-success {
  7509. --bs-text-opacity: 1;
  7510. color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important
  7511. }
  7512. .text-info {
  7513. --bs-text-opacity: 1;
  7514. color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important
  7515. }
  7516. .text-warning {
  7517. --bs-text-opacity: 1;
  7518. color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important
  7519. }
  7520. .text-danger {
  7521. --bs-text-opacity: 1;
  7522. color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important
  7523. }
  7524. .text-light {
  7525. --bs-text-opacity: 1;
  7526. color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important
  7527. }
  7528. .text-dark {
  7529. --bs-text-opacity: 1;
  7530. color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important
  7531. }
  7532. .text-black {
  7533. --bs-text-opacity: 1;
  7534. color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important
  7535. }
  7536. .text-white {
  7537. --bs-text-opacity: 1;
  7538. color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important
  7539. }
  7540. .text-body {
  7541. --bs-text-opacity: 1;
  7542. color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important
  7543. }
  7544. .text-muted {
  7545. --bs-text-opacity: 1;
  7546. color: var(--bs-secondary-color) !important
  7547. }
  7548. .text-black-50 {
  7549. --bs-text-opacity: 1;
  7550. color: rgba(0, 0, 0, .5) !important
  7551. }
  7552. .text-white-50 {
  7553. --bs-text-opacity: 1;
  7554. color: rgba(255, 255, 255, .5) !important
  7555. }
  7556. .text-body-secondary {
  7557. --bs-text-opacity: 1;
  7558. color: var(--bs-secondary-color) !important
  7559. }
  7560. .text-body-tertiary {
  7561. --bs-text-opacity: 1;
  7562. color: var(--bs-tertiary-color) !important
  7563. }
  7564. .text-body-emphasis {
  7565. --bs-text-opacity: 1;
  7566. color: var(--bs-emphasis-color) !important
  7567. }
  7568. .text-reset {
  7569. --bs-text-opacity: 1;
  7570. color: inherit !important
  7571. }
  7572. .text-opacity-25 {
  7573. --bs-text-opacity: 0.25
  7574. }
  7575. .text-opacity-50 {
  7576. --bs-text-opacity: 0.5
  7577. }
  7578. .text-opacity-75 {
  7579. --bs-text-opacity: 0.75
  7580. }
  7581. .text-opacity-100 {
  7582. --bs-text-opacity: 1
  7583. }
  7584. .text-primary-emphasis {
  7585. color: var(--bs-primary-text-emphasis) !important
  7586. }
  7587. .text-secondary-emphasis {
  7588. color: var(--bs-secondary-text-emphasis) !important
  7589. }
  7590. .text-success-emphasis {
  7591. color: var(--bs-success-text-emphasis) !important
  7592. }
  7593. .text-info-emphasis {
  7594. color: var(--bs-info-text-emphasis) !important
  7595. }
  7596. .text-warning-emphasis {
  7597. color: var(--bs-warning-text-emphasis) !important
  7598. }
  7599. .text-danger-emphasis {
  7600. color: var(--bs-danger-text-emphasis) !important
  7601. }
  7602. .text-light-emphasis {
  7603. color: var(--bs-light-text-emphasis) !important
  7604. }
  7605. .text-dark-emphasis {
  7606. color: var(--bs-dark-text-emphasis) !important
  7607. }
  7608. .link-opacity-10 {
  7609. --bs-link-opacity: 0.1
  7610. }
  7611. .link-opacity-10-hover:hover {
  7612. --bs-link-opacity: 0.1
  7613. }
  7614. .link-opacity-25 {
  7615. --bs-link-opacity: 0.25
  7616. }
  7617. .link-opacity-25-hover:hover {
  7618. --bs-link-opacity: 0.25
  7619. }
  7620. .link-opacity-50 {
  7621. --bs-link-opacity: 0.5
  7622. }
  7623. .link-opacity-50-hover:hover {
  7624. --bs-link-opacity: 0.5
  7625. }
  7626. .link-opacity-75 {
  7627. --bs-link-opacity: 0.75
  7628. }
  7629. .link-opacity-75-hover:hover {
  7630. --bs-link-opacity: 0.75
  7631. }
  7632. .link-opacity-100 {
  7633. --bs-link-opacity: 1
  7634. }
  7635. .link-opacity-100-hover:hover {
  7636. --bs-link-opacity: 1
  7637. }
  7638. .link-offset-1 {
  7639. text-underline-offset: 0.125em !important
  7640. }
  7641. .link-offset-1-hover:hover {
  7642. text-underline-offset: 0.125em !important
  7643. }
  7644. .link-offset-2 {
  7645. text-underline-offset: 0.25em !important
  7646. }
  7647. .link-offset-2-hover:hover {
  7648. text-underline-offset: 0.25em !important
  7649. }
  7650. .link-offset-3 {
  7651. text-underline-offset: 0.375em !important
  7652. }
  7653. .link-offset-3-hover:hover {
  7654. text-underline-offset: 0.375em !important
  7655. }
  7656. .link-underline-primary {
  7657. --bs-link-underline-opacity: 1;
  7658. -webkit-text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
  7659. text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important
  7660. }
  7661. .link-underline-secondary {
  7662. --bs-link-underline-opacity: 1;
  7663. -webkit-text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
  7664. text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important
  7665. }
  7666. .link-underline-success {
  7667. --bs-link-underline-opacity: 1;
  7668. -webkit-text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
  7669. text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important
  7670. }
  7671. .link-underline-info {
  7672. --bs-link-underline-opacity: 1;
  7673. -webkit-text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
  7674. text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important
  7675. }
  7676. .link-underline-warning {
  7677. --bs-link-underline-opacity: 1;
  7678. -webkit-text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
  7679. text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important
  7680. }
  7681. .link-underline-danger {
  7682. --bs-link-underline-opacity: 1;
  7683. -webkit-text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
  7684. text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important
  7685. }
  7686. .link-underline-light {
  7687. --bs-link-underline-opacity: 1;
  7688. -webkit-text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
  7689. text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important
  7690. }
  7691. .link-underline-dark {
  7692. --bs-link-underline-opacity: 1;
  7693. -webkit-text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
  7694. text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important
  7695. }
  7696. .link-underline {
  7697. --bs-link-underline-opacity: 1;
  7698. -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  7699. text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important
  7700. }
  7701. .link-underline-opacity-0 {
  7702. --bs-link-underline-opacity: 0
  7703. }
  7704. .link-underline-opacity-0-hover:hover {
  7705. --bs-link-underline-opacity: 0
  7706. }
  7707. .link-underline-opacity-10 {
  7708. --bs-link-underline-opacity: 0.1
  7709. }
  7710. .link-underline-opacity-10-hover:hover {
  7711. --bs-link-underline-opacity: 0.1
  7712. }
  7713. .link-underline-opacity-25 {
  7714. --bs-link-underline-opacity: 0.25
  7715. }
  7716. .link-underline-opacity-25-hover:hover {
  7717. --bs-link-underline-opacity: 0.25
  7718. }
  7719. .link-underline-opacity-50 {
  7720. --bs-link-underline-opacity: 0.5
  7721. }
  7722. .link-underline-opacity-50-hover:hover {
  7723. --bs-link-underline-opacity: 0.5
  7724. }
  7725. .link-underline-opacity-75 {
  7726. --bs-link-underline-opacity: 0.75
  7727. }
  7728. .link-underline-opacity-75-hover:hover {
  7729. --bs-link-underline-opacity: 0.75
  7730. }
  7731. .link-underline-opacity-100 {
  7732. --bs-link-underline-opacity: 1
  7733. }
  7734. .link-underline-opacity-100-hover:hover {
  7735. --bs-link-underline-opacity: 1
  7736. }
  7737. .bg-primary {
  7738. --bs-bg-opacity: 1;
  7739. background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important
  7740. }
  7741. .bg-secondary {
  7742. --bs-bg-opacity: 1;
  7743. background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important
  7744. }
  7745. .bg-success {
  7746. --bs-bg-opacity: 1;
  7747. background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important
  7748. }
  7749. .bg-info {
  7750. --bs-bg-opacity: 1;
  7751. background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important
  7752. }
  7753. .bg-warning {
  7754. --bs-bg-opacity: 1;
  7755. background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important
  7756. }
  7757. .bg-danger {
  7758. --bs-bg-opacity: 1;
  7759. background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important
  7760. }
  7761. .bg-light {
  7762. --bs-bg-opacity: 1;
  7763. background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important
  7764. }
  7765. .bg-dark {
  7766. --bs-bg-opacity: 1;
  7767. background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important
  7768. }
  7769. .bg-black {
  7770. --bs-bg-opacity: 1;
  7771. background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important
  7772. }
  7773. .bg-white {
  7774. --bs-bg-opacity: 1;
  7775. background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important
  7776. }
  7777. .bg-body {
  7778. --bs-bg-opacity: 1;
  7779. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important
  7780. }
  7781. .bg-transparent {
  7782. --bs-bg-opacity: 1;
  7783. background-color: transparent !important
  7784. }
  7785. .bg-body-secondary {
  7786. --bs-bg-opacity: 1;
  7787. background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important
  7788. }
  7789. .bg-body-tertiary {
  7790. --bs-bg-opacity: 1;
  7791. background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important
  7792. }
  7793. .bg-opacity-10 {
  7794. --bs-bg-opacity: 0.1
  7795. }
  7796. .bg-opacity-25 {
  7797. --bs-bg-opacity: 0.25
  7798. }
  7799. .bg-opacity-50 {
  7800. --bs-bg-opacity: 0.5
  7801. }
  7802. .bg-opacity-75 {
  7803. --bs-bg-opacity: 0.75
  7804. }
  7805. .bg-opacity-100 {
  7806. --bs-bg-opacity: 1
  7807. }
  7808. .bg-primary-subtle {
  7809. background-color: var(--bs-primary-bg-subtle) !important
  7810. }
  7811. .bg-secondary-subtle {
  7812. background-color: var(--bs-secondary-bg-subtle) !important
  7813. }
  7814. .bg-success-subtle {
  7815. background-color: var(--bs-success-bg-subtle) !important
  7816. }
  7817. .bg-info-subtle {
  7818. background-color: var(--bs-info-bg-subtle) !important
  7819. }
  7820. .bg-warning-subtle {
  7821. background-color: var(--bs-warning-bg-subtle) !important
  7822. }
  7823. .bg-danger-subtle {
  7824. background-color: var(--bs-danger-bg-subtle) !important
  7825. }
  7826. .bg-light-subtle {
  7827. background-color: var(--bs-light-bg-subtle) !important
  7828. }
  7829. .bg-dark-subtle {
  7830. background-color: var(--bs-dark-bg-subtle) !important
  7831. }
  7832. .bg-gradient {
  7833. background-image: var(--bs-gradient) !important
  7834. }
  7835. .user-select-all {
  7836. -webkit-user-select: all !important;
  7837. -moz-user-select: all !important;
  7838. user-select: all !important
  7839. }
  7840. .user-select-auto {
  7841. -webkit-user-select: auto !important;
  7842. -moz-user-select: auto !important;
  7843. user-select: auto !important
  7844. }
  7845. .user-select-none {
  7846. -webkit-user-select: none !important;
  7847. -moz-user-select: none !important;
  7848. user-select: none !important
  7849. }
  7850. .pe-none {
  7851. pointer-events: none !important
  7852. }
  7853. .pe-auto {
  7854. pointer-events: auto !important
  7855. }
  7856. .rounded {
  7857. border-radius: var(--bs-border-radius) !important
  7858. }
  7859. .rounded-0 {
  7860. border-radius: 0 !important
  7861. }
  7862. .rounded-1 {
  7863. border-radius: var(--bs-border-radius-sm) !important
  7864. }
  7865. .rounded-2 {
  7866. border-radius: var(--bs-border-radius) !important
  7867. }
  7868. .rounded-3 {
  7869. border-radius: var(--bs-border-radius-lg) !important
  7870. }
  7871. .rounded-4 {
  7872. border-radius: var(--bs-border-radius-xl) !important
  7873. }
  7874. .rounded-5 {
  7875. border-radius: var(--bs-border-radius-xxl) !important
  7876. }
  7877. .rounded-circle {
  7878. border-radius: 50% !important
  7879. }
  7880. .rounded-pill {
  7881. border-radius: var(--bs-border-radius-pill) !important
  7882. }
  7883. .rounded-top {
  7884. border-top-left-radius: var(--bs-border-radius) !important;
  7885. border-top-right-radius: var(--bs-border-radius) !important
  7886. }
  7887. .rounded-top-0 {
  7888. border-top-left-radius: 0 !important;
  7889. border-top-right-radius: 0 !important
  7890. }
  7891. .rounded-top-1 {
  7892. border-top-left-radius: var(--bs-border-radius-sm) !important;
  7893. border-top-right-radius: var(--bs-border-radius-sm) !important
  7894. }
  7895. .rounded-top-2 {
  7896. border-top-left-radius: var(--bs-border-radius) !important;
  7897. border-top-right-radius: var(--bs-border-radius) !important
  7898. }
  7899. .rounded-top-3 {
  7900. border-top-left-radius: var(--bs-border-radius-lg) !important;
  7901. border-top-right-radius: var(--bs-border-radius-lg) !important
  7902. }
  7903. .rounded-top-4 {
  7904. border-top-left-radius: var(--bs-border-radius-xl) !important;
  7905. border-top-right-radius: var(--bs-border-radius-xl) !important
  7906. }
  7907. .rounded-top-5 {
  7908. border-top-left-radius: var(--bs-border-radius-xxl) !important;
  7909. border-top-right-radius: var(--bs-border-radius-xxl) !important
  7910. }
  7911. .rounded-top-circle {
  7912. border-top-left-radius: 50% !important;
  7913. border-top-right-radius: 50% !important
  7914. }
  7915. .rounded-top-pill {
  7916. border-top-left-radius: var(--bs-border-radius-pill) !important;
  7917. border-top-right-radius: var(--bs-border-radius-pill) !important
  7918. }
  7919. .rounded-end {
  7920. border-top-right-radius: var(--bs-border-radius) !important;
  7921. border-bottom-right-radius: var(--bs-border-radius) !important
  7922. }
  7923. .rounded-end-0 {
  7924. border-top-right-radius: 0 !important;
  7925. border-bottom-right-radius: 0 !important
  7926. }
  7927. .rounded-end-1 {
  7928. border-top-right-radius: var(--bs-border-radius-sm) !important;
  7929. border-bottom-right-radius: var(--bs-border-radius-sm) !important
  7930. }
  7931. .rounded-end-2 {
  7932. border-top-right-radius: var(--bs-border-radius) !important;
  7933. border-bottom-right-radius: var(--bs-border-radius) !important
  7934. }
  7935. .rounded-end-3 {
  7936. border-top-right-radius: var(--bs-border-radius-lg) !important;
  7937. border-bottom-right-radius: var(--bs-border-radius-lg) !important
  7938. }
  7939. .rounded-end-4 {
  7940. border-top-right-radius: var(--bs-border-radius-xl) !important;
  7941. border-bottom-right-radius: var(--bs-border-radius-xl) !important
  7942. }
  7943. .rounded-end-5 {
  7944. border-top-right-radius: var(--bs-border-radius-xxl) !important;
  7945. border-bottom-right-radius: var(--bs-border-radius-xxl) !important
  7946. }
  7947. .rounded-end-circle {
  7948. border-top-right-radius: 50% !important;
  7949. border-bottom-right-radius: 50% !important
  7950. }
  7951. .rounded-end-pill {
  7952. border-top-right-radius: var(--bs-border-radius-pill) !important;
  7953. border-bottom-right-radius: var(--bs-border-radius-pill) !important
  7954. }
  7955. .rounded-bottom {
  7956. border-bottom-right-radius: var(--bs-border-radius) !important;
  7957. border-bottom-left-radius: var(--bs-border-radius) !important
  7958. }
  7959. .rounded-bottom-0 {
  7960. border-bottom-right-radius: 0 !important;
  7961. border-bottom-left-radius: 0 !important
  7962. }
  7963. .rounded-bottom-1 {
  7964. border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  7965. border-bottom-left-radius: var(--bs-border-radius-sm) !important
  7966. }
  7967. .rounded-bottom-2 {
  7968. border-bottom-right-radius: var(--bs-border-radius) !important;
  7969. border-bottom-left-radius: var(--bs-border-radius) !important
  7970. }
  7971. .rounded-bottom-3 {
  7972. border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  7973. border-bottom-left-radius: var(--bs-border-radius-lg) !important
  7974. }
  7975. .rounded-bottom-4 {
  7976. border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  7977. border-bottom-left-radius: var(--bs-border-radius-xl) !important
  7978. }
  7979. .rounded-bottom-5 {
  7980. border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  7981. border-bottom-left-radius: var(--bs-border-radius-xxl) !important
  7982. }
  7983. .rounded-bottom-circle {
  7984. border-bottom-right-radius: 50% !important;
  7985. border-bottom-left-radius: 50% !important
  7986. }
  7987. .rounded-bottom-pill {
  7988. border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  7989. border-bottom-left-radius: var(--bs-border-radius-pill) !important
  7990. }
  7991. .rounded-start {
  7992. border-bottom-left-radius: var(--bs-border-radius) !important;
  7993. border-top-left-radius: var(--bs-border-radius) !important
  7994. }
  7995. .rounded-start-0 {
  7996. border-bottom-left-radius: 0 !important;
  7997. border-top-left-radius: 0 !important
  7998. }
  7999. .rounded-start-1 {
  8000. border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  8001. border-top-left-radius: var(--bs-border-radius-sm) !important
  8002. }
  8003. .rounded-start-2 {
  8004. border-bottom-left-radius: var(--bs-border-radius) !important;
  8005. border-top-left-radius: var(--bs-border-radius) !important
  8006. }
  8007. .rounded-start-3 {
  8008. border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  8009. border-top-left-radius: var(--bs-border-radius-lg) !important
  8010. }
  8011. .rounded-start-4 {
  8012. border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  8013. border-top-left-radius: var(--bs-border-radius-xl) !important
  8014. }
  8015. .rounded-start-5 {
  8016. border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  8017. border-top-left-radius: var(--bs-border-radius-xxl) !important
  8018. }
  8019. .rounded-start-circle {
  8020. border-bottom-left-radius: 50% !important;
  8021. border-top-left-radius: 50% !important
  8022. }
  8023. .rounded-start-pill {
  8024. border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  8025. border-top-left-radius: var(--bs-border-radius-pill) !important
  8026. }
  8027. .visible {
  8028. visibility: visible !important
  8029. }
  8030. .invisible {
  8031. visibility: hidden !important
  8032. }
  8033. .z-n1 {
  8034. z-index: -1 !important
  8035. }
  8036. .z-0 {
  8037. z-index: 0 !important
  8038. }
  8039. .z-1 {
  8040. z-index: 1 !important
  8041. }
  8042. .z-2 {
  8043. z-index: 2 !important
  8044. }
  8045. .z-3 {
  8046. z-index: 3 !important
  8047. }
  8048. @media (min-width: 576px) {
  8049. .float-sm-start {
  8050. float: left !important
  8051. }
  8052. .float-sm-end {
  8053. float: right !important
  8054. }
  8055. .float-sm-none {
  8056. float: none !important
  8057. }
  8058. .object-fit-sm-contain {
  8059. -o-object-fit: contain !important;
  8060. object-fit: contain !important
  8061. }
  8062. .object-fit-sm-cover {
  8063. -o-object-fit: cover !important;
  8064. object-fit: cover !important
  8065. }
  8066. .object-fit-sm-fill {
  8067. -o-object-fit: fill !important;
  8068. object-fit: fill !important
  8069. }
  8070. .object-fit-sm-scale {
  8071. -o-object-fit: scale-down !important;
  8072. object-fit: scale-down !important
  8073. }
  8074. .object-fit-sm-none {
  8075. -o-object-fit: none !important;
  8076. object-fit: none !important
  8077. }
  8078. .d-sm-inline {
  8079. display: inline !important
  8080. }
  8081. .d-sm-inline-block {
  8082. display: inline-block !important
  8083. }
  8084. .d-sm-block {
  8085. display: block !important
  8086. }
  8087. .d-sm-grid {
  8088. display: grid !important
  8089. }
  8090. .d-sm-inline-grid {
  8091. display: inline-grid !important
  8092. }
  8093. .d-sm-table {
  8094. display: table !important
  8095. }
  8096. .d-sm-table-row {
  8097. display: table-row !important
  8098. }
  8099. .d-sm-table-cell {
  8100. display: table-cell !important
  8101. }
  8102. .d-sm-flex {
  8103. display: flex !important
  8104. }
  8105. .d-sm-inline-flex {
  8106. display: inline-flex !important
  8107. }
  8108. .d-sm-none {
  8109. display: none !important
  8110. }
  8111. .flex-sm-fill {
  8112. flex: 1 1 auto !important
  8113. }
  8114. .flex-sm-row {
  8115. flex-direction: row !important
  8116. }
  8117. .flex-sm-column {
  8118. flex-direction: column !important
  8119. }
  8120. .flex-sm-row-reverse {
  8121. flex-direction: row-reverse !important
  8122. }
  8123. .flex-sm-column-reverse {
  8124. flex-direction: column-reverse !important
  8125. }
  8126. .flex-sm-grow-0 {
  8127. flex-grow: 0 !important
  8128. }
  8129. .flex-sm-grow-1 {
  8130. flex-grow: 1 !important
  8131. }
  8132. .flex-sm-shrink-0 {
  8133. flex-shrink: 0 !important
  8134. }
  8135. .flex-sm-shrink-1 {
  8136. flex-shrink: 1 !important
  8137. }
  8138. .flex-sm-wrap {
  8139. flex-wrap: wrap !important
  8140. }
  8141. .flex-sm-nowrap {
  8142. flex-wrap: nowrap !important
  8143. }
  8144. .flex-sm-wrap-reverse {
  8145. flex-wrap: wrap-reverse !important
  8146. }
  8147. .justify-content-sm-start {
  8148. justify-content: flex-start !important
  8149. }
  8150. .justify-content-sm-end {
  8151. justify-content: flex-end !important
  8152. }
  8153. .justify-content-sm-center {
  8154. justify-content: center !important
  8155. }
  8156. .justify-content-sm-between {
  8157. justify-content: space-between !important
  8158. }
  8159. .justify-content-sm-around {
  8160. justify-content: space-around !important
  8161. }
  8162. .justify-content-sm-evenly {
  8163. justify-content: space-evenly !important
  8164. }
  8165. .align-items-sm-start {
  8166. align-items: flex-start !important
  8167. }
  8168. .align-items-sm-end {
  8169. align-items: flex-end !important
  8170. }
  8171. .align-items-sm-center {
  8172. align-items: center !important
  8173. }
  8174. .align-items-sm-baseline {
  8175. align-items: baseline !important
  8176. }
  8177. .align-items-sm-stretch {
  8178. align-items: stretch !important
  8179. }
  8180. .align-content-sm-start {
  8181. align-content: flex-start !important
  8182. }
  8183. .align-content-sm-end {
  8184. align-content: flex-end !important
  8185. }
  8186. .align-content-sm-center {
  8187. align-content: center !important
  8188. }
  8189. .align-content-sm-between {
  8190. align-content: space-between !important
  8191. }
  8192. .align-content-sm-around {
  8193. align-content: space-around !important
  8194. }
  8195. .align-content-sm-stretch {
  8196. align-content: stretch !important
  8197. }
  8198. .align-self-sm-auto {
  8199. align-self: auto !important
  8200. }
  8201. .align-self-sm-start {
  8202. align-self: flex-start !important
  8203. }
  8204. .align-self-sm-end {
  8205. align-self: flex-end !important
  8206. }
  8207. .align-self-sm-center {
  8208. align-self: center !important
  8209. }
  8210. .align-self-sm-baseline {
  8211. align-self: baseline !important
  8212. }
  8213. .align-self-sm-stretch {
  8214. align-self: stretch !important
  8215. }
  8216. .order-sm-first {
  8217. order: -1 !important
  8218. }
  8219. .order-sm-0 {
  8220. order: 0 !important
  8221. }
  8222. .order-sm-1 {
  8223. order: 1 !important
  8224. }
  8225. .order-sm-2 {
  8226. order: 2 !important
  8227. }
  8228. .order-sm-3 {
  8229. order: 3 !important
  8230. }
  8231. .order-sm-4 {
  8232. order: 4 !important
  8233. }
  8234. .order-sm-5 {
  8235. order: 5 !important
  8236. }
  8237. .order-sm-last {
  8238. order: 6 !important
  8239. }
  8240. .m-sm-0 {
  8241. margin: 0 !important
  8242. }
  8243. .m-sm-1 {
  8244. margin: .25rem !important
  8245. }
  8246. .m-sm-2 {
  8247. margin: .5rem !important
  8248. }
  8249. .m-sm-3 {
  8250. margin: 1rem !important
  8251. }
  8252. .m-sm-4 {
  8253. margin: 1.5rem !important
  8254. }
  8255. .m-sm-5 {
  8256. margin: 3rem !important
  8257. }
  8258. .m-sm-auto {
  8259. margin: auto !important
  8260. }
  8261. .mx-sm-0 {
  8262. margin-right: 0 !important;
  8263. margin-left: 0 !important
  8264. }
  8265. .mx-sm-1 {
  8266. margin-right: .25rem !important;
  8267. margin-left: .25rem !important
  8268. }
  8269. .mx-sm-2 {
  8270. margin-right: .5rem !important;
  8271. margin-left: .5rem !important
  8272. }
  8273. .mx-sm-3 {
  8274. margin-right: 1rem !important;
  8275. margin-left: 1rem !important
  8276. }
  8277. .mx-sm-4 {
  8278. margin-right: 1.5rem !important;
  8279. margin-left: 1.5rem !important
  8280. }
  8281. .mx-sm-5 {
  8282. margin-right: 3rem !important;
  8283. margin-left: 3rem !important
  8284. }
  8285. .mx-sm-auto {
  8286. margin-right: auto !important;
  8287. margin-left: auto !important
  8288. }
  8289. .my-sm-0 {
  8290. margin-top: 0 !important;
  8291. margin-bottom: 0 !important
  8292. }
  8293. .my-sm-1 {
  8294. margin-top: .25rem !important;
  8295. margin-bottom: .25rem !important
  8296. }
  8297. .my-sm-2 {
  8298. margin-top: .5rem !important;
  8299. margin-bottom: .5rem !important
  8300. }
  8301. .my-sm-3 {
  8302. margin-top: 1rem !important;
  8303. margin-bottom: 1rem !important
  8304. }
  8305. .my-sm-4 {
  8306. margin-top: 1.5rem !important;
  8307. margin-bottom: 1.5rem !important
  8308. }
  8309. .my-sm-5 {
  8310. margin-top: 3rem !important;
  8311. margin-bottom: 3rem !important
  8312. }
  8313. .my-sm-auto {
  8314. margin-top: auto !important;
  8315. margin-bottom: auto !important
  8316. }
  8317. .mt-sm-0 {
  8318. margin-top: 0 !important
  8319. }
  8320. .mt-sm-1 {
  8321. margin-top: .25rem !important
  8322. }
  8323. .mt-sm-2 {
  8324. margin-top: .5rem !important
  8325. }
  8326. .mt-sm-3 {
  8327. margin-top: 1rem !important
  8328. }
  8329. .mt-sm-4 {
  8330. margin-top: 1.5rem !important
  8331. }
  8332. .mt-sm-5 {
  8333. margin-top: 3rem !important
  8334. }
  8335. .mt-sm-auto {
  8336. margin-top: auto !important
  8337. }
  8338. .me-sm-0 {
  8339. margin-right: 0 !important
  8340. }
  8341. .me-sm-1 {
  8342. margin-right: .25rem !important
  8343. }
  8344. .me-sm-2 {
  8345. margin-right: .5rem !important
  8346. }
  8347. .me-sm-3 {
  8348. margin-right: 1rem !important
  8349. }
  8350. .me-sm-4 {
  8351. margin-right: 1.5rem !important
  8352. }
  8353. .me-sm-5 {
  8354. margin-right: 3rem !important
  8355. }
  8356. .me-sm-auto {
  8357. margin-right: auto !important
  8358. }
  8359. .mb-sm-0 {
  8360. margin-bottom: 0 !important
  8361. }
  8362. .mb-sm-1 {
  8363. margin-bottom: .25rem !important
  8364. }
  8365. .mb-sm-2 {
  8366. margin-bottom: .5rem !important
  8367. }
  8368. .mb-sm-3 {
  8369. margin-bottom: 1rem !important
  8370. }
  8371. .mb-sm-4 {
  8372. margin-bottom: 1.5rem !important
  8373. }
  8374. .mb-sm-5 {
  8375. margin-bottom: 3rem !important
  8376. }
  8377. .mb-sm-auto {
  8378. margin-bottom: auto !important
  8379. }
  8380. .ms-sm-0 {
  8381. margin-left: 0 !important
  8382. }
  8383. .ms-sm-1 {
  8384. margin-left: .25rem !important
  8385. }
  8386. .ms-sm-2 {
  8387. margin-left: .5rem !important
  8388. }
  8389. .ms-sm-3 {
  8390. margin-left: 1rem !important
  8391. }
  8392. .ms-sm-4 {
  8393. margin-left: 1.5rem !important
  8394. }
  8395. .ms-sm-5 {
  8396. margin-left: 3rem !important
  8397. }
  8398. .ms-sm-auto {
  8399. margin-left: auto !important
  8400. }
  8401. .p-sm-0 {
  8402. padding: 0 !important
  8403. }
  8404. .p-sm-1 {
  8405. padding: .25rem !important
  8406. }
  8407. .p-sm-2 {
  8408. padding: .5rem !important
  8409. }
  8410. .p-sm-3 {
  8411. padding: 1rem !important
  8412. }
  8413. .p-sm-4 {
  8414. padding: 1.5rem !important
  8415. }
  8416. .p-sm-5 {
  8417. padding: 3rem !important
  8418. }
  8419. .px-sm-0 {
  8420. padding-right: 0 !important;
  8421. padding-left: 0 !important
  8422. }
  8423. .px-sm-1 {
  8424. padding-right: .25rem !important;
  8425. padding-left: .25rem !important
  8426. }
  8427. .px-sm-2 {
  8428. padding-right: .5rem !important;
  8429. padding-left: .5rem !important
  8430. }
  8431. .px-sm-3 {
  8432. padding-right: 1rem !important;
  8433. padding-left: 1rem !important
  8434. }
  8435. .px-sm-4 {
  8436. padding-right: 1.5rem !important;
  8437. padding-left: 1.5rem !important
  8438. }
  8439. .px-sm-5 {
  8440. padding-right: 3rem !important;
  8441. padding-left: 3rem !important
  8442. }
  8443. .py-sm-0 {
  8444. padding-top: 0 !important;
  8445. padding-bottom: 0 !important
  8446. }
  8447. .py-sm-1 {
  8448. padding-top: .25rem !important;
  8449. padding-bottom: .25rem !important
  8450. }
  8451. .py-sm-2 {
  8452. padding-top: .5rem !important;
  8453. padding-bottom: .5rem !important
  8454. }
  8455. .py-sm-3 {
  8456. padding-top: 1rem !important;
  8457. padding-bottom: 1rem !important
  8458. }
  8459. .py-sm-4 {
  8460. padding-top: 1.5rem !important;
  8461. padding-bottom: 1.5rem !important
  8462. }
  8463. .py-sm-5 {
  8464. padding-top: 3rem !important;
  8465. padding-bottom: 3rem !important
  8466. }
  8467. .pt-sm-0 {
  8468. padding-top: 0 !important
  8469. }
  8470. .pt-sm-1 {
  8471. padding-top: .25rem !important
  8472. }
  8473. .pt-sm-2 {
  8474. padding-top: .5rem !important
  8475. }
  8476. .pt-sm-3 {
  8477. padding-top: 1rem !important
  8478. }
  8479. .pt-sm-4 {
  8480. padding-top: 1.5rem !important
  8481. }
  8482. .pt-sm-5 {
  8483. padding-top: 3rem !important
  8484. }
  8485. .pe-sm-0 {
  8486. padding-right: 0 !important
  8487. }
  8488. .pe-sm-1 {
  8489. padding-right: .25rem !important
  8490. }
  8491. .pe-sm-2 {
  8492. padding-right: .5rem !important
  8493. }
  8494. .pe-sm-3 {
  8495. padding-right: 1rem !important
  8496. }
  8497. .pe-sm-4 {
  8498. padding-right: 1.5rem !important
  8499. }
  8500. .pe-sm-5 {
  8501. padding-right: 3rem !important
  8502. }
  8503. .pb-sm-0 {
  8504. padding-bottom: 0 !important
  8505. }
  8506. .pb-sm-1 {
  8507. padding-bottom: .25rem !important
  8508. }
  8509. .pb-sm-2 {
  8510. padding-bottom: .5rem !important
  8511. }
  8512. .pb-sm-3 {
  8513. padding-bottom: 1rem !important
  8514. }
  8515. .pb-sm-4 {
  8516. padding-bottom: 1.5rem !important
  8517. }
  8518. .pb-sm-5 {
  8519. padding-bottom: 3rem !important
  8520. }
  8521. .ps-sm-0 {
  8522. padding-left: 0 !important
  8523. }
  8524. .ps-sm-1 {
  8525. padding-left: .25rem !important
  8526. }
  8527. .ps-sm-2 {
  8528. padding-left: .5rem !important
  8529. }
  8530. .ps-sm-3 {
  8531. padding-left: 1rem !important
  8532. }
  8533. .ps-sm-4 {
  8534. padding-left: 1.5rem !important
  8535. }
  8536. .ps-sm-5 {
  8537. padding-left: 3rem !important
  8538. }
  8539. .gap-sm-0 {
  8540. gap: 0 !important
  8541. }
  8542. .gap-sm-1 {
  8543. gap: .25rem !important
  8544. }
  8545. .gap-sm-2 {
  8546. gap: .5rem !important
  8547. }
  8548. .gap-sm-3 {
  8549. gap: 1rem !important
  8550. }
  8551. .gap-sm-4 {
  8552. gap: 1.5rem !important
  8553. }
  8554. .gap-sm-5 {
  8555. gap: 3rem !important
  8556. }
  8557. .row-gap-sm-0 {
  8558. row-gap: 0 !important
  8559. }
  8560. .row-gap-sm-1 {
  8561. row-gap: .25rem !important
  8562. }
  8563. .row-gap-sm-2 {
  8564. row-gap: .5rem !important
  8565. }
  8566. .row-gap-sm-3 {
  8567. row-gap: 1rem !important
  8568. }
  8569. .row-gap-sm-4 {
  8570. row-gap: 1.5rem !important
  8571. }
  8572. .row-gap-sm-5 {
  8573. row-gap: 3rem !important
  8574. }
  8575. .column-gap-sm-0 {
  8576. -moz-column-gap: 0 !important;
  8577. column-gap: 0 !important
  8578. }
  8579. .column-gap-sm-1 {
  8580. -moz-column-gap: 0.25rem !important;
  8581. column-gap: .25rem !important
  8582. }
  8583. .column-gap-sm-2 {
  8584. -moz-column-gap: 0.5rem !important;
  8585. column-gap: .5rem !important
  8586. }
  8587. .column-gap-sm-3 {
  8588. -moz-column-gap: 1rem !important;
  8589. column-gap: 1rem !important
  8590. }
  8591. .column-gap-sm-4 {
  8592. -moz-column-gap: 1.5rem !important;
  8593. column-gap: 1.5rem !important
  8594. }
  8595. .column-gap-sm-5 {
  8596. -moz-column-gap: 3rem !important;
  8597. column-gap: 3rem !important
  8598. }
  8599. .text-sm-start {
  8600. text-align: left !important
  8601. }
  8602. .text-sm-end {
  8603. text-align: right !important
  8604. }
  8605. .text-sm-center {
  8606. text-align: center !important
  8607. }
  8608. }
  8609. @media (min-width: 768px) {
  8610. .float-md-start {
  8611. float: left !important
  8612. }
  8613. .float-md-end {
  8614. float: right !important
  8615. }
  8616. .float-md-none {
  8617. float: none !important
  8618. }
  8619. .object-fit-md-contain {
  8620. -o-object-fit: contain !important;
  8621. object-fit: contain !important
  8622. }
  8623. .object-fit-md-cover {
  8624. -o-object-fit: cover !important;
  8625. object-fit: cover !important
  8626. }
  8627. .object-fit-md-fill {
  8628. -o-object-fit: fill !important;
  8629. object-fit: fill !important
  8630. }
  8631. .object-fit-md-scale {
  8632. -o-object-fit: scale-down !important;
  8633. object-fit: scale-down !important
  8634. }
  8635. .object-fit-md-none {
  8636. -o-object-fit: none !important;
  8637. object-fit: none !important
  8638. }
  8639. .d-md-inline {
  8640. display: inline !important
  8641. }
  8642. .d-md-inline-block {
  8643. display: inline-block !important
  8644. }
  8645. .d-md-block {
  8646. display: block !important
  8647. }
  8648. .d-md-grid {
  8649. display: grid !important
  8650. }
  8651. .d-md-inline-grid {
  8652. display: inline-grid !important
  8653. }
  8654. .d-md-table {
  8655. display: table !important
  8656. }
  8657. .d-md-table-row {
  8658. display: table-row !important
  8659. }
  8660. .d-md-table-cell {
  8661. display: table-cell !important
  8662. }
  8663. .d-md-flex {
  8664. display: flex !important
  8665. }
  8666. .d-md-inline-flex {
  8667. display: inline-flex !important
  8668. }
  8669. .d-md-none {
  8670. display: none !important
  8671. }
  8672. .flex-md-fill {
  8673. flex: 1 1 auto !important
  8674. }
  8675. .flex-md-row {
  8676. flex-direction: row !important
  8677. }
  8678. .flex-md-column {
  8679. flex-direction: column !important
  8680. }
  8681. .flex-md-row-reverse {
  8682. flex-direction: row-reverse !important
  8683. }
  8684. .flex-md-column-reverse {
  8685. flex-direction: column-reverse !important
  8686. }
  8687. .flex-md-grow-0 {
  8688. flex-grow: 0 !important
  8689. }
  8690. .flex-md-grow-1 {
  8691. flex-grow: 1 !important
  8692. }
  8693. .flex-md-shrink-0 {
  8694. flex-shrink: 0 !important
  8695. }
  8696. .flex-md-shrink-1 {
  8697. flex-shrink: 1 !important
  8698. }
  8699. .flex-md-wrap {
  8700. flex-wrap: wrap !important
  8701. }
  8702. .flex-md-nowrap {
  8703. flex-wrap: nowrap !important
  8704. }
  8705. .flex-md-wrap-reverse {
  8706. flex-wrap: wrap-reverse !important
  8707. }
  8708. .justify-content-md-start {
  8709. justify-content: flex-start !important
  8710. }
  8711. .justify-content-md-end {
  8712. justify-content: flex-end !important
  8713. }
  8714. .justify-content-md-center {
  8715. justify-content: center !important
  8716. }
  8717. .justify-content-md-between {
  8718. justify-content: space-between !important
  8719. }
  8720. .justify-content-md-around {
  8721. justify-content: space-around !important
  8722. }
  8723. .justify-content-md-evenly {
  8724. justify-content: space-evenly !important
  8725. }
  8726. .align-items-md-start {
  8727. align-items: flex-start !important
  8728. }
  8729. .align-items-md-end {
  8730. align-items: flex-end !important
  8731. }
  8732. .align-items-md-center {
  8733. align-items: center !important
  8734. }
  8735. .align-items-md-baseline {
  8736. align-items: baseline !important
  8737. }
  8738. .align-items-md-stretch {
  8739. align-items: stretch !important
  8740. }
  8741. .align-content-md-start {
  8742. align-content: flex-start !important
  8743. }
  8744. .align-content-md-end {
  8745. align-content: flex-end !important
  8746. }
  8747. .align-content-md-center {
  8748. align-content: center !important
  8749. }
  8750. .align-content-md-between {
  8751. align-content: space-between !important
  8752. }
  8753. .align-content-md-around {
  8754. align-content: space-around !important
  8755. }
  8756. .align-content-md-stretch {
  8757. align-content: stretch !important
  8758. }
  8759. .align-self-md-auto {
  8760. align-self: auto !important
  8761. }
  8762. .align-self-md-start {
  8763. align-self: flex-start !important
  8764. }
  8765. .align-self-md-end {
  8766. align-self: flex-end !important
  8767. }
  8768. .align-self-md-center {
  8769. align-self: center !important
  8770. }
  8771. .align-self-md-baseline {
  8772. align-self: baseline !important
  8773. }
  8774. .align-self-md-stretch {
  8775. align-self: stretch !important
  8776. }
  8777. .order-md-first {
  8778. order: -1 !important
  8779. }
  8780. .order-md-0 {
  8781. order: 0 !important
  8782. }
  8783. .order-md-1 {
  8784. order: 1 !important
  8785. }
  8786. .order-md-2 {
  8787. order: 2 !important
  8788. }
  8789. .order-md-3 {
  8790. order: 3 !important
  8791. }
  8792. .order-md-4 {
  8793. order: 4 !important
  8794. }
  8795. .order-md-5 {
  8796. order: 5 !important
  8797. }
  8798. .order-md-last {
  8799. order: 6 !important
  8800. }
  8801. .m-md-0 {
  8802. margin: 0 !important
  8803. }
  8804. .m-md-1 {
  8805. margin: .25rem !important
  8806. }
  8807. .m-md-2 {
  8808. margin: .5rem !important
  8809. }
  8810. .m-md-3 {
  8811. margin: 1rem !important
  8812. }
  8813. .m-md-4 {
  8814. margin: 1.5rem !important
  8815. }
  8816. .m-md-5 {
  8817. margin: 3rem !important
  8818. }
  8819. .m-md-auto {
  8820. margin: auto !important
  8821. }
  8822. .mx-md-0 {
  8823. margin-right: 0 !important;
  8824. margin-left: 0 !important
  8825. }
  8826. .mx-md-1 {
  8827. margin-right: .25rem !important;
  8828. margin-left: .25rem !important
  8829. }
  8830. .mx-md-2 {
  8831. margin-right: .5rem !important;
  8832. margin-left: .5rem !important
  8833. }
  8834. .mx-md-3 {
  8835. margin-right: 1rem !important;
  8836. margin-left: 1rem !important
  8837. }
  8838. .mx-md-4 {
  8839. margin-right: 1.5rem !important;
  8840. margin-left: 1.5rem !important
  8841. }
  8842. .mx-md-5 {
  8843. margin-right: 3rem !important;
  8844. margin-left: 3rem !important
  8845. }
  8846. .mx-md-auto {
  8847. margin-right: auto !important;
  8848. margin-left: auto !important
  8849. }
  8850. .my-md-0 {
  8851. margin-top: 0 !important;
  8852. margin-bottom: 0 !important
  8853. }
  8854. .my-md-1 {
  8855. margin-top: .25rem !important;
  8856. margin-bottom: .25rem !important
  8857. }
  8858. .my-md-2 {
  8859. margin-top: .5rem !important;
  8860. margin-bottom: .5rem !important
  8861. }
  8862. .my-md-3 {
  8863. margin-top: 1rem !important;
  8864. margin-bottom: 1rem !important
  8865. }
  8866. .my-md-4 {
  8867. margin-top: 1.5rem !important;
  8868. margin-bottom: 1.5rem !important
  8869. }
  8870. .my-md-5 {
  8871. margin-top: 3rem !important;
  8872. margin-bottom: 3rem !important
  8873. }
  8874. .my-md-auto {
  8875. margin-top: auto !important;
  8876. margin-bottom: auto !important
  8877. }
  8878. .mt-md-0 {
  8879. margin-top: 0 !important
  8880. }
  8881. .mt-md-1 {
  8882. margin-top: .25rem !important
  8883. }
  8884. .mt-md-2 {
  8885. margin-top: .5rem !important
  8886. }
  8887. .mt-md-3 {
  8888. margin-top: 1rem !important
  8889. }
  8890. .mt-md-4 {
  8891. margin-top: 1.5rem !important
  8892. }
  8893. .mt-md-5 {
  8894. margin-top: 3rem !important
  8895. }
  8896. .mt-md-auto {
  8897. margin-top: auto !important
  8898. }
  8899. .me-md-0 {
  8900. margin-right: 0 !important
  8901. }
  8902. .me-md-1 {
  8903. margin-right: .25rem !important
  8904. }
  8905. .me-md-2 {
  8906. margin-right: .5rem !important
  8907. }
  8908. .me-md-3 {
  8909. margin-right: 1rem !important
  8910. }
  8911. .me-md-4 {
  8912. margin-right: 1.5rem !important
  8913. }
  8914. .me-md-5 {
  8915. margin-right: 3rem !important
  8916. }
  8917. .me-md-auto {
  8918. margin-right: auto !important
  8919. }
  8920. .mb-md-0 {
  8921. margin-bottom: 0 !important
  8922. }
  8923. .mb-md-1 {
  8924. margin-bottom: .25rem !important
  8925. }
  8926. .mb-md-2 {
  8927. margin-bottom: .5rem !important
  8928. }
  8929. .mb-md-3 {
  8930. margin-bottom: 1rem !important
  8931. }
  8932. .mb-md-4 {
  8933. margin-bottom: 1.5rem !important
  8934. }
  8935. .mb-md-5 {
  8936. margin-bottom: 3rem !important
  8937. }
  8938. .mb-md-auto {
  8939. margin-bottom: auto !important
  8940. }
  8941. .ms-md-0 {
  8942. margin-left: 0 !important
  8943. }
  8944. .ms-md-1 {
  8945. margin-left: .25rem !important
  8946. }
  8947. .ms-md-2 {
  8948. margin-left: .5rem !important
  8949. }
  8950. .ms-md-3 {
  8951. margin-left: 1rem !important
  8952. }
  8953. .ms-md-4 {
  8954. margin-left: 1.5rem !important
  8955. }
  8956. .ms-md-5 {
  8957. margin-left: 3rem !important
  8958. }
  8959. .ms-md-auto {
  8960. margin-left: auto !important
  8961. }
  8962. .p-md-0 {
  8963. padding: 0 !important
  8964. }
  8965. .p-md-1 {
  8966. padding: .25rem !important
  8967. }
  8968. .p-md-2 {
  8969. padding: .5rem !important
  8970. }
  8971. .p-md-3 {
  8972. padding: 1rem !important
  8973. }
  8974. .p-md-4 {
  8975. padding: 1.5rem !important
  8976. }
  8977. .p-md-5 {
  8978. padding: 3rem !important
  8979. }
  8980. .px-md-0 {
  8981. padding-right: 0 !important;
  8982. padding-left: 0 !important
  8983. }
  8984. .px-md-1 {
  8985. padding-right: .25rem !important;
  8986. padding-left: .25rem !important
  8987. }
  8988. .px-md-2 {
  8989. padding-right: .5rem !important;
  8990. padding-left: .5rem !important
  8991. }
  8992. .px-md-3 {
  8993. padding-right: 1rem !important;
  8994. padding-left: 1rem !important
  8995. }
  8996. .px-md-4 {
  8997. padding-right: 1.5rem !important;
  8998. padding-left: 1.5rem !important
  8999. }
  9000. .px-md-5 {
  9001. padding-right: 3rem !important;
  9002. padding-left: 3rem !important
  9003. }
  9004. .py-md-0 {
  9005. padding-top: 0 !important;
  9006. padding-bottom: 0 !important
  9007. }
  9008. .py-md-1 {
  9009. padding-top: .25rem !important;
  9010. padding-bottom: .25rem !important
  9011. }
  9012. .py-md-2 {
  9013. padding-top: .5rem !important;
  9014. padding-bottom: .5rem !important
  9015. }
  9016. .py-md-3 {
  9017. padding-top: 1rem !important;
  9018. padding-bottom: 1rem !important
  9019. }
  9020. .py-md-4 {
  9021. padding-top: 1.5rem !important;
  9022. padding-bottom: 1.5rem !important
  9023. }
  9024. .py-md-5 {
  9025. padding-top: 3rem !important;
  9026. padding-bottom: 3rem !important
  9027. }
  9028. .pt-md-0 {
  9029. padding-top: 0 !important
  9030. }
  9031. .pt-md-1 {
  9032. padding-top: .25rem !important
  9033. }
  9034. .pt-md-2 {
  9035. padding-top: .5rem !important
  9036. }
  9037. .pt-md-3 {
  9038. padding-top: 1rem !important
  9039. }
  9040. .pt-md-4 {
  9041. padding-top: 1.5rem !important
  9042. }
  9043. .pt-md-5 {
  9044. padding-top: 3rem !important
  9045. }
  9046. .pe-md-0 {
  9047. padding-right: 0 !important
  9048. }
  9049. .pe-md-1 {
  9050. padding-right: .25rem !important
  9051. }
  9052. .pe-md-2 {
  9053. padding-right: .5rem !important
  9054. }
  9055. .pe-md-3 {
  9056. padding-right: 1rem !important
  9057. }
  9058. .pe-md-4 {
  9059. padding-right: 1.5rem !important
  9060. }
  9061. .pe-md-5 {
  9062. padding-right: 3rem !important
  9063. }
  9064. .pb-md-0 {
  9065. padding-bottom: 0 !important
  9066. }
  9067. .pb-md-1 {
  9068. padding-bottom: .25rem !important
  9069. }
  9070. .pb-md-2 {
  9071. padding-bottom: .5rem !important
  9072. }
  9073. .pb-md-3 {
  9074. padding-bottom: 1rem !important
  9075. }
  9076. .pb-md-4 {
  9077. padding-bottom: 1.5rem !important
  9078. }
  9079. .pb-md-5 {
  9080. padding-bottom: 3rem !important
  9081. }
  9082. .ps-md-0 {
  9083. padding-left: 0 !important
  9084. }
  9085. .ps-md-1 {
  9086. padding-left: .25rem !important
  9087. }
  9088. .ps-md-2 {
  9089. padding-left: .5rem !important
  9090. }
  9091. .ps-md-3 {
  9092. padding-left: 1rem !important
  9093. }
  9094. .ps-md-4 {
  9095. padding-left: 1.5rem !important
  9096. }
  9097. .ps-md-5 {
  9098. padding-left: 3rem !important
  9099. }
  9100. .gap-md-0 {
  9101. gap: 0 !important
  9102. }
  9103. .gap-md-1 {
  9104. gap: .25rem !important
  9105. }
  9106. .gap-md-2 {
  9107. gap: .5rem !important
  9108. }
  9109. .gap-md-3 {
  9110. gap: 1rem !important
  9111. }
  9112. .gap-md-4 {
  9113. gap: 1.5rem !important
  9114. }
  9115. .gap-md-5 {
  9116. gap: 3rem !important
  9117. }
  9118. .row-gap-md-0 {
  9119. row-gap: 0 !important
  9120. }
  9121. .row-gap-md-1 {
  9122. row-gap: .25rem !important
  9123. }
  9124. .row-gap-md-2 {
  9125. row-gap: .5rem !important
  9126. }
  9127. .row-gap-md-3 {
  9128. row-gap: 1rem !important
  9129. }
  9130. .row-gap-md-4 {
  9131. row-gap: 1.5rem !important
  9132. }
  9133. .row-gap-md-5 {
  9134. row-gap: 3rem !important
  9135. }
  9136. .column-gap-md-0 {
  9137. -moz-column-gap: 0 !important;
  9138. column-gap: 0 !important
  9139. }
  9140. .column-gap-md-1 {
  9141. -moz-column-gap: 0.25rem !important;
  9142. column-gap: .25rem !important
  9143. }
  9144. .column-gap-md-2 {
  9145. -moz-column-gap: 0.5rem !important;
  9146. column-gap: .5rem !important
  9147. }
  9148. .column-gap-md-3 {
  9149. -moz-column-gap: 1rem !important;
  9150. column-gap: 1rem !important
  9151. }
  9152. .column-gap-md-4 {
  9153. -moz-column-gap: 1.5rem !important;
  9154. column-gap: 1.5rem !important
  9155. }
  9156. .column-gap-md-5 {
  9157. -moz-column-gap: 3rem !important;
  9158. column-gap: 3rem !important
  9159. }
  9160. .text-md-start {
  9161. text-align: left !important
  9162. }
  9163. .text-md-end {
  9164. text-align: right !important
  9165. }
  9166. .text-md-center {
  9167. text-align: center !important
  9168. }
  9169. }
  9170. @media (min-width: 992px) {
  9171. .float-lg-start {
  9172. float: left !important
  9173. }
  9174. .float-lg-end {
  9175. float: right !important
  9176. }
  9177. .float-lg-none {
  9178. float: none !important
  9179. }
  9180. .object-fit-lg-contain {
  9181. -o-object-fit: contain !important;
  9182. object-fit: contain !important
  9183. }
  9184. .object-fit-lg-cover {
  9185. -o-object-fit: cover !important;
  9186. object-fit: cover !important
  9187. }
  9188. .object-fit-lg-fill {
  9189. -o-object-fit: fill !important;
  9190. object-fit: fill !important
  9191. }
  9192. .object-fit-lg-scale {
  9193. -o-object-fit: scale-down !important;
  9194. object-fit: scale-down !important
  9195. }
  9196. .object-fit-lg-none {
  9197. -o-object-fit: none !important;
  9198. object-fit: none !important
  9199. }
  9200. .d-lg-inline {
  9201. display: inline !important
  9202. }
  9203. .d-lg-inline-block {
  9204. display: inline-block !important
  9205. }
  9206. .d-lg-block {
  9207. display: block !important
  9208. }
  9209. .d-lg-grid {
  9210. display: grid !important
  9211. }
  9212. .d-lg-inline-grid {
  9213. display: inline-grid !important
  9214. }
  9215. .d-lg-table {
  9216. display: table !important
  9217. }
  9218. .d-lg-table-row {
  9219. display: table-row !important
  9220. }
  9221. .d-lg-table-cell {
  9222. display: table-cell !important
  9223. }
  9224. .d-lg-flex {
  9225. display: flex !important
  9226. }
  9227. .d-lg-inline-flex {
  9228. display: inline-flex !important
  9229. }
  9230. .d-lg-none {
  9231. display: none !important
  9232. }
  9233. .flex-lg-fill {
  9234. flex: 1 1 auto !important
  9235. }
  9236. .flex-lg-row {
  9237. flex-direction: row !important
  9238. }
  9239. .flex-lg-column {
  9240. flex-direction: column !important
  9241. }
  9242. .flex-lg-row-reverse {
  9243. flex-direction: row-reverse !important
  9244. }
  9245. .flex-lg-column-reverse {
  9246. flex-direction: column-reverse !important
  9247. }
  9248. .flex-lg-grow-0 {
  9249. flex-grow: 0 !important
  9250. }
  9251. .flex-lg-grow-1 {
  9252. flex-grow: 1 !important
  9253. }
  9254. .flex-lg-shrink-0 {
  9255. flex-shrink: 0 !important
  9256. }
  9257. .flex-lg-shrink-1 {
  9258. flex-shrink: 1 !important
  9259. }
  9260. .flex-lg-wrap {
  9261. flex-wrap: wrap !important
  9262. }
  9263. .flex-lg-nowrap {
  9264. flex-wrap: nowrap !important
  9265. }
  9266. .flex-lg-wrap-reverse {
  9267. flex-wrap: wrap-reverse !important
  9268. }
  9269. .justify-content-lg-start {
  9270. justify-content: flex-start !important
  9271. }
  9272. .justify-content-lg-end {
  9273. justify-content: flex-end !important
  9274. }
  9275. .justify-content-lg-center {
  9276. justify-content: center !important
  9277. }
  9278. .justify-content-lg-between {
  9279. justify-content: space-between !important
  9280. }
  9281. .justify-content-lg-around {
  9282. justify-content: space-around !important
  9283. }
  9284. .justify-content-lg-evenly {
  9285. justify-content: space-evenly !important
  9286. }
  9287. .align-items-lg-start {
  9288. align-items: flex-start !important
  9289. }
  9290. .align-items-lg-end {
  9291. align-items: flex-end !important
  9292. }
  9293. .align-items-lg-center {
  9294. align-items: center !important
  9295. }
  9296. .align-items-lg-baseline {
  9297. align-items: baseline !important
  9298. }
  9299. .align-items-lg-stretch {
  9300. align-items: stretch !important
  9301. }
  9302. .align-content-lg-start {
  9303. align-content: flex-start !important
  9304. }
  9305. .align-content-lg-end {
  9306. align-content: flex-end !important
  9307. }
  9308. .align-content-lg-center {
  9309. align-content: center !important
  9310. }
  9311. .align-content-lg-between {
  9312. align-content: space-between !important
  9313. }
  9314. .align-content-lg-around {
  9315. align-content: space-around !important
  9316. }
  9317. .align-content-lg-stretch {
  9318. align-content: stretch !important
  9319. }
  9320. .align-self-lg-auto {
  9321. align-self: auto !important
  9322. }
  9323. .align-self-lg-start {
  9324. align-self: flex-start !important
  9325. }
  9326. .align-self-lg-end {
  9327. align-self: flex-end !important
  9328. }
  9329. .align-self-lg-center {
  9330. align-self: center !important
  9331. }
  9332. .align-self-lg-baseline {
  9333. align-self: baseline !important
  9334. }
  9335. .align-self-lg-stretch {
  9336. align-self: stretch !important
  9337. }
  9338. .order-lg-first {
  9339. order: -1 !important
  9340. }
  9341. .order-lg-0 {
  9342. order: 0 !important
  9343. }
  9344. .order-lg-1 {
  9345. order: 1 !important
  9346. }
  9347. .order-lg-2 {
  9348. order: 2 !important
  9349. }
  9350. .order-lg-3 {
  9351. order: 3 !important
  9352. }
  9353. .order-lg-4 {
  9354. order: 4 !important
  9355. }
  9356. .order-lg-5 {
  9357. order: 5 !important
  9358. }
  9359. .order-lg-last {
  9360. order: 6 !important
  9361. }
  9362. .m-lg-0 {
  9363. margin: 0 !important
  9364. }
  9365. .m-lg-1 {
  9366. margin: .25rem !important
  9367. }
  9368. .m-lg-2 {
  9369. margin: .5rem !important
  9370. }
  9371. .m-lg-3 {
  9372. margin: 1rem !important
  9373. }
  9374. .m-lg-4 {
  9375. margin: 1.5rem !important
  9376. }
  9377. .m-lg-5 {
  9378. margin: 3rem !important
  9379. }
  9380. .m-lg-auto {
  9381. margin: auto !important
  9382. }
  9383. .mx-lg-0 {
  9384. margin-right: 0 !important;
  9385. margin-left: 0 !important
  9386. }
  9387. .mx-lg-1 {
  9388. margin-right: .25rem !important;
  9389. margin-left: .25rem !important
  9390. }
  9391. .mx-lg-2 {
  9392. margin-right: .5rem !important;
  9393. margin-left: .5rem !important
  9394. }
  9395. .mx-lg-3 {
  9396. margin-right: 1rem !important;
  9397. margin-left: 1rem !important
  9398. }
  9399. .mx-lg-4 {
  9400. margin-right: 1.5rem !important;
  9401. margin-left: 1.5rem !important
  9402. }
  9403. .mx-lg-5 {
  9404. margin-right: 3rem !important;
  9405. margin-left: 3rem !important
  9406. }
  9407. .mx-lg-auto {
  9408. margin-right: auto !important;
  9409. margin-left: auto !important
  9410. }
  9411. .my-lg-0 {
  9412. margin-top: 0 !important;
  9413. margin-bottom: 0 !important
  9414. }
  9415. .my-lg-1 {
  9416. margin-top: .25rem !important;
  9417. margin-bottom: .25rem !important
  9418. }
  9419. .my-lg-2 {
  9420. margin-top: .5rem !important;
  9421. margin-bottom: .5rem !important
  9422. }
  9423. .my-lg-3 {
  9424. margin-top: 1rem !important;
  9425. margin-bottom: 1rem !important
  9426. }
  9427. .my-lg-4 {
  9428. margin-top: 1.5rem !important;
  9429. margin-bottom: 1.5rem !important
  9430. }
  9431. .my-lg-5 {
  9432. margin-top: 3rem !important;
  9433. margin-bottom: 3rem !important
  9434. }
  9435. .my-lg-auto {
  9436. margin-top: auto !important;
  9437. margin-bottom: auto !important
  9438. }
  9439. .mt-lg-0 {
  9440. margin-top: 0 !important
  9441. }
  9442. .mt-lg-1 {
  9443. margin-top: .25rem !important
  9444. }
  9445. .mt-lg-2 {
  9446. margin-top: .5rem !important
  9447. }
  9448. .mt-lg-3 {
  9449. margin-top: 1rem !important
  9450. }
  9451. .mt-lg-4 {
  9452. margin-top: 1.5rem !important
  9453. }
  9454. .mt-lg-5 {
  9455. margin-top: 3rem !important
  9456. }
  9457. .mt-lg-auto {
  9458. margin-top: auto !important
  9459. }
  9460. .me-lg-0 {
  9461. margin-right: 0 !important
  9462. }
  9463. .me-lg-1 {
  9464. margin-right: .25rem !important
  9465. }
  9466. .me-lg-2 {
  9467. margin-right: .5rem !important
  9468. }
  9469. .me-lg-3 {
  9470. margin-right: 1rem !important
  9471. }
  9472. .me-lg-4 {
  9473. margin-right: 1.5rem !important
  9474. }
  9475. .me-lg-5 {
  9476. margin-right: 3rem !important
  9477. }
  9478. .me-lg-auto {
  9479. margin-right: auto !important
  9480. }
  9481. .mb-lg-0 {
  9482. margin-bottom: 0 !important
  9483. }
  9484. .mb-lg-1 {
  9485. margin-bottom: .25rem !important
  9486. }
  9487. .mb-lg-2 {
  9488. margin-bottom: .5rem !important
  9489. }
  9490. .mb-lg-3 {
  9491. margin-bottom: 1rem !important
  9492. }
  9493. .mb-lg-4 {
  9494. margin-bottom: 1.5rem !important
  9495. }
  9496. .mb-lg-5 {
  9497. margin-bottom: 3rem !important
  9498. }
  9499. .mb-lg-auto {
  9500. margin-bottom: auto !important
  9501. }
  9502. .ms-lg-0 {
  9503. margin-left: 0 !important
  9504. }
  9505. .ms-lg-1 {
  9506. margin-left: .25rem !important
  9507. }
  9508. .ms-lg-2 {
  9509. margin-left: .5rem !important
  9510. }
  9511. .ms-lg-3 {
  9512. margin-left: 1rem !important
  9513. }
  9514. .ms-lg-4 {
  9515. margin-left: 1.5rem !important
  9516. }
  9517. .ms-lg-5 {
  9518. margin-left: 3rem !important
  9519. }
  9520. .ms-lg-auto {
  9521. margin-left: auto !important
  9522. }
  9523. .p-lg-0 {
  9524. padding: 0 !important
  9525. }
  9526. .p-lg-1 {
  9527. padding: .25rem !important
  9528. }
  9529. .p-lg-2 {
  9530. padding: .5rem !important
  9531. }
  9532. .p-lg-3 {
  9533. padding: 1rem !important
  9534. }
  9535. .p-lg-4 {
  9536. padding: 1.5rem !important
  9537. }
  9538. .p-lg-5 {
  9539. padding: 3rem !important
  9540. }
  9541. .px-lg-0 {
  9542. padding-right: 0 !important;
  9543. padding-left: 0 !important
  9544. }
  9545. .px-lg-1 {
  9546. padding-right: .25rem !important;
  9547. padding-left: .25rem !important
  9548. }
  9549. .px-lg-2 {
  9550. padding-right: .5rem !important;
  9551. padding-left: .5rem !important
  9552. }
  9553. .px-lg-3 {
  9554. padding-right: 1rem !important;
  9555. padding-left: 1rem !important
  9556. }
  9557. .px-lg-4 {
  9558. padding-right: 1.5rem !important;
  9559. padding-left: 1.5rem !important
  9560. }
  9561. .px-lg-5 {
  9562. padding-right: 3rem !important;
  9563. padding-left: 3rem !important
  9564. }
  9565. .py-lg-0 {
  9566. padding-top: 0 !important;
  9567. padding-bottom: 0 !important
  9568. }
  9569. .py-lg-1 {
  9570. padding-top: .25rem !important;
  9571. padding-bottom: .25rem !important
  9572. }
  9573. .py-lg-2 {
  9574. padding-top: .5rem !important;
  9575. padding-bottom: .5rem !important
  9576. }
  9577. .py-lg-3 {
  9578. padding-top: 1rem !important;
  9579. padding-bottom: 1rem !important
  9580. }
  9581. .py-lg-4 {
  9582. padding-top: 1.5rem !important;
  9583. padding-bottom: 1.5rem !important
  9584. }
  9585. .py-lg-5 {
  9586. padding-top: 3rem !important;
  9587. padding-bottom: 3rem !important
  9588. }
  9589. .pt-lg-0 {
  9590. padding-top: 0 !important
  9591. }
  9592. .pt-lg-1 {
  9593. padding-top: .25rem !important
  9594. }
  9595. .pt-lg-2 {
  9596. padding-top: .5rem !important
  9597. }
  9598. .pt-lg-3 {
  9599. padding-top: 1rem !important
  9600. }
  9601. .pt-lg-4 {
  9602. padding-top: 1.5rem !important
  9603. }
  9604. .pt-lg-5 {
  9605. padding-top: 3rem !important
  9606. }
  9607. .pe-lg-0 {
  9608. padding-right: 0 !important
  9609. }
  9610. .pe-lg-1 {
  9611. padding-right: .25rem !important
  9612. }
  9613. .pe-lg-2 {
  9614. padding-right: .5rem !important
  9615. }
  9616. .pe-lg-3 {
  9617. padding-right: 1rem !important
  9618. }
  9619. .pe-lg-4 {
  9620. padding-right: 1.5rem !important
  9621. }
  9622. .pe-lg-5 {
  9623. padding-right: 3rem !important
  9624. }
  9625. .pb-lg-0 {
  9626. padding-bottom: 0 !important
  9627. }
  9628. .pb-lg-1 {
  9629. padding-bottom: .25rem !important
  9630. }
  9631. .pb-lg-2 {
  9632. padding-bottom: .5rem !important
  9633. }
  9634. .pb-lg-3 {
  9635. padding-bottom: 1rem !important
  9636. }
  9637. .pb-lg-4 {
  9638. padding-bottom: 1.5rem !important
  9639. }
  9640. .pb-lg-5 {
  9641. padding-bottom: 3rem !important
  9642. }
  9643. .ps-lg-0 {
  9644. padding-left: 0 !important
  9645. }
  9646. .ps-lg-1 {
  9647. padding-left: .25rem !important
  9648. }
  9649. .ps-lg-2 {
  9650. padding-left: .5rem !important
  9651. }
  9652. .ps-lg-3 {
  9653. padding-left: 1rem !important
  9654. }
  9655. .ps-lg-4 {
  9656. padding-left: 1.5rem !important
  9657. }
  9658. .ps-lg-5 {
  9659. padding-left: 3rem !important
  9660. }
  9661. .gap-lg-0 {
  9662. gap: 0 !important
  9663. }
  9664. .gap-lg-1 {
  9665. gap: .25rem !important
  9666. }
  9667. .gap-lg-2 {
  9668. gap: .5rem !important
  9669. }
  9670. .gap-lg-3 {
  9671. gap: 1rem !important
  9672. }
  9673. .gap-lg-4 {
  9674. gap: 1.5rem !important
  9675. }
  9676. .gap-lg-5 {
  9677. gap: 3rem !important
  9678. }
  9679. .row-gap-lg-0 {
  9680. row-gap: 0 !important
  9681. }
  9682. .row-gap-lg-1 {
  9683. row-gap: .25rem !important
  9684. }
  9685. .row-gap-lg-2 {
  9686. row-gap: .5rem !important
  9687. }
  9688. .row-gap-lg-3 {
  9689. row-gap: 1rem !important
  9690. }
  9691. .row-gap-lg-4 {
  9692. row-gap: 1.5rem !important
  9693. }
  9694. .row-gap-lg-5 {
  9695. row-gap: 3rem !important
  9696. }
  9697. .column-gap-lg-0 {
  9698. -moz-column-gap: 0 !important;
  9699. column-gap: 0 !important
  9700. }
  9701. .column-gap-lg-1 {
  9702. -moz-column-gap: 0.25rem !important;
  9703. column-gap: .25rem !important
  9704. }
  9705. .column-gap-lg-2 {
  9706. -moz-column-gap: 0.5rem !important;
  9707. column-gap: .5rem !important
  9708. }
  9709. .column-gap-lg-3 {
  9710. -moz-column-gap: 1rem !important;
  9711. column-gap: 1rem !important
  9712. }
  9713. .column-gap-lg-4 {
  9714. -moz-column-gap: 1.5rem !important;
  9715. column-gap: 1.5rem !important
  9716. }
  9717. .column-gap-lg-5 {
  9718. -moz-column-gap: 3rem !important;
  9719. column-gap: 3rem !important
  9720. }
  9721. .text-lg-start {
  9722. text-align: left !important
  9723. }
  9724. .text-lg-end {
  9725. text-align: right !important
  9726. }
  9727. .text-lg-center {
  9728. text-align: center !important
  9729. }
  9730. }
  9731. @media (min-width: 1200px) {
  9732. .float-xl-start {
  9733. float: left !important
  9734. }
  9735. .float-xl-end {
  9736. float: right !important
  9737. }
  9738. .float-xl-none {
  9739. float: none !important
  9740. }
  9741. .object-fit-xl-contain {
  9742. -o-object-fit: contain !important;
  9743. object-fit: contain !important
  9744. }
  9745. .object-fit-xl-cover {
  9746. -o-object-fit: cover !important;
  9747. object-fit: cover !important
  9748. }
  9749. .object-fit-xl-fill {
  9750. -o-object-fit: fill !important;
  9751. object-fit: fill !important
  9752. }
  9753. .object-fit-xl-scale {
  9754. -o-object-fit: scale-down !important;
  9755. object-fit: scale-down !important
  9756. }
  9757. .object-fit-xl-none {
  9758. -o-object-fit: none !important;
  9759. object-fit: none !important
  9760. }
  9761. .d-xl-inline {
  9762. display: inline !important
  9763. }
  9764. .d-xl-inline-block {
  9765. display: inline-block !important
  9766. }
  9767. .d-xl-block {
  9768. display: block !important
  9769. }
  9770. .d-xl-grid {
  9771. display: grid !important
  9772. }
  9773. .d-xl-inline-grid {
  9774. display: inline-grid !important
  9775. }
  9776. .d-xl-table {
  9777. display: table !important
  9778. }
  9779. .d-xl-table-row {
  9780. display: table-row !important
  9781. }
  9782. .d-xl-table-cell {
  9783. display: table-cell !important
  9784. }
  9785. .d-xl-flex {
  9786. display: flex !important
  9787. }
  9788. .d-xl-inline-flex {
  9789. display: inline-flex !important
  9790. }
  9791. .d-xl-none {
  9792. display: none !important
  9793. }
  9794. .flex-xl-fill {
  9795. flex: 1 1 auto !important
  9796. }
  9797. .flex-xl-row {
  9798. flex-direction: row !important
  9799. }
  9800. .flex-xl-column {
  9801. flex-direction: column !important
  9802. }
  9803. .flex-xl-row-reverse {
  9804. flex-direction: row-reverse !important
  9805. }
  9806. .flex-xl-column-reverse {
  9807. flex-direction: column-reverse !important
  9808. }
  9809. .flex-xl-grow-0 {
  9810. flex-grow: 0 !important
  9811. }
  9812. .flex-xl-grow-1 {
  9813. flex-grow: 1 !important
  9814. }
  9815. .flex-xl-shrink-0 {
  9816. flex-shrink: 0 !important
  9817. }
  9818. .flex-xl-shrink-1 {
  9819. flex-shrink: 1 !important
  9820. }
  9821. .flex-xl-wrap {
  9822. flex-wrap: wrap !important
  9823. }
  9824. .flex-xl-nowrap {
  9825. flex-wrap: nowrap !important
  9826. }
  9827. .flex-xl-wrap-reverse {
  9828. flex-wrap: wrap-reverse !important
  9829. }
  9830. .justify-content-xl-start {
  9831. justify-content: flex-start !important
  9832. }
  9833. .justify-content-xl-end {
  9834. justify-content: flex-end !important
  9835. }
  9836. .justify-content-xl-center {
  9837. justify-content: center !important
  9838. }
  9839. .justify-content-xl-between {
  9840. justify-content: space-between !important
  9841. }
  9842. .justify-content-xl-around {
  9843. justify-content: space-around !important
  9844. }
  9845. .justify-content-xl-evenly {
  9846. justify-content: space-evenly !important
  9847. }
  9848. .align-items-xl-start {
  9849. align-items: flex-start !important
  9850. }
  9851. .align-items-xl-end {
  9852. align-items: flex-end !important
  9853. }
  9854. .align-items-xl-center {
  9855. align-items: center !important
  9856. }
  9857. .align-items-xl-baseline {
  9858. align-items: baseline !important
  9859. }
  9860. .align-items-xl-stretch {
  9861. align-items: stretch !important
  9862. }
  9863. .align-content-xl-start {
  9864. align-content: flex-start !important
  9865. }
  9866. .align-content-xl-end {
  9867. align-content: flex-end !important
  9868. }
  9869. .align-content-xl-center {
  9870. align-content: center !important
  9871. }
  9872. .align-content-xl-between {
  9873. align-content: space-between !important
  9874. }
  9875. .align-content-xl-around {
  9876. align-content: space-around !important
  9877. }
  9878. .align-content-xl-stretch {
  9879. align-content: stretch !important
  9880. }
  9881. .align-self-xl-auto {
  9882. align-self: auto !important
  9883. }
  9884. .align-self-xl-start {
  9885. align-self: flex-start !important
  9886. }
  9887. .align-self-xl-end {
  9888. align-self: flex-end !important
  9889. }
  9890. .align-self-xl-center {
  9891. align-self: center !important
  9892. }
  9893. .align-self-xl-baseline {
  9894. align-self: baseline !important
  9895. }
  9896. .align-self-xl-stretch {
  9897. align-self: stretch !important
  9898. }
  9899. .order-xl-first {
  9900. order: -1 !important
  9901. }
  9902. .order-xl-0 {
  9903. order: 0 !important
  9904. }
  9905. .order-xl-1 {
  9906. order: 1 !important
  9907. }
  9908. .order-xl-2 {
  9909. order: 2 !important
  9910. }
  9911. .order-xl-3 {
  9912. order: 3 !important
  9913. }
  9914. .order-xl-4 {
  9915. order: 4 !important
  9916. }
  9917. .order-xl-5 {
  9918. order: 5 !important
  9919. }
  9920. .order-xl-last {
  9921. order: 6 !important
  9922. }
  9923. .m-xl-0 {
  9924. margin: 0 !important
  9925. }
  9926. .m-xl-1 {
  9927. margin: .25rem !important
  9928. }
  9929. .m-xl-2 {
  9930. margin: .5rem !important
  9931. }
  9932. .m-xl-3 {
  9933. margin: 1rem !important
  9934. }
  9935. .m-xl-4 {
  9936. margin: 1.5rem !important
  9937. }
  9938. .m-xl-5 {
  9939. margin: 3rem !important
  9940. }
  9941. .m-xl-auto {
  9942. margin: auto !important
  9943. }
  9944. .mx-xl-0 {
  9945. margin-right: 0 !important;
  9946. margin-left: 0 !important
  9947. }
  9948. .mx-xl-1 {
  9949. margin-right: .25rem !important;
  9950. margin-left: .25rem !important
  9951. }
  9952. .mx-xl-2 {
  9953. margin-right: .5rem !important;
  9954. margin-left: .5rem !important
  9955. }
  9956. .mx-xl-3 {
  9957. margin-right: 1rem !important;
  9958. margin-left: 1rem !important
  9959. }
  9960. .mx-xl-4 {
  9961. margin-right: 1.5rem !important;
  9962. margin-left: 1.5rem !important
  9963. }
  9964. .mx-xl-5 {
  9965. margin-right: 3rem !important;
  9966. margin-left: 3rem !important
  9967. }
  9968. .mx-xl-auto {
  9969. margin-right: auto !important;
  9970. margin-left: auto !important
  9971. }
  9972. .my-xl-0 {
  9973. margin-top: 0 !important;
  9974. margin-bottom: 0 !important
  9975. }
  9976. .my-xl-1 {
  9977. margin-top: .25rem !important;
  9978. margin-bottom: .25rem !important
  9979. }
  9980. .my-xl-2 {
  9981. margin-top: .5rem !important;
  9982. margin-bottom: .5rem !important
  9983. }
  9984. .my-xl-3 {
  9985. margin-top: 1rem !important;
  9986. margin-bottom: 1rem !important
  9987. }
  9988. .my-xl-4 {
  9989. margin-top: 1.5rem !important;
  9990. margin-bottom: 1.5rem !important
  9991. }
  9992. .my-xl-5 {
  9993. margin-top: 3rem !important;
  9994. margin-bottom: 3rem !important
  9995. }
  9996. .my-xl-auto {
  9997. margin-top: auto !important;
  9998. margin-bottom: auto !important
  9999. }
  10000. .mt-xl-0 {
  10001. margin-top: 0 !important
  10002. }
  10003. .mt-xl-1 {
  10004. margin-top: .25rem !important
  10005. }
  10006. .mt-xl-2 {
  10007. margin-top: .5rem !important
  10008. }
  10009. .mt-xl-3 {
  10010. margin-top: 1rem !important
  10011. }
  10012. .mt-xl-4 {
  10013. margin-top: 1.5rem !important
  10014. }
  10015. .mt-xl-5 {
  10016. margin-top: 3rem !important
  10017. }
  10018. .mt-xl-auto {
  10019. margin-top: auto !important
  10020. }
  10021. .me-xl-0 {
  10022. margin-right: 0 !important
  10023. }
  10024. .me-xl-1 {
  10025. margin-right: .25rem !important
  10026. }
  10027. .me-xl-2 {
  10028. margin-right: .5rem !important
  10029. }
  10030. .me-xl-3 {
  10031. margin-right: 1rem !important
  10032. }
  10033. .me-xl-4 {
  10034. margin-right: 1.5rem !important
  10035. }
  10036. .me-xl-5 {
  10037. margin-right: 3rem !important
  10038. }
  10039. .me-xl-auto {
  10040. margin-right: auto !important
  10041. }
  10042. .mb-xl-0 {
  10043. margin-bottom: 0 !important
  10044. }
  10045. .mb-xl-1 {
  10046. margin-bottom: .25rem !important
  10047. }
  10048. .mb-xl-2 {
  10049. margin-bottom: .5rem !important
  10050. }
  10051. .mb-xl-3 {
  10052. margin-bottom: 1rem !important
  10053. }
  10054. .mb-xl-4 {
  10055. margin-bottom: 1.5rem !important
  10056. }
  10057. .mb-xl-5 {
  10058. margin-bottom: 3rem !important
  10059. }
  10060. .mb-xl-auto {
  10061. margin-bottom: auto !important
  10062. }
  10063. .ms-xl-0 {
  10064. margin-left: 0 !important
  10065. }
  10066. .ms-xl-1 {
  10067. margin-left: .25rem !important
  10068. }
  10069. .ms-xl-2 {
  10070. margin-left: .5rem !important
  10071. }
  10072. .ms-xl-3 {
  10073. margin-left: 1rem !important
  10074. }
  10075. .ms-xl-4 {
  10076. margin-left: 1.5rem !important
  10077. }
  10078. .ms-xl-5 {
  10079. margin-left: 3rem !important
  10080. }
  10081. .ms-xl-auto {
  10082. margin-left: auto !important
  10083. }
  10084. .p-xl-0 {
  10085. padding: 0 !important
  10086. }
  10087. .p-xl-1 {
  10088. padding: .25rem !important
  10089. }
  10090. .p-xl-2 {
  10091. padding: .5rem !important
  10092. }
  10093. .p-xl-3 {
  10094. padding: 1rem !important
  10095. }
  10096. .p-xl-4 {
  10097. padding: 1.5rem !important
  10098. }
  10099. .p-xl-5 {
  10100. padding: 3rem !important
  10101. }
  10102. .px-xl-0 {
  10103. padding-right: 0 !important;
  10104. padding-left: 0 !important
  10105. }
  10106. .px-xl-1 {
  10107. padding-right: .25rem !important;
  10108. padding-left: .25rem !important
  10109. }
  10110. .px-xl-2 {
  10111. padding-right: .5rem !important;
  10112. padding-left: .5rem !important
  10113. }
  10114. .px-xl-3 {
  10115. padding-right: 1rem !important;
  10116. padding-left: 1rem !important
  10117. }
  10118. .px-xl-4 {
  10119. padding-right: 1.5rem !important;
  10120. padding-left: 1.5rem !important
  10121. }
  10122. .px-xl-5 {
  10123. padding-right: 3rem !important;
  10124. padding-left: 3rem !important
  10125. }
  10126. .py-xl-0 {
  10127. padding-top: 0 !important;
  10128. padding-bottom: 0 !important
  10129. }
  10130. .py-xl-1 {
  10131. padding-top: .25rem !important;
  10132. padding-bottom: .25rem !important
  10133. }
  10134. .py-xl-2 {
  10135. padding-top: .5rem !important;
  10136. padding-bottom: .5rem !important
  10137. }
  10138. .py-xl-3 {
  10139. padding-top: 1rem !important;
  10140. padding-bottom: 1rem !important
  10141. }
  10142. .py-xl-4 {
  10143. padding-top: 1.5rem !important;
  10144. padding-bottom: 1.5rem !important
  10145. }
  10146. .py-xl-5 {
  10147. padding-top: 3rem !important;
  10148. padding-bottom: 3rem !important
  10149. }
  10150. .pt-xl-0 {
  10151. padding-top: 0 !important
  10152. }
  10153. .pt-xl-1 {
  10154. padding-top: .25rem !important
  10155. }
  10156. .pt-xl-2 {
  10157. padding-top: .5rem !important
  10158. }
  10159. .pt-xl-3 {
  10160. padding-top: 1rem !important
  10161. }
  10162. .pt-xl-4 {
  10163. padding-top: 1.5rem !important
  10164. }
  10165. .pt-xl-5 {
  10166. padding-top: 3rem !important
  10167. }
  10168. .pe-xl-0 {
  10169. padding-right: 0 !important
  10170. }
  10171. .pe-xl-1 {
  10172. padding-right: .25rem !important
  10173. }
  10174. .pe-xl-2 {
  10175. padding-right: .5rem !important
  10176. }
  10177. .pe-xl-3 {
  10178. padding-right: 1rem !important
  10179. }
  10180. .pe-xl-4 {
  10181. padding-right: 1.5rem !important
  10182. }
  10183. .pe-xl-5 {
  10184. padding-right: 3rem !important
  10185. }
  10186. .pb-xl-0 {
  10187. padding-bottom: 0 !important
  10188. }
  10189. .pb-xl-1 {
  10190. padding-bottom: .25rem !important
  10191. }
  10192. .pb-xl-2 {
  10193. padding-bottom: .5rem !important
  10194. }
  10195. .pb-xl-3 {
  10196. padding-bottom: 1rem !important
  10197. }
  10198. .pb-xl-4 {
  10199. padding-bottom: 1.5rem !important
  10200. }
  10201. .pb-xl-5 {
  10202. padding-bottom: 3rem !important
  10203. }
  10204. .ps-xl-0 {
  10205. padding-left: 0 !important
  10206. }
  10207. .ps-xl-1 {
  10208. padding-left: .25rem !important
  10209. }
  10210. .ps-xl-2 {
  10211. padding-left: .5rem !important
  10212. }
  10213. .ps-xl-3 {
  10214. padding-left: 1rem !important
  10215. }
  10216. .ps-xl-4 {
  10217. padding-left: 1.5rem !important
  10218. }
  10219. .ps-xl-5 {
  10220. padding-left: 3rem !important
  10221. }
  10222. .gap-xl-0 {
  10223. gap: 0 !important
  10224. }
  10225. .gap-xl-1 {
  10226. gap: .25rem !important
  10227. }
  10228. .gap-xl-2 {
  10229. gap: .5rem !important
  10230. }
  10231. .gap-xl-3 {
  10232. gap: 1rem !important
  10233. }
  10234. .gap-xl-4 {
  10235. gap: 1.5rem !important
  10236. }
  10237. .gap-xl-5 {
  10238. gap: 3rem !important
  10239. }
  10240. .row-gap-xl-0 {
  10241. row-gap: 0 !important
  10242. }
  10243. .row-gap-xl-1 {
  10244. row-gap: .25rem !important
  10245. }
  10246. .row-gap-xl-2 {
  10247. row-gap: .5rem !important
  10248. }
  10249. .row-gap-xl-3 {
  10250. row-gap: 1rem !important
  10251. }
  10252. .row-gap-xl-4 {
  10253. row-gap: 1.5rem !important
  10254. }
  10255. .row-gap-xl-5 {
  10256. row-gap: 3rem !important
  10257. }
  10258. .column-gap-xl-0 {
  10259. -moz-column-gap: 0 !important;
  10260. column-gap: 0 !important
  10261. }
  10262. .column-gap-xl-1 {
  10263. -moz-column-gap: 0.25rem !important;
  10264. column-gap: .25rem !important
  10265. }
  10266. .column-gap-xl-2 {
  10267. -moz-column-gap: 0.5rem !important;
  10268. column-gap: .5rem !important
  10269. }
  10270. .column-gap-xl-3 {
  10271. -moz-column-gap: 1rem !important;
  10272. column-gap: 1rem !important
  10273. }
  10274. .column-gap-xl-4 {
  10275. -moz-column-gap: 1.5rem !important;
  10276. column-gap: 1.5rem !important
  10277. }
  10278. .column-gap-xl-5 {
  10279. -moz-column-gap: 3rem !important;
  10280. column-gap: 3rem !important
  10281. }
  10282. .text-xl-start {
  10283. text-align: left !important
  10284. }
  10285. .text-xl-end {
  10286. text-align: right !important
  10287. }
  10288. .text-xl-center {
  10289. text-align: center !important
  10290. }
  10291. }
  10292. @media (min-width: 1400px) {
  10293. .float-xxl-start {
  10294. float: left !important
  10295. }
  10296. .float-xxl-end {
  10297. float: right !important
  10298. }
  10299. .float-xxl-none {
  10300. float: none !important
  10301. }
  10302. .object-fit-xxl-contain {
  10303. -o-object-fit: contain !important;
  10304. object-fit: contain !important
  10305. }
  10306. .object-fit-xxl-cover {
  10307. -o-object-fit: cover !important;
  10308. object-fit: cover !important
  10309. }
  10310. .object-fit-xxl-fill {
  10311. -o-object-fit: fill !important;
  10312. object-fit: fill !important
  10313. }
  10314. .object-fit-xxl-scale {
  10315. -o-object-fit: scale-down !important;
  10316. object-fit: scale-down !important
  10317. }
  10318. .object-fit-xxl-none {
  10319. -o-object-fit: none !important;
  10320. object-fit: none !important
  10321. }
  10322. .d-xxl-inline {
  10323. display: inline !important
  10324. }
  10325. .d-xxl-inline-block {
  10326. display: inline-block !important
  10327. }
  10328. .d-xxl-block {
  10329. display: block !important
  10330. }
  10331. .d-xxl-grid {
  10332. display: grid !important
  10333. }
  10334. .d-xxl-inline-grid {
  10335. display: inline-grid !important
  10336. }
  10337. .d-xxl-table {
  10338. display: table !important
  10339. }
  10340. .d-xxl-table-row {
  10341. display: table-row !important
  10342. }
  10343. .d-xxl-table-cell {
  10344. display: table-cell !important
  10345. }
  10346. .d-xxl-flex {
  10347. display: flex !important
  10348. }
  10349. .d-xxl-inline-flex {
  10350. display: inline-flex !important
  10351. }
  10352. .d-xxl-none {
  10353. display: none !important
  10354. }
  10355. .flex-xxl-fill {
  10356. flex: 1 1 auto !important
  10357. }
  10358. .flex-xxl-row {
  10359. flex-direction: row !important
  10360. }
  10361. .flex-xxl-column {
  10362. flex-direction: column !important
  10363. }
  10364. .flex-xxl-row-reverse {
  10365. flex-direction: row-reverse !important
  10366. }
  10367. .flex-xxl-column-reverse {
  10368. flex-direction: column-reverse !important
  10369. }
  10370. .flex-xxl-grow-0 {
  10371. flex-grow: 0 !important
  10372. }
  10373. .flex-xxl-grow-1 {
  10374. flex-grow: 1 !important
  10375. }
  10376. .flex-xxl-shrink-0 {
  10377. flex-shrink: 0 !important
  10378. }
  10379. .flex-xxl-shrink-1 {
  10380. flex-shrink: 1 !important
  10381. }
  10382. .flex-xxl-wrap {
  10383. flex-wrap: wrap !important
  10384. }
  10385. .flex-xxl-nowrap {
  10386. flex-wrap: nowrap !important
  10387. }
  10388. .flex-xxl-wrap-reverse {
  10389. flex-wrap: wrap-reverse !important
  10390. }
  10391. .justify-content-xxl-start {
  10392. justify-content: flex-start !important
  10393. }
  10394. .justify-content-xxl-end {
  10395. justify-content: flex-end !important
  10396. }
  10397. .justify-content-xxl-center {
  10398. justify-content: center !important
  10399. }
  10400. .justify-content-xxl-between {
  10401. justify-content: space-between !important
  10402. }
  10403. .justify-content-xxl-around {
  10404. justify-content: space-around !important
  10405. }
  10406. .justify-content-xxl-evenly {
  10407. justify-content: space-evenly !important
  10408. }
  10409. .align-items-xxl-start {
  10410. align-items: flex-start !important
  10411. }
  10412. .align-items-xxl-end {
  10413. align-items: flex-end !important
  10414. }
  10415. .align-items-xxl-center {
  10416. align-items: center !important
  10417. }
  10418. .align-items-xxl-baseline {
  10419. align-items: baseline !important
  10420. }
  10421. .align-items-xxl-stretch {
  10422. align-items: stretch !important
  10423. }
  10424. .align-content-xxl-start {
  10425. align-content: flex-start !important
  10426. }
  10427. .align-content-xxl-end {
  10428. align-content: flex-end !important
  10429. }
  10430. .align-content-xxl-center {
  10431. align-content: center !important
  10432. }
  10433. .align-content-xxl-between {
  10434. align-content: space-between !important
  10435. }
  10436. .align-content-xxl-around {
  10437. align-content: space-around !important
  10438. }
  10439. .align-content-xxl-stretch {
  10440. align-content: stretch !important
  10441. }
  10442. .align-self-xxl-auto {
  10443. align-self: auto !important
  10444. }
  10445. .align-self-xxl-start {
  10446. align-self: flex-start !important
  10447. }
  10448. .align-self-xxl-end {
  10449. align-self: flex-end !important
  10450. }
  10451. .align-self-xxl-center {
  10452. align-self: center !important
  10453. }
  10454. .align-self-xxl-baseline {
  10455. align-self: baseline !important
  10456. }
  10457. .align-self-xxl-stretch {
  10458. align-self: stretch !important
  10459. }
  10460. .order-xxl-first {
  10461. order: -1 !important
  10462. }
  10463. .order-xxl-0 {
  10464. order: 0 !important
  10465. }
  10466. .order-xxl-1 {
  10467. order: 1 !important
  10468. }
  10469. .order-xxl-2 {
  10470. order: 2 !important
  10471. }
  10472. .order-xxl-3 {
  10473. order: 3 !important
  10474. }
  10475. .order-xxl-4 {
  10476. order: 4 !important
  10477. }
  10478. .order-xxl-5 {
  10479. order: 5 !important
  10480. }
  10481. .order-xxl-last {
  10482. order: 6 !important
  10483. }
  10484. .m-xxl-0 {
  10485. margin: 0 !important
  10486. }
  10487. .m-xxl-1 {
  10488. margin: .25rem !important
  10489. }
  10490. .m-xxl-2 {
  10491. margin: .5rem !important
  10492. }
  10493. .m-xxl-3 {
  10494. margin: 1rem !important
  10495. }
  10496. .m-xxl-4 {
  10497. margin: 1.5rem !important
  10498. }
  10499. .m-xxl-5 {
  10500. margin: 3rem !important
  10501. }
  10502. .m-xxl-auto {
  10503. margin: auto !important
  10504. }
  10505. .mx-xxl-0 {
  10506. margin-right: 0 !important;
  10507. margin-left: 0 !important
  10508. }
  10509. .mx-xxl-1 {
  10510. margin-right: .25rem !important;
  10511. margin-left: .25rem !important
  10512. }
  10513. .mx-xxl-2 {
  10514. margin-right: .5rem !important;
  10515. margin-left: .5rem !important
  10516. }
  10517. .mx-xxl-3 {
  10518. margin-right: 1rem !important;
  10519. margin-left: 1rem !important
  10520. }
  10521. .mx-xxl-4 {
  10522. margin-right: 1.5rem !important;
  10523. margin-left: 1.5rem !important
  10524. }
  10525. .mx-xxl-5 {
  10526. margin-right: 3rem !important;
  10527. margin-left: 3rem !important
  10528. }
  10529. .mx-xxl-auto {
  10530. margin-right: auto !important;
  10531. margin-left: auto !important
  10532. }
  10533. .my-xxl-0 {
  10534. margin-top: 0 !important;
  10535. margin-bottom: 0 !important
  10536. }
  10537. .my-xxl-1 {
  10538. margin-top: .25rem !important;
  10539. margin-bottom: .25rem !important
  10540. }
  10541. .my-xxl-2 {
  10542. margin-top: .5rem !important;
  10543. margin-bottom: .5rem !important
  10544. }
  10545. .my-xxl-3 {
  10546. margin-top: 1rem !important;
  10547. margin-bottom: 1rem !important
  10548. }
  10549. .my-xxl-4 {
  10550. margin-top: 1.5rem !important;
  10551. margin-bottom: 1.5rem !important
  10552. }
  10553. .my-xxl-5 {
  10554. margin-top: 3rem !important;
  10555. margin-bottom: 3rem !important
  10556. }
  10557. .my-xxl-auto {
  10558. margin-top: auto !important;
  10559. margin-bottom: auto !important
  10560. }
  10561. .mt-xxl-0 {
  10562. margin-top: 0 !important
  10563. }
  10564. .mt-xxl-1 {
  10565. margin-top: .25rem !important
  10566. }
  10567. .mt-xxl-2 {
  10568. margin-top: .5rem !important
  10569. }
  10570. .mt-xxl-3 {
  10571. margin-top: 1rem !important
  10572. }
  10573. .mt-xxl-4 {
  10574. margin-top: 1.5rem !important
  10575. }
  10576. .mt-xxl-5 {
  10577. margin-top: 3rem !important
  10578. }
  10579. .mt-xxl-auto {
  10580. margin-top: auto !important
  10581. }
  10582. .me-xxl-0 {
  10583. margin-right: 0 !important
  10584. }
  10585. .me-xxl-1 {
  10586. margin-right: .25rem !important
  10587. }
  10588. .me-xxl-2 {
  10589. margin-right: .5rem !important
  10590. }
  10591. .me-xxl-3 {
  10592. margin-right: 1rem !important
  10593. }
  10594. .me-xxl-4 {
  10595. margin-right: 1.5rem !important
  10596. }
  10597. .me-xxl-5 {
  10598. margin-right: 3rem !important
  10599. }
  10600. .me-xxl-auto {
  10601. margin-right: auto !important
  10602. }
  10603. .mb-xxl-0 {
  10604. margin-bottom: 0 !important
  10605. }
  10606. .mb-xxl-1 {
  10607. margin-bottom: .25rem !important
  10608. }
  10609. .mb-xxl-2 {
  10610. margin-bottom: .5rem !important
  10611. }
  10612. .mb-xxl-3 {
  10613. margin-bottom: 1rem !important
  10614. }
  10615. .mb-xxl-4 {
  10616. margin-bottom: 1.5rem !important
  10617. }
  10618. .mb-xxl-5 {
  10619. margin-bottom: 3rem !important
  10620. }
  10621. .mb-xxl-auto {
  10622. margin-bottom: auto !important
  10623. }
  10624. .ms-xxl-0 {
  10625. margin-left: 0 !important
  10626. }
  10627. .ms-xxl-1 {
  10628. margin-left: .25rem !important
  10629. }
  10630. .ms-xxl-2 {
  10631. margin-left: .5rem !important
  10632. }
  10633. .ms-xxl-3 {
  10634. margin-left: 1rem !important
  10635. }
  10636. .ms-xxl-4 {
  10637. margin-left: 1.5rem !important
  10638. }
  10639. .ms-xxl-5 {
  10640. margin-left: 3rem !important
  10641. }
  10642. .ms-xxl-auto {
  10643. margin-left: auto !important
  10644. }
  10645. .p-xxl-0 {
  10646. padding: 0 !important
  10647. }
  10648. .p-xxl-1 {
  10649. padding: .25rem !important
  10650. }
  10651. .p-xxl-2 {
  10652. padding: .5rem !important
  10653. }
  10654. .p-xxl-3 {
  10655. padding: 1rem !important
  10656. }
  10657. .p-xxl-4 {
  10658. padding: 1.5rem !important
  10659. }
  10660. .p-xxl-5 {
  10661. padding: 3rem !important
  10662. }
  10663. .px-xxl-0 {
  10664. padding-right: 0 !important;
  10665. padding-left: 0 !important
  10666. }
  10667. .px-xxl-1 {
  10668. padding-right: .25rem !important;
  10669. padding-left: .25rem !important
  10670. }
  10671. .px-xxl-2 {
  10672. padding-right: .5rem !important;
  10673. padding-left: .5rem !important
  10674. }
  10675. .px-xxl-3 {
  10676. padding-right: 1rem !important;
  10677. padding-left: 1rem !important
  10678. }
  10679. .px-xxl-4 {
  10680. padding-right: 1.5rem !important;
  10681. padding-left: 1.5rem !important
  10682. }
  10683. .px-xxl-5 {
  10684. padding-right: 3rem !important;
  10685. padding-left: 3rem !important
  10686. }
  10687. .py-xxl-0 {
  10688. padding-top: 0 !important;
  10689. padding-bottom: 0 !important
  10690. }
  10691. .py-xxl-1 {
  10692. padding-top: .25rem !important;
  10693. padding-bottom: .25rem !important
  10694. }
  10695. .py-xxl-2 {
  10696. padding-top: .5rem !important;
  10697. padding-bottom: .5rem !important
  10698. }
  10699. .py-xxl-3 {
  10700. padding-top: 1rem !important;
  10701. padding-bottom: 1rem !important
  10702. }
  10703. .py-xxl-4 {
  10704. padding-top: 1.5rem !important;
  10705. padding-bottom: 1.5rem !important
  10706. }
  10707. .py-xxl-5 {
  10708. padding-top: 3rem !important;
  10709. padding-bottom: 3rem !important
  10710. }
  10711. .pt-xxl-0 {
  10712. padding-top: 0 !important
  10713. }
  10714. .pt-xxl-1 {
  10715. padding-top: .25rem !important
  10716. }
  10717. .pt-xxl-2 {
  10718. padding-top: .5rem !important
  10719. }
  10720. .pt-xxl-3 {
  10721. padding-top: 1rem !important
  10722. }
  10723. .pt-xxl-4 {
  10724. padding-top: 1.5rem !important
  10725. }
  10726. .pt-xxl-5 {
  10727. padding-top: 3rem !important
  10728. }
  10729. .pe-xxl-0 {
  10730. padding-right: 0 !important
  10731. }
  10732. .pe-xxl-1 {
  10733. padding-right: .25rem !important
  10734. }
  10735. .pe-xxl-2 {
  10736. padding-right: .5rem !important
  10737. }
  10738. .pe-xxl-3 {
  10739. padding-right: 1rem !important
  10740. }
  10741. .pe-xxl-4 {
  10742. padding-right: 1.5rem !important
  10743. }
  10744. .pe-xxl-5 {
  10745. padding-right: 3rem !important
  10746. }
  10747. .pb-xxl-0 {
  10748. padding-bottom: 0 !important
  10749. }
  10750. .pb-xxl-1 {
  10751. padding-bottom: .25rem !important
  10752. }
  10753. .pb-xxl-2 {
  10754. padding-bottom: .5rem !important
  10755. }
  10756. .pb-xxl-3 {
  10757. padding-bottom: 1rem !important
  10758. }
  10759. .pb-xxl-4 {
  10760. padding-bottom: 1.5rem !important
  10761. }
  10762. .pb-xxl-5 {
  10763. padding-bottom: 3rem !important
  10764. }
  10765. .ps-xxl-0 {
  10766. padding-left: 0 !important
  10767. }
  10768. .ps-xxl-1 {
  10769. padding-left: .25rem !important
  10770. }
  10771. .ps-xxl-2 {
  10772. padding-left: .5rem !important
  10773. }
  10774. .ps-xxl-3 {
  10775. padding-left: 1rem !important
  10776. }
  10777. .ps-xxl-4 {
  10778. padding-left: 1.5rem !important
  10779. }
  10780. .ps-xxl-5 {
  10781. padding-left: 3rem !important
  10782. }
  10783. .gap-xxl-0 {
  10784. gap: 0 !important
  10785. }
  10786. .gap-xxl-1 {
  10787. gap: .25rem !important
  10788. }
  10789. .gap-xxl-2 {
  10790. gap: .5rem !important
  10791. }
  10792. .gap-xxl-3 {
  10793. gap: 1rem !important
  10794. }
  10795. .gap-xxl-4 {
  10796. gap: 1.5rem !important
  10797. }
  10798. .gap-xxl-5 {
  10799. gap: 3rem !important
  10800. }
  10801. .row-gap-xxl-0 {
  10802. row-gap: 0 !important
  10803. }
  10804. .row-gap-xxl-1 {
  10805. row-gap: .25rem !important
  10806. }
  10807. .row-gap-xxl-2 {
  10808. row-gap: .5rem !important
  10809. }
  10810. .row-gap-xxl-3 {
  10811. row-gap: 1rem !important
  10812. }
  10813. .row-gap-xxl-4 {
  10814. row-gap: 1.5rem !important
  10815. }
  10816. .row-gap-xxl-5 {
  10817. row-gap: 3rem !important
  10818. }
  10819. .column-gap-xxl-0 {
  10820. -moz-column-gap: 0 !important;
  10821. column-gap: 0 !important
  10822. }
  10823. .column-gap-xxl-1 {
  10824. -moz-column-gap: 0.25rem !important;
  10825. column-gap: .25rem !important
  10826. }
  10827. .column-gap-xxl-2 {
  10828. -moz-column-gap: 0.5rem !important;
  10829. column-gap: .5rem !important
  10830. }
  10831. .column-gap-xxl-3 {
  10832. -moz-column-gap: 1rem !important;
  10833. column-gap: 1rem !important
  10834. }
  10835. .column-gap-xxl-4 {
  10836. -moz-column-gap: 1.5rem !important;
  10837. column-gap: 1.5rem !important
  10838. }
  10839. .column-gap-xxl-5 {
  10840. -moz-column-gap: 3rem !important;
  10841. column-gap: 3rem !important
  10842. }
  10843. .text-xxl-start {
  10844. text-align: left !important
  10845. }
  10846. .text-xxl-end {
  10847. text-align: right !important
  10848. }
  10849. .text-xxl-center {
  10850. text-align: center !important
  10851. }
  10852. }
  10853. @media (min-width: 1200px) {
  10854. .fs-1 {
  10855. font-size: 2.5rem !important
  10856. }
  10857. .fs-2 {
  10858. font-size: 2rem !important
  10859. }
  10860. .fs-3 {
  10861. font-size: 1.75rem !important
  10862. }
  10863. .fs-4 {
  10864. font-size: 1.5rem !important
  10865. }
  10866. }
  10867. @media print {
  10868. .d-print-inline {
  10869. display: inline !important
  10870. }
  10871. .d-print-inline-block {
  10872. display: inline-block !important
  10873. }
  10874. .d-print-block {
  10875. display: block !important
  10876. }
  10877. .d-print-grid {
  10878. display: grid !important
  10879. }
  10880. .d-print-inline-grid {
  10881. display: inline-grid !important
  10882. }
  10883. .d-print-table {
  10884. display: table !important
  10885. }
  10886. .d-print-table-row {
  10887. display: table-row !important
  10888. }
  10889. .d-print-table-cell {
  10890. display: table-cell !important
  10891. }
  10892. .d-print-flex {
  10893. display: flex !important
  10894. }
  10895. .d-print-inline-flex {
  10896. display: inline-flex !important
  10897. }
  10898. .d-print-none {
  10899. display: none !important
  10900. }
  10901. }
  10902. /*# sourceMappingURL=bootstrap.min.css.map */
  10903. </style>
  10904. <div class="p-5 h-100 container d-flex justify-content-center align-items-center flex-column text-sm-center">
  10905. <h1 class="display-1 " style="font-size: 3.625rem">哈喽👋</h1>
  10906. <p>你在伴奏网网站上传的音频《{song_name}》已经处理完毕,快来下载吧!<br/><br/>
  10907. <a href="{href_link}" class="d-block">链接如此</a>
  10908. <br/>
  10909. 与其他网站不一样,本邮件发送邮箱真的有个伞兵在后面!
  10910. <br/>
  10911. 请随意骚扰!
  10912. <br><br>
  10913. <code style=" display: block ; background-color: lightgray">
  10914. 详情:
  10915. <br>
  10916. 类别:{kind}<br>
  10917. 专辑:{album}
  10918. </code>
  10919. </p>
  10920. <footer class="bottom-0 position-fixed mb-5">
  10921. ©Andy Xie Creativity Workgroup 2024
  10922. </footer>
  10923. </div>