adminlte.rtl.css 354 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434144351443614437144381443914440144411444214443144441444514446144471444814449144501445114452144531445414455144561445714458144591446014461144621446314464144651446614467144681446914470144711447214473144741447514476144771447814479144801448114482144831448414485144861448714488144891449014491144921449314494144951449614497144981449914500145011450214503145041450514506145071450814509145101451114512145131451414515145161451714518145191452014521145221452314524145251452614527145281452914530145311453214533145341453514536145371453814539145401454114542145431454414545145461454714548145491455014551145521455314554145551455614557145581455914560145611456214563145641456514566145671456814569145701457114572145731457414575145761457714578145791458014581145821458314584145851458614587145881458914590145911459214593145941459514596145971459814599146001460114602146031460414605146061460714608146091461014611146121461314614146151461614617146181461914620146211462214623146241462514626146271462814629146301463114632146331463414635146361463714638146391464014641146421464314644146451464614647146481464914650146511465214653146541465514656146571465814659146601466114662146631466414665146661466714668146691467014671146721467314674146751467614677146781467914680146811468214683146841468514686146871468814689146901469114692146931469414695146961469714698146991470014701147021470314704147051470614707147081470914710147111471214713147141471514716147171471814719147201472114722147231472414725147261472714728147291473014731147321473314734147351473614737147381473914740147411474214743147441474514746147471474814749147501475114752147531475414755147561475714758147591476014761147621476314764147651476614767147681476914770147711477214773147741477514776147771477814779147801478114782147831478414785147861478714788147891479014791147921479314794147951479614797147981479914800148011480214803148041480514806148071480814809148101481114812148131481414815148161481714818148191482014821148221482314824148251482614827148281482914830148311483214833148341483514836148371483814839148401484114842148431484414845148461484714848148491485014851148521485314854148551485614857148581485914860148611486214863148641486514866148671486814869148701487114872148731487414875148761487714878148791488014881148821488314884148851488614887148881488914890148911489214893148941489514896148971489814899149001490114902149031490414905149061490714908149091491014911149121491314914149151491614917149181491914920149211492214923149241492514926149271492814929149301493114932149331493414935149361493714938149391494014941149421494314944149451494614947149481494914950149511495214953149541495514956149571495814959149601496114962149631496414965149661496714968149691497014971149721497314974149751497614977149781497914980149811498214983149841498514986149871498814989149901499114992149931499414995149961499714998149991500015001150021500315004150051500615007150081500915010150111501215013150141501515016150171501815019150201502115022150231502415025150261502715028150291503015031150321503315034150351503615037150381503915040150411504215043150441504515046150471504815049150501505115052150531505415055150561505715058150591506015061150621506315064150651506615067150681506915070150711507215073150741507515076150771507815079150801508115082150831508415085150861508715088150891509015091150921509315094150951509615097150981509915100151011510215103151041510515106151071510815109151101511115112151131511415115151161511715118151191512015121151221512315124151251512615127151281512915130151311513215133151341513515136151371513815139151401514115142151431514415145151461514715148151491515015151151521515315154151551515615157151581515915160151611516215163151641516515166151671516815169151701517115172151731517415175151761517715178151791518015181151821518315184151851518615187151881518915190151911519215193151941519515196151971519815199152001520115202152031520415205152061520715208152091521015211152121521315214152151521615217152181521915220152211522215223152241522515226152271522815229152301523115232152331523415235152361523715238152391524015241152421524315244152451524615247152481524915250152511525215253152541525515256152571525815259152601526115262152631526415265152661526715268152691527015271152721527315274152751527615277152781527915280152811528215283152841528515286152871528815289152901529115292152931529415295152961529715298152991530015301153021530315304153051530615307153081530915310153111531215313153141531515316153171531815319153201532115322153231532415325153261532715328153291533015331153321533315334153351533615337153381533915340153411534215343153441534515346153471534815349153501535115352153531535415355153561535715358153591536015361153621536315364153651536615367153681536915370153711537215373153741537515376153771537815379153801538115382153831538415385153861538715388153891539015391153921539315394153951539615397153981539915400154011540215403154041540515406154071540815409154101541115412154131541415415154161541715418154191542015421154221542315424154251542615427154281542915430154311543215433154341543515436154371543815439154401544115442154431544415445154461544715448154491545015451154521545315454154551545615457154581545915460154611546215463154641546515466154671546815469154701547115472154731547415475154761547715478154791548015481154821548315484154851548615487154881548915490154911549215493154941549515496154971549815499155001550115502155031550415505155061550715508155091551015511155121551315514155151551615517155181551915520155211552215523155241552515526155271552815529155301553115532155331553415535155361553715538155391554015541155421554315544155451554615547155481554915550155511555215553155541555515556155571555815559155601556115562155631556415565155661556715568155691557015571155721557315574155751557615577155781557915580155811558215583155841558515586155871558815589155901559115592155931559415595155961559715598155991560015601
  1. @charset "UTF-8";
  2. /*!
  3. * AdminLTE v4.0.0-rc7
  4. * Author: Colorlib
  5. * Website: AdminLTE.io <https://adminlte.io>
  6. * License: Open source - MIT <https://opensource.org/licenses/MIT>
  7. */
  8. :root,
  9. [data-bs-theme=light] {
  10. --bs-blue: #0d6efd;
  11. --bs-indigo: #6610f2;
  12. --bs-purple: #6f42c1;
  13. --bs-pink: #d63384;
  14. --bs-red: #dc3545;
  15. --bs-orange: #fd7e14;
  16. --bs-yellow: #ffc107;
  17. --bs-green: #198754;
  18. --bs-teal: #20c997;
  19. --bs-cyan: #0dcaf0;
  20. --bs-black: #000;
  21. --bs-white: #fff;
  22. --bs-gray: #6c757d;
  23. --bs-gray-dark: #343a40;
  24. --bs-gray-100: #f8f9fa;
  25. --bs-gray-200: #e9ecef;
  26. --bs-gray-300: #dee2e6;
  27. --bs-gray-400: #ced4da;
  28. --bs-gray-500: #adb5bd;
  29. --bs-gray-600: #6c757d;
  30. --bs-gray-700: #495057;
  31. --bs-gray-800: #343a40;
  32. --bs-gray-900: #212529;
  33. --bs-primary: #0d6efd;
  34. --bs-secondary: #6c757d;
  35. --bs-success: #198754;
  36. --bs-info: #0dcaf0;
  37. --bs-warning: #ffc107;
  38. --bs-danger: #dc3545;
  39. --bs-light: #f8f9fa;
  40. --bs-dark: #212529;
  41. --bs-primary-rgb: 13, 110, 253;
  42. --bs-secondary-rgb: 108, 117, 125;
  43. --bs-success-rgb: 25, 135, 84;
  44. --bs-info-rgb: 13, 202, 240;
  45. --bs-warning-rgb: 255, 193, 7;
  46. --bs-danger-rgb: 220, 53, 69;
  47. --bs-light-rgb: 248, 249, 250;
  48. --bs-dark-rgb: 33, 37, 41;
  49. --bs-primary-text-emphasis: rgb(5.2, 44, 101.2);
  50. --bs-secondary-text-emphasis: rgb(43.2, 46.8, 50);
  51. --bs-success-text-emphasis: rgb(10, 54, 33.6);
  52. --bs-info-text-emphasis: rgb(5.2, 80.8, 96);
  53. --bs-warning-text-emphasis: rgb(102, 77.2, 2.8);
  54. --bs-danger-text-emphasis: rgb(88, 21.2, 27.6);
  55. --bs-light-text-emphasis: #495057;
  56. --bs-dark-text-emphasis: #495057;
  57. --bs-primary-bg-subtle: rgb(206.6, 226, 254.6);
  58. --bs-secondary-bg-subtle: rgb(225.6, 227.4, 229);
  59. --bs-success-bg-subtle: rgb(209, 231, 220.8);
  60. --bs-info-bg-subtle: rgb(206.6, 244.4, 252);
  61. --bs-warning-bg-subtle: rgb(255, 242.6, 205.4);
  62. --bs-danger-bg-subtle: rgb(248, 214.6, 217.8);
  63. --bs-light-bg-subtle: rgb(251.5, 252, 252.5);
  64. --bs-dark-bg-subtle: #ced4da;
  65. --bs-primary-border-subtle: rgb(158.2, 197, 254.2);
  66. --bs-secondary-border-subtle: rgb(196.2, 199.8, 203);
  67. --bs-success-border-subtle: rgb(163, 207, 186.6);
  68. --bs-info-border-subtle: rgb(158.2, 233.8, 249);
  69. --bs-warning-border-subtle: rgb(255, 230.2, 155.8);
  70. --bs-danger-border-subtle: rgb(241, 174.2, 180.6);
  71. --bs-light-border-subtle: #e9ecef;
  72. --bs-dark-border-subtle: #adb5bd;
  73. --bs-white-rgb: 255, 255, 255;
  74. --bs-black-rgb: 0, 0, 0;
  75. --bs-font-sans-serif: "Source Sans 3", 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";
  76. --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  77. --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  78. --bs-body-font-family: var(--bs-font-sans-serif);
  79. --bs-body-font-size: 1rem;
  80. --bs-body-font-weight: 400;
  81. --bs-body-line-height: 1.5;
  82. --bs-body-color: #212529;
  83. --bs-body-color-rgb: 33, 37, 41;
  84. --bs-body-bg: #fff;
  85. --bs-body-bg-rgb: 255, 255, 255;
  86. --bs-emphasis-color: #000;
  87. --bs-emphasis-color-rgb: 0, 0, 0;
  88. --bs-secondary-color: rgba(33, 37, 41, 0.75);
  89. --bs-secondary-color-rgb: 33, 37, 41;
  90. --bs-secondary-bg: #e9ecef;
  91. --bs-secondary-bg-rgb: 233, 236, 239;
  92. --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  93. --bs-tertiary-color-rgb: 33, 37, 41;
  94. --bs-tertiary-bg: #f8f9fa;
  95. --bs-tertiary-bg-rgb: 248, 249, 250;
  96. --bs-heading-color: inherit;
  97. --bs-link-color: #0d6efd;
  98. --bs-link-color-rgb: 13, 110, 253;
  99. --bs-link-decoration: underline;
  100. --bs-link-hover-color: rgb(10.4, 88, 202.4);
  101. --bs-link-hover-color-rgb: 10, 88, 202;
  102. --bs-code-color: #d63384;
  103. --bs-highlight-color: #212529;
  104. --bs-highlight-bg: rgb(255, 242.6, 205.4);
  105. --bs-border-width: 1px;
  106. --bs-border-style: solid;
  107. --bs-border-color: #dee2e6;
  108. --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  109. --bs-border-radius: 0.375rem;
  110. --bs-border-radius-sm: 0.25rem;
  111. --bs-border-radius-lg: 0.5rem;
  112. --bs-border-radius-xl: 1rem;
  113. --bs-border-radius-xxl: 2rem;
  114. --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  115. --bs-border-radius-pill: 50rem;
  116. --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  117. --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  118. --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  119. --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  120. --bs-focus-ring-width: 0.25rem;
  121. --bs-focus-ring-opacity: 0.25;
  122. --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  123. --bs-form-valid-color: #198754;
  124. --bs-form-valid-border-color: #198754;
  125. --bs-form-invalid-color: #dc3545;
  126. --bs-form-invalid-border-color: #dc3545;
  127. }
  128. [data-bs-theme=dark] {
  129. color-scheme: dark;
  130. --bs-body-color: #dee2e6;
  131. --bs-body-color-rgb: 222, 226, 230;
  132. --bs-body-bg: #212529;
  133. --bs-body-bg-rgb: 33, 37, 41;
  134. --bs-emphasis-color: #fff;
  135. --bs-emphasis-color-rgb: 255, 255, 255;
  136. --bs-secondary-color: rgba(222, 226, 230, 0.75);
  137. --bs-secondary-color-rgb: 222, 226, 230;
  138. --bs-secondary-bg: #343a40;
  139. --bs-secondary-bg-rgb: 52, 58, 64;
  140. --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  141. --bs-tertiary-color-rgb: 222, 226, 230;
  142. --bs-tertiary-bg: rgb(42.5, 47.5, 52.5);
  143. --bs-tertiary-bg-rgb: 43, 48, 53;
  144. --bs-primary-text-emphasis: rgb(109.8, 168, 253.8);
  145. --bs-secondary-text-emphasis: rgb(166.8, 172.2, 177);
  146. --bs-success-text-emphasis: rgb(117, 183, 152.4);
  147. --bs-info-text-emphasis: rgb(109.8, 223.2, 246);
  148. --bs-warning-text-emphasis: rgb(255, 217.8, 106.2);
  149. --bs-danger-text-emphasis: rgb(234, 133.8, 143.4);
  150. --bs-light-text-emphasis: #f8f9fa;
  151. --bs-dark-text-emphasis: #dee2e6;
  152. --bs-primary-bg-subtle: rgb(2.6, 22, 50.6);
  153. --bs-secondary-bg-subtle: rgb(21.6, 23.4, 25);
  154. --bs-success-bg-subtle: rgb(5, 27, 16.8);
  155. --bs-info-bg-subtle: rgb(2.6, 40.4, 48);
  156. --bs-warning-bg-subtle: rgb(51, 38.6, 1.4);
  157. --bs-danger-bg-subtle: rgb(44, 10.6, 13.8);
  158. --bs-light-bg-subtle: #343a40;
  159. --bs-dark-bg-subtle: #1a1d20;
  160. --bs-primary-border-subtle: rgb(7.8, 66, 151.8);
  161. --bs-secondary-border-subtle: rgb(64.8, 70.2, 75);
  162. --bs-success-border-subtle: rgb(15, 81, 50.4);
  163. --bs-info-border-subtle: rgb(7.8, 121.2, 144);
  164. --bs-warning-border-subtle: rgb(153, 115.8, 4.2);
  165. --bs-danger-border-subtle: rgb(132, 31.8, 41.4);
  166. --bs-light-border-subtle: #495057;
  167. --bs-dark-border-subtle: #343a40;
  168. --bs-heading-color: inherit;
  169. --bs-link-color: rgb(109.8, 168, 253.8);
  170. --bs-link-hover-color: rgb(138.84, 185.4, 254.04);
  171. --bs-link-color-rgb: 110, 168, 254;
  172. --bs-link-hover-color-rgb: 139, 185, 254;
  173. --bs-code-color: rgb(230.4, 132.6, 181.2);
  174. --bs-highlight-color: #dee2e6;
  175. --bs-highlight-bg: rgb(102, 77.2, 2.8);
  176. --bs-border-color: #495057;
  177. --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  178. --bs-form-valid-color: rgb(117, 183, 152.4);
  179. --bs-form-valid-border-color: rgb(117, 183, 152.4);
  180. --bs-form-invalid-color: rgb(234, 133.8, 143.4);
  181. --bs-form-invalid-border-color: rgb(234, 133.8, 143.4);
  182. }
  183. *,
  184. *::before,
  185. *::after {
  186. box-sizing: border-box;
  187. }
  188. @media (prefers-reduced-motion: no-preference) {
  189. :root {
  190. scroll-behavior: smooth;
  191. }
  192. }
  193. body {
  194. margin: 0;
  195. font-family: var(--bs-body-font-family);
  196. font-size: var(--bs-body-font-size);
  197. font-weight: var(--bs-body-font-weight);
  198. line-height: var(--bs-body-line-height);
  199. color: var(--bs-body-color);
  200. text-align: var(--bs-body-text-align);
  201. background-color: var(--bs-body-bg);
  202. -webkit-text-size-adjust: 100%;
  203. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  204. }
  205. hr {
  206. margin: 1rem 0;
  207. color: inherit;
  208. border: 0;
  209. border-top: var(--bs-border-width) solid;
  210. opacity: 0.25;
  211. }
  212. h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  213. margin-top: 0;
  214. margin-bottom: 0.5rem;
  215. font-weight: 500;
  216. line-height: 1.2;
  217. color: var(--bs-heading-color);
  218. }
  219. h1, .h1 {
  220. font-size: calc(1.375rem + 1.5vw);
  221. }
  222. @media (min-width: 1200px) {
  223. h1, .h1 {
  224. font-size: 2.5rem;
  225. }
  226. }
  227. h2, .h2 {
  228. font-size: calc(1.325rem + 0.9vw);
  229. }
  230. @media (min-width: 1200px) {
  231. h2, .h2 {
  232. font-size: 2rem;
  233. }
  234. }
  235. h3, .h3 {
  236. font-size: calc(1.3rem + 0.6vw);
  237. }
  238. @media (min-width: 1200px) {
  239. h3, .h3 {
  240. font-size: 1.75rem;
  241. }
  242. }
  243. h4, .h4 {
  244. font-size: calc(1.275rem + 0.3vw);
  245. }
  246. @media (min-width: 1200px) {
  247. h4, .h4 {
  248. font-size: 1.5rem;
  249. }
  250. }
  251. h5, .h5 {
  252. font-size: 1.25rem;
  253. }
  254. h6, .h6 {
  255. font-size: 1rem;
  256. }
  257. p {
  258. margin-top: 0;
  259. margin-bottom: 1rem;
  260. }
  261. abbr[title] {
  262. -webkit-text-decoration: underline dotted;
  263. text-decoration: underline dotted;
  264. cursor: help;
  265. -webkit-text-decoration-skip-ink: none;
  266. text-decoration-skip-ink: none;
  267. }
  268. address {
  269. margin-bottom: 1rem;
  270. font-style: normal;
  271. line-height: inherit;
  272. }
  273. ol,
  274. ul {
  275. padding-right: 2rem;
  276. }
  277. ol,
  278. ul,
  279. dl {
  280. margin-top: 0;
  281. margin-bottom: 1rem;
  282. }
  283. ol ol,
  284. ul ul,
  285. ol ul,
  286. ul ol {
  287. margin-bottom: 0;
  288. }
  289. dt {
  290. font-weight: 700;
  291. }
  292. dd {
  293. margin-bottom: 0.5rem;
  294. margin-right: 0;
  295. }
  296. blockquote {
  297. margin: 0 0 1rem;
  298. }
  299. b,
  300. strong {
  301. font-weight: bolder;
  302. }
  303. small, .small {
  304. font-size: 0.875em;
  305. }
  306. mark, .mark {
  307. padding: 0.1875em;
  308. color: var(--bs-highlight-color);
  309. background-color: var(--bs-highlight-bg);
  310. }
  311. sub,
  312. sup {
  313. position: relative;
  314. font-size: 0.75em;
  315. line-height: 0;
  316. vertical-align: baseline;
  317. }
  318. sub {
  319. bottom: -0.25em;
  320. }
  321. sup {
  322. top: -0.5em;
  323. }
  324. a {
  325. color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  326. text-decoration: underline;
  327. }
  328. a:hover {
  329. --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
  330. }
  331. a:not([href]):not([class]), a:not([href]):not([class]):hover {
  332. color: inherit;
  333. text-decoration: none;
  334. }
  335. pre,
  336. code,
  337. kbd,
  338. samp {
  339. font-family: var(--bs-font-monospace);
  340. font-size: 1em;
  341. }
  342. pre {
  343. display: block;
  344. margin-top: 0;
  345. margin-bottom: 1rem;
  346. overflow: auto;
  347. font-size: 0.875em;
  348. }
  349. pre code {
  350. font-size: inherit;
  351. color: inherit;
  352. word-break: normal;
  353. }
  354. code {
  355. font-size: 0.875em;
  356. color: var(--bs-code-color);
  357. word-wrap: break-word;
  358. }
  359. a > code {
  360. color: inherit;
  361. }
  362. kbd {
  363. padding: 0.1875rem 0.375rem;
  364. font-size: 0.875em;
  365. color: var(--bs-body-bg);
  366. background-color: var(--bs-body-color);
  367. border-radius: 0.25rem;
  368. }
  369. kbd kbd {
  370. padding: 0;
  371. font-size: 1em;
  372. }
  373. figure {
  374. margin: 0 0 1rem;
  375. }
  376. img,
  377. svg {
  378. vertical-align: middle;
  379. }
  380. table {
  381. caption-side: bottom;
  382. border-collapse: collapse;
  383. }
  384. caption {
  385. padding-top: 0.5rem;
  386. padding-bottom: 0.5rem;
  387. color: var(--bs-secondary-color);
  388. text-align: right;
  389. }
  390. th {
  391. text-align: inherit;
  392. text-align: -webkit-match-parent;
  393. }
  394. thead,
  395. tbody,
  396. tfoot,
  397. tr,
  398. td,
  399. th {
  400. border-color: inherit;
  401. border-style: solid;
  402. border-width: 0;
  403. }
  404. label {
  405. display: inline-block;
  406. }
  407. button {
  408. border-radius: 0;
  409. }
  410. button:focus:not(:focus-visible) {
  411. outline: 0;
  412. }
  413. input,
  414. button,
  415. select,
  416. optgroup,
  417. textarea {
  418. margin: 0;
  419. font-family: inherit;
  420. font-size: inherit;
  421. line-height: inherit;
  422. }
  423. button,
  424. select {
  425. text-transform: none;
  426. }
  427. [role=button] {
  428. cursor: pointer;
  429. }
  430. select {
  431. word-wrap: normal;
  432. }
  433. select:disabled {
  434. opacity: 1;
  435. }
  436. [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  437. display: none !important;
  438. }
  439. button,
  440. [type=button],
  441. [type=reset],
  442. [type=submit] {
  443. -webkit-appearance: button;
  444. }
  445. button:not(:disabled),
  446. [type=button]:not(:disabled),
  447. [type=reset]:not(:disabled),
  448. [type=submit]:not(:disabled) {
  449. cursor: pointer;
  450. }
  451. ::-moz-focus-inner {
  452. padding: 0;
  453. border-style: none;
  454. }
  455. textarea {
  456. resize: vertical;
  457. }
  458. fieldset {
  459. min-width: 0;
  460. padding: 0;
  461. margin: 0;
  462. border: 0;
  463. }
  464. legend {
  465. float: right;
  466. width: 100%;
  467. padding: 0;
  468. margin-bottom: 0.5rem;
  469. line-height: inherit;
  470. font-size: calc(1.275rem + 0.3vw);
  471. }
  472. @media (min-width: 1200px) {
  473. legend {
  474. font-size: 1.5rem;
  475. }
  476. }
  477. legend + * {
  478. clear: right;
  479. }
  480. ::-webkit-datetime-edit-fields-wrapper,
  481. ::-webkit-datetime-edit-text,
  482. ::-webkit-datetime-edit-minute,
  483. ::-webkit-datetime-edit-hour-field,
  484. ::-webkit-datetime-edit-day-field,
  485. ::-webkit-datetime-edit-month-field,
  486. ::-webkit-datetime-edit-year-field {
  487. padding: 0;
  488. }
  489. ::-webkit-inner-spin-button {
  490. height: auto;
  491. }
  492. [type=search] {
  493. -webkit-appearance: textfield;
  494. outline-offset: -2px;
  495. }
  496. [type=search]::-webkit-search-cancel-button {
  497. cursor: pointer;
  498. filter: grayscale(1);
  499. }
  500. [type="tel"],
  501. [type="url"],
  502. [type="email"],
  503. [type="number"] {
  504. direction: ltr;
  505. }
  506. ::-webkit-search-decoration {
  507. -webkit-appearance: none;
  508. }
  509. ::-webkit-color-swatch-wrapper {
  510. padding: 0;
  511. }
  512. ::file-selector-button {
  513. font: inherit;
  514. -webkit-appearance: button;
  515. }
  516. output {
  517. display: inline-block;
  518. }
  519. iframe {
  520. border: 0;
  521. }
  522. summary {
  523. display: list-item;
  524. cursor: pointer;
  525. }
  526. progress {
  527. vertical-align: baseline;
  528. }
  529. [hidden] {
  530. display: none !important;
  531. }
  532. .lead {
  533. font-size: 1.25rem;
  534. font-weight: 300;
  535. }
  536. .display-1 {
  537. font-weight: 300;
  538. line-height: 1.2;
  539. font-size: calc(1.625rem + 4.5vw);
  540. }
  541. @media (min-width: 1200px) {
  542. .display-1 {
  543. font-size: 5rem;
  544. }
  545. }
  546. .display-2 {
  547. font-weight: 300;
  548. line-height: 1.2;
  549. font-size: calc(1.575rem + 3.9vw);
  550. }
  551. @media (min-width: 1200px) {
  552. .display-2 {
  553. font-size: 4.5rem;
  554. }
  555. }
  556. .display-3 {
  557. font-weight: 300;
  558. line-height: 1.2;
  559. font-size: calc(1.525rem + 3.3vw);
  560. }
  561. @media (min-width: 1200px) {
  562. .display-3 {
  563. font-size: 4rem;
  564. }
  565. }
  566. .display-4 {
  567. font-weight: 300;
  568. line-height: 1.2;
  569. font-size: calc(1.475rem + 2.7vw);
  570. }
  571. @media (min-width: 1200px) {
  572. .display-4 {
  573. font-size: 3.5rem;
  574. }
  575. }
  576. .display-5 {
  577. font-weight: 300;
  578. line-height: 1.2;
  579. font-size: calc(1.425rem + 2.1vw);
  580. }
  581. @media (min-width: 1200px) {
  582. .display-5 {
  583. font-size: 3rem;
  584. }
  585. }
  586. .display-6 {
  587. font-weight: 300;
  588. line-height: 1.2;
  589. font-size: calc(1.375rem + 1.5vw);
  590. }
  591. @media (min-width: 1200px) {
  592. .display-6 {
  593. font-size: 2.5rem;
  594. }
  595. }
  596. .list-unstyled {
  597. padding-right: 0;
  598. list-style: none;
  599. }
  600. .list-inline {
  601. padding-right: 0;
  602. list-style: none;
  603. }
  604. .list-inline-item {
  605. display: inline-block;
  606. }
  607. .list-inline-item:not(:last-child) {
  608. margin-left: 0.5rem;
  609. }
  610. .initialism {
  611. font-size: 0.875em;
  612. text-transform: uppercase;
  613. }
  614. .blockquote {
  615. margin-bottom: 1rem;
  616. font-size: 1.25rem;
  617. }
  618. .blockquote > :last-child {
  619. margin-bottom: 0;
  620. }
  621. .blockquote-footer {
  622. margin-top: -1rem;
  623. margin-bottom: 1rem;
  624. font-size: 0.875em;
  625. color: #6c757d;
  626. }
  627. .blockquote-footer::before {
  628. content: "— ";
  629. }
  630. .img-fluid {
  631. max-width: 100%;
  632. height: auto;
  633. }
  634. .img-thumbnail {
  635. padding: 0.25rem;
  636. background-color: var(--bs-body-bg);
  637. border: var(--bs-border-width) solid var(--bs-border-color);
  638. border-radius: var(--bs-border-radius);
  639. box-shadow: var(--bs-box-shadow-sm);
  640. max-width: 100%;
  641. height: auto;
  642. }
  643. .figure {
  644. display: inline-block;
  645. }
  646. .figure-img {
  647. margin-bottom: 0.5rem;
  648. line-height: 1;
  649. }
  650. .figure-caption {
  651. font-size: 0.875em;
  652. color: var(--bs-secondary-color);
  653. }
  654. .container,
  655. .container-fluid,
  656. .container-xxl,
  657. .container-xl,
  658. .container-lg,
  659. .container-md,
  660. .container-sm {
  661. --bs-gutter-x: 1.5rem;
  662. --bs-gutter-y: 0;
  663. width: 100%;
  664. padding-left: calc(var(--bs-gutter-x) * 0.5);
  665. padding-right: calc(var(--bs-gutter-x) * 0.5);
  666. margin-left: auto;
  667. margin-right: auto;
  668. }
  669. @media (min-width: 576px) {
  670. .container-sm, .container {
  671. max-width: 540px;
  672. }
  673. }
  674. @media (min-width: 768px) {
  675. .container-md, .container-sm, .container {
  676. max-width: 720px;
  677. }
  678. }
  679. @media (min-width: 992px) {
  680. .container-lg, .container-md, .container-sm, .container {
  681. max-width: 960px;
  682. }
  683. }
  684. @media (min-width: 1200px) {
  685. .container-xl, .container-lg, .container-md, .container-sm, .container {
  686. max-width: 1140px;
  687. }
  688. }
  689. @media (min-width: 1400px) {
  690. .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
  691. max-width: 1320px;
  692. }
  693. }
  694. :root {
  695. --bs-breakpoint-xs: 0;
  696. --bs-breakpoint-sm: 576px;
  697. --bs-breakpoint-md: 768px;
  698. --bs-breakpoint-lg: 992px;
  699. --bs-breakpoint-xl: 1200px;
  700. --bs-breakpoint-xxl: 1400px;
  701. }
  702. .row {
  703. --bs-gutter-x: 1.5rem;
  704. --bs-gutter-y: 0;
  705. display: flex;
  706. flex-wrap: wrap;
  707. margin-top: calc(-1 * var(--bs-gutter-y));
  708. margin-left: calc(-0.5 * var(--bs-gutter-x));
  709. margin-right: calc(-0.5 * var(--bs-gutter-x));
  710. }
  711. .row > * {
  712. flex-shrink: 0;
  713. width: 100%;
  714. max-width: 100%;
  715. padding-left: calc(var(--bs-gutter-x) * 0.5);
  716. padding-right: calc(var(--bs-gutter-x) * 0.5);
  717. margin-top: var(--bs-gutter-y);
  718. }
  719. .col {
  720. flex: 1 0 0;
  721. }
  722. .row-cols-auto > * {
  723. flex: 0 0 auto;
  724. width: auto;
  725. }
  726. .row-cols-1 > * {
  727. flex: 0 0 auto;
  728. width: 100%;
  729. }
  730. .row-cols-2 > * {
  731. flex: 0 0 auto;
  732. width: 50%;
  733. }
  734. .row-cols-3 > * {
  735. flex: 0 0 auto;
  736. width: 33.33333333%;
  737. }
  738. .row-cols-4 > * {
  739. flex: 0 0 auto;
  740. width: 25%;
  741. }
  742. .row-cols-5 > * {
  743. flex: 0 0 auto;
  744. width: 20%;
  745. }
  746. .row-cols-6 > * {
  747. flex: 0 0 auto;
  748. width: 16.66666667%;
  749. }
  750. .col-auto {
  751. flex: 0 0 auto;
  752. width: auto;
  753. }
  754. .col-1 {
  755. flex: 0 0 auto;
  756. width: 8.33333333%;
  757. }
  758. .col-2 {
  759. flex: 0 0 auto;
  760. width: 16.66666667%;
  761. }
  762. .col-3 {
  763. flex: 0 0 auto;
  764. width: 25%;
  765. }
  766. .col-4 {
  767. flex: 0 0 auto;
  768. width: 33.33333333%;
  769. }
  770. .col-5 {
  771. flex: 0 0 auto;
  772. width: 41.66666667%;
  773. }
  774. .col-6 {
  775. flex: 0 0 auto;
  776. width: 50%;
  777. }
  778. .col-7 {
  779. flex: 0 0 auto;
  780. width: 58.33333333%;
  781. }
  782. .col-8 {
  783. flex: 0 0 auto;
  784. width: 66.66666667%;
  785. }
  786. .col-9 {
  787. flex: 0 0 auto;
  788. width: 75%;
  789. }
  790. .col-10 {
  791. flex: 0 0 auto;
  792. width: 83.33333333%;
  793. }
  794. .col-11 {
  795. flex: 0 0 auto;
  796. width: 91.66666667%;
  797. }
  798. .col-12 {
  799. flex: 0 0 auto;
  800. width: 100%;
  801. }
  802. .offset-1 {
  803. margin-right: 8.33333333%;
  804. }
  805. .offset-2 {
  806. margin-right: 16.66666667%;
  807. }
  808. .offset-3 {
  809. margin-right: 25%;
  810. }
  811. .offset-4 {
  812. margin-right: 33.33333333%;
  813. }
  814. .offset-5 {
  815. margin-right: 41.66666667%;
  816. }
  817. .offset-6 {
  818. margin-right: 50%;
  819. }
  820. .offset-7 {
  821. margin-right: 58.33333333%;
  822. }
  823. .offset-8 {
  824. margin-right: 66.66666667%;
  825. }
  826. .offset-9 {
  827. margin-right: 75%;
  828. }
  829. .offset-10 {
  830. margin-right: 83.33333333%;
  831. }
  832. .offset-11 {
  833. margin-right: 91.66666667%;
  834. }
  835. .g-0,
  836. .gx-0 {
  837. --bs-gutter-x: 0;
  838. }
  839. .g-0,
  840. .gy-0 {
  841. --bs-gutter-y: 0;
  842. }
  843. .g-1,
  844. .gx-1 {
  845. --bs-gutter-x: 0.25rem;
  846. }
  847. .g-1,
  848. .gy-1 {
  849. --bs-gutter-y: 0.25rem;
  850. }
  851. .g-2,
  852. .gx-2 {
  853. --bs-gutter-x: 0.5rem;
  854. }
  855. .g-2,
  856. .gy-2 {
  857. --bs-gutter-y: 0.5rem;
  858. }
  859. .g-3,
  860. .gx-3 {
  861. --bs-gutter-x: 1rem;
  862. }
  863. .g-3,
  864. .gy-3 {
  865. --bs-gutter-y: 1rem;
  866. }
  867. .g-4,
  868. .gx-4 {
  869. --bs-gutter-x: 1.5rem;
  870. }
  871. .g-4,
  872. .gy-4 {
  873. --bs-gutter-y: 1.5rem;
  874. }
  875. .g-5,
  876. .gx-5 {
  877. --bs-gutter-x: 3rem;
  878. }
  879. .g-5,
  880. .gy-5 {
  881. --bs-gutter-y: 3rem;
  882. }
  883. @media (min-width: 576px) {
  884. .col-sm {
  885. flex: 1 0 0;
  886. }
  887. .row-cols-sm-auto > * {
  888. flex: 0 0 auto;
  889. width: auto;
  890. }
  891. .row-cols-sm-1 > * {
  892. flex: 0 0 auto;
  893. width: 100%;
  894. }
  895. .row-cols-sm-2 > * {
  896. flex: 0 0 auto;
  897. width: 50%;
  898. }
  899. .row-cols-sm-3 > * {
  900. flex: 0 0 auto;
  901. width: 33.33333333%;
  902. }
  903. .row-cols-sm-4 > * {
  904. flex: 0 0 auto;
  905. width: 25%;
  906. }
  907. .row-cols-sm-5 > * {
  908. flex: 0 0 auto;
  909. width: 20%;
  910. }
  911. .row-cols-sm-6 > * {
  912. flex: 0 0 auto;
  913. width: 16.66666667%;
  914. }
  915. .col-sm-auto {
  916. flex: 0 0 auto;
  917. width: auto;
  918. }
  919. .col-sm-1 {
  920. flex: 0 0 auto;
  921. width: 8.33333333%;
  922. }
  923. .col-sm-2 {
  924. flex: 0 0 auto;
  925. width: 16.66666667%;
  926. }
  927. .col-sm-3 {
  928. flex: 0 0 auto;
  929. width: 25%;
  930. }
  931. .col-sm-4 {
  932. flex: 0 0 auto;
  933. width: 33.33333333%;
  934. }
  935. .col-sm-5 {
  936. flex: 0 0 auto;
  937. width: 41.66666667%;
  938. }
  939. .col-sm-6 {
  940. flex: 0 0 auto;
  941. width: 50%;
  942. }
  943. .col-sm-7 {
  944. flex: 0 0 auto;
  945. width: 58.33333333%;
  946. }
  947. .col-sm-8 {
  948. flex: 0 0 auto;
  949. width: 66.66666667%;
  950. }
  951. .col-sm-9 {
  952. flex: 0 0 auto;
  953. width: 75%;
  954. }
  955. .col-sm-10 {
  956. flex: 0 0 auto;
  957. width: 83.33333333%;
  958. }
  959. .col-sm-11 {
  960. flex: 0 0 auto;
  961. width: 91.66666667%;
  962. }
  963. .col-sm-12 {
  964. flex: 0 0 auto;
  965. width: 100%;
  966. }
  967. .offset-sm-0 {
  968. margin-right: 0;
  969. }
  970. .offset-sm-1 {
  971. margin-right: 8.33333333%;
  972. }
  973. .offset-sm-2 {
  974. margin-right: 16.66666667%;
  975. }
  976. .offset-sm-3 {
  977. margin-right: 25%;
  978. }
  979. .offset-sm-4 {
  980. margin-right: 33.33333333%;
  981. }
  982. .offset-sm-5 {
  983. margin-right: 41.66666667%;
  984. }
  985. .offset-sm-6 {
  986. margin-right: 50%;
  987. }
  988. .offset-sm-7 {
  989. margin-right: 58.33333333%;
  990. }
  991. .offset-sm-8 {
  992. margin-right: 66.66666667%;
  993. }
  994. .offset-sm-9 {
  995. margin-right: 75%;
  996. }
  997. .offset-sm-10 {
  998. margin-right: 83.33333333%;
  999. }
  1000. .offset-sm-11 {
  1001. margin-right: 91.66666667%;
  1002. }
  1003. .g-sm-0,
  1004. .gx-sm-0 {
  1005. --bs-gutter-x: 0;
  1006. }
  1007. .g-sm-0,
  1008. .gy-sm-0 {
  1009. --bs-gutter-y: 0;
  1010. }
  1011. .g-sm-1,
  1012. .gx-sm-1 {
  1013. --bs-gutter-x: 0.25rem;
  1014. }
  1015. .g-sm-1,
  1016. .gy-sm-1 {
  1017. --bs-gutter-y: 0.25rem;
  1018. }
  1019. .g-sm-2,
  1020. .gx-sm-2 {
  1021. --bs-gutter-x: 0.5rem;
  1022. }
  1023. .g-sm-2,
  1024. .gy-sm-2 {
  1025. --bs-gutter-y: 0.5rem;
  1026. }
  1027. .g-sm-3,
  1028. .gx-sm-3 {
  1029. --bs-gutter-x: 1rem;
  1030. }
  1031. .g-sm-3,
  1032. .gy-sm-3 {
  1033. --bs-gutter-y: 1rem;
  1034. }
  1035. .g-sm-4,
  1036. .gx-sm-4 {
  1037. --bs-gutter-x: 1.5rem;
  1038. }
  1039. .g-sm-4,
  1040. .gy-sm-4 {
  1041. --bs-gutter-y: 1.5rem;
  1042. }
  1043. .g-sm-5,
  1044. .gx-sm-5 {
  1045. --bs-gutter-x: 3rem;
  1046. }
  1047. .g-sm-5,
  1048. .gy-sm-5 {
  1049. --bs-gutter-y: 3rem;
  1050. }
  1051. }
  1052. @media (min-width: 768px) {
  1053. .col-md {
  1054. flex: 1 0 0;
  1055. }
  1056. .row-cols-md-auto > * {
  1057. flex: 0 0 auto;
  1058. width: auto;
  1059. }
  1060. .row-cols-md-1 > * {
  1061. flex: 0 0 auto;
  1062. width: 100%;
  1063. }
  1064. .row-cols-md-2 > * {
  1065. flex: 0 0 auto;
  1066. width: 50%;
  1067. }
  1068. .row-cols-md-3 > * {
  1069. flex: 0 0 auto;
  1070. width: 33.33333333%;
  1071. }
  1072. .row-cols-md-4 > * {
  1073. flex: 0 0 auto;
  1074. width: 25%;
  1075. }
  1076. .row-cols-md-5 > * {
  1077. flex: 0 0 auto;
  1078. width: 20%;
  1079. }
  1080. .row-cols-md-6 > * {
  1081. flex: 0 0 auto;
  1082. width: 16.66666667%;
  1083. }
  1084. .col-md-auto {
  1085. flex: 0 0 auto;
  1086. width: auto;
  1087. }
  1088. .col-md-1 {
  1089. flex: 0 0 auto;
  1090. width: 8.33333333%;
  1091. }
  1092. .col-md-2 {
  1093. flex: 0 0 auto;
  1094. width: 16.66666667%;
  1095. }
  1096. .col-md-3 {
  1097. flex: 0 0 auto;
  1098. width: 25%;
  1099. }
  1100. .col-md-4 {
  1101. flex: 0 0 auto;
  1102. width: 33.33333333%;
  1103. }
  1104. .col-md-5 {
  1105. flex: 0 0 auto;
  1106. width: 41.66666667%;
  1107. }
  1108. .col-md-6 {
  1109. flex: 0 0 auto;
  1110. width: 50%;
  1111. }
  1112. .col-md-7 {
  1113. flex: 0 0 auto;
  1114. width: 58.33333333%;
  1115. }
  1116. .col-md-8 {
  1117. flex: 0 0 auto;
  1118. width: 66.66666667%;
  1119. }
  1120. .col-md-9 {
  1121. flex: 0 0 auto;
  1122. width: 75%;
  1123. }
  1124. .col-md-10 {
  1125. flex: 0 0 auto;
  1126. width: 83.33333333%;
  1127. }
  1128. .col-md-11 {
  1129. flex: 0 0 auto;
  1130. width: 91.66666667%;
  1131. }
  1132. .col-md-12 {
  1133. flex: 0 0 auto;
  1134. width: 100%;
  1135. }
  1136. .offset-md-0 {
  1137. margin-right: 0;
  1138. }
  1139. .offset-md-1 {
  1140. margin-right: 8.33333333%;
  1141. }
  1142. .offset-md-2 {
  1143. margin-right: 16.66666667%;
  1144. }
  1145. .offset-md-3 {
  1146. margin-right: 25%;
  1147. }
  1148. .offset-md-4 {
  1149. margin-right: 33.33333333%;
  1150. }
  1151. .offset-md-5 {
  1152. margin-right: 41.66666667%;
  1153. }
  1154. .offset-md-6 {
  1155. margin-right: 50%;
  1156. }
  1157. .offset-md-7 {
  1158. margin-right: 58.33333333%;
  1159. }
  1160. .offset-md-8 {
  1161. margin-right: 66.66666667%;
  1162. }
  1163. .offset-md-9 {
  1164. margin-right: 75%;
  1165. }
  1166. .offset-md-10 {
  1167. margin-right: 83.33333333%;
  1168. }
  1169. .offset-md-11 {
  1170. margin-right: 91.66666667%;
  1171. }
  1172. .g-md-0,
  1173. .gx-md-0 {
  1174. --bs-gutter-x: 0;
  1175. }
  1176. .g-md-0,
  1177. .gy-md-0 {
  1178. --bs-gutter-y: 0;
  1179. }
  1180. .g-md-1,
  1181. .gx-md-1 {
  1182. --bs-gutter-x: 0.25rem;
  1183. }
  1184. .g-md-1,
  1185. .gy-md-1 {
  1186. --bs-gutter-y: 0.25rem;
  1187. }
  1188. .g-md-2,
  1189. .gx-md-2 {
  1190. --bs-gutter-x: 0.5rem;
  1191. }
  1192. .g-md-2,
  1193. .gy-md-2 {
  1194. --bs-gutter-y: 0.5rem;
  1195. }
  1196. .g-md-3,
  1197. .gx-md-3 {
  1198. --bs-gutter-x: 1rem;
  1199. }
  1200. .g-md-3,
  1201. .gy-md-3 {
  1202. --bs-gutter-y: 1rem;
  1203. }
  1204. .g-md-4,
  1205. .gx-md-4 {
  1206. --bs-gutter-x: 1.5rem;
  1207. }
  1208. .g-md-4,
  1209. .gy-md-4 {
  1210. --bs-gutter-y: 1.5rem;
  1211. }
  1212. .g-md-5,
  1213. .gx-md-5 {
  1214. --bs-gutter-x: 3rem;
  1215. }
  1216. .g-md-5,
  1217. .gy-md-5 {
  1218. --bs-gutter-y: 3rem;
  1219. }
  1220. }
  1221. @media (min-width: 992px) {
  1222. .col-lg {
  1223. flex: 1 0 0;
  1224. }
  1225. .row-cols-lg-auto > * {
  1226. flex: 0 0 auto;
  1227. width: auto;
  1228. }
  1229. .row-cols-lg-1 > * {
  1230. flex: 0 0 auto;
  1231. width: 100%;
  1232. }
  1233. .row-cols-lg-2 > * {
  1234. flex: 0 0 auto;
  1235. width: 50%;
  1236. }
  1237. .row-cols-lg-3 > * {
  1238. flex: 0 0 auto;
  1239. width: 33.33333333%;
  1240. }
  1241. .row-cols-lg-4 > * {
  1242. flex: 0 0 auto;
  1243. width: 25%;
  1244. }
  1245. .row-cols-lg-5 > * {
  1246. flex: 0 0 auto;
  1247. width: 20%;
  1248. }
  1249. .row-cols-lg-6 > * {
  1250. flex: 0 0 auto;
  1251. width: 16.66666667%;
  1252. }
  1253. .col-lg-auto {
  1254. flex: 0 0 auto;
  1255. width: auto;
  1256. }
  1257. .col-lg-1 {
  1258. flex: 0 0 auto;
  1259. width: 8.33333333%;
  1260. }
  1261. .col-lg-2 {
  1262. flex: 0 0 auto;
  1263. width: 16.66666667%;
  1264. }
  1265. .col-lg-3 {
  1266. flex: 0 0 auto;
  1267. width: 25%;
  1268. }
  1269. .col-lg-4 {
  1270. flex: 0 0 auto;
  1271. width: 33.33333333%;
  1272. }
  1273. .col-lg-5 {
  1274. flex: 0 0 auto;
  1275. width: 41.66666667%;
  1276. }
  1277. .col-lg-6 {
  1278. flex: 0 0 auto;
  1279. width: 50%;
  1280. }
  1281. .col-lg-7 {
  1282. flex: 0 0 auto;
  1283. width: 58.33333333%;
  1284. }
  1285. .col-lg-8 {
  1286. flex: 0 0 auto;
  1287. width: 66.66666667%;
  1288. }
  1289. .col-lg-9 {
  1290. flex: 0 0 auto;
  1291. width: 75%;
  1292. }
  1293. .col-lg-10 {
  1294. flex: 0 0 auto;
  1295. width: 83.33333333%;
  1296. }
  1297. .col-lg-11 {
  1298. flex: 0 0 auto;
  1299. width: 91.66666667%;
  1300. }
  1301. .col-lg-12 {
  1302. flex: 0 0 auto;
  1303. width: 100%;
  1304. }
  1305. .offset-lg-0 {
  1306. margin-right: 0;
  1307. }
  1308. .offset-lg-1 {
  1309. margin-right: 8.33333333%;
  1310. }
  1311. .offset-lg-2 {
  1312. margin-right: 16.66666667%;
  1313. }
  1314. .offset-lg-3 {
  1315. margin-right: 25%;
  1316. }
  1317. .offset-lg-4 {
  1318. margin-right: 33.33333333%;
  1319. }
  1320. .offset-lg-5 {
  1321. margin-right: 41.66666667%;
  1322. }
  1323. .offset-lg-6 {
  1324. margin-right: 50%;
  1325. }
  1326. .offset-lg-7 {
  1327. margin-right: 58.33333333%;
  1328. }
  1329. .offset-lg-8 {
  1330. margin-right: 66.66666667%;
  1331. }
  1332. .offset-lg-9 {
  1333. margin-right: 75%;
  1334. }
  1335. .offset-lg-10 {
  1336. margin-right: 83.33333333%;
  1337. }
  1338. .offset-lg-11 {
  1339. margin-right: 91.66666667%;
  1340. }
  1341. .g-lg-0,
  1342. .gx-lg-0 {
  1343. --bs-gutter-x: 0;
  1344. }
  1345. .g-lg-0,
  1346. .gy-lg-0 {
  1347. --bs-gutter-y: 0;
  1348. }
  1349. .g-lg-1,
  1350. .gx-lg-1 {
  1351. --bs-gutter-x: 0.25rem;
  1352. }
  1353. .g-lg-1,
  1354. .gy-lg-1 {
  1355. --bs-gutter-y: 0.25rem;
  1356. }
  1357. .g-lg-2,
  1358. .gx-lg-2 {
  1359. --bs-gutter-x: 0.5rem;
  1360. }
  1361. .g-lg-2,
  1362. .gy-lg-2 {
  1363. --bs-gutter-y: 0.5rem;
  1364. }
  1365. .g-lg-3,
  1366. .gx-lg-3 {
  1367. --bs-gutter-x: 1rem;
  1368. }
  1369. .g-lg-3,
  1370. .gy-lg-3 {
  1371. --bs-gutter-y: 1rem;
  1372. }
  1373. .g-lg-4,
  1374. .gx-lg-4 {
  1375. --bs-gutter-x: 1.5rem;
  1376. }
  1377. .g-lg-4,
  1378. .gy-lg-4 {
  1379. --bs-gutter-y: 1.5rem;
  1380. }
  1381. .g-lg-5,
  1382. .gx-lg-5 {
  1383. --bs-gutter-x: 3rem;
  1384. }
  1385. .g-lg-5,
  1386. .gy-lg-5 {
  1387. --bs-gutter-y: 3rem;
  1388. }
  1389. }
  1390. @media (min-width: 1200px) {
  1391. .col-xl {
  1392. flex: 1 0 0;
  1393. }
  1394. .row-cols-xl-auto > * {
  1395. flex: 0 0 auto;
  1396. width: auto;
  1397. }
  1398. .row-cols-xl-1 > * {
  1399. flex: 0 0 auto;
  1400. width: 100%;
  1401. }
  1402. .row-cols-xl-2 > * {
  1403. flex: 0 0 auto;
  1404. width: 50%;
  1405. }
  1406. .row-cols-xl-3 > * {
  1407. flex: 0 0 auto;
  1408. width: 33.33333333%;
  1409. }
  1410. .row-cols-xl-4 > * {
  1411. flex: 0 0 auto;
  1412. width: 25%;
  1413. }
  1414. .row-cols-xl-5 > * {
  1415. flex: 0 0 auto;
  1416. width: 20%;
  1417. }
  1418. .row-cols-xl-6 > * {
  1419. flex: 0 0 auto;
  1420. width: 16.66666667%;
  1421. }
  1422. .col-xl-auto {
  1423. flex: 0 0 auto;
  1424. width: auto;
  1425. }
  1426. .col-xl-1 {
  1427. flex: 0 0 auto;
  1428. width: 8.33333333%;
  1429. }
  1430. .col-xl-2 {
  1431. flex: 0 0 auto;
  1432. width: 16.66666667%;
  1433. }
  1434. .col-xl-3 {
  1435. flex: 0 0 auto;
  1436. width: 25%;
  1437. }
  1438. .col-xl-4 {
  1439. flex: 0 0 auto;
  1440. width: 33.33333333%;
  1441. }
  1442. .col-xl-5 {
  1443. flex: 0 0 auto;
  1444. width: 41.66666667%;
  1445. }
  1446. .col-xl-6 {
  1447. flex: 0 0 auto;
  1448. width: 50%;
  1449. }
  1450. .col-xl-7 {
  1451. flex: 0 0 auto;
  1452. width: 58.33333333%;
  1453. }
  1454. .col-xl-8 {
  1455. flex: 0 0 auto;
  1456. width: 66.66666667%;
  1457. }
  1458. .col-xl-9 {
  1459. flex: 0 0 auto;
  1460. width: 75%;
  1461. }
  1462. .col-xl-10 {
  1463. flex: 0 0 auto;
  1464. width: 83.33333333%;
  1465. }
  1466. .col-xl-11 {
  1467. flex: 0 0 auto;
  1468. width: 91.66666667%;
  1469. }
  1470. .col-xl-12 {
  1471. flex: 0 0 auto;
  1472. width: 100%;
  1473. }
  1474. .offset-xl-0 {
  1475. margin-right: 0;
  1476. }
  1477. .offset-xl-1 {
  1478. margin-right: 8.33333333%;
  1479. }
  1480. .offset-xl-2 {
  1481. margin-right: 16.66666667%;
  1482. }
  1483. .offset-xl-3 {
  1484. margin-right: 25%;
  1485. }
  1486. .offset-xl-4 {
  1487. margin-right: 33.33333333%;
  1488. }
  1489. .offset-xl-5 {
  1490. margin-right: 41.66666667%;
  1491. }
  1492. .offset-xl-6 {
  1493. margin-right: 50%;
  1494. }
  1495. .offset-xl-7 {
  1496. margin-right: 58.33333333%;
  1497. }
  1498. .offset-xl-8 {
  1499. margin-right: 66.66666667%;
  1500. }
  1501. .offset-xl-9 {
  1502. margin-right: 75%;
  1503. }
  1504. .offset-xl-10 {
  1505. margin-right: 83.33333333%;
  1506. }
  1507. .offset-xl-11 {
  1508. margin-right: 91.66666667%;
  1509. }
  1510. .g-xl-0,
  1511. .gx-xl-0 {
  1512. --bs-gutter-x: 0;
  1513. }
  1514. .g-xl-0,
  1515. .gy-xl-0 {
  1516. --bs-gutter-y: 0;
  1517. }
  1518. .g-xl-1,
  1519. .gx-xl-1 {
  1520. --bs-gutter-x: 0.25rem;
  1521. }
  1522. .g-xl-1,
  1523. .gy-xl-1 {
  1524. --bs-gutter-y: 0.25rem;
  1525. }
  1526. .g-xl-2,
  1527. .gx-xl-2 {
  1528. --bs-gutter-x: 0.5rem;
  1529. }
  1530. .g-xl-2,
  1531. .gy-xl-2 {
  1532. --bs-gutter-y: 0.5rem;
  1533. }
  1534. .g-xl-3,
  1535. .gx-xl-3 {
  1536. --bs-gutter-x: 1rem;
  1537. }
  1538. .g-xl-3,
  1539. .gy-xl-3 {
  1540. --bs-gutter-y: 1rem;
  1541. }
  1542. .g-xl-4,
  1543. .gx-xl-4 {
  1544. --bs-gutter-x: 1.5rem;
  1545. }
  1546. .g-xl-4,
  1547. .gy-xl-4 {
  1548. --bs-gutter-y: 1.5rem;
  1549. }
  1550. .g-xl-5,
  1551. .gx-xl-5 {
  1552. --bs-gutter-x: 3rem;
  1553. }
  1554. .g-xl-5,
  1555. .gy-xl-5 {
  1556. --bs-gutter-y: 3rem;
  1557. }
  1558. }
  1559. @media (min-width: 1400px) {
  1560. .col-xxl {
  1561. flex: 1 0 0;
  1562. }
  1563. .row-cols-xxl-auto > * {
  1564. flex: 0 0 auto;
  1565. width: auto;
  1566. }
  1567. .row-cols-xxl-1 > * {
  1568. flex: 0 0 auto;
  1569. width: 100%;
  1570. }
  1571. .row-cols-xxl-2 > * {
  1572. flex: 0 0 auto;
  1573. width: 50%;
  1574. }
  1575. .row-cols-xxl-3 > * {
  1576. flex: 0 0 auto;
  1577. width: 33.33333333%;
  1578. }
  1579. .row-cols-xxl-4 > * {
  1580. flex: 0 0 auto;
  1581. width: 25%;
  1582. }
  1583. .row-cols-xxl-5 > * {
  1584. flex: 0 0 auto;
  1585. width: 20%;
  1586. }
  1587. .row-cols-xxl-6 > * {
  1588. flex: 0 0 auto;
  1589. width: 16.66666667%;
  1590. }
  1591. .col-xxl-auto {
  1592. flex: 0 0 auto;
  1593. width: auto;
  1594. }
  1595. .col-xxl-1 {
  1596. flex: 0 0 auto;
  1597. width: 8.33333333%;
  1598. }
  1599. .col-xxl-2 {
  1600. flex: 0 0 auto;
  1601. width: 16.66666667%;
  1602. }
  1603. .col-xxl-3 {
  1604. flex: 0 0 auto;
  1605. width: 25%;
  1606. }
  1607. .col-xxl-4 {
  1608. flex: 0 0 auto;
  1609. width: 33.33333333%;
  1610. }
  1611. .col-xxl-5 {
  1612. flex: 0 0 auto;
  1613. width: 41.66666667%;
  1614. }
  1615. .col-xxl-6 {
  1616. flex: 0 0 auto;
  1617. width: 50%;
  1618. }
  1619. .col-xxl-7 {
  1620. flex: 0 0 auto;
  1621. width: 58.33333333%;
  1622. }
  1623. .col-xxl-8 {
  1624. flex: 0 0 auto;
  1625. width: 66.66666667%;
  1626. }
  1627. .col-xxl-9 {
  1628. flex: 0 0 auto;
  1629. width: 75%;
  1630. }
  1631. .col-xxl-10 {
  1632. flex: 0 0 auto;
  1633. width: 83.33333333%;
  1634. }
  1635. .col-xxl-11 {
  1636. flex: 0 0 auto;
  1637. width: 91.66666667%;
  1638. }
  1639. .col-xxl-12 {
  1640. flex: 0 0 auto;
  1641. width: 100%;
  1642. }
  1643. .offset-xxl-0 {
  1644. margin-right: 0;
  1645. }
  1646. .offset-xxl-1 {
  1647. margin-right: 8.33333333%;
  1648. }
  1649. .offset-xxl-2 {
  1650. margin-right: 16.66666667%;
  1651. }
  1652. .offset-xxl-3 {
  1653. margin-right: 25%;
  1654. }
  1655. .offset-xxl-4 {
  1656. margin-right: 33.33333333%;
  1657. }
  1658. .offset-xxl-5 {
  1659. margin-right: 41.66666667%;
  1660. }
  1661. .offset-xxl-6 {
  1662. margin-right: 50%;
  1663. }
  1664. .offset-xxl-7 {
  1665. margin-right: 58.33333333%;
  1666. }
  1667. .offset-xxl-8 {
  1668. margin-right: 66.66666667%;
  1669. }
  1670. .offset-xxl-9 {
  1671. margin-right: 75%;
  1672. }
  1673. .offset-xxl-10 {
  1674. margin-right: 83.33333333%;
  1675. }
  1676. .offset-xxl-11 {
  1677. margin-right: 91.66666667%;
  1678. }
  1679. .g-xxl-0,
  1680. .gx-xxl-0 {
  1681. --bs-gutter-x: 0;
  1682. }
  1683. .g-xxl-0,
  1684. .gy-xxl-0 {
  1685. --bs-gutter-y: 0;
  1686. }
  1687. .g-xxl-1,
  1688. .gx-xxl-1 {
  1689. --bs-gutter-x: 0.25rem;
  1690. }
  1691. .g-xxl-1,
  1692. .gy-xxl-1 {
  1693. --bs-gutter-y: 0.25rem;
  1694. }
  1695. .g-xxl-2,
  1696. .gx-xxl-2 {
  1697. --bs-gutter-x: 0.5rem;
  1698. }
  1699. .g-xxl-2,
  1700. .gy-xxl-2 {
  1701. --bs-gutter-y: 0.5rem;
  1702. }
  1703. .g-xxl-3,
  1704. .gx-xxl-3 {
  1705. --bs-gutter-x: 1rem;
  1706. }
  1707. .g-xxl-3,
  1708. .gy-xxl-3 {
  1709. --bs-gutter-y: 1rem;
  1710. }
  1711. .g-xxl-4,
  1712. .gx-xxl-4 {
  1713. --bs-gutter-x: 1.5rem;
  1714. }
  1715. .g-xxl-4,
  1716. .gy-xxl-4 {
  1717. --bs-gutter-y: 1.5rem;
  1718. }
  1719. .g-xxl-5,
  1720. .gx-xxl-5 {
  1721. --bs-gutter-x: 3rem;
  1722. }
  1723. .g-xxl-5,
  1724. .gy-xxl-5 {
  1725. --bs-gutter-y: 3rem;
  1726. }
  1727. }
  1728. .table {
  1729. --bs-table-color-type: initial;
  1730. --bs-table-bg-type: initial;
  1731. --bs-table-color-state: initial;
  1732. --bs-table-bg-state: initial;
  1733. --bs-table-color: var(--bs-emphasis-color);
  1734. --bs-table-bg: var(--bs-body-bg);
  1735. --bs-table-border-color: var(--bs-border-color);
  1736. --bs-table-accent-bg: transparent;
  1737. --bs-table-striped-color: var(--bs-emphasis-color);
  1738. --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
  1739. --bs-table-active-color: var(--bs-emphasis-color);
  1740. --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
  1741. --bs-table-hover-color: var(--bs-emphasis-color);
  1742. --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
  1743. width: 100%;
  1744. margin-bottom: 1rem;
  1745. vertical-align: top;
  1746. border-color: var(--bs-table-border-color);
  1747. }
  1748. .table > :not(caption) > * > * {
  1749. padding: 0.5rem 0.5rem;
  1750. color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  1751. background-color: var(--bs-table-bg);
  1752. border-bottom-width: var(--bs-border-width);
  1753. box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
  1754. }
  1755. .table > tbody {
  1756. vertical-align: inherit;
  1757. }
  1758. .table > thead {
  1759. vertical-align: bottom;
  1760. }
  1761. .table-group-divider {
  1762. border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
  1763. }
  1764. .caption-top {
  1765. caption-side: top;
  1766. }
  1767. .table-sm > :not(caption) > * > * {
  1768. padding: 0.25rem 0.25rem;
  1769. }
  1770. .table-bordered > :not(caption) > * {
  1771. border-width: var(--bs-border-width) 0;
  1772. }
  1773. .table-bordered > :not(caption) > * > * {
  1774. border-width: 0 var(--bs-border-width);
  1775. }
  1776. .table-borderless > :not(caption) > * > * {
  1777. border-bottom-width: 0;
  1778. }
  1779. .table-borderless > :not(:first-child) {
  1780. border-top-width: 0;
  1781. }
  1782. .table-striped > tbody > tr:nth-of-type(odd) > * {
  1783. --bs-table-color-type: var(--bs-table-striped-color);
  1784. --bs-table-bg-type: var(--bs-table-striped-bg);
  1785. }
  1786. .table-striped-columns > :not(caption) > tr > :nth-child(even) {
  1787. --bs-table-color-type: var(--bs-table-striped-color);
  1788. --bs-table-bg-type: var(--bs-table-striped-bg);
  1789. }
  1790. .table-active {
  1791. --bs-table-color-state: var(--bs-table-active-color);
  1792. --bs-table-bg-state: var(--bs-table-active-bg);
  1793. }
  1794. .table-hover > tbody > tr:hover > * {
  1795. --bs-table-color-state: var(--bs-table-hover-color);
  1796. --bs-table-bg-state: var(--bs-table-hover-bg);
  1797. }
  1798. .table-primary {
  1799. --bs-table-color: #000;
  1800. --bs-table-bg: rgb(206.6, 226, 254.6);
  1801. --bs-table-border-color: rgb(165.28, 180.8, 203.68);
  1802. --bs-table-striped-bg: rgb(196.27, 214.7, 241.87);
  1803. --bs-table-striped-color: #000;
  1804. --bs-table-active-bg: rgb(185.94, 203.4, 229.14);
  1805. --bs-table-active-color: #000;
  1806. --bs-table-hover-bg: rgb(191.105, 209.05, 235.505);
  1807. --bs-table-hover-color: #000;
  1808. color: var(--bs-table-color);
  1809. border-color: var(--bs-table-border-color);
  1810. }
  1811. .table-secondary {
  1812. --bs-table-color: #000;
  1813. --bs-table-bg: rgb(225.6, 227.4, 229);
  1814. --bs-table-border-color: rgb(180.48, 181.92, 183.2);
  1815. --bs-table-striped-bg: rgb(214.32, 216.03, 217.55);
  1816. --bs-table-striped-color: #000;
  1817. --bs-table-active-bg: rgb(203.04, 204.66, 206.1);
  1818. --bs-table-active-color: #000;
  1819. --bs-table-hover-bg: rgb(208.68, 210.345, 211.825);
  1820. --bs-table-hover-color: #000;
  1821. color: var(--bs-table-color);
  1822. border-color: var(--bs-table-border-color);
  1823. }
  1824. .table-success {
  1825. --bs-table-color: #000;
  1826. --bs-table-bg: rgb(209, 231, 220.8);
  1827. --bs-table-border-color: rgb(167.2, 184.8, 176.64);
  1828. --bs-table-striped-bg: rgb(198.55, 219.45, 209.76);
  1829. --bs-table-striped-color: #000;
  1830. --bs-table-active-bg: rgb(188.1, 207.9, 198.72);
  1831. --bs-table-active-color: #000;
  1832. --bs-table-hover-bg: rgb(193.325, 213.675, 204.24);
  1833. --bs-table-hover-color: #000;
  1834. color: var(--bs-table-color);
  1835. border-color: var(--bs-table-border-color);
  1836. }
  1837. .table-info {
  1838. --bs-table-color: #000;
  1839. --bs-table-bg: rgb(206.6, 244.4, 252);
  1840. --bs-table-border-color: rgb(165.28, 195.52, 201.6);
  1841. --bs-table-striped-bg: rgb(196.27, 232.18, 239.4);
  1842. --bs-table-striped-color: #000;
  1843. --bs-table-active-bg: rgb(185.94, 219.96, 226.8);
  1844. --bs-table-active-color: #000;
  1845. --bs-table-hover-bg: rgb(191.105, 226.07, 233.1);
  1846. --bs-table-hover-color: #000;
  1847. color: var(--bs-table-color);
  1848. border-color: var(--bs-table-border-color);
  1849. }
  1850. .table-warning {
  1851. --bs-table-color: #000;
  1852. --bs-table-bg: rgb(255, 242.6, 205.4);
  1853. --bs-table-border-color: rgb(204, 194.08, 164.32);
  1854. --bs-table-striped-bg: rgb(242.25, 230.47, 195.13);
  1855. --bs-table-striped-color: #000;
  1856. --bs-table-active-bg: rgb(229.5, 218.34, 184.86);
  1857. --bs-table-active-color: #000;
  1858. --bs-table-hover-bg: rgb(235.875, 224.405, 189.995);
  1859. --bs-table-hover-color: #000;
  1860. color: var(--bs-table-color);
  1861. border-color: var(--bs-table-border-color);
  1862. }
  1863. .table-danger {
  1864. --bs-table-color: #000;
  1865. --bs-table-bg: rgb(248, 214.6, 217.8);
  1866. --bs-table-border-color: rgb(198.4, 171.68, 174.24);
  1867. --bs-table-striped-bg: rgb(235.6, 203.87, 206.91);
  1868. --bs-table-striped-color: #000;
  1869. --bs-table-active-bg: rgb(223.2, 193.14, 196.02);
  1870. --bs-table-active-color: #000;
  1871. --bs-table-hover-bg: rgb(229.4, 198.505, 201.465);
  1872. --bs-table-hover-color: #000;
  1873. color: var(--bs-table-color);
  1874. border-color: var(--bs-table-border-color);
  1875. }
  1876. .table-light {
  1877. --bs-table-color: #000;
  1878. --bs-table-bg: #f8f9fa;
  1879. --bs-table-border-color: rgb(198.4, 199.2, 200);
  1880. --bs-table-striped-bg: rgb(235.6, 236.55, 237.5);
  1881. --bs-table-striped-color: #000;
  1882. --bs-table-active-bg: rgb(223.2, 224.1, 225);
  1883. --bs-table-active-color: #000;
  1884. --bs-table-hover-bg: rgb(229.4, 230.325, 231.25);
  1885. --bs-table-hover-color: #000;
  1886. color: var(--bs-table-color);
  1887. border-color: var(--bs-table-border-color);
  1888. }
  1889. .table-dark {
  1890. --bs-table-color: #fff;
  1891. --bs-table-bg: #212529;
  1892. --bs-table-border-color: rgb(77.4, 80.6, 83.8);
  1893. --bs-table-striped-bg: rgb(44.1, 47.9, 51.7);
  1894. --bs-table-striped-color: #fff;
  1895. --bs-table-active-bg: rgb(55.2, 58.8, 62.4);
  1896. --bs-table-active-color: #fff;
  1897. --bs-table-hover-bg: rgb(49.65, 53.35, 57.05);
  1898. --bs-table-hover-color: #fff;
  1899. color: var(--bs-table-color);
  1900. border-color: var(--bs-table-border-color);
  1901. }
  1902. .table-responsive {
  1903. overflow-x: auto;
  1904. -webkit-overflow-scrolling: touch;
  1905. }
  1906. @media (max-width: 575.98px) {
  1907. .table-responsive-sm {
  1908. overflow-x: auto;
  1909. -webkit-overflow-scrolling: touch;
  1910. }
  1911. }
  1912. @media (max-width: 767.98px) {
  1913. .table-responsive-md {
  1914. overflow-x: auto;
  1915. -webkit-overflow-scrolling: touch;
  1916. }
  1917. }
  1918. @media (max-width: 991.98px) {
  1919. .table-responsive-lg {
  1920. overflow-x: auto;
  1921. -webkit-overflow-scrolling: touch;
  1922. }
  1923. }
  1924. @media (max-width: 1199.98px) {
  1925. .table-responsive-xl {
  1926. overflow-x: auto;
  1927. -webkit-overflow-scrolling: touch;
  1928. }
  1929. }
  1930. @media (max-width: 1399.98px) {
  1931. .table-responsive-xxl {
  1932. overflow-x: auto;
  1933. -webkit-overflow-scrolling: touch;
  1934. }
  1935. }
  1936. .form-label {
  1937. margin-bottom: 0.5rem;
  1938. }
  1939. .col-form-label {
  1940. padding-top: calc(0.375rem + var(--bs-border-width));
  1941. padding-bottom: calc(0.375rem + var(--bs-border-width));
  1942. margin-bottom: 0;
  1943. font-size: inherit;
  1944. line-height: 1.5;
  1945. }
  1946. .col-form-label-lg {
  1947. padding-top: calc(0.5rem + var(--bs-border-width));
  1948. padding-bottom: calc(0.5rem + var(--bs-border-width));
  1949. font-size: 1.25rem;
  1950. }
  1951. .col-form-label-sm {
  1952. padding-top: calc(0.25rem + var(--bs-border-width));
  1953. padding-bottom: calc(0.25rem + var(--bs-border-width));
  1954. font-size: 0.875rem;
  1955. }
  1956. .form-text {
  1957. margin-top: 0.25rem;
  1958. font-size: 0.875em;
  1959. color: var(--bs-secondary-color);
  1960. }
  1961. .form-control {
  1962. display: block;
  1963. width: 100%;
  1964. padding: 0.375rem 0.75rem;
  1965. font-size: 1rem;
  1966. font-weight: 400;
  1967. line-height: 1.5;
  1968. color: var(--bs-body-color);
  1969. -webkit-appearance: none;
  1970. appearance: none;
  1971. background-color: var(--bs-body-bg);
  1972. background-clip: padding-box;
  1973. border: var(--bs-border-width) solid var(--bs-border-color);
  1974. border-radius: var(--bs-border-radius);
  1975. box-shadow: var(--bs-box-shadow-inset);
  1976. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  1977. }
  1978. @media (prefers-reduced-motion: reduce) {
  1979. .form-control {
  1980. transition: none;
  1981. }
  1982. }
  1983. .form-control[type=file] {
  1984. overflow: hidden;
  1985. }
  1986. .form-control[type=file]:not(:disabled):not([readonly]) {
  1987. cursor: pointer;
  1988. }
  1989. .form-control:focus {
  1990. color: var(--bs-body-color);
  1991. background-color: var(--bs-body-bg);
  1992. border-color: rgb(134, 182.5, 254);
  1993. outline: 0;
  1994. box-shadow: var(--bs-box-shadow-inset), 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  1995. }
  1996. .form-control::-webkit-date-and-time-value {
  1997. min-width: 85px;
  1998. height: 1.5em;
  1999. margin: 0;
  2000. }
  2001. .form-control::-webkit-datetime-edit {
  2002. display: block;
  2003. padding: 0;
  2004. }
  2005. .form-control::placeholder {
  2006. color: var(--bs-secondary-color);
  2007. opacity: 1;
  2008. }
  2009. .form-control:disabled {
  2010. background-color: var(--bs-secondary-bg);
  2011. opacity: 1;
  2012. }
  2013. .form-control::file-selector-button {
  2014. padding: 0.375rem 0.75rem;
  2015. margin: -0.375rem -0.75rem;
  2016. margin-inline-end: 0.75rem;
  2017. color: var(--bs-body-color);
  2018. background-color: var(--bs-tertiary-bg);
  2019. pointer-events: none;
  2020. border-color: inherit;
  2021. border-style: solid;
  2022. border-width: 0;
  2023. border-inline-end-width: var(--bs-border-width);
  2024. border-radius: 0;
  2025. 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;
  2026. }
  2027. @media (prefers-reduced-motion: reduce) {
  2028. .form-control::file-selector-button {
  2029. transition: none;
  2030. }
  2031. }
  2032. .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  2033. background-color: var(--bs-secondary-bg);
  2034. }
  2035. .form-control-plaintext {
  2036. display: block;
  2037. width: 100%;
  2038. padding: 0.375rem 0;
  2039. margin-bottom: 0;
  2040. line-height: 1.5;
  2041. color: var(--bs-body-color);
  2042. background-color: transparent;
  2043. border: solid transparent;
  2044. border-width: var(--bs-border-width) 0;
  2045. }
  2046. .form-control-plaintext:focus {
  2047. outline: 0;
  2048. }
  2049. .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  2050. padding-left: 0;
  2051. padding-right: 0;
  2052. }
  2053. .form-control-sm {
  2054. min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  2055. padding: 0.25rem 0.5rem;
  2056. font-size: 0.875rem;
  2057. border-radius: var(--bs-border-radius-sm);
  2058. }
  2059. .form-control-sm::file-selector-button {
  2060. padding: 0.25rem 0.5rem;
  2061. margin: -0.25rem -0.5rem;
  2062. margin-inline-end: 0.5rem;
  2063. }
  2064. .form-control-lg {
  2065. min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  2066. padding: 0.5rem 1rem;
  2067. font-size: 1.25rem;
  2068. border-radius: var(--bs-border-radius-lg);
  2069. }
  2070. .form-control-lg::file-selector-button {
  2071. padding: 0.5rem 1rem;
  2072. margin: -0.5rem -1rem;
  2073. margin-inline-end: 1rem;
  2074. }
  2075. textarea.form-control {
  2076. min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  2077. }
  2078. textarea.form-control-sm {
  2079. min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  2080. }
  2081. textarea.form-control-lg {
  2082. min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  2083. }
  2084. .form-control-color {
  2085. width: 3rem;
  2086. height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  2087. padding: 0.375rem;
  2088. }
  2089. .form-control-color:not(:disabled):not([readonly]) {
  2090. cursor: pointer;
  2091. }
  2092. .form-control-color::-moz-color-swatch {
  2093. border: 0 !important;
  2094. border-radius: var(--bs-border-radius);
  2095. }
  2096. .form-control-color::-webkit-color-swatch {
  2097. border: 0 !important;
  2098. border-radius: var(--bs-border-radius);
  2099. }
  2100. .form-control-color.form-control-sm {
  2101. height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  2102. }
  2103. .form-control-color.form-control-lg {
  2104. height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  2105. }
  2106. .form-select {
  2107. --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");
  2108. display: block;
  2109. width: 100%;
  2110. padding: 0.375rem 0.75rem 0.375rem 2.25rem;
  2111. font-size: 1rem;
  2112. font-weight: 400;
  2113. line-height: 1.5;
  2114. color: var(--bs-body-color);
  2115. -webkit-appearance: none;
  2116. appearance: none;
  2117. background-color: var(--bs-body-bg);
  2118. background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  2119. background-repeat: no-repeat;
  2120. background-position: left 0.75rem center;
  2121. background-size: 16px 12px;
  2122. border: var(--bs-border-width) solid var(--bs-border-color);
  2123. border-radius: var(--bs-border-radius);
  2124. box-shadow: var(--bs-box-shadow-inset);
  2125. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2126. }
  2127. @media (prefers-reduced-motion: reduce) {
  2128. .form-select {
  2129. transition: none;
  2130. }
  2131. }
  2132. .form-select:focus {
  2133. border-color: rgb(134, 182.5, 254);
  2134. outline: 0;
  2135. box-shadow: var(--bs-box-shadow-inset), 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2136. }
  2137. .form-select[multiple], .form-select[size]:not([size="1"]) {
  2138. padding-left: 0.75rem;
  2139. background-image: none;
  2140. }
  2141. .form-select:disabled {
  2142. background-color: var(--bs-secondary-bg);
  2143. }
  2144. .form-select:-moz-focusring {
  2145. color: transparent;
  2146. text-shadow: 0 0 0 var(--bs-body-color);
  2147. }
  2148. .form-select-sm {
  2149. padding-top: 0.25rem;
  2150. padding-bottom: 0.25rem;
  2151. padding-right: 0.5rem;
  2152. font-size: 0.875rem;
  2153. border-radius: var(--bs-border-radius-sm);
  2154. }
  2155. .form-select-lg {
  2156. padding-top: 0.5rem;
  2157. padding-bottom: 0.5rem;
  2158. padding-right: 1rem;
  2159. font-size: 1.25rem;
  2160. border-radius: var(--bs-border-radius-lg);
  2161. }
  2162. [data-bs-theme=dark] .form-select {
  2163. --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");
  2164. }
  2165. .form-check {
  2166. display: block;
  2167. min-height: 1.5rem;
  2168. padding-right: 1.5em;
  2169. margin-bottom: 0.125rem;
  2170. }
  2171. .form-check .form-check-input {
  2172. float: right;
  2173. margin-right: -1.5em;
  2174. }
  2175. .form-check-reverse {
  2176. padding-left: 1.5em;
  2177. padding-right: 0;
  2178. text-align: left;
  2179. }
  2180. .form-check-reverse .form-check-input {
  2181. float: left;
  2182. margin-left: -1.5em;
  2183. margin-right: 0;
  2184. }
  2185. .form-check-input {
  2186. --bs-form-check-bg: var(--bs-body-bg);
  2187. flex-shrink: 0;
  2188. width: 1em;
  2189. height: 1em;
  2190. margin-top: 0.25em;
  2191. vertical-align: top;
  2192. -webkit-appearance: none;
  2193. appearance: none;
  2194. background-color: var(--bs-form-check-bg);
  2195. background-image: var(--bs-form-check-bg-image);
  2196. background-repeat: no-repeat;
  2197. background-position: center;
  2198. background-size: contain;
  2199. border: var(--bs-border-width) solid var(--bs-border-color);
  2200. -webkit-print-color-adjust: exact;
  2201. print-color-adjust: exact;
  2202. }
  2203. .form-check-input[type=checkbox] {
  2204. border-radius: 0.25em;
  2205. }
  2206. .form-check-input[type=radio] {
  2207. border-radius: 50%;
  2208. }
  2209. .form-check-input:active {
  2210. filter: brightness(90%);
  2211. }
  2212. .form-check-input:focus {
  2213. border-color: rgb(134, 182.5, 254);
  2214. outline: 0;
  2215. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2216. }
  2217. .form-check-input:checked {
  2218. background-color: #0d6efd;
  2219. border-color: #0d6efd;
  2220. }
  2221. .form-check-input:checked[type=checkbox] {
  2222. --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");
  2223. }
  2224. .form-check-input:checked[type=radio] {
  2225. --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");
  2226. }
  2227. .form-check-input[type=checkbox]:indeterminate {
  2228. background-color: #0d6efd;
  2229. border-color: #0d6efd;
  2230. --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");
  2231. }
  2232. .form-check-input:disabled {
  2233. pointer-events: none;
  2234. filter: none;
  2235. opacity: 0.5;
  2236. }
  2237. .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  2238. cursor: default;
  2239. opacity: 0.5;
  2240. }
  2241. .form-switch {
  2242. padding-right: 2.5em;
  2243. }
  2244. .form-switch .form-check-input {
  2245. --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");
  2246. width: 2em;
  2247. margin-right: -2.5em;
  2248. background-image: var(--bs-form-switch-bg);
  2249. background-position: right center;
  2250. border-radius: 2em;
  2251. transition: background-position 0.15s ease-in-out;
  2252. }
  2253. @media (prefers-reduced-motion: reduce) {
  2254. .form-switch .form-check-input {
  2255. transition: none;
  2256. }
  2257. }
  2258. .form-switch .form-check-input:focus {
  2259. --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='rgb%28134, 182.5, 254%29'/%3e%3c/svg%3e");
  2260. }
  2261. .form-switch .form-check-input:checked {
  2262. background-position: left center;
  2263. --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");
  2264. }
  2265. .form-switch.form-check-reverse {
  2266. padding-left: 2.5em;
  2267. padding-right: 0;
  2268. }
  2269. .form-switch.form-check-reverse .form-check-input {
  2270. margin-left: -2.5em;
  2271. margin-right: 0;
  2272. }
  2273. .form-check-inline {
  2274. display: inline-block;
  2275. margin-left: 1rem;
  2276. }
  2277. .btn-check {
  2278. position: absolute;
  2279. clip: rect(0, 0, 0, 0);
  2280. pointer-events: none;
  2281. }
  2282. .btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  2283. pointer-events: none;
  2284. filter: none;
  2285. opacity: 0.65;
  2286. }
  2287. [data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  2288. --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");
  2289. }
  2290. .form-range {
  2291. width: 100%;
  2292. height: 1.5rem;
  2293. padding: 0;
  2294. -webkit-appearance: none;
  2295. appearance: none;
  2296. background-color: transparent;
  2297. }
  2298. .form-range:focus {
  2299. outline: 0;
  2300. }
  2301. .form-range:focus::-webkit-slider-thumb {
  2302. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2303. }
  2304. .form-range:focus::-moz-range-thumb {
  2305. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2306. }
  2307. .form-range::-moz-focus-outer {
  2308. border: 0;
  2309. }
  2310. .form-range::-webkit-slider-thumb {
  2311. width: 1rem;
  2312. height: 1rem;
  2313. margin-top: -0.25rem;
  2314. -webkit-appearance: none;
  2315. appearance: none;
  2316. background-color: #0d6efd;
  2317. border: 0;
  2318. border-radius: 1rem;
  2319. box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  2320. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2321. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2322. }
  2323. @media (prefers-reduced-motion: reduce) {
  2324. .form-range::-webkit-slider-thumb {
  2325. -webkit-transition: none;
  2326. transition: none;
  2327. }
  2328. }
  2329. .form-range::-webkit-slider-thumb:active {
  2330. background-color: rgb(182.4, 211.5, 254.4);
  2331. }
  2332. .form-range::-webkit-slider-runnable-track {
  2333. width: 100%;
  2334. height: 0.5rem;
  2335. color: transparent;
  2336. cursor: pointer;
  2337. background-color: var(--bs-secondary-bg);
  2338. border-color: transparent;
  2339. border-radius: 1rem;
  2340. box-shadow: var(--bs-box-shadow-inset);
  2341. }
  2342. .form-range::-moz-range-thumb {
  2343. width: 1rem;
  2344. height: 1rem;
  2345. appearance: none;
  2346. background-color: #0d6efd;
  2347. border: 0;
  2348. border-radius: 1rem;
  2349. box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  2350. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2351. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2352. }
  2353. @media (prefers-reduced-motion: reduce) {
  2354. .form-range::-moz-range-thumb {
  2355. -moz-transition: none;
  2356. transition: none;
  2357. }
  2358. }
  2359. .form-range::-moz-range-thumb:active {
  2360. background-color: rgb(182.4, 211.5, 254.4);
  2361. }
  2362. .form-range::-moz-range-track {
  2363. width: 100%;
  2364. height: 0.5rem;
  2365. color: transparent;
  2366. cursor: pointer;
  2367. background-color: var(--bs-secondary-bg);
  2368. border-color: transparent;
  2369. border-radius: 1rem;
  2370. box-shadow: var(--bs-box-shadow-inset);
  2371. }
  2372. .form-range:disabled {
  2373. pointer-events: none;
  2374. }
  2375. .form-range:disabled::-webkit-slider-thumb {
  2376. background-color: var(--bs-secondary-color);
  2377. }
  2378. .form-range:disabled::-moz-range-thumb {
  2379. background-color: var(--bs-secondary-color);
  2380. }
  2381. .form-floating {
  2382. position: relative;
  2383. }
  2384. .form-floating > .form-control,
  2385. .form-floating > .form-control-plaintext,
  2386. .form-floating > .form-select {
  2387. height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  2388. min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  2389. line-height: 1.25;
  2390. }
  2391. .form-floating > label {
  2392. position: absolute;
  2393. top: 0;
  2394. right: 0;
  2395. z-index: 2;
  2396. max-width: 100%;
  2397. height: 100%;
  2398. padding: 1rem 0.75rem;
  2399. overflow: hidden;
  2400. color: rgba(var(--bs-body-color-rgb), 0.65);
  2401. text-align: start;
  2402. text-overflow: ellipsis;
  2403. white-space: nowrap;
  2404. pointer-events: none;
  2405. border: var(--bs-border-width) solid transparent;
  2406. transform-origin: 100% 0;
  2407. transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  2408. }
  2409. @media (prefers-reduced-motion: reduce) {
  2410. .form-floating > label {
  2411. transition: none;
  2412. }
  2413. }
  2414. .form-floating > .form-control,
  2415. .form-floating > .form-control-plaintext {
  2416. padding: 1rem 0.75rem;
  2417. }
  2418. .form-floating > .form-control::placeholder,
  2419. .form-floating > .form-control-plaintext::placeholder {
  2420. color: transparent;
  2421. }
  2422. .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
  2423. .form-floating > .form-control-plaintext:focus,
  2424. .form-floating > .form-control-plaintext:not(:placeholder-shown) {
  2425. padding-top: 1.625rem;
  2426. padding-bottom: 0.625rem;
  2427. }
  2428. .form-floating > .form-control:-webkit-autofill,
  2429. .form-floating > .form-control-plaintext:-webkit-autofill {
  2430. padding-top: 1.625rem;
  2431. padding-bottom: 0.625rem;
  2432. }
  2433. .form-floating > .form-select {
  2434. padding-top: 1.625rem;
  2435. padding-bottom: 0.625rem;
  2436. padding-right: 0.75rem;
  2437. }
  2438. .form-floating > .form-control:focus ~ label,
  2439. .form-floating > .form-control:not(:placeholder-shown) ~ label,
  2440. .form-floating > .form-control-plaintext ~ label,
  2441. .form-floating > .form-select ~ label {
  2442. transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
  2443. }
  2444. .form-floating > .form-control:-webkit-autofill ~ label {
  2445. transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
  2446. }
  2447. .form-floating > textarea:focus ~ label::after,
  2448. .form-floating > textarea:not(:placeholder-shown) ~ label::after {
  2449. position: absolute;
  2450. inset: 1rem 0.375rem;
  2451. z-index: -1;
  2452. height: 1.5em;
  2453. content: "";
  2454. background-color: var(--bs-body-bg);
  2455. border-radius: var(--bs-border-radius);
  2456. }
  2457. .form-floating > textarea:disabled ~ label::after {
  2458. background-color: var(--bs-secondary-bg);
  2459. }
  2460. .form-floating > .form-control-plaintext ~ label {
  2461. border-width: var(--bs-border-width) 0;
  2462. }
  2463. .form-floating > :disabled ~ label,
  2464. .form-floating > .form-control:disabled ~ label {
  2465. color: #6c757d;
  2466. }
  2467. .input-group {
  2468. position: relative;
  2469. display: flex;
  2470. flex-wrap: wrap;
  2471. align-items: stretch;
  2472. width: 100%;
  2473. }
  2474. .input-group > .form-control,
  2475. .input-group > .form-select,
  2476. .input-group > .form-floating {
  2477. position: relative;
  2478. flex: 1 1 auto;
  2479. width: 1%;
  2480. min-width: 0;
  2481. }
  2482. .input-group > .form-control:focus,
  2483. .input-group > .form-select:focus,
  2484. .input-group > .form-floating:focus-within {
  2485. z-index: 5;
  2486. }
  2487. .input-group .btn {
  2488. position: relative;
  2489. z-index: 2;
  2490. }
  2491. .input-group .btn:focus {
  2492. z-index: 5;
  2493. }
  2494. .input-group-text {
  2495. display: flex;
  2496. align-items: center;
  2497. padding: 0.375rem 0.75rem;
  2498. font-size: 1rem;
  2499. font-weight: 400;
  2500. line-height: 1.5;
  2501. color: var(--bs-body-color);
  2502. text-align: center;
  2503. white-space: nowrap;
  2504. background-color: var(--bs-tertiary-bg);
  2505. border: var(--bs-border-width) solid var(--bs-border-color);
  2506. border-radius: var(--bs-border-radius);
  2507. }
  2508. .input-group-lg > .form-control,
  2509. .input-group-lg > .form-select,
  2510. .input-group-lg > .input-group-text,
  2511. .input-group-lg > .btn {
  2512. padding: 0.5rem 1rem;
  2513. font-size: 1.25rem;
  2514. border-radius: var(--bs-border-radius-lg);
  2515. }
  2516. .input-group-sm > .form-control,
  2517. .input-group-sm > .form-select,
  2518. .input-group-sm > .input-group-text,
  2519. .input-group-sm > .btn {
  2520. padding: 0.25rem 0.5rem;
  2521. font-size: 0.875rem;
  2522. border-radius: var(--bs-border-radius-sm);
  2523. }
  2524. .input-group-lg > .form-select,
  2525. .input-group-sm > .form-select {
  2526. padding-left: 3rem;
  2527. }
  2528. .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2529. .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
  2530. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
  2531. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  2532. border-top-left-radius: 0;
  2533. border-bottom-left-radius: 0;
  2534. }
  2535. .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2536. .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
  2537. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
  2538. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  2539. border-top-left-radius: 0;
  2540. border-bottom-left-radius: 0;
  2541. }
  2542. .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  2543. margin-right: calc(-1 * var(--bs-border-width));
  2544. border-top-right-radius: 0;
  2545. border-bottom-right-radius: 0;
  2546. }
  2547. .input-group > .form-floating:not(:first-child) > .form-control,
  2548. .input-group > .form-floating:not(:first-child) > .form-select {
  2549. border-top-right-radius: 0;
  2550. border-bottom-right-radius: 0;
  2551. }
  2552. .valid-feedback {
  2553. display: none;
  2554. width: 100%;
  2555. margin-top: 0.25rem;
  2556. font-size: 0.875em;
  2557. color: var(--bs-form-valid-color);
  2558. }
  2559. .valid-tooltip {
  2560. position: absolute;
  2561. top: 100%;
  2562. z-index: 5;
  2563. display: none;
  2564. max-width: 100%;
  2565. padding: 0.25rem 0.5rem;
  2566. margin-top: 0.1rem;
  2567. font-size: 0.875rem;
  2568. color: #fff;
  2569. background-color: var(--bs-success);
  2570. border-radius: var(--bs-border-radius);
  2571. }
  2572. .was-validated :valid ~ .valid-feedback,
  2573. .was-validated :valid ~ .valid-tooltip,
  2574. .is-valid ~ .valid-feedback,
  2575. .is-valid ~ .valid-tooltip {
  2576. display: block;
  2577. }
  2578. .was-validated .form-control:valid, .form-control.is-valid {
  2579. border-color: var(--bs-form-valid-border-color);
  2580. padding-left: calc(1.5em + 0.75rem);
  2581. 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.1'/%3e%3c/svg%3e");
  2582. background-repeat: no-repeat;
  2583. background-position: left calc(0.375em + 0.1875rem) center;
  2584. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2585. }
  2586. .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  2587. border-color: var(--bs-form-valid-border-color);
  2588. box-shadow: var(--bs-box-shadow-inset), 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  2589. }
  2590. .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  2591. padding-left: calc(1.5em + 0.75rem);
  2592. background-position: top calc(0.375em + 0.1875rem) left calc(0.375em + 0.1875rem);
  2593. }
  2594. .was-validated .form-select:valid, .form-select.is-valid {
  2595. border-color: var(--bs-form-valid-border-color);
  2596. }
  2597. .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  2598. --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.1'/%3e%3c/svg%3e");
  2599. padding-left: 4.125rem;
  2600. background-position: left 0.75rem center, center left 2.25rem;
  2601. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2602. }
  2603. .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  2604. border-color: var(--bs-form-valid-border-color);
  2605. box-shadow: var(--bs-box-shadow-inset), 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  2606. }
  2607. .was-validated .form-control-color:valid, .form-control-color.is-valid {
  2608. width: calc(3rem + calc(1.5em + 0.75rem));
  2609. }
  2610. .was-validated .form-check-input:valid, .form-check-input.is-valid {
  2611. border-color: var(--bs-form-valid-border-color);
  2612. }
  2613. .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  2614. background-color: var(--bs-form-valid-color);
  2615. }
  2616. .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  2617. box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  2618. }
  2619. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  2620. color: var(--bs-form-valid-color);
  2621. }
  2622. .form-check-inline .form-check-input ~ .valid-feedback {
  2623. margin-right: 0.5em;
  2624. }
  2625. .was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
  2626. .was-validated .input-group > .form-select:not(:focus):valid,
  2627. .input-group > .form-select:not(:focus).is-valid,
  2628. .was-validated .input-group > .form-floating:not(:focus-within):valid,
  2629. .input-group > .form-floating:not(:focus-within).is-valid {
  2630. z-index: 3;
  2631. }
  2632. .invalid-feedback {
  2633. display: none;
  2634. width: 100%;
  2635. margin-top: 0.25rem;
  2636. font-size: 0.875em;
  2637. color: var(--bs-form-invalid-color);
  2638. }
  2639. .invalid-tooltip {
  2640. position: absolute;
  2641. top: 100%;
  2642. z-index: 5;
  2643. display: none;
  2644. max-width: 100%;
  2645. padding: 0.25rem 0.5rem;
  2646. margin-top: 0.1rem;
  2647. font-size: 0.875rem;
  2648. color: #fff;
  2649. background-color: var(--bs-danger);
  2650. border-radius: var(--bs-border-radius);
  2651. }
  2652. .was-validated :invalid ~ .invalid-feedback,
  2653. .was-validated :invalid ~ .invalid-tooltip,
  2654. .is-invalid ~ .invalid-feedback,
  2655. .is-invalid ~ .invalid-tooltip {
  2656. display: block;
  2657. }
  2658. .was-validated .form-control:invalid, .form-control.is-invalid {
  2659. border-color: var(--bs-form-invalid-border-color);
  2660. padding-left: calc(1.5em + 0.75rem);
  2661. 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");
  2662. background-repeat: no-repeat;
  2663. background-position: left calc(0.375em + 0.1875rem) center;
  2664. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2665. }
  2666. .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  2667. border-color: var(--bs-form-invalid-border-color);
  2668. box-shadow: var(--bs-box-shadow-inset), 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  2669. }
  2670. .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  2671. padding-left: calc(1.5em + 0.75rem);
  2672. background-position: top calc(0.375em + 0.1875rem) left calc(0.375em + 0.1875rem);
  2673. }
  2674. .was-validated .form-select:invalid, .form-select.is-invalid {
  2675. border-color: var(--bs-form-invalid-border-color);
  2676. }
  2677. .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  2678. --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");
  2679. padding-left: 4.125rem;
  2680. background-position: left 0.75rem center, center left 2.25rem;
  2681. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2682. }
  2683. .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  2684. border-color: var(--bs-form-invalid-border-color);
  2685. box-shadow: var(--bs-box-shadow-inset), 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  2686. }
  2687. .was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  2688. width: calc(3rem + calc(1.5em + 0.75rem));
  2689. }
  2690. .was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  2691. border-color: var(--bs-form-invalid-border-color);
  2692. }
  2693. .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  2694. background-color: var(--bs-form-invalid-color);
  2695. }
  2696. .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  2697. box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  2698. }
  2699. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  2700. color: var(--bs-form-invalid-color);
  2701. }
  2702. .form-check-inline .form-check-input ~ .invalid-feedback {
  2703. margin-right: 0.5em;
  2704. }
  2705. .was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
  2706. .was-validated .input-group > .form-select:not(:focus):invalid,
  2707. .input-group > .form-select:not(:focus).is-invalid,
  2708. .was-validated .input-group > .form-floating:not(:focus-within):invalid,
  2709. .input-group > .form-floating:not(:focus-within).is-invalid {
  2710. z-index: 4;
  2711. }
  2712. .btn {
  2713. --bs-btn-padding-x: 0.75rem;
  2714. --bs-btn-padding-y: 0.375rem;
  2715. --bs-btn-font-family: ;
  2716. --bs-btn-font-size: 1rem;
  2717. --bs-btn-font-weight: 400;
  2718. --bs-btn-line-height: 1.5;
  2719. --bs-btn-color: var(--bs-body-color);
  2720. --bs-btn-bg: transparent;
  2721. --bs-btn-border-width: var(--bs-border-width);
  2722. --bs-btn-border-color: transparent;
  2723. --bs-btn-border-radius: var(--bs-border-radius);
  2724. --bs-btn-hover-border-color: transparent;
  2725. --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  2726. --bs-btn-disabled-opacity: 0.65;
  2727. --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  2728. display: inline-block;
  2729. padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  2730. font-family: var(--bs-btn-font-family);
  2731. font-size: var(--bs-btn-font-size);
  2732. font-weight: var(--bs-btn-font-weight);
  2733. line-height: var(--bs-btn-line-height);
  2734. color: var(--bs-btn-color);
  2735. text-align: center;
  2736. text-decoration: none;
  2737. vertical-align: middle;
  2738. cursor: pointer;
  2739. -webkit-user-select: none;
  2740. user-select: none;
  2741. border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  2742. border-radius: var(--bs-btn-border-radius);
  2743. background-color: var(--bs-btn-bg);
  2744. box-shadow: var(--bs-btn-box-shadow);
  2745. 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;
  2746. }
  2747. @media (prefers-reduced-motion: reduce) {
  2748. .btn {
  2749. transition: none;
  2750. }
  2751. }
  2752. .btn:hover {
  2753. color: var(--bs-btn-hover-color);
  2754. background-color: var(--bs-btn-hover-bg);
  2755. border-color: var(--bs-btn-hover-border-color);
  2756. }
  2757. .btn-check + .btn:hover {
  2758. color: var(--bs-btn-color);
  2759. background-color: var(--bs-btn-bg);
  2760. border-color: var(--bs-btn-border-color);
  2761. }
  2762. .btn:focus-visible {
  2763. color: var(--bs-btn-hover-color);
  2764. background-color: var(--bs-btn-hover-bg);
  2765. border-color: var(--bs-btn-hover-border-color);
  2766. outline: 0;
  2767. box-shadow: var(--bs-btn-box-shadow), var(--bs-btn-focus-box-shadow);
  2768. }
  2769. .btn-check:focus-visible + .btn {
  2770. border-color: var(--bs-btn-hover-border-color);
  2771. outline: 0;
  2772. box-shadow: var(--bs-btn-box-shadow), var(--bs-btn-focus-box-shadow);
  2773. }
  2774. .btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  2775. color: var(--bs-btn-active-color);
  2776. background-color: var(--bs-btn-active-bg);
  2777. border-color: var(--bs-btn-active-border-color);
  2778. box-shadow: var(--bs-btn-active-shadow);
  2779. }
  2780. .btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  2781. box-shadow: var(--bs-btn-active-shadow), var(--bs-btn-focus-box-shadow);
  2782. }
  2783. .btn-check:checked:focus-visible + .btn {
  2784. box-shadow: var(--bs-btn-active-shadow), var(--bs-btn-focus-box-shadow);
  2785. }
  2786. .btn:disabled, .btn.disabled, fieldset:disabled .btn {
  2787. color: var(--bs-btn-disabled-color);
  2788. pointer-events: none;
  2789. background-color: var(--bs-btn-disabled-bg);
  2790. border-color: var(--bs-btn-disabled-border-color);
  2791. opacity: var(--bs-btn-disabled-opacity);
  2792. box-shadow: none;
  2793. }
  2794. .btn-primary {
  2795. --bs-btn-color: #fff;
  2796. --bs-btn-bg: #0d6efd;
  2797. --bs-btn-border-color: #0d6efd;
  2798. --bs-btn-hover-color: #fff;
  2799. --bs-btn-hover-bg: rgb(11.05, 93.5, 215.05);
  2800. --bs-btn-hover-border-color: rgb(10.4, 88, 202.4);
  2801. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  2802. --bs-btn-active-color: #fff;
  2803. --bs-btn-active-bg: rgb(10.4, 88, 202.4);
  2804. --bs-btn-active-border-color: rgb(9.75, 82.5, 189.75);
  2805. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2806. --bs-btn-disabled-color: #fff;
  2807. --bs-btn-disabled-bg: #0d6efd;
  2808. --bs-btn-disabled-border-color: #0d6efd;
  2809. }
  2810. .btn-secondary {
  2811. --bs-btn-color: #fff;
  2812. --bs-btn-bg: #6c757d;
  2813. --bs-btn-border-color: #6c757d;
  2814. --bs-btn-hover-color: #fff;
  2815. --bs-btn-hover-bg: rgb(91.8, 99.45, 106.25);
  2816. --bs-btn-hover-border-color: rgb(86.4, 93.6, 100);
  2817. --bs-btn-focus-shadow-rgb: 130, 138, 145;
  2818. --bs-btn-active-color: #fff;
  2819. --bs-btn-active-bg: rgb(86.4, 93.6, 100);
  2820. --bs-btn-active-border-color: rgb(81, 87.75, 93.75);
  2821. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2822. --bs-btn-disabled-color: #fff;
  2823. --bs-btn-disabled-bg: #6c757d;
  2824. --bs-btn-disabled-border-color: #6c757d;
  2825. }
  2826. .btn-success {
  2827. --bs-btn-color: #fff;
  2828. --bs-btn-bg: #198754;
  2829. --bs-btn-border-color: #198754;
  2830. --bs-btn-hover-color: #fff;
  2831. --bs-btn-hover-bg: rgb(21.25, 114.75, 71.4);
  2832. --bs-btn-hover-border-color: rgb(20, 108, 67.2);
  2833. --bs-btn-focus-shadow-rgb: 60, 153, 110;
  2834. --bs-btn-active-color: #fff;
  2835. --bs-btn-active-bg: rgb(20, 108, 67.2);
  2836. --bs-btn-active-border-color: rgb(18.75, 101.25, 63);
  2837. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2838. --bs-btn-disabled-color: #fff;
  2839. --bs-btn-disabled-bg: #198754;
  2840. --bs-btn-disabled-border-color: #198754;
  2841. }
  2842. .btn-info {
  2843. --bs-btn-color: #000;
  2844. --bs-btn-bg: #0dcaf0;
  2845. --bs-btn-border-color: #0dcaf0;
  2846. --bs-btn-hover-color: #000;
  2847. --bs-btn-hover-bg: rgb(49.3, 209.95, 242.25);
  2848. --bs-btn-hover-border-color: rgb(37.2, 207.3, 241.5);
  2849. --bs-btn-focus-shadow-rgb: 11, 172, 204;
  2850. --bs-btn-active-color: #000;
  2851. --bs-btn-active-bg: rgb(61.4, 212.6, 243);
  2852. --bs-btn-active-border-color: rgb(37.2, 207.3, 241.5);
  2853. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2854. --bs-btn-disabled-color: #000;
  2855. --bs-btn-disabled-bg: #0dcaf0;
  2856. --bs-btn-disabled-border-color: #0dcaf0;
  2857. }
  2858. .btn-warning {
  2859. --bs-btn-color: #000;
  2860. --bs-btn-bg: #ffc107;
  2861. --bs-btn-border-color: #ffc107;
  2862. --bs-btn-hover-color: #000;
  2863. --bs-btn-hover-bg: rgb(255, 202.3, 44.2);
  2864. --bs-btn-hover-border-color: rgb(255, 199.2, 31.8);
  2865. --bs-btn-focus-shadow-rgb: 217, 164, 6;
  2866. --bs-btn-active-color: #000;
  2867. --bs-btn-active-bg: rgb(255, 205.4, 56.6);
  2868. --bs-btn-active-border-color: rgb(255, 199.2, 31.8);
  2869. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2870. --bs-btn-disabled-color: #000;
  2871. --bs-btn-disabled-bg: #ffc107;
  2872. --bs-btn-disabled-border-color: #ffc107;
  2873. }
  2874. .btn-danger {
  2875. --bs-btn-color: #fff;
  2876. --bs-btn-bg: #dc3545;
  2877. --bs-btn-border-color: #dc3545;
  2878. --bs-btn-hover-color: #fff;
  2879. --bs-btn-hover-bg: rgb(187, 45.05, 58.65);
  2880. --bs-btn-hover-border-color: rgb(176, 42.4, 55.2);
  2881. --bs-btn-focus-shadow-rgb: 225, 83, 97;
  2882. --bs-btn-active-color: #fff;
  2883. --bs-btn-active-bg: rgb(176, 42.4, 55.2);
  2884. --bs-btn-active-border-color: rgb(165, 39.75, 51.75);
  2885. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2886. --bs-btn-disabled-color: #fff;
  2887. --bs-btn-disabled-bg: #dc3545;
  2888. --bs-btn-disabled-border-color: #dc3545;
  2889. }
  2890. .btn-light {
  2891. --bs-btn-color: #000;
  2892. --bs-btn-bg: #f8f9fa;
  2893. --bs-btn-border-color: #f8f9fa;
  2894. --bs-btn-hover-color: #000;
  2895. --bs-btn-hover-bg: rgb(210.8, 211.65, 212.5);
  2896. --bs-btn-hover-border-color: rgb(198.4, 199.2, 200);
  2897. --bs-btn-focus-shadow-rgb: 211, 212, 213;
  2898. --bs-btn-active-color: #000;
  2899. --bs-btn-active-bg: rgb(198.4, 199.2, 200);
  2900. --bs-btn-active-border-color: rgb(186, 186.75, 187.5);
  2901. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2902. --bs-btn-disabled-color: #000;
  2903. --bs-btn-disabled-bg: #f8f9fa;
  2904. --bs-btn-disabled-border-color: #f8f9fa;
  2905. }
  2906. .btn-dark {
  2907. --bs-btn-color: #fff;
  2908. --bs-btn-bg: #212529;
  2909. --bs-btn-border-color: #212529;
  2910. --bs-btn-hover-color: #fff;
  2911. --bs-btn-hover-bg: rgb(66.3, 69.7, 73.1);
  2912. --bs-btn-hover-border-color: rgb(55.2, 58.8, 62.4);
  2913. --bs-btn-focus-shadow-rgb: 66, 70, 73;
  2914. --bs-btn-active-color: #fff;
  2915. --bs-btn-active-bg: rgb(77.4, 80.6, 83.8);
  2916. --bs-btn-active-border-color: rgb(55.2, 58.8, 62.4);
  2917. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2918. --bs-btn-disabled-color: #fff;
  2919. --bs-btn-disabled-bg: #212529;
  2920. --bs-btn-disabled-border-color: #212529;
  2921. }
  2922. .btn-outline-primary {
  2923. --bs-btn-color: #0d6efd;
  2924. --bs-btn-border-color: #0d6efd;
  2925. --bs-btn-hover-color: #fff;
  2926. --bs-btn-hover-bg: #0d6efd;
  2927. --bs-btn-hover-border-color: #0d6efd;
  2928. --bs-btn-focus-shadow-rgb: 13, 110, 253;
  2929. --bs-btn-active-color: #fff;
  2930. --bs-btn-active-bg: #0d6efd;
  2931. --bs-btn-active-border-color: #0d6efd;
  2932. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2933. --bs-btn-disabled-color: #0d6efd;
  2934. --bs-btn-disabled-bg: transparent;
  2935. --bs-btn-disabled-border-color: #0d6efd;
  2936. --bs-gradient: none;
  2937. }
  2938. .btn-outline-secondary {
  2939. --bs-btn-color: #6c757d;
  2940. --bs-btn-border-color: #6c757d;
  2941. --bs-btn-hover-color: #fff;
  2942. --bs-btn-hover-bg: #6c757d;
  2943. --bs-btn-hover-border-color: #6c757d;
  2944. --bs-btn-focus-shadow-rgb: 108, 117, 125;
  2945. --bs-btn-active-color: #fff;
  2946. --bs-btn-active-bg: #6c757d;
  2947. --bs-btn-active-border-color: #6c757d;
  2948. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2949. --bs-btn-disabled-color: #6c757d;
  2950. --bs-btn-disabled-bg: transparent;
  2951. --bs-btn-disabled-border-color: #6c757d;
  2952. --bs-gradient: none;
  2953. }
  2954. .btn-outline-success {
  2955. --bs-btn-color: #198754;
  2956. --bs-btn-border-color: #198754;
  2957. --bs-btn-hover-color: #fff;
  2958. --bs-btn-hover-bg: #198754;
  2959. --bs-btn-hover-border-color: #198754;
  2960. --bs-btn-focus-shadow-rgb: 25, 135, 84;
  2961. --bs-btn-active-color: #fff;
  2962. --bs-btn-active-bg: #198754;
  2963. --bs-btn-active-border-color: #198754;
  2964. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2965. --bs-btn-disabled-color: #198754;
  2966. --bs-btn-disabled-bg: transparent;
  2967. --bs-btn-disabled-border-color: #198754;
  2968. --bs-gradient: none;
  2969. }
  2970. .btn-outline-info {
  2971. --bs-btn-color: #0dcaf0;
  2972. --bs-btn-border-color: #0dcaf0;
  2973. --bs-btn-hover-color: #000;
  2974. --bs-btn-hover-bg: #0dcaf0;
  2975. --bs-btn-hover-border-color: #0dcaf0;
  2976. --bs-btn-focus-shadow-rgb: 13, 202, 240;
  2977. --bs-btn-active-color: #000;
  2978. --bs-btn-active-bg: #0dcaf0;
  2979. --bs-btn-active-border-color: #0dcaf0;
  2980. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2981. --bs-btn-disabled-color: #0dcaf0;
  2982. --bs-btn-disabled-bg: transparent;
  2983. --bs-btn-disabled-border-color: #0dcaf0;
  2984. --bs-gradient: none;
  2985. }
  2986. .btn-outline-warning {
  2987. --bs-btn-color: #ffc107;
  2988. --bs-btn-border-color: #ffc107;
  2989. --bs-btn-hover-color: #000;
  2990. --bs-btn-hover-bg: #ffc107;
  2991. --bs-btn-hover-border-color: #ffc107;
  2992. --bs-btn-focus-shadow-rgb: 255, 193, 7;
  2993. --bs-btn-active-color: #000;
  2994. --bs-btn-active-bg: #ffc107;
  2995. --bs-btn-active-border-color: #ffc107;
  2996. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2997. --bs-btn-disabled-color: #ffc107;
  2998. --bs-btn-disabled-bg: transparent;
  2999. --bs-btn-disabled-border-color: #ffc107;
  3000. --bs-gradient: none;
  3001. }
  3002. .btn-outline-danger {
  3003. --bs-btn-color: #dc3545;
  3004. --bs-btn-border-color: #dc3545;
  3005. --bs-btn-hover-color: #fff;
  3006. --bs-btn-hover-bg: #dc3545;
  3007. --bs-btn-hover-border-color: #dc3545;
  3008. --bs-btn-focus-shadow-rgb: 220, 53, 69;
  3009. --bs-btn-active-color: #fff;
  3010. --bs-btn-active-bg: #dc3545;
  3011. --bs-btn-active-border-color: #dc3545;
  3012. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3013. --bs-btn-disabled-color: #dc3545;
  3014. --bs-btn-disabled-bg: transparent;
  3015. --bs-btn-disabled-border-color: #dc3545;
  3016. --bs-gradient: none;
  3017. }
  3018. .btn-outline-light {
  3019. --bs-btn-color: #f8f9fa;
  3020. --bs-btn-border-color: #f8f9fa;
  3021. --bs-btn-hover-color: #000;
  3022. --bs-btn-hover-bg: #f8f9fa;
  3023. --bs-btn-hover-border-color: #f8f9fa;
  3024. --bs-btn-focus-shadow-rgb: 248, 249, 250;
  3025. --bs-btn-active-color: #000;
  3026. --bs-btn-active-bg: #f8f9fa;
  3027. --bs-btn-active-border-color: #f8f9fa;
  3028. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3029. --bs-btn-disabled-color: #f8f9fa;
  3030. --bs-btn-disabled-bg: transparent;
  3031. --bs-btn-disabled-border-color: #f8f9fa;
  3032. --bs-gradient: none;
  3033. }
  3034. .btn-outline-dark {
  3035. --bs-btn-color: #212529;
  3036. --bs-btn-border-color: #212529;
  3037. --bs-btn-hover-color: #fff;
  3038. --bs-btn-hover-bg: #212529;
  3039. --bs-btn-hover-border-color: #212529;
  3040. --bs-btn-focus-shadow-rgb: 33, 37, 41;
  3041. --bs-btn-active-color: #fff;
  3042. --bs-btn-active-bg: #212529;
  3043. --bs-btn-active-border-color: #212529;
  3044. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3045. --bs-btn-disabled-color: #212529;
  3046. --bs-btn-disabled-bg: transparent;
  3047. --bs-btn-disabled-border-color: #212529;
  3048. --bs-gradient: none;
  3049. }
  3050. .btn-link {
  3051. --bs-btn-font-weight: 400;
  3052. --bs-btn-color: var(--bs-link-color);
  3053. --bs-btn-bg: transparent;
  3054. --bs-btn-border-color: transparent;
  3055. --bs-btn-hover-color: var(--bs-link-hover-color);
  3056. --bs-btn-hover-border-color: transparent;
  3057. --bs-btn-active-color: var(--bs-link-hover-color);
  3058. --bs-btn-active-border-color: transparent;
  3059. --bs-btn-disabled-color: #6c757d;
  3060. --bs-btn-disabled-border-color: transparent;
  3061. --bs-btn-box-shadow: 0 0 0 #000;
  3062. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  3063. text-decoration: underline;
  3064. }
  3065. .btn-link:focus-visible {
  3066. color: var(--bs-btn-color);
  3067. }
  3068. .btn-link:hover {
  3069. color: var(--bs-btn-hover-color);
  3070. }
  3071. .btn-lg, .btn-group-lg > .btn {
  3072. --bs-btn-padding-y: 0.5rem;
  3073. --bs-btn-padding-x: 1rem;
  3074. --bs-btn-font-size: 1.25rem;
  3075. --bs-btn-border-radius: var(--bs-border-radius-lg);
  3076. }
  3077. .btn-sm, .btn-group-sm > .btn {
  3078. --bs-btn-padding-y: 0.25rem;
  3079. --bs-btn-padding-x: 0.5rem;
  3080. --bs-btn-font-size: 0.875rem;
  3081. --bs-btn-border-radius: var(--bs-border-radius-sm);
  3082. }
  3083. .fade {
  3084. transition: opacity 0.15s linear;
  3085. }
  3086. @media (prefers-reduced-motion: reduce) {
  3087. .fade {
  3088. transition: none;
  3089. }
  3090. }
  3091. .fade:not(.show) {
  3092. opacity: 0;
  3093. }
  3094. .collapse:not(.show) {
  3095. display: none;
  3096. }
  3097. .collapsing {
  3098. height: 0;
  3099. overflow: hidden;
  3100. transition: height 0.35s ease;
  3101. }
  3102. @media (prefers-reduced-motion: reduce) {
  3103. .collapsing {
  3104. transition: none;
  3105. }
  3106. }
  3107. .collapsing.collapse-horizontal {
  3108. width: 0;
  3109. height: auto;
  3110. transition: width 0.35s ease;
  3111. }
  3112. @media (prefers-reduced-motion: reduce) {
  3113. .collapsing.collapse-horizontal {
  3114. transition: none;
  3115. }
  3116. }
  3117. .dropup,
  3118. .dropend,
  3119. .dropdown,
  3120. .dropstart,
  3121. .dropup-center,
  3122. .dropdown-center {
  3123. position: relative;
  3124. }
  3125. .dropdown-toggle {
  3126. white-space: nowrap;
  3127. }
  3128. .dropdown-toggle::after {
  3129. display: inline-block;
  3130. margin-right: 0.255em;
  3131. vertical-align: 0.255em;
  3132. content: "";
  3133. border-top: 0.3em solid;
  3134. border-left: 0.3em solid transparent;
  3135. border-bottom: 0;
  3136. border-right: 0.3em solid transparent;
  3137. }
  3138. .dropdown-toggle:empty::after {
  3139. margin-right: 0;
  3140. }
  3141. .dropdown-menu {
  3142. --bs-dropdown-zindex: 1000;
  3143. --bs-dropdown-min-width: 10rem;
  3144. --bs-dropdown-padding-x: 0;
  3145. --bs-dropdown-padding-y: 0.5rem;
  3146. --bs-dropdown-spacer: 0.125rem;
  3147. --bs-dropdown-font-size: 1rem;
  3148. --bs-dropdown-color: var(--bs-body-color);
  3149. --bs-dropdown-bg: var(--bs-body-bg);
  3150. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3151. --bs-dropdown-border-radius: var(--bs-border-radius);
  3152. --bs-dropdown-border-width: var(--bs-border-width);
  3153. --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  3154. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3155. --bs-dropdown-divider-margin-y: 0.5rem;
  3156. --bs-dropdown-box-shadow: var(--bs-box-shadow);
  3157. --bs-dropdown-link-color: var(--bs-body-color);
  3158. --bs-dropdown-link-hover-color: var(--bs-body-color);
  3159. --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  3160. --bs-dropdown-link-active-color: #fff;
  3161. --bs-dropdown-link-active-bg: #0d6efd;
  3162. --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  3163. --bs-dropdown-item-padding-x: 1rem;
  3164. --bs-dropdown-item-padding-y: 0.25rem;
  3165. --bs-dropdown-header-color: #6c757d;
  3166. --bs-dropdown-header-padding-x: 1rem;
  3167. --bs-dropdown-header-padding-y: 0.5rem;
  3168. position: absolute;
  3169. z-index: var(--bs-dropdown-zindex);
  3170. display: none;
  3171. min-width: var(--bs-dropdown-min-width);
  3172. padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  3173. margin: 0;
  3174. font-size: var(--bs-dropdown-font-size);
  3175. color: var(--bs-dropdown-color);
  3176. text-align: right;
  3177. list-style: none;
  3178. background-color: var(--bs-dropdown-bg);
  3179. background-clip: padding-box;
  3180. border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  3181. border-radius: var(--bs-dropdown-border-radius);
  3182. box-shadow: var(--bs-dropdown-box-shadow);
  3183. }
  3184. .dropdown-menu[data-bs-popper] {
  3185. top: 100%;
  3186. right: 0;
  3187. margin-top: var(--bs-dropdown-spacer);
  3188. }
  3189. .dropdown-menu-start {
  3190. --bs-position: start;
  3191. }
  3192. .dropdown-menu-start[data-bs-popper] {
  3193. left: auto;
  3194. right: 0;
  3195. }
  3196. .dropdown-menu-end {
  3197. --bs-position: end;
  3198. }
  3199. .dropdown-menu-end[data-bs-popper] {
  3200. left: 0;
  3201. right: auto;
  3202. }
  3203. @media (min-width: 576px) {
  3204. .dropdown-menu-sm-start {
  3205. --bs-position: start;
  3206. }
  3207. .dropdown-menu-sm-start[data-bs-popper] {
  3208. left: auto;
  3209. right: 0;
  3210. }
  3211. .dropdown-menu-sm-end {
  3212. --bs-position: end;
  3213. }
  3214. .dropdown-menu-sm-end[data-bs-popper] {
  3215. left: 0;
  3216. right: auto;
  3217. }
  3218. }
  3219. @media (min-width: 768px) {
  3220. .dropdown-menu-md-start {
  3221. --bs-position: start;
  3222. }
  3223. .dropdown-menu-md-start[data-bs-popper] {
  3224. left: auto;
  3225. right: 0;
  3226. }
  3227. .dropdown-menu-md-end {
  3228. --bs-position: end;
  3229. }
  3230. .dropdown-menu-md-end[data-bs-popper] {
  3231. left: 0;
  3232. right: auto;
  3233. }
  3234. }
  3235. @media (min-width: 992px) {
  3236. .dropdown-menu-lg-start {
  3237. --bs-position: start;
  3238. }
  3239. .dropdown-menu-lg-start[data-bs-popper] {
  3240. left: auto;
  3241. right: 0;
  3242. }
  3243. .dropdown-menu-lg-end {
  3244. --bs-position: end;
  3245. }
  3246. .dropdown-menu-lg-end[data-bs-popper] {
  3247. left: 0;
  3248. right: auto;
  3249. }
  3250. }
  3251. @media (min-width: 1200px) {
  3252. .dropdown-menu-xl-start {
  3253. --bs-position: start;
  3254. }
  3255. .dropdown-menu-xl-start[data-bs-popper] {
  3256. left: auto;
  3257. right: 0;
  3258. }
  3259. .dropdown-menu-xl-end {
  3260. --bs-position: end;
  3261. }
  3262. .dropdown-menu-xl-end[data-bs-popper] {
  3263. left: 0;
  3264. right: auto;
  3265. }
  3266. }
  3267. @media (min-width: 1400px) {
  3268. .dropdown-menu-xxl-start {
  3269. --bs-position: start;
  3270. }
  3271. .dropdown-menu-xxl-start[data-bs-popper] {
  3272. left: auto;
  3273. right: 0;
  3274. }
  3275. .dropdown-menu-xxl-end {
  3276. --bs-position: end;
  3277. }
  3278. .dropdown-menu-xxl-end[data-bs-popper] {
  3279. left: 0;
  3280. right: auto;
  3281. }
  3282. }
  3283. .dropup .dropdown-menu[data-bs-popper] {
  3284. top: auto;
  3285. bottom: 100%;
  3286. margin-top: 0;
  3287. margin-bottom: var(--bs-dropdown-spacer);
  3288. }
  3289. .dropup .dropdown-toggle::after {
  3290. display: inline-block;
  3291. margin-right: 0.255em;
  3292. vertical-align: 0.255em;
  3293. content: "";
  3294. border-top: 0;
  3295. border-left: 0.3em solid transparent;
  3296. border-bottom: 0.3em solid;
  3297. border-right: 0.3em solid transparent;
  3298. }
  3299. .dropup .dropdown-toggle:empty::after {
  3300. margin-right: 0;
  3301. }
  3302. .dropend .dropdown-menu[data-bs-popper] {
  3303. top: 0;
  3304. left: auto;
  3305. right: 100%;
  3306. margin-top: 0;
  3307. margin-right: var(--bs-dropdown-spacer);
  3308. }
  3309. .dropend .dropdown-toggle::after {
  3310. display: inline-block;
  3311. margin-right: 0.255em;
  3312. vertical-align: 0.255em;
  3313. content: "";
  3314. border-top: 0.3em solid transparent;
  3315. border-left: 0;
  3316. border-bottom: 0.3em solid transparent;
  3317. border-right: 0.3em solid;
  3318. }
  3319. .dropend .dropdown-toggle:empty::after {
  3320. margin-right: 0;
  3321. }
  3322. .dropend .dropdown-toggle::after {
  3323. vertical-align: 0;
  3324. }
  3325. .dropstart .dropdown-menu[data-bs-popper] {
  3326. top: 0;
  3327. left: 100%;
  3328. right: auto;
  3329. margin-top: 0;
  3330. margin-left: var(--bs-dropdown-spacer);
  3331. }
  3332. .dropstart .dropdown-toggle::after {
  3333. display: inline-block;
  3334. margin-right: 0.255em;
  3335. vertical-align: 0.255em;
  3336. content: "";
  3337. }
  3338. .dropstart .dropdown-toggle::after {
  3339. display: none;
  3340. }
  3341. .dropstart .dropdown-toggle::before {
  3342. display: inline-block;
  3343. margin-left: 0.255em;
  3344. vertical-align: 0.255em;
  3345. content: "";
  3346. border-top: 0.3em solid transparent;
  3347. border-left: 0.3em solid;
  3348. border-bottom: 0.3em solid transparent;
  3349. }
  3350. .dropstart .dropdown-toggle:empty::after {
  3351. margin-right: 0;
  3352. }
  3353. .dropstart .dropdown-toggle::before {
  3354. vertical-align: 0;
  3355. }
  3356. .dropdown-divider {
  3357. height: 0;
  3358. margin: var(--bs-dropdown-divider-margin-y) 0;
  3359. overflow: hidden;
  3360. border-top: 1px solid var(--bs-dropdown-divider-bg);
  3361. opacity: 1;
  3362. }
  3363. .dropdown-item {
  3364. display: block;
  3365. width: 100%;
  3366. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3367. clear: both;
  3368. font-weight: 400;
  3369. color: var(--bs-dropdown-link-color);
  3370. text-align: inherit;
  3371. text-decoration: none;
  3372. white-space: nowrap;
  3373. background-color: transparent;
  3374. border: 0;
  3375. border-radius: var(--bs-dropdown-item-border-radius, 0);
  3376. }
  3377. .dropdown-item:hover, .dropdown-item:focus {
  3378. color: var(--bs-dropdown-link-hover-color);
  3379. background-color: var(--bs-dropdown-link-hover-bg);
  3380. }
  3381. .dropdown-item.active, .dropdown-item:active {
  3382. color: var(--bs-dropdown-link-active-color);
  3383. text-decoration: none;
  3384. background-color: var(--bs-dropdown-link-active-bg);
  3385. }
  3386. .dropdown-item.disabled, .dropdown-item:disabled {
  3387. color: var(--bs-dropdown-link-disabled-color);
  3388. pointer-events: none;
  3389. background-color: transparent;
  3390. }
  3391. .dropdown-menu.show {
  3392. display: block;
  3393. }
  3394. .dropdown-header {
  3395. display: block;
  3396. padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  3397. margin-bottom: 0;
  3398. font-size: 0.875rem;
  3399. color: var(--bs-dropdown-header-color);
  3400. white-space: nowrap;
  3401. }
  3402. .dropdown-item-text {
  3403. display: block;
  3404. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3405. color: var(--bs-dropdown-link-color);
  3406. }
  3407. .dropdown-menu-dark {
  3408. --bs-dropdown-color: #dee2e6;
  3409. --bs-dropdown-bg: #343a40;
  3410. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3411. --bs-dropdown-box-shadow: ;
  3412. --bs-dropdown-link-color: #dee2e6;
  3413. --bs-dropdown-link-hover-color: #fff;
  3414. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3415. --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  3416. --bs-dropdown-link-active-color: #fff;
  3417. --bs-dropdown-link-active-bg: #0d6efd;
  3418. --bs-dropdown-link-disabled-color: #adb5bd;
  3419. --bs-dropdown-header-color: #adb5bd;
  3420. }
  3421. .btn-group,
  3422. .btn-group-vertical {
  3423. position: relative;
  3424. display: inline-flex;
  3425. vertical-align: middle;
  3426. }
  3427. .btn-group > .btn,
  3428. .btn-group-vertical > .btn {
  3429. position: relative;
  3430. flex: 1 1 auto;
  3431. }
  3432. .btn-group > .btn-check:checked + .btn,
  3433. .btn-group > .btn-check:focus + .btn,
  3434. .btn-group > .btn:hover,
  3435. .btn-group > .btn:focus,
  3436. .btn-group > .btn:active,
  3437. .btn-group > .btn.active,
  3438. .btn-group-vertical > .btn-check:checked + .btn,
  3439. .btn-group-vertical > .btn-check:focus + .btn,
  3440. .btn-group-vertical > .btn:hover,
  3441. .btn-group-vertical > .btn:focus,
  3442. .btn-group-vertical > .btn:active,
  3443. .btn-group-vertical > .btn.active {
  3444. z-index: 1;
  3445. }
  3446. .btn-toolbar {
  3447. display: flex;
  3448. flex-wrap: wrap;
  3449. justify-content: flex-start;
  3450. }
  3451. .btn-toolbar .input-group {
  3452. width: auto;
  3453. }
  3454. .btn-group {
  3455. border-radius: var(--bs-border-radius);
  3456. }
  3457. .btn-group > :not(.btn-check:first-child) + .btn,
  3458. .btn-group > .btn-group:not(:first-child) {
  3459. margin-right: calc(-1 * var(--bs-border-width));
  3460. }
  3461. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  3462. .btn-group > .btn.dropdown-toggle-split:first-child,
  3463. .btn-group > .btn-group:not(:last-child) > .btn {
  3464. border-top-left-radius: 0;
  3465. border-bottom-left-radius: 0;
  3466. }
  3467. .btn-group > .btn:nth-child(n+3),
  3468. .btn-group > :not(.btn-check) + .btn,
  3469. .btn-group > .btn-group:not(:first-child) > .btn {
  3470. border-top-right-radius: 0;
  3471. border-bottom-right-radius: 0;
  3472. }
  3473. .dropdown-toggle-split {
  3474. padding-left: 0.5625rem;
  3475. padding-right: 0.5625rem;
  3476. }
  3477. .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  3478. margin-right: 0;
  3479. }
  3480. .dropstart .dropdown-toggle-split::before {
  3481. margin-left: 0;
  3482. }
  3483. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  3484. padding-left: 0.375rem;
  3485. padding-right: 0.375rem;
  3486. }
  3487. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  3488. padding-left: 0.75rem;
  3489. padding-right: 0.75rem;
  3490. }
  3491. .btn-group.show .dropdown-toggle {
  3492. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3493. }
  3494. .btn-group.show .dropdown-toggle.btn-link {
  3495. box-shadow: none;
  3496. }
  3497. .btn-group-vertical {
  3498. flex-direction: column;
  3499. align-items: flex-start;
  3500. justify-content: center;
  3501. }
  3502. .btn-group-vertical > .btn,
  3503. .btn-group-vertical > .btn-group {
  3504. width: 100%;
  3505. }
  3506. .btn-group-vertical > .btn:not(:first-child),
  3507. .btn-group-vertical > .btn-group:not(:first-child) {
  3508. margin-top: calc(-1 * var(--bs-border-width));
  3509. }
  3510. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  3511. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  3512. border-bottom-left-radius: 0;
  3513. border-bottom-right-radius: 0;
  3514. }
  3515. .btn-group-vertical > .btn:nth-child(n+3),
  3516. .btn-group-vertical > :not(.btn-check) + .btn,
  3517. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  3518. border-top-right-radius: 0;
  3519. border-top-left-radius: 0;
  3520. }
  3521. .nav {
  3522. --bs-nav-link-padding-x: 1rem;
  3523. --bs-nav-link-padding-y: 0.5rem;
  3524. --bs-nav-link-font-weight: ;
  3525. --bs-nav-link-color: var(--bs-link-color);
  3526. --bs-nav-link-hover-color: var(--bs-link-hover-color);
  3527. --bs-nav-link-disabled-color: var(--bs-secondary-color);
  3528. display: flex;
  3529. flex-wrap: wrap;
  3530. padding-right: 0;
  3531. margin-bottom: 0;
  3532. list-style: none;
  3533. }
  3534. .nav-link {
  3535. display: block;
  3536. padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  3537. font-size: var(--bs-nav-link-font-size);
  3538. font-weight: var(--bs-nav-link-font-weight);
  3539. color: var(--bs-nav-link-color);
  3540. text-decoration: none;
  3541. background: none;
  3542. border: 0;
  3543. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  3544. }
  3545. @media (prefers-reduced-motion: reduce) {
  3546. .nav-link {
  3547. transition: none;
  3548. }
  3549. }
  3550. .nav-link:hover, .nav-link:focus {
  3551. color: var(--bs-nav-link-hover-color);
  3552. }
  3553. .nav-link:focus-visible {
  3554. outline: 0;
  3555. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  3556. }
  3557. .nav-link.disabled, .nav-link:disabled {
  3558. color: var(--bs-nav-link-disabled-color);
  3559. pointer-events: none;
  3560. cursor: default;
  3561. }
  3562. .nav-tabs {
  3563. --bs-nav-tabs-border-width: var(--bs-border-width);
  3564. --bs-nav-tabs-border-color: var(--bs-border-color);
  3565. --bs-nav-tabs-border-radius: var(--bs-border-radius);
  3566. --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  3567. --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  3568. --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  3569. --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  3570. border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
  3571. }
  3572. .nav-tabs .nav-link {
  3573. margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  3574. border: var(--bs-nav-tabs-border-width) solid transparent;
  3575. border-top-right-radius: var(--bs-nav-tabs-border-radius);
  3576. border-top-left-radius: var(--bs-nav-tabs-border-radius);
  3577. }
  3578. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  3579. isolation: isolate;
  3580. border-color: var(--bs-nav-tabs-link-hover-border-color);
  3581. }
  3582. .nav-tabs .nav-link.active,
  3583. .nav-tabs .nav-item.show .nav-link {
  3584. color: var(--bs-nav-tabs-link-active-color);
  3585. background-color: var(--bs-nav-tabs-link-active-bg);
  3586. border-color: var(--bs-nav-tabs-link-active-border-color);
  3587. }
  3588. .nav-tabs .dropdown-menu {
  3589. margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  3590. border-top-right-radius: 0;
  3591. border-top-left-radius: 0;
  3592. }
  3593. .nav-pills {
  3594. --bs-nav-pills-border-radius: var(--bs-border-radius);
  3595. --bs-nav-pills-link-active-color: #fff;
  3596. --bs-nav-pills-link-active-bg: #0d6efd;
  3597. }
  3598. .nav-pills .nav-link {
  3599. border-radius: var(--bs-nav-pills-border-radius);
  3600. }
  3601. .nav-pills .nav-link.active,
  3602. .nav-pills .show > .nav-link {
  3603. color: var(--bs-nav-pills-link-active-color);
  3604. background-color: var(--bs-nav-pills-link-active-bg);
  3605. }
  3606. .nav-underline {
  3607. --bs-nav-underline-gap: 1rem;
  3608. --bs-nav-underline-border-width: 0.125rem;
  3609. --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  3610. gap: var(--bs-nav-underline-gap);
  3611. }
  3612. .nav-underline .nav-link {
  3613. padding-left: 0;
  3614. padding-right: 0;
  3615. border-bottom: var(--bs-nav-underline-border-width) solid transparent;
  3616. }
  3617. .nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  3618. border-bottom-color: currentcolor;
  3619. }
  3620. .nav-underline .nav-link.active,
  3621. .nav-underline .show > .nav-link {
  3622. font-weight: 700;
  3623. color: var(--bs-nav-underline-link-active-color);
  3624. border-bottom-color: currentcolor;
  3625. }
  3626. .nav-fill > .nav-link,
  3627. .nav-fill .nav-item {
  3628. flex: 1 1 auto;
  3629. text-align: center;
  3630. }
  3631. .nav-justified > .nav-link,
  3632. .nav-justified .nav-item {
  3633. flex-grow: 1;
  3634. flex-basis: 0;
  3635. text-align: center;
  3636. }
  3637. .nav-fill .nav-item .nav-link,
  3638. .nav-justified .nav-item .nav-link {
  3639. width: 100%;
  3640. }
  3641. .tab-content > .tab-pane {
  3642. display: none;
  3643. }
  3644. .tab-content > .active {
  3645. display: block;
  3646. }
  3647. .navbar {
  3648. --bs-navbar-padding-x: 0;
  3649. --bs-navbar-padding-y: 0.5rem;
  3650. --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  3651. --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  3652. --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  3653. --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3654. --bs-navbar-brand-padding-y: 0.3125rem;
  3655. --bs-navbar-brand-margin-end: 1rem;
  3656. --bs-navbar-brand-font-size: 1.25rem;
  3657. --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3658. --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3659. --bs-navbar-nav-link-padding-x: 1rem;
  3660. --bs-navbar-toggler-padding-y: 0.25rem;
  3661. --bs-navbar-toggler-padding-x: 0.75rem;
  3662. --bs-navbar-toggler-font-size: 1.25rem;
  3663. --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");
  3664. --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  3665. --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  3666. --bs-navbar-toggler-focus-width: 0.25rem;
  3667. --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  3668. position: relative;
  3669. display: flex;
  3670. flex-wrap: wrap;
  3671. align-items: center;
  3672. justify-content: space-between;
  3673. padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
  3674. }
  3675. .navbar > .container,
  3676. .navbar > .container-fluid,
  3677. .navbar > .container-sm,
  3678. .navbar > .container-md,
  3679. .navbar > .container-lg,
  3680. .navbar > .container-xl,
  3681. .navbar > .container-xxl {
  3682. display: flex;
  3683. flex-wrap: inherit;
  3684. align-items: center;
  3685. justify-content: space-between;
  3686. }
  3687. .navbar-brand {
  3688. padding-top: var(--bs-navbar-brand-padding-y);
  3689. padding-bottom: var(--bs-navbar-brand-padding-y);
  3690. margin-left: var(--bs-navbar-brand-margin-end);
  3691. font-size: var(--bs-navbar-brand-font-size);
  3692. color: var(--bs-navbar-brand-color);
  3693. text-decoration: none;
  3694. white-space: nowrap;
  3695. }
  3696. .navbar-brand:hover, .navbar-brand:focus {
  3697. color: var(--bs-navbar-brand-hover-color);
  3698. }
  3699. .navbar-nav {
  3700. --bs-nav-link-padding-x: 0;
  3701. --bs-nav-link-padding-y: 0.5rem;
  3702. --bs-nav-link-font-weight: ;
  3703. --bs-nav-link-color: var(--bs-navbar-color);
  3704. --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  3705. --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  3706. display: flex;
  3707. flex-direction: column;
  3708. padding-right: 0;
  3709. margin-bottom: 0;
  3710. list-style: none;
  3711. }
  3712. .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  3713. color: var(--bs-navbar-active-color);
  3714. }
  3715. .navbar-nav .dropdown-menu {
  3716. position: static;
  3717. }
  3718. .navbar-text {
  3719. padding-top: 0.5rem;
  3720. padding-bottom: 0.5rem;
  3721. color: var(--bs-navbar-color);
  3722. }
  3723. .navbar-text a,
  3724. .navbar-text a:hover,
  3725. .navbar-text a:focus {
  3726. color: var(--bs-navbar-active-color);
  3727. }
  3728. .navbar-collapse {
  3729. flex-grow: 1;
  3730. flex-basis: 100%;
  3731. align-items: center;
  3732. }
  3733. .navbar-toggler {
  3734. padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  3735. font-size: var(--bs-navbar-toggler-font-size);
  3736. line-height: 1;
  3737. color: var(--bs-navbar-color);
  3738. background-color: transparent;
  3739. border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  3740. border-radius: var(--bs-navbar-toggler-border-radius);
  3741. transition: var(--bs-navbar-toggler-transition);
  3742. }
  3743. @media (prefers-reduced-motion: reduce) {
  3744. .navbar-toggler {
  3745. transition: none;
  3746. }
  3747. }
  3748. .navbar-toggler:hover {
  3749. text-decoration: none;
  3750. }
  3751. .navbar-toggler:focus {
  3752. text-decoration: none;
  3753. outline: 0;
  3754. box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
  3755. }
  3756. .navbar-toggler-icon {
  3757. display: inline-block;
  3758. width: 1.5em;
  3759. height: 1.5em;
  3760. vertical-align: middle;
  3761. background-image: var(--bs-navbar-toggler-icon-bg);
  3762. background-repeat: no-repeat;
  3763. background-position: center;
  3764. background-size: 100%;
  3765. }
  3766. .navbar-nav-scroll {
  3767. max-height: var(--bs-scroll-height, 75vh);
  3768. overflow-y: auto;
  3769. }
  3770. @media (min-width: 576px) {
  3771. .navbar-expand-sm {
  3772. flex-wrap: nowrap;
  3773. justify-content: flex-start;
  3774. }
  3775. .navbar-expand-sm .navbar-nav {
  3776. flex-direction: row;
  3777. }
  3778. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3779. position: absolute;
  3780. }
  3781. .navbar-expand-sm .navbar-nav .nav-link {
  3782. padding-left: var(--bs-navbar-nav-link-padding-x);
  3783. padding-right: var(--bs-navbar-nav-link-padding-x);
  3784. }
  3785. .navbar-expand-sm .navbar-nav-scroll {
  3786. overflow: visible;
  3787. }
  3788. .navbar-expand-sm .navbar-collapse {
  3789. display: flex !important;
  3790. flex-basis: auto;
  3791. }
  3792. .navbar-expand-sm .navbar-toggler {
  3793. display: none;
  3794. }
  3795. .navbar-expand-sm .offcanvas {
  3796. position: static;
  3797. z-index: auto;
  3798. flex-grow: 1;
  3799. width: auto !important;
  3800. height: auto !important;
  3801. visibility: visible !important;
  3802. background-color: transparent !important;
  3803. border: 0 !important;
  3804. transform: none !important;
  3805. box-shadow: none;
  3806. transition: none;
  3807. }
  3808. .navbar-expand-sm .offcanvas .offcanvas-header {
  3809. display: none;
  3810. }
  3811. .navbar-expand-sm .offcanvas .offcanvas-body {
  3812. display: flex;
  3813. flex-grow: 0;
  3814. padding: 0;
  3815. overflow-y: visible;
  3816. }
  3817. }
  3818. @media (min-width: 768px) {
  3819. .navbar-expand-md {
  3820. flex-wrap: nowrap;
  3821. justify-content: flex-start;
  3822. }
  3823. .navbar-expand-md .navbar-nav {
  3824. flex-direction: row;
  3825. }
  3826. .navbar-expand-md .navbar-nav .dropdown-menu {
  3827. position: absolute;
  3828. }
  3829. .navbar-expand-md .navbar-nav .nav-link {
  3830. padding-left: var(--bs-navbar-nav-link-padding-x);
  3831. padding-right: var(--bs-navbar-nav-link-padding-x);
  3832. }
  3833. .navbar-expand-md .navbar-nav-scroll {
  3834. overflow: visible;
  3835. }
  3836. .navbar-expand-md .navbar-collapse {
  3837. display: flex !important;
  3838. flex-basis: auto;
  3839. }
  3840. .navbar-expand-md .navbar-toggler {
  3841. display: none;
  3842. }
  3843. .navbar-expand-md .offcanvas {
  3844. position: static;
  3845. z-index: auto;
  3846. flex-grow: 1;
  3847. width: auto !important;
  3848. height: auto !important;
  3849. visibility: visible !important;
  3850. background-color: transparent !important;
  3851. border: 0 !important;
  3852. transform: none !important;
  3853. box-shadow: none;
  3854. transition: none;
  3855. }
  3856. .navbar-expand-md .offcanvas .offcanvas-header {
  3857. display: none;
  3858. }
  3859. .navbar-expand-md .offcanvas .offcanvas-body {
  3860. display: flex;
  3861. flex-grow: 0;
  3862. padding: 0;
  3863. overflow-y: visible;
  3864. }
  3865. }
  3866. @media (min-width: 992px) {
  3867. .navbar-expand-lg {
  3868. flex-wrap: nowrap;
  3869. justify-content: flex-start;
  3870. }
  3871. .navbar-expand-lg .navbar-nav {
  3872. flex-direction: row;
  3873. }
  3874. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3875. position: absolute;
  3876. }
  3877. .navbar-expand-lg .navbar-nav .nav-link {
  3878. padding-left: var(--bs-navbar-nav-link-padding-x);
  3879. padding-right: var(--bs-navbar-nav-link-padding-x);
  3880. }
  3881. .navbar-expand-lg .navbar-nav-scroll {
  3882. overflow: visible;
  3883. }
  3884. .navbar-expand-lg .navbar-collapse {
  3885. display: flex !important;
  3886. flex-basis: auto;
  3887. }
  3888. .navbar-expand-lg .navbar-toggler {
  3889. display: none;
  3890. }
  3891. .navbar-expand-lg .offcanvas {
  3892. position: static;
  3893. z-index: auto;
  3894. flex-grow: 1;
  3895. width: auto !important;
  3896. height: auto !important;
  3897. visibility: visible !important;
  3898. background-color: transparent !important;
  3899. border: 0 !important;
  3900. transform: none !important;
  3901. box-shadow: none;
  3902. transition: none;
  3903. }
  3904. .navbar-expand-lg .offcanvas .offcanvas-header {
  3905. display: none;
  3906. }
  3907. .navbar-expand-lg .offcanvas .offcanvas-body {
  3908. display: flex;
  3909. flex-grow: 0;
  3910. padding: 0;
  3911. overflow-y: visible;
  3912. }
  3913. }
  3914. @media (min-width: 1200px) {
  3915. .navbar-expand-xl {
  3916. flex-wrap: nowrap;
  3917. justify-content: flex-start;
  3918. }
  3919. .navbar-expand-xl .navbar-nav {
  3920. flex-direction: row;
  3921. }
  3922. .navbar-expand-xl .navbar-nav .dropdown-menu {
  3923. position: absolute;
  3924. }
  3925. .navbar-expand-xl .navbar-nav .nav-link {
  3926. padding-left: var(--bs-navbar-nav-link-padding-x);
  3927. padding-right: var(--bs-navbar-nav-link-padding-x);
  3928. }
  3929. .navbar-expand-xl .navbar-nav-scroll {
  3930. overflow: visible;
  3931. }
  3932. .navbar-expand-xl .navbar-collapse {
  3933. display: flex !important;
  3934. flex-basis: auto;
  3935. }
  3936. .navbar-expand-xl .navbar-toggler {
  3937. display: none;
  3938. }
  3939. .navbar-expand-xl .offcanvas {
  3940. position: static;
  3941. z-index: auto;
  3942. flex-grow: 1;
  3943. width: auto !important;
  3944. height: auto !important;
  3945. visibility: visible !important;
  3946. background-color: transparent !important;
  3947. border: 0 !important;
  3948. transform: none !important;
  3949. box-shadow: none;
  3950. transition: none;
  3951. }
  3952. .navbar-expand-xl .offcanvas .offcanvas-header {
  3953. display: none;
  3954. }
  3955. .navbar-expand-xl .offcanvas .offcanvas-body {
  3956. display: flex;
  3957. flex-grow: 0;
  3958. padding: 0;
  3959. overflow-y: visible;
  3960. }
  3961. }
  3962. @media (min-width: 1400px) {
  3963. .navbar-expand-xxl {
  3964. flex-wrap: nowrap;
  3965. justify-content: flex-start;
  3966. }
  3967. .navbar-expand-xxl .navbar-nav {
  3968. flex-direction: row;
  3969. }
  3970. .navbar-expand-xxl .navbar-nav .dropdown-menu {
  3971. position: absolute;
  3972. }
  3973. .navbar-expand-xxl .navbar-nav .nav-link {
  3974. padding-left: var(--bs-navbar-nav-link-padding-x);
  3975. padding-right: var(--bs-navbar-nav-link-padding-x);
  3976. }
  3977. .navbar-expand-xxl .navbar-nav-scroll {
  3978. overflow: visible;
  3979. }
  3980. .navbar-expand-xxl .navbar-collapse {
  3981. display: flex !important;
  3982. flex-basis: auto;
  3983. }
  3984. .navbar-expand-xxl .navbar-toggler {
  3985. display: none;
  3986. }
  3987. .navbar-expand-xxl .offcanvas {
  3988. position: static;
  3989. z-index: auto;
  3990. flex-grow: 1;
  3991. width: auto !important;
  3992. height: auto !important;
  3993. visibility: visible !important;
  3994. background-color: transparent !important;
  3995. border: 0 !important;
  3996. transform: none !important;
  3997. box-shadow: none;
  3998. transition: none;
  3999. }
  4000. .navbar-expand-xxl .offcanvas .offcanvas-header {
  4001. display: none;
  4002. }
  4003. .navbar-expand-xxl .offcanvas .offcanvas-body {
  4004. display: flex;
  4005. flex-grow: 0;
  4006. padding: 0;
  4007. overflow-y: visible;
  4008. }
  4009. }
  4010. .navbar-expand {
  4011. flex-wrap: nowrap;
  4012. justify-content: flex-start;
  4013. }
  4014. .navbar-expand .navbar-nav {
  4015. flex-direction: row;
  4016. }
  4017. .navbar-expand .navbar-nav .dropdown-menu {
  4018. position: absolute;
  4019. }
  4020. .navbar-expand .navbar-nav .nav-link {
  4021. padding-left: var(--bs-navbar-nav-link-padding-x);
  4022. padding-right: var(--bs-navbar-nav-link-padding-x);
  4023. }
  4024. .navbar-expand .navbar-nav-scroll {
  4025. overflow: visible;
  4026. }
  4027. .navbar-expand .navbar-collapse {
  4028. display: flex !important;
  4029. flex-basis: auto;
  4030. }
  4031. .navbar-expand .navbar-toggler {
  4032. display: none;
  4033. }
  4034. .navbar-expand .offcanvas {
  4035. position: static;
  4036. z-index: auto;
  4037. flex-grow: 1;
  4038. width: auto !important;
  4039. height: auto !important;
  4040. visibility: visible !important;
  4041. background-color: transparent !important;
  4042. border: 0 !important;
  4043. transform: none !important;
  4044. box-shadow: none;
  4045. transition: none;
  4046. }
  4047. .navbar-expand .offcanvas .offcanvas-header {
  4048. display: none;
  4049. }
  4050. .navbar-expand .offcanvas .offcanvas-body {
  4051. display: flex;
  4052. flex-grow: 0;
  4053. padding: 0;
  4054. overflow-y: visible;
  4055. }
  4056. .navbar-dark,
  4057. .navbar[data-bs-theme=dark] {
  4058. --bs-navbar-color: rgba(255, 255, 255, 0.55);
  4059. --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  4060. --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  4061. --bs-navbar-active-color: #fff;
  4062. --bs-navbar-brand-color: #fff;
  4063. --bs-navbar-brand-hover-color: #fff;
  4064. --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  4065. --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");
  4066. }
  4067. [data-bs-theme=dark] .navbar-toggler-icon {
  4068. --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");
  4069. }
  4070. .card {
  4071. --bs-card-spacer-y: 1rem;
  4072. --bs-card-spacer-x: 1rem;
  4073. --bs-card-title-spacer-y: 0.5rem;
  4074. --bs-card-title-color: ;
  4075. --bs-card-subtitle-color: ;
  4076. --bs-card-border-width: var(--bs-border-width);
  4077. --bs-card-border-color: var(--bs-border-color-translucent);
  4078. --bs-card-border-radius: var(--bs-border-radius);
  4079. --bs-card-box-shadow: ;
  4080. --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  4081. --bs-card-cap-padding-y: 0.5rem;
  4082. --bs-card-cap-padding-x: 1rem;
  4083. --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  4084. --bs-card-cap-color: ;
  4085. --bs-card-height: ;
  4086. --bs-card-color: ;
  4087. --bs-card-bg: var(--bs-body-bg);
  4088. --bs-card-img-overlay-padding: 1rem;
  4089. --bs-card-group-margin: 0.75rem;
  4090. position: relative;
  4091. display: flex;
  4092. flex-direction: column;
  4093. min-width: 0;
  4094. height: var(--bs-card-height);
  4095. color: var(--bs-body-color);
  4096. word-wrap: break-word;
  4097. background-color: var(--bs-card-bg);
  4098. background-clip: border-box;
  4099. border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4100. border-radius: var(--bs-card-border-radius);
  4101. box-shadow: var(--bs-card-box-shadow);
  4102. }
  4103. .card > hr {
  4104. margin-left: 0;
  4105. margin-right: 0;
  4106. }
  4107. .card > .list-group {
  4108. border-top: inherit;
  4109. border-bottom: inherit;
  4110. }
  4111. .card > .list-group:first-child {
  4112. border-top-width: 0;
  4113. border-top-right-radius: var(--bs-card-inner-border-radius);
  4114. border-top-left-radius: var(--bs-card-inner-border-radius);
  4115. }
  4116. .card > .list-group:last-child {
  4117. border-bottom-width: 0;
  4118. border-bottom-left-radius: var(--bs-card-inner-border-radius);
  4119. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  4120. }
  4121. .card > .card-header + .list-group,
  4122. .card > .list-group + .card-footer {
  4123. border-top: 0;
  4124. }
  4125. .card-body {
  4126. flex: 1 1 auto;
  4127. padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  4128. color: var(--bs-card-color);
  4129. }
  4130. .card-title {
  4131. margin-bottom: var(--bs-card-title-spacer-y);
  4132. color: var(--bs-card-title-color);
  4133. }
  4134. .card-subtitle {
  4135. margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  4136. margin-bottom: 0;
  4137. color: var(--bs-card-subtitle-color);
  4138. }
  4139. .card-text:last-child {
  4140. margin-bottom: 0;
  4141. }
  4142. .card-link + .card-link {
  4143. margin-right: var(--bs-card-spacer-x);
  4144. }
  4145. .card-header {
  4146. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  4147. margin-bottom: 0;
  4148. color: var(--bs-card-cap-color);
  4149. background-color: var(--bs-card-cap-bg);
  4150. border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4151. }
  4152. .card-header:first-child {
  4153. border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
  4154. }
  4155. .card-footer {
  4156. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  4157. color: var(--bs-card-cap-color);
  4158. background-color: var(--bs-card-cap-bg);
  4159. border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4160. }
  4161. .card-footer:last-child {
  4162. border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
  4163. }
  4164. .card-header-tabs {
  4165. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4166. margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  4167. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4168. border-bottom: 0;
  4169. }
  4170. .card-header-tabs .nav-link.active {
  4171. background-color: var(--bs-card-bg);
  4172. border-bottom-color: var(--bs-card-bg);
  4173. }
  4174. .card-header-pills {
  4175. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4176. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4177. }
  4178. .card-img-overlay {
  4179. position: absolute;
  4180. top: 0;
  4181. left: 0;
  4182. bottom: 0;
  4183. right: 0;
  4184. padding: var(--bs-card-img-overlay-padding);
  4185. border-radius: var(--bs-card-inner-border-radius);
  4186. }
  4187. .card-img,
  4188. .card-img-top,
  4189. .card-img-bottom {
  4190. width: 100%;
  4191. }
  4192. .card-img,
  4193. .card-img-top {
  4194. border-top-right-radius: var(--bs-card-inner-border-radius);
  4195. border-top-left-radius: var(--bs-card-inner-border-radius);
  4196. }
  4197. .card-img,
  4198. .card-img-bottom {
  4199. border-bottom-left-radius: var(--bs-card-inner-border-radius);
  4200. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  4201. }
  4202. .card-group > .card {
  4203. margin-bottom: var(--bs-card-group-margin);
  4204. }
  4205. @media (min-width: 576px) {
  4206. .card-group {
  4207. display: flex;
  4208. flex-flow: row wrap;
  4209. }
  4210. .card-group > .card {
  4211. flex: 1 0 0;
  4212. margin-bottom: 0;
  4213. }
  4214. .card-group > .card + .card {
  4215. margin-right: 0;
  4216. border-right: 0;
  4217. }
  4218. .card-group > .card:not(:last-child) {
  4219. border-top-left-radius: 0;
  4220. border-bottom-left-radius: 0;
  4221. }
  4222. .card-group > .card:not(:last-child) > .card-img-top,
  4223. .card-group > .card:not(:last-child) > .card-header {
  4224. border-top-left-radius: 0;
  4225. }
  4226. .card-group > .card:not(:last-child) > .card-img-bottom,
  4227. .card-group > .card:not(:last-child) > .card-footer {
  4228. border-bottom-left-radius: 0;
  4229. }
  4230. .card-group > .card:not(:first-child) {
  4231. border-top-right-radius: 0;
  4232. border-bottom-right-radius: 0;
  4233. }
  4234. .card-group > .card:not(:first-child) > .card-img-top,
  4235. .card-group > .card:not(:first-child) > .card-header {
  4236. border-top-right-radius: 0;
  4237. }
  4238. .card-group > .card:not(:first-child) > .card-img-bottom,
  4239. .card-group > .card:not(:first-child) > .card-footer {
  4240. border-bottom-right-radius: 0;
  4241. }
  4242. }
  4243. .accordion {
  4244. --bs-accordion-color: var(--bs-body-color);
  4245. --bs-accordion-bg: var(--bs-body-bg);
  4246. --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;
  4247. --bs-accordion-border-color: var(--bs-border-color);
  4248. --bs-accordion-border-width: var(--bs-border-width);
  4249. --bs-accordion-border-radius: var(--bs-border-radius);
  4250. --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  4251. --bs-accordion-btn-padding-x: 1.25rem;
  4252. --bs-accordion-btn-padding-y: 1rem;
  4253. --bs-accordion-btn-color: var(--bs-body-color);
  4254. --bs-accordion-btn-bg: var(--bs-accordion-bg);
  4255. --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 5 6 6 6-6'/%3e%3c/svg%3e");
  4256. --bs-accordion-btn-icon-width: 1.25rem;
  4257. --bs-accordion-btn-icon-transform: rotate(-180deg);
  4258. --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  4259. --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='rgb%285.2, 44, 101.2%29' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  4260. --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4261. --bs-accordion-body-padding-x: 1.25rem;
  4262. --bs-accordion-body-padding-y: 1rem;
  4263. --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  4264. --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
  4265. }
  4266. .accordion-button {
  4267. position: relative;
  4268. display: flex;
  4269. align-items: center;
  4270. width: 100%;
  4271. padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  4272. font-size: 1rem;
  4273. color: var(--bs-accordion-btn-color);
  4274. text-align: right;
  4275. background-color: var(--bs-accordion-btn-bg);
  4276. border: 0;
  4277. border-radius: 0;
  4278. overflow-anchor: none;
  4279. transition: var(--bs-accordion-transition);
  4280. }
  4281. @media (prefers-reduced-motion: reduce) {
  4282. .accordion-button {
  4283. transition: none;
  4284. }
  4285. }
  4286. .accordion-button:not(.collapsed) {
  4287. color: var(--bs-accordion-active-color);
  4288. background-color: var(--bs-accordion-active-bg);
  4289. box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  4290. }
  4291. .accordion-button:not(.collapsed)::after {
  4292. background-image: var(--bs-accordion-btn-active-icon);
  4293. transform: var(--bs-accordion-btn-icon-transform);
  4294. }
  4295. .accordion-button::after {
  4296. flex-shrink: 0;
  4297. width: var(--bs-accordion-btn-icon-width);
  4298. height: var(--bs-accordion-btn-icon-width);
  4299. margin-right: auto;
  4300. content: "";
  4301. background-image: var(--bs-accordion-btn-icon);
  4302. background-repeat: no-repeat;
  4303. background-size: var(--bs-accordion-btn-icon-width);
  4304. transition: var(--bs-accordion-btn-icon-transition);
  4305. }
  4306. @media (prefers-reduced-motion: reduce) {
  4307. .accordion-button::after {
  4308. transition: none;
  4309. }
  4310. }
  4311. .accordion-button:hover {
  4312. z-index: 2;
  4313. }
  4314. .accordion-button:focus {
  4315. z-index: 3;
  4316. outline: 0;
  4317. box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  4318. }
  4319. .accordion-header {
  4320. margin-bottom: 0;
  4321. }
  4322. .accordion-item {
  4323. color: var(--bs-accordion-color);
  4324. background-color: var(--bs-accordion-bg);
  4325. border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
  4326. }
  4327. .accordion-item:first-of-type {
  4328. border-top-right-radius: var(--bs-accordion-border-radius);
  4329. border-top-left-radius: var(--bs-accordion-border-radius);
  4330. }
  4331. .accordion-item:first-of-type > .accordion-header .accordion-button {
  4332. border-top-right-radius: var(--bs-accordion-inner-border-radius);
  4333. border-top-left-radius: var(--bs-accordion-inner-border-radius);
  4334. }
  4335. .accordion-item:not(:first-of-type) {
  4336. border-top: 0;
  4337. }
  4338. .accordion-item:last-of-type {
  4339. border-bottom-left-radius: var(--bs-accordion-border-radius);
  4340. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4341. }
  4342. .accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  4343. border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
  4344. border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  4345. }
  4346. .accordion-item:last-of-type > .accordion-collapse {
  4347. border-bottom-left-radius: var(--bs-accordion-border-radius);
  4348. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4349. }
  4350. .accordion-body {
  4351. padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  4352. }
  4353. .accordion-flush > .accordion-item {
  4354. border-left: 0;
  4355. border-right: 0;
  4356. border-radius: 0;
  4357. }
  4358. .accordion-flush > .accordion-item:first-child {
  4359. border-top: 0;
  4360. }
  4361. .accordion-flush > .accordion-item:last-child {
  4362. border-bottom: 0;
  4363. }
  4364. .accordion-flush > .accordion-item > .accordion-collapse,
  4365. .accordion-flush > .accordion-item > .accordion-header .accordion-button,
  4366. .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  4367. border-radius: 0;
  4368. }
  4369. [data-bs-theme=dark] .accordion-button::after {
  4370. --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%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-.708'/%3e%3c/svg%3e");
  4371. --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%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-.708'/%3e%3c/svg%3e");
  4372. }
  4373. .breadcrumb {
  4374. --bs-breadcrumb-padding-x: 0;
  4375. --bs-breadcrumb-padding-y: 0;
  4376. --bs-breadcrumb-margin-bottom: 1rem;
  4377. --bs-breadcrumb-bg: ;
  4378. --bs-breadcrumb-border-radius: ;
  4379. --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  4380. --bs-breadcrumb-item-padding-x: 0.5rem;
  4381. --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  4382. display: flex;
  4383. flex-wrap: wrap;
  4384. padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  4385. margin-bottom: var(--bs-breadcrumb-margin-bottom);
  4386. font-size: var(--bs-breadcrumb-font-size);
  4387. list-style: none;
  4388. background-color: var(--bs-breadcrumb-bg);
  4389. border-radius: var(--bs-breadcrumb-border-radius);
  4390. }
  4391. .breadcrumb-item + .breadcrumb-item {
  4392. padding-right: var(--bs-breadcrumb-item-padding-x);
  4393. }
  4394. .breadcrumb-item + .breadcrumb-item::before {
  4395. float: right;
  4396. padding-left: var(--bs-breadcrumb-item-padding-x);
  4397. color: var(--bs-breadcrumb-divider-color);
  4398. content: var(--bs-breadcrumb-divider, "/") ;
  4399. }
  4400. .breadcrumb-item.active {
  4401. color: var(--bs-breadcrumb-item-active-color);
  4402. }
  4403. .pagination {
  4404. --bs-pagination-padding-x: 0.75rem;
  4405. --bs-pagination-padding-y: 0.375rem;
  4406. --bs-pagination-font-size: 1rem;
  4407. --bs-pagination-color: var(--bs-link-color);
  4408. --bs-pagination-bg: var(--bs-body-bg);
  4409. --bs-pagination-border-width: var(--bs-border-width);
  4410. --bs-pagination-border-color: var(--bs-border-color);
  4411. --bs-pagination-border-radius: var(--bs-border-radius);
  4412. --bs-pagination-hover-color: var(--bs-link-hover-color);
  4413. --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  4414. --bs-pagination-hover-border-color: var(--bs-border-color);
  4415. --bs-pagination-focus-color: var(--bs-link-hover-color);
  4416. --bs-pagination-focus-bg: var(--bs-secondary-bg);
  4417. --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4418. --bs-pagination-active-color: #fff;
  4419. --bs-pagination-active-bg: #0d6efd;
  4420. --bs-pagination-active-border-color: #0d6efd;
  4421. --bs-pagination-disabled-color: var(--bs-secondary-color);
  4422. --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  4423. --bs-pagination-disabled-border-color: var(--bs-border-color);
  4424. display: flex;
  4425. padding-right: 0;
  4426. list-style: none;
  4427. }
  4428. .page-link {
  4429. position: relative;
  4430. display: block;
  4431. padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  4432. font-size: var(--bs-pagination-font-size);
  4433. color: var(--bs-pagination-color);
  4434. text-decoration: none;
  4435. background-color: var(--bs-pagination-bg);
  4436. border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  4437. 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;
  4438. }
  4439. @media (prefers-reduced-motion: reduce) {
  4440. .page-link {
  4441. transition: none;
  4442. }
  4443. }
  4444. .page-link:hover {
  4445. z-index: 2;
  4446. color: var(--bs-pagination-hover-color);
  4447. background-color: var(--bs-pagination-hover-bg);
  4448. border-color: var(--bs-pagination-hover-border-color);
  4449. }
  4450. .page-link:focus {
  4451. z-index: 3;
  4452. color: var(--bs-pagination-focus-color);
  4453. background-color: var(--bs-pagination-focus-bg);
  4454. outline: 0;
  4455. box-shadow: var(--bs-pagination-focus-box-shadow);
  4456. }
  4457. .page-link.active, .active > .page-link {
  4458. z-index: 3;
  4459. color: var(--bs-pagination-active-color);
  4460. background-color: var(--bs-pagination-active-bg);
  4461. border-color: var(--bs-pagination-active-border-color);
  4462. }
  4463. .page-link.disabled, .disabled > .page-link {
  4464. color: var(--bs-pagination-disabled-color);
  4465. pointer-events: none;
  4466. background-color: var(--bs-pagination-disabled-bg);
  4467. border-color: var(--bs-pagination-disabled-border-color);
  4468. }
  4469. .page-item:not(:first-child) .page-link {
  4470. margin-right: calc(-1 * var(--bs-border-width));
  4471. }
  4472. .page-item:first-child .page-link {
  4473. border-top-right-radius: var(--bs-pagination-border-radius);
  4474. border-bottom-right-radius: var(--bs-pagination-border-radius);
  4475. }
  4476. .page-item:last-child .page-link {
  4477. border-top-left-radius: var(--bs-pagination-border-radius);
  4478. border-bottom-left-radius: var(--bs-pagination-border-radius);
  4479. }
  4480. .pagination-lg {
  4481. --bs-pagination-padding-x: 1.5rem;
  4482. --bs-pagination-padding-y: 0.75rem;
  4483. --bs-pagination-font-size: 1.25rem;
  4484. --bs-pagination-border-radius: var(--bs-border-radius-lg);
  4485. }
  4486. .pagination-sm {
  4487. --bs-pagination-padding-x: 0.5rem;
  4488. --bs-pagination-padding-y: 0.25rem;
  4489. --bs-pagination-font-size: 0.875rem;
  4490. --bs-pagination-border-radius: var(--bs-border-radius-sm);
  4491. }
  4492. .badge {
  4493. --bs-badge-padding-x: 0.65em;
  4494. --bs-badge-padding-y: 0.35em;
  4495. --bs-badge-font-size: 0.75em;
  4496. --bs-badge-font-weight: 700;
  4497. --bs-badge-color: #fff;
  4498. --bs-badge-border-radius: var(--bs-border-radius);
  4499. display: inline-block;
  4500. padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  4501. font-size: var(--bs-badge-font-size);
  4502. font-weight: var(--bs-badge-font-weight);
  4503. line-height: 1;
  4504. color: var(--bs-badge-color);
  4505. text-align: center;
  4506. white-space: nowrap;
  4507. vertical-align: baseline;
  4508. border-radius: var(--bs-badge-border-radius);
  4509. }
  4510. .badge:empty {
  4511. display: none;
  4512. }
  4513. .btn .badge {
  4514. position: relative;
  4515. top: -1px;
  4516. }
  4517. .alert {
  4518. --bs-alert-bg: transparent;
  4519. --bs-alert-padding-x: 1rem;
  4520. --bs-alert-padding-y: 1rem;
  4521. --bs-alert-margin-bottom: 1rem;
  4522. --bs-alert-color: inherit;
  4523. --bs-alert-border-color: transparent;
  4524. --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  4525. --bs-alert-border-radius: var(--bs-border-radius);
  4526. --bs-alert-link-color: inherit;
  4527. position: relative;
  4528. padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  4529. margin-bottom: var(--bs-alert-margin-bottom);
  4530. color: var(--bs-alert-color);
  4531. background-color: var(--bs-alert-bg);
  4532. border: var(--bs-alert-border);
  4533. border-radius: var(--bs-alert-border-radius);
  4534. }
  4535. .alert-heading {
  4536. color: inherit;
  4537. }
  4538. .alert-link {
  4539. font-weight: 700;
  4540. color: var(--bs-alert-link-color);
  4541. }
  4542. .alert-dismissible {
  4543. padding-left: 3rem;
  4544. }
  4545. .alert-dismissible .btn-close {
  4546. position: absolute;
  4547. top: 0;
  4548. left: 0;
  4549. z-index: 2;
  4550. padding: 1.25rem 1rem;
  4551. }
  4552. .alert-primary {
  4553. --bs-alert-color: var(--bs-primary-text-emphasis);
  4554. --bs-alert-bg: var(--bs-primary-bg-subtle);
  4555. --bs-alert-border-color: var(--bs-primary-border-subtle);
  4556. --bs-alert-link-color: var(--bs-primary-text-emphasis);
  4557. }
  4558. .alert-secondary {
  4559. --bs-alert-color: var(--bs-secondary-text-emphasis);
  4560. --bs-alert-bg: var(--bs-secondary-bg-subtle);
  4561. --bs-alert-border-color: var(--bs-secondary-border-subtle);
  4562. --bs-alert-link-color: var(--bs-secondary-text-emphasis);
  4563. }
  4564. .alert-success {
  4565. --bs-alert-color: var(--bs-success-text-emphasis);
  4566. --bs-alert-bg: var(--bs-success-bg-subtle);
  4567. --bs-alert-border-color: var(--bs-success-border-subtle);
  4568. --bs-alert-link-color: var(--bs-success-text-emphasis);
  4569. }
  4570. .alert-info {
  4571. --bs-alert-color: var(--bs-info-text-emphasis);
  4572. --bs-alert-bg: var(--bs-info-bg-subtle);
  4573. --bs-alert-border-color: var(--bs-info-border-subtle);
  4574. --bs-alert-link-color: var(--bs-info-text-emphasis);
  4575. }
  4576. .alert-warning {
  4577. --bs-alert-color: var(--bs-warning-text-emphasis);
  4578. --bs-alert-bg: var(--bs-warning-bg-subtle);
  4579. --bs-alert-border-color: var(--bs-warning-border-subtle);
  4580. --bs-alert-link-color: var(--bs-warning-text-emphasis);
  4581. }
  4582. .alert-danger {
  4583. --bs-alert-color: var(--bs-danger-text-emphasis);
  4584. --bs-alert-bg: var(--bs-danger-bg-subtle);
  4585. --bs-alert-border-color: var(--bs-danger-border-subtle);
  4586. --bs-alert-link-color: var(--bs-danger-text-emphasis);
  4587. }
  4588. .alert-light {
  4589. --bs-alert-color: var(--bs-light-text-emphasis);
  4590. --bs-alert-bg: var(--bs-light-bg-subtle);
  4591. --bs-alert-border-color: var(--bs-light-border-subtle);
  4592. --bs-alert-link-color: var(--bs-light-text-emphasis);
  4593. }
  4594. .alert-dark {
  4595. --bs-alert-color: var(--bs-dark-text-emphasis);
  4596. --bs-alert-bg: var(--bs-dark-bg-subtle);
  4597. --bs-alert-border-color: var(--bs-dark-border-subtle);
  4598. --bs-alert-link-color: var(--bs-dark-text-emphasis);
  4599. }
  4600. @keyframes progress-bar-stripes {
  4601. 0% {
  4602. background-position-x: var(--bs-progress-height);
  4603. }
  4604. }
  4605. .progress,
  4606. .progress-stacked {
  4607. --bs-progress-height: 1rem;
  4608. --bs-progress-font-size: 0.75rem;
  4609. --bs-progress-bg: var(--bs-secondary-bg);
  4610. --bs-progress-border-radius: var(--bs-border-radius);
  4611. --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  4612. --bs-progress-bar-color: #fff;
  4613. --bs-progress-bar-bg: #0d6efd;
  4614. --bs-progress-bar-transition: width 0.6s ease;
  4615. display: flex;
  4616. height: var(--bs-progress-height);
  4617. overflow: hidden;
  4618. font-size: var(--bs-progress-font-size);
  4619. background-color: var(--bs-progress-bg);
  4620. border-radius: var(--bs-progress-border-radius);
  4621. box-shadow: var(--bs-progress-box-shadow);
  4622. }
  4623. .progress-bar {
  4624. display: flex;
  4625. flex-direction: column;
  4626. justify-content: center;
  4627. overflow: hidden;
  4628. color: var(--bs-progress-bar-color);
  4629. text-align: center;
  4630. white-space: nowrap;
  4631. background-color: var(--bs-progress-bar-bg);
  4632. transition: var(--bs-progress-bar-transition);
  4633. }
  4634. @media (prefers-reduced-motion: reduce) {
  4635. .progress-bar {
  4636. transition: none;
  4637. }
  4638. }
  4639. .progress-bar-striped {
  4640. background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  4641. background-size: var(--bs-progress-height) var(--bs-progress-height);
  4642. }
  4643. .progress-stacked > .progress {
  4644. overflow: visible;
  4645. }
  4646. .progress-stacked > .progress > .progress-bar {
  4647. width: 100%;
  4648. }
  4649. .progress-bar-animated {
  4650. animation: 1s linear infinite progress-bar-stripes;
  4651. }
  4652. @media (prefers-reduced-motion: reduce) {
  4653. .progress-bar-animated {
  4654. animation: none;
  4655. }
  4656. }
  4657. .list-group {
  4658. --bs-list-group-color: var(--bs-body-color);
  4659. --bs-list-group-bg: var(--bs-body-bg);
  4660. --bs-list-group-border-color: var(--bs-border-color);
  4661. --bs-list-group-border-width: var(--bs-border-width);
  4662. --bs-list-group-border-radius: var(--bs-border-radius);
  4663. --bs-list-group-item-padding-x: 1rem;
  4664. --bs-list-group-item-padding-y: 0.5rem;
  4665. --bs-list-group-action-color: var(--bs-secondary-color);
  4666. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4667. --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  4668. --bs-list-group-action-active-color: var(--bs-body-color);
  4669. --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  4670. --bs-list-group-disabled-color: var(--bs-secondary-color);
  4671. --bs-list-group-disabled-bg: var(--bs-body-bg);
  4672. --bs-list-group-active-color: #fff;
  4673. --bs-list-group-active-bg: #0d6efd;
  4674. --bs-list-group-active-border-color: #0d6efd;
  4675. display: flex;
  4676. flex-direction: column;
  4677. padding-right: 0;
  4678. margin-bottom: 0;
  4679. border-radius: var(--bs-list-group-border-radius);
  4680. }
  4681. .list-group-numbered {
  4682. list-style-type: none;
  4683. counter-reset: section;
  4684. }
  4685. .list-group-numbered > .list-group-item::before {
  4686. content: counters(section, ".") ". ";
  4687. counter-increment: section;
  4688. }
  4689. .list-group-item {
  4690. position: relative;
  4691. display: block;
  4692. padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  4693. color: var(--bs-list-group-color);
  4694. text-decoration: none;
  4695. background-color: var(--bs-list-group-bg);
  4696. border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
  4697. }
  4698. .list-group-item:first-child {
  4699. border-top-right-radius: inherit;
  4700. border-top-left-radius: inherit;
  4701. }
  4702. .list-group-item:last-child {
  4703. border-bottom-left-radius: inherit;
  4704. border-bottom-right-radius: inherit;
  4705. }
  4706. .list-group-item.disabled, .list-group-item:disabled {
  4707. color: var(--bs-list-group-disabled-color);
  4708. pointer-events: none;
  4709. background-color: var(--bs-list-group-disabled-bg);
  4710. }
  4711. .list-group-item.active {
  4712. z-index: 2;
  4713. color: var(--bs-list-group-active-color);
  4714. background-color: var(--bs-list-group-active-bg);
  4715. border-color: var(--bs-list-group-active-border-color);
  4716. }
  4717. .list-group-item + .list-group-item {
  4718. border-top-width: 0;
  4719. }
  4720. .list-group-item + .list-group-item.active {
  4721. margin-top: calc(-1 * var(--bs-list-group-border-width));
  4722. border-top-width: var(--bs-list-group-border-width);
  4723. }
  4724. .list-group-item-action {
  4725. width: 100%;
  4726. color: var(--bs-list-group-action-color);
  4727. text-align: inherit;
  4728. }
  4729. .list-group-item-action:not(.active):hover, .list-group-item-action:not(.active):focus {
  4730. z-index: 1;
  4731. color: var(--bs-list-group-action-hover-color);
  4732. text-decoration: none;
  4733. background-color: var(--bs-list-group-action-hover-bg);
  4734. }
  4735. .list-group-item-action:not(.active):active {
  4736. color: var(--bs-list-group-action-active-color);
  4737. background-color: var(--bs-list-group-action-active-bg);
  4738. }
  4739. .list-group-horizontal {
  4740. flex-direction: row;
  4741. }
  4742. .list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  4743. border-bottom-right-radius: var(--bs-list-group-border-radius);
  4744. border-top-left-radius: 0;
  4745. }
  4746. .list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  4747. border-top-left-radius: var(--bs-list-group-border-radius);
  4748. border-bottom-right-radius: 0;
  4749. }
  4750. .list-group-horizontal > .list-group-item.active {
  4751. margin-top: 0;
  4752. }
  4753. .list-group-horizontal > .list-group-item + .list-group-item {
  4754. border-top-width: var(--bs-list-group-border-width);
  4755. border-right-width: 0;
  4756. }
  4757. .list-group-horizontal > .list-group-item + .list-group-item.active {
  4758. margin-right: calc(-1 * var(--bs-list-group-border-width));
  4759. border-right-width: var(--bs-list-group-border-width);
  4760. }
  4761. @media (min-width: 576px) {
  4762. .list-group-horizontal-sm {
  4763. flex-direction: row;
  4764. }
  4765. .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
  4766. border-bottom-right-radius: var(--bs-list-group-border-radius);
  4767. border-top-left-radius: 0;
  4768. }
  4769. .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
  4770. border-top-left-radius: var(--bs-list-group-border-radius);
  4771. border-bottom-right-radius: 0;
  4772. }
  4773. .list-group-horizontal-sm > .list-group-item.active {
  4774. margin-top: 0;
  4775. }
  4776. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  4777. border-top-width: var(--bs-list-group-border-width);
  4778. border-right-width: 0;
  4779. }
  4780. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  4781. margin-right: calc(-1 * var(--bs-list-group-border-width));
  4782. border-right-width: var(--bs-list-group-border-width);
  4783. }
  4784. }
  4785. @media (min-width: 768px) {
  4786. .list-group-horizontal-md {
  4787. flex-direction: row;
  4788. }
  4789. .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
  4790. border-bottom-right-radius: var(--bs-list-group-border-radius);
  4791. border-top-left-radius: 0;
  4792. }
  4793. .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
  4794. border-top-left-radius: var(--bs-list-group-border-radius);
  4795. border-bottom-right-radius: 0;
  4796. }
  4797. .list-group-horizontal-md > .list-group-item.active {
  4798. margin-top: 0;
  4799. }
  4800. .list-group-horizontal-md > .list-group-item + .list-group-item {
  4801. border-top-width: var(--bs-list-group-border-width);
  4802. border-right-width: 0;
  4803. }
  4804. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  4805. margin-right: calc(-1 * var(--bs-list-group-border-width));
  4806. border-right-width: var(--bs-list-group-border-width);
  4807. }
  4808. }
  4809. @media (min-width: 992px) {
  4810. .list-group-horizontal-lg {
  4811. flex-direction: row;
  4812. }
  4813. .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
  4814. border-bottom-right-radius: var(--bs-list-group-border-radius);
  4815. border-top-left-radius: 0;
  4816. }
  4817. .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
  4818. border-top-left-radius: var(--bs-list-group-border-radius);
  4819. border-bottom-right-radius: 0;
  4820. }
  4821. .list-group-horizontal-lg > .list-group-item.active {
  4822. margin-top: 0;
  4823. }
  4824. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  4825. border-top-width: var(--bs-list-group-border-width);
  4826. border-right-width: 0;
  4827. }
  4828. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  4829. margin-right: calc(-1 * var(--bs-list-group-border-width));
  4830. border-right-width: var(--bs-list-group-border-width);
  4831. }
  4832. }
  4833. @media (min-width: 1200px) {
  4834. .list-group-horizontal-xl {
  4835. flex-direction: row;
  4836. }
  4837. .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
  4838. border-bottom-right-radius: var(--bs-list-group-border-radius);
  4839. border-top-left-radius: 0;
  4840. }
  4841. .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
  4842. border-top-left-radius: var(--bs-list-group-border-radius);
  4843. border-bottom-right-radius: 0;
  4844. }
  4845. .list-group-horizontal-xl > .list-group-item.active {
  4846. margin-top: 0;
  4847. }
  4848. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  4849. border-top-width: var(--bs-list-group-border-width);
  4850. border-right-width: 0;
  4851. }
  4852. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  4853. margin-right: calc(-1 * var(--bs-list-group-border-width));
  4854. border-right-width: var(--bs-list-group-border-width);
  4855. }
  4856. }
  4857. @media (min-width: 1400px) {
  4858. .list-group-horizontal-xxl {
  4859. flex-direction: row;
  4860. }
  4861. .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
  4862. border-bottom-right-radius: var(--bs-list-group-border-radius);
  4863. border-top-left-radius: 0;
  4864. }
  4865. .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
  4866. border-top-left-radius: var(--bs-list-group-border-radius);
  4867. border-bottom-right-radius: 0;
  4868. }
  4869. .list-group-horizontal-xxl > .list-group-item.active {
  4870. margin-top: 0;
  4871. }
  4872. .list-group-horizontal-xxl > .list-group-item + .list-group-item {
  4873. border-top-width: var(--bs-list-group-border-width);
  4874. border-right-width: 0;
  4875. }
  4876. .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
  4877. margin-right: calc(-1 * var(--bs-list-group-border-width));
  4878. border-right-width: var(--bs-list-group-border-width);
  4879. }
  4880. }
  4881. .list-group-flush {
  4882. border-radius: 0;
  4883. }
  4884. .list-group-flush > .list-group-item {
  4885. border-width: 0 0 var(--bs-list-group-border-width);
  4886. }
  4887. .list-group-flush > .list-group-item:last-child {
  4888. border-bottom-width: 0;
  4889. }
  4890. .list-group-item-primary {
  4891. --bs-list-group-color: var(--bs-primary-text-emphasis);
  4892. --bs-list-group-bg: var(--bs-primary-bg-subtle);
  4893. --bs-list-group-border-color: var(--bs-primary-border-subtle);
  4894. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4895. --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  4896. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4897. --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  4898. --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  4899. --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  4900. --bs-list-group-active-border-color: var(--bs-primary-text-emphasis);
  4901. }
  4902. .list-group-item-secondary {
  4903. --bs-list-group-color: var(--bs-secondary-text-emphasis);
  4904. --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  4905. --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  4906. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4907. --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  4908. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4909. --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  4910. --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  4911. --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  4912. --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
  4913. }
  4914. .list-group-item-success {
  4915. --bs-list-group-color: var(--bs-success-text-emphasis);
  4916. --bs-list-group-bg: var(--bs-success-bg-subtle);
  4917. --bs-list-group-border-color: var(--bs-success-border-subtle);
  4918. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4919. --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  4920. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4921. --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  4922. --bs-list-group-active-color: var(--bs-success-bg-subtle);
  4923. --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  4924. --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
  4925. }
  4926. .list-group-item-info {
  4927. --bs-list-group-color: var(--bs-info-text-emphasis);
  4928. --bs-list-group-bg: var(--bs-info-bg-subtle);
  4929. --bs-list-group-border-color: var(--bs-info-border-subtle);
  4930. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4931. --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  4932. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4933. --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  4934. --bs-list-group-active-color: var(--bs-info-bg-subtle);
  4935. --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  4936. --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
  4937. }
  4938. .list-group-item-warning {
  4939. --bs-list-group-color: var(--bs-warning-text-emphasis);
  4940. --bs-list-group-bg: var(--bs-warning-bg-subtle);
  4941. --bs-list-group-border-color: var(--bs-warning-border-subtle);
  4942. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4943. --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  4944. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4945. --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  4946. --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  4947. --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  4948. --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
  4949. }
  4950. .list-group-item-danger {
  4951. --bs-list-group-color: var(--bs-danger-text-emphasis);
  4952. --bs-list-group-bg: var(--bs-danger-bg-subtle);
  4953. --bs-list-group-border-color: var(--bs-danger-border-subtle);
  4954. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4955. --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  4956. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4957. --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  4958. --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  4959. --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  4960. --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
  4961. }
  4962. .list-group-item-light {
  4963. --bs-list-group-color: var(--bs-light-text-emphasis);
  4964. --bs-list-group-bg: var(--bs-light-bg-subtle);
  4965. --bs-list-group-border-color: var(--bs-light-border-subtle);
  4966. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4967. --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  4968. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4969. --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  4970. --bs-list-group-active-color: var(--bs-light-bg-subtle);
  4971. --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  4972. --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
  4973. }
  4974. .list-group-item-dark {
  4975. --bs-list-group-color: var(--bs-dark-text-emphasis);
  4976. --bs-list-group-bg: var(--bs-dark-bg-subtle);
  4977. --bs-list-group-border-color: var(--bs-dark-border-subtle);
  4978. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4979. --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  4980. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4981. --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  4982. --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  4983. --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  4984. --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
  4985. }
  4986. .btn-close {
  4987. --bs-btn-close-color: #000;
  4988. --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.414'/%3e%3c/svg%3e");
  4989. --bs-btn-close-opacity: 0.5;
  4990. --bs-btn-close-hover-opacity: 0.75;
  4991. --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4992. --bs-btn-close-focus-opacity: 1;
  4993. --bs-btn-close-disabled-opacity: 0.25;
  4994. box-sizing: content-box;
  4995. width: 1em;
  4996. height: 1em;
  4997. padding: 0.25em 0.25em;
  4998. color: var(--bs-btn-close-color);
  4999. background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  5000. filter: var(--bs-btn-close-filter);
  5001. border: 0;
  5002. border-radius: 0.375rem;
  5003. opacity: var(--bs-btn-close-opacity);
  5004. }
  5005. .btn-close:hover {
  5006. color: var(--bs-btn-close-color);
  5007. text-decoration: none;
  5008. opacity: var(--bs-btn-close-hover-opacity);
  5009. }
  5010. .btn-close:focus {
  5011. outline: 0;
  5012. box-shadow: var(--bs-btn-close-focus-shadow);
  5013. opacity: var(--bs-btn-close-focus-opacity);
  5014. }
  5015. .btn-close:disabled, .btn-close.disabled {
  5016. pointer-events: none;
  5017. -webkit-user-select: none;
  5018. user-select: none;
  5019. opacity: var(--bs-btn-close-disabled-opacity);
  5020. }
  5021. .btn-close-white {
  5022. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  5023. }
  5024. :root,
  5025. [data-bs-theme=light] {
  5026. --bs-btn-close-filter: ;
  5027. }
  5028. [data-bs-theme=dark] {
  5029. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  5030. }
  5031. .toast {
  5032. --bs-toast-zindex: 1090;
  5033. --bs-toast-padding-x: 0.75rem;
  5034. --bs-toast-padding-y: 0.5rem;
  5035. --bs-toast-spacing: 1.5rem;
  5036. --bs-toast-max-width: 350px;
  5037. --bs-toast-font-size: 0.875rem;
  5038. --bs-toast-color: ;
  5039. --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  5040. --bs-toast-border-width: var(--bs-border-width);
  5041. --bs-toast-border-color: var(--bs-border-color-translucent);
  5042. --bs-toast-border-radius: var(--bs-border-radius);
  5043. --bs-toast-box-shadow: var(--bs-box-shadow);
  5044. --bs-toast-header-color: var(--bs-secondary-color);
  5045. --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  5046. --bs-toast-header-border-color: var(--bs-border-color-translucent);
  5047. width: var(--bs-toast-max-width);
  5048. max-width: 100%;
  5049. font-size: var(--bs-toast-font-size);
  5050. color: var(--bs-toast-color);
  5051. pointer-events: auto;
  5052. background-color: var(--bs-toast-bg);
  5053. background-clip: padding-box;
  5054. border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  5055. box-shadow: var(--bs-toast-box-shadow);
  5056. border-radius: var(--bs-toast-border-radius);
  5057. }
  5058. .toast.showing {
  5059. opacity: 0;
  5060. }
  5061. .toast:not(.show) {
  5062. display: none;
  5063. }
  5064. .toast-container {
  5065. --bs-toast-zindex: 1090;
  5066. position: absolute;
  5067. z-index: var(--bs-toast-zindex);
  5068. width: max-content;
  5069. max-width: 100%;
  5070. pointer-events: none;
  5071. }
  5072. .toast-container > :not(:last-child) {
  5073. margin-bottom: var(--bs-toast-spacing);
  5074. }
  5075. .toast-header {
  5076. display: flex;
  5077. align-items: center;
  5078. padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  5079. color: var(--bs-toast-header-color);
  5080. background-color: var(--bs-toast-header-bg);
  5081. background-clip: padding-box;
  5082. border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  5083. border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  5084. border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  5085. }
  5086. .toast-header .btn-close {
  5087. margin-left: calc(-0.5 * var(--bs-toast-padding-x));
  5088. margin-right: var(--bs-toast-padding-x);
  5089. }
  5090. .toast-body {
  5091. padding: var(--bs-toast-padding-x);
  5092. word-wrap: break-word;
  5093. }
  5094. .modal {
  5095. --bs-modal-zindex: 1055;
  5096. --bs-modal-width: 500px;
  5097. --bs-modal-padding: 1rem;
  5098. --bs-modal-margin: 0.5rem;
  5099. --bs-modal-color: var(--bs-body-color);
  5100. --bs-modal-bg: var(--bs-body-bg);
  5101. --bs-modal-border-color: var(--bs-border-color-translucent);
  5102. --bs-modal-border-width: var(--bs-border-width);
  5103. --bs-modal-border-radius: var(--bs-border-radius-lg);
  5104. --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  5105. --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  5106. --bs-modal-header-padding-x: 1rem;
  5107. --bs-modal-header-padding-y: 1rem;
  5108. --bs-modal-header-padding: 1rem 1rem;
  5109. --bs-modal-header-border-color: var(--bs-border-color);
  5110. --bs-modal-header-border-width: var(--bs-border-width);
  5111. --bs-modal-title-line-height: 1.5;
  5112. --bs-modal-footer-gap: 0.5rem;
  5113. --bs-modal-footer-bg: ;
  5114. --bs-modal-footer-border-color: var(--bs-border-color);
  5115. --bs-modal-footer-border-width: var(--bs-border-width);
  5116. position: fixed;
  5117. top: 0;
  5118. right: 0;
  5119. z-index: var(--bs-modal-zindex);
  5120. display: none;
  5121. width: 100%;
  5122. height: 100%;
  5123. overflow-x: hidden;
  5124. overflow-y: auto;
  5125. outline: 0;
  5126. }
  5127. .modal-dialog {
  5128. position: relative;
  5129. width: auto;
  5130. margin: var(--bs-modal-margin);
  5131. pointer-events: none;
  5132. }
  5133. .modal.fade .modal-dialog {
  5134. transform: translate(0, -50px);
  5135. transition: transform 0.3s ease-out;
  5136. }
  5137. @media (prefers-reduced-motion: reduce) {
  5138. .modal.fade .modal-dialog {
  5139. transition: none;
  5140. }
  5141. }
  5142. .modal.show .modal-dialog {
  5143. transform: none;
  5144. }
  5145. .modal.modal-static .modal-dialog {
  5146. transform: scale(1.02);
  5147. }
  5148. .modal-dialog-scrollable {
  5149. height: calc(100% - var(--bs-modal-margin) * 2);
  5150. }
  5151. .modal-dialog-scrollable .modal-content {
  5152. max-height: 100%;
  5153. overflow: hidden;
  5154. }
  5155. .modal-dialog-scrollable .modal-body {
  5156. overflow-y: auto;
  5157. }
  5158. .modal-dialog-centered {
  5159. display: flex;
  5160. align-items: center;
  5161. min-height: calc(100% - var(--bs-modal-margin) * 2);
  5162. }
  5163. .modal-content {
  5164. position: relative;
  5165. display: flex;
  5166. flex-direction: column;
  5167. width: 100%;
  5168. color: var(--bs-modal-color);
  5169. pointer-events: auto;
  5170. background-color: var(--bs-modal-bg);
  5171. background-clip: padding-box;
  5172. border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  5173. border-radius: var(--bs-modal-border-radius);
  5174. box-shadow: var(--bs-modal-box-shadow);
  5175. outline: 0;
  5176. }
  5177. .modal-backdrop {
  5178. --bs-backdrop-zindex: 1050;
  5179. --bs-backdrop-bg: #000;
  5180. --bs-backdrop-opacity: 0.5;
  5181. position: fixed;
  5182. top: 0;
  5183. right: 0;
  5184. z-index: var(--bs-backdrop-zindex);
  5185. width: 100vw;
  5186. height: 100vh;
  5187. background-color: var(--bs-backdrop-bg);
  5188. }
  5189. .modal-backdrop.fade {
  5190. opacity: 0;
  5191. }
  5192. .modal-backdrop.show {
  5193. opacity: var(--bs-backdrop-opacity);
  5194. }
  5195. .modal-header {
  5196. display: flex;
  5197. flex-shrink: 0;
  5198. align-items: center;
  5199. padding: var(--bs-modal-header-padding);
  5200. border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  5201. border-top-right-radius: var(--bs-modal-inner-border-radius);
  5202. border-top-left-radius: var(--bs-modal-inner-border-radius);
  5203. }
  5204. .modal-header .btn-close {
  5205. padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  5206. margin-top: calc(-0.5 * var(--bs-modal-header-padding-y));
  5207. margin-left: calc(-0.5 * var(--bs-modal-header-padding-x));
  5208. margin-bottom: calc(-0.5 * var(--bs-modal-header-padding-y));
  5209. margin-right: auto;
  5210. }
  5211. .modal-title {
  5212. margin-bottom: 0;
  5213. line-height: var(--bs-modal-title-line-height);
  5214. }
  5215. .modal-body {
  5216. position: relative;
  5217. flex: 1 1 auto;
  5218. padding: var(--bs-modal-padding);
  5219. }
  5220. .modal-footer {
  5221. display: flex;
  5222. flex-shrink: 0;
  5223. flex-wrap: wrap;
  5224. align-items: center;
  5225. justify-content: flex-end;
  5226. padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  5227. background-color: var(--bs-modal-footer-bg);
  5228. border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  5229. border-bottom-left-radius: var(--bs-modal-inner-border-radius);
  5230. border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  5231. }
  5232. .modal-footer > * {
  5233. margin: calc(var(--bs-modal-footer-gap) * 0.5);
  5234. }
  5235. @media (min-width: 576px) {
  5236. .modal {
  5237. --bs-modal-margin: 1.75rem;
  5238. --bs-modal-box-shadow: var(--bs-box-shadow);
  5239. }
  5240. .modal-dialog {
  5241. max-width: var(--bs-modal-width);
  5242. margin-left: auto;
  5243. margin-right: auto;
  5244. }
  5245. .modal-sm {
  5246. --bs-modal-width: 300px;
  5247. }
  5248. }
  5249. @media (min-width: 992px) {
  5250. .modal-lg,
  5251. .modal-xl {
  5252. --bs-modal-width: 800px;
  5253. }
  5254. }
  5255. @media (min-width: 1200px) {
  5256. .modal-xl {
  5257. --bs-modal-width: 1140px;
  5258. }
  5259. }
  5260. .modal-fullscreen {
  5261. width: 100vw;
  5262. max-width: none;
  5263. height: 100%;
  5264. margin: 0;
  5265. }
  5266. .modal-fullscreen .modal-content {
  5267. height: 100%;
  5268. border: 0;
  5269. border-radius: 0;
  5270. }
  5271. .modal-fullscreen .modal-header,
  5272. .modal-fullscreen .modal-footer {
  5273. border-radius: 0;
  5274. }
  5275. .modal-fullscreen .modal-body {
  5276. overflow-y: auto;
  5277. }
  5278. @media (max-width: 575.98px) {
  5279. .modal-fullscreen-sm-down {
  5280. width: 100vw;
  5281. max-width: none;
  5282. height: 100%;
  5283. margin: 0;
  5284. }
  5285. .modal-fullscreen-sm-down .modal-content {
  5286. height: 100%;
  5287. border: 0;
  5288. border-radius: 0;
  5289. }
  5290. .modal-fullscreen-sm-down .modal-header,
  5291. .modal-fullscreen-sm-down .modal-footer {
  5292. border-radius: 0;
  5293. }
  5294. .modal-fullscreen-sm-down .modal-body {
  5295. overflow-y: auto;
  5296. }
  5297. }
  5298. @media (max-width: 767.98px) {
  5299. .modal-fullscreen-md-down {
  5300. width: 100vw;
  5301. max-width: none;
  5302. height: 100%;
  5303. margin: 0;
  5304. }
  5305. .modal-fullscreen-md-down .modal-content {
  5306. height: 100%;
  5307. border: 0;
  5308. border-radius: 0;
  5309. }
  5310. .modal-fullscreen-md-down .modal-header,
  5311. .modal-fullscreen-md-down .modal-footer {
  5312. border-radius: 0;
  5313. }
  5314. .modal-fullscreen-md-down .modal-body {
  5315. overflow-y: auto;
  5316. }
  5317. }
  5318. @media (max-width: 991.98px) {
  5319. .modal-fullscreen-lg-down {
  5320. width: 100vw;
  5321. max-width: none;
  5322. height: 100%;
  5323. margin: 0;
  5324. }
  5325. .modal-fullscreen-lg-down .modal-content {
  5326. height: 100%;
  5327. border: 0;
  5328. border-radius: 0;
  5329. }
  5330. .modal-fullscreen-lg-down .modal-header,
  5331. .modal-fullscreen-lg-down .modal-footer {
  5332. border-radius: 0;
  5333. }
  5334. .modal-fullscreen-lg-down .modal-body {
  5335. overflow-y: auto;
  5336. }
  5337. }
  5338. @media (max-width: 1199.98px) {
  5339. .modal-fullscreen-xl-down {
  5340. width: 100vw;
  5341. max-width: none;
  5342. height: 100%;
  5343. margin: 0;
  5344. }
  5345. .modal-fullscreen-xl-down .modal-content {
  5346. height: 100%;
  5347. border: 0;
  5348. border-radius: 0;
  5349. }
  5350. .modal-fullscreen-xl-down .modal-header,
  5351. .modal-fullscreen-xl-down .modal-footer {
  5352. border-radius: 0;
  5353. }
  5354. .modal-fullscreen-xl-down .modal-body {
  5355. overflow-y: auto;
  5356. }
  5357. }
  5358. @media (max-width: 1399.98px) {
  5359. .modal-fullscreen-xxl-down {
  5360. width: 100vw;
  5361. max-width: none;
  5362. height: 100%;
  5363. margin: 0;
  5364. }
  5365. .modal-fullscreen-xxl-down .modal-content {
  5366. height: 100%;
  5367. border: 0;
  5368. border-radius: 0;
  5369. }
  5370. .modal-fullscreen-xxl-down .modal-header,
  5371. .modal-fullscreen-xxl-down .modal-footer {
  5372. border-radius: 0;
  5373. }
  5374. .modal-fullscreen-xxl-down .modal-body {
  5375. overflow-y: auto;
  5376. }
  5377. }
  5378. .tooltip {
  5379. --bs-tooltip-zindex: 1080;
  5380. --bs-tooltip-max-width: 200px;
  5381. --bs-tooltip-padding-x: 0.5rem;
  5382. --bs-tooltip-padding-y: 0.25rem;
  5383. --bs-tooltip-margin: ;
  5384. --bs-tooltip-font-size: 0.875rem;
  5385. --bs-tooltip-color: var(--bs-body-bg);
  5386. --bs-tooltip-bg: var(--bs-emphasis-color);
  5387. --bs-tooltip-border-radius: var(--bs-border-radius);
  5388. --bs-tooltip-opacity: 0.9;
  5389. --bs-tooltip-arrow-width: 0.8rem;
  5390. --bs-tooltip-arrow-height: 0.4rem;
  5391. z-index: var(--bs-tooltip-zindex);
  5392. display: block;
  5393. margin: var(--bs-tooltip-margin);
  5394. font-family: var(--bs-font-sans-serif);
  5395. font-style: normal;
  5396. font-weight: 400;
  5397. line-height: 1.5;
  5398. text-align: right;
  5399. text-align: start;
  5400. text-decoration: none;
  5401. text-shadow: none;
  5402. text-transform: none;
  5403. letter-spacing: normal;
  5404. word-break: normal;
  5405. white-space: normal;
  5406. word-spacing: normal;
  5407. line-break: auto;
  5408. font-size: var(--bs-tooltip-font-size);
  5409. word-wrap: break-word;
  5410. opacity: 0;
  5411. }
  5412. .tooltip.show {
  5413. opacity: var(--bs-tooltip-opacity);
  5414. }
  5415. .tooltip .tooltip-arrow {
  5416. display: block;
  5417. width: var(--bs-tooltip-arrow-width);
  5418. height: var(--bs-tooltip-arrow-height);
  5419. }
  5420. .tooltip .tooltip-arrow::before {
  5421. position: absolute;
  5422. content: "";
  5423. border-color: transparent;
  5424. border-style: solid;
  5425. }
  5426. .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  5427. bottom: calc(-1 * var(--bs-tooltip-arrow-height));
  5428. }
  5429. .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  5430. top: -1px;
  5431. border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5432. border-top-color: var(--bs-tooltip-bg);
  5433. }
  5434. .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  5435. left: calc(-1 * var(--bs-tooltip-arrow-height));
  5436. width: var(--bs-tooltip-arrow-height);
  5437. height: var(--bs-tooltip-arrow-width);
  5438. }
  5439. .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  5440. right: -1px;
  5441. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5442. border-right-color: var(--bs-tooltip-bg);
  5443. }
  5444. .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  5445. top: calc(-1 * var(--bs-tooltip-arrow-height));
  5446. }
  5447. .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  5448. bottom: -1px;
  5449. border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5450. border-bottom-color: var(--bs-tooltip-bg);
  5451. }
  5452. .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  5453. right: calc(-1 * var(--bs-tooltip-arrow-height));
  5454. width: var(--bs-tooltip-arrow-height);
  5455. height: var(--bs-tooltip-arrow-width);
  5456. }
  5457. .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  5458. left: -1px;
  5459. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5460. border-left-color: var(--bs-tooltip-bg);
  5461. }
  5462. .tooltip-inner {
  5463. max-width: var(--bs-tooltip-max-width);
  5464. padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  5465. color: var(--bs-tooltip-color);
  5466. text-align: center;
  5467. background-color: var(--bs-tooltip-bg);
  5468. border-radius: var(--bs-tooltip-border-radius);
  5469. }
  5470. .popover {
  5471. --bs-popover-zindex: 1070;
  5472. --bs-popover-max-width: 276px;
  5473. --bs-popover-font-size: 0.875rem;
  5474. --bs-popover-bg: var(--bs-body-bg);
  5475. --bs-popover-border-width: var(--bs-border-width);
  5476. --bs-popover-border-color: var(--bs-border-color-translucent);
  5477. --bs-popover-border-radius: var(--bs-border-radius-lg);
  5478. --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
  5479. --bs-popover-box-shadow: var(--bs-box-shadow);
  5480. --bs-popover-header-padding-x: 1rem;
  5481. --bs-popover-header-padding-y: 0.5rem;
  5482. --bs-popover-header-font-size: 1rem;
  5483. --bs-popover-header-color: inherit;
  5484. --bs-popover-header-bg: var(--bs-secondary-bg);
  5485. --bs-popover-body-padding-x: 1rem;
  5486. --bs-popover-body-padding-y: 1rem;
  5487. --bs-popover-body-color: var(--bs-body-color);
  5488. --bs-popover-arrow-width: 1rem;
  5489. --bs-popover-arrow-height: 0.5rem;
  5490. --bs-popover-arrow-border: var(--bs-popover-border-color);
  5491. z-index: var(--bs-popover-zindex);
  5492. display: block;
  5493. max-width: var(--bs-popover-max-width);
  5494. font-family: var(--bs-font-sans-serif);
  5495. font-style: normal;
  5496. font-weight: 400;
  5497. line-height: 1.5;
  5498. text-align: right;
  5499. text-align: start;
  5500. text-decoration: none;
  5501. text-shadow: none;
  5502. text-transform: none;
  5503. letter-spacing: normal;
  5504. word-break: normal;
  5505. white-space: normal;
  5506. word-spacing: normal;
  5507. line-break: auto;
  5508. font-size: var(--bs-popover-font-size);
  5509. word-wrap: break-word;
  5510. background-color: var(--bs-popover-bg);
  5511. background-clip: padding-box;
  5512. border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5513. border-radius: var(--bs-popover-border-radius);
  5514. box-shadow: var(--bs-popover-box-shadow);
  5515. }
  5516. .popover .popover-arrow {
  5517. display: block;
  5518. width: var(--bs-popover-arrow-width);
  5519. height: var(--bs-popover-arrow-height);
  5520. }
  5521. .popover .popover-arrow::before, .popover .popover-arrow::after {
  5522. position: absolute;
  5523. display: block;
  5524. content: "";
  5525. border-color: transparent;
  5526. border-style: solid;
  5527. border-width: 0;
  5528. }
  5529. .bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  5530. bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5531. }
  5532. .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  5533. border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  5534. }
  5535. .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  5536. bottom: 0;
  5537. border-top-color: var(--bs-popover-arrow-border);
  5538. }
  5539. .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  5540. bottom: var(--bs-popover-border-width);
  5541. border-top-color: var(--bs-popover-bg);
  5542. }
  5543. .bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  5544. left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5545. width: var(--bs-popover-arrow-height);
  5546. height: var(--bs-popover-arrow-width);
  5547. }
  5548. .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  5549. border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  5550. }
  5551. .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  5552. left: 0;
  5553. border-right-color: var(--bs-popover-arrow-border);
  5554. }
  5555. .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  5556. left: var(--bs-popover-border-width);
  5557. border-right-color: var(--bs-popover-bg);
  5558. }
  5559. .bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  5560. top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5561. }
  5562. .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  5563. border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  5564. }
  5565. .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  5566. top: 0;
  5567. border-bottom-color: var(--bs-popover-arrow-border);
  5568. }
  5569. .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  5570. top: var(--bs-popover-border-width);
  5571. border-bottom-color: var(--bs-popover-bg);
  5572. }
  5573. .bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  5574. position: absolute;
  5575. top: 0;
  5576. right: 50%;
  5577. display: block;
  5578. width: var(--bs-popover-arrow-width);
  5579. margin-right: calc(-0.5 * var(--bs-popover-arrow-width));
  5580. content: "";
  5581. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
  5582. }
  5583. .bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  5584. right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5585. width: var(--bs-popover-arrow-height);
  5586. height: var(--bs-popover-arrow-width);
  5587. }
  5588. .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  5589. border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  5590. }
  5591. .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  5592. right: 0;
  5593. border-left-color: var(--bs-popover-arrow-border);
  5594. }
  5595. .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  5596. right: var(--bs-popover-border-width);
  5597. border-left-color: var(--bs-popover-bg);
  5598. }
  5599. .popover-header {
  5600. padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  5601. margin-bottom: 0;
  5602. font-size: var(--bs-popover-header-font-size);
  5603. color: var(--bs-popover-header-color);
  5604. background-color: var(--bs-popover-header-bg);
  5605. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5606. border-top-right-radius: var(--bs-popover-inner-border-radius);
  5607. border-top-left-radius: var(--bs-popover-inner-border-radius);
  5608. }
  5609. .popover-header:empty {
  5610. display: none;
  5611. }
  5612. .popover-body {
  5613. padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  5614. color: var(--bs-popover-body-color);
  5615. }
  5616. .carousel {
  5617. position: relative;
  5618. }
  5619. .carousel.pointer-event {
  5620. touch-action: pan-y;
  5621. }
  5622. .carousel-inner {
  5623. position: relative;
  5624. width: 100%;
  5625. overflow: hidden;
  5626. }
  5627. .carousel-inner::after {
  5628. display: block;
  5629. clear: both;
  5630. content: "";
  5631. }
  5632. .carousel-item {
  5633. position: relative;
  5634. display: none;
  5635. float: right;
  5636. width: 100%;
  5637. margin-left: -100%;
  5638. backface-visibility: hidden;
  5639. transition: transform 0.6s ease-in-out;
  5640. }
  5641. @media (prefers-reduced-motion: reduce) {
  5642. .carousel-item {
  5643. transition: none;
  5644. }
  5645. }
  5646. .carousel-item.active,
  5647. .carousel-item-next,
  5648. .carousel-item-prev {
  5649. display: block;
  5650. }
  5651. .carousel-item-next:not(.carousel-item-start),
  5652. .active.carousel-item-end {
  5653. transform: translateX(-100%);
  5654. }
  5655. .carousel-item-prev:not(.carousel-item-end),
  5656. .active.carousel-item-start {
  5657. transform: translateX(100%);
  5658. }
  5659. .carousel-fade .carousel-item {
  5660. opacity: 0;
  5661. transition-property: opacity;
  5662. transform: none;
  5663. }
  5664. .carousel-fade .carousel-item.active,
  5665. .carousel-fade .carousel-item-next.carousel-item-start,
  5666. .carousel-fade .carousel-item-prev.carousel-item-end {
  5667. z-index: 1;
  5668. opacity: 1;
  5669. }
  5670. .carousel-fade .active.carousel-item-start,
  5671. .carousel-fade .active.carousel-item-end {
  5672. z-index: 0;
  5673. opacity: 0;
  5674. transition: opacity 0s 0.6s;
  5675. }
  5676. @media (prefers-reduced-motion: reduce) {
  5677. .carousel-fade .active.carousel-item-start,
  5678. .carousel-fade .active.carousel-item-end {
  5679. transition: none;
  5680. }
  5681. }
  5682. .carousel-control-prev,
  5683. .carousel-control-next {
  5684. position: absolute;
  5685. top: 0;
  5686. bottom: 0;
  5687. z-index: 1;
  5688. display: flex;
  5689. align-items: center;
  5690. justify-content: center;
  5691. width: 15%;
  5692. padding: 0;
  5693. color: #fff;
  5694. text-align: center;
  5695. background: none;
  5696. filter: var(--bs-carousel-control-icon-filter);
  5697. border: 0;
  5698. opacity: 0.5;
  5699. transition: opacity 0.15s ease;
  5700. }
  5701. @media (prefers-reduced-motion: reduce) {
  5702. .carousel-control-prev,
  5703. .carousel-control-next {
  5704. transition: none;
  5705. }
  5706. }
  5707. .carousel-control-prev:hover, .carousel-control-prev:focus,
  5708. .carousel-control-next:hover,
  5709. .carousel-control-next:focus {
  5710. color: #fff;
  5711. text-decoration: none;
  5712. outline: 0;
  5713. opacity: 0.9;
  5714. }
  5715. .carousel-control-prev {
  5716. right: 0;
  5717. }
  5718. .carousel-control-next {
  5719. left: 0;
  5720. }
  5721. .carousel-control-prev-icon,
  5722. .carousel-control-next-icon {
  5723. display: inline-block;
  5724. width: 2rem;
  5725. height: 2rem;
  5726. background-repeat: no-repeat;
  5727. background-position: 50%;
  5728. background-size: 100% 100%;
  5729. }
  5730. .carousel-control-prev-icon {
  5731. 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-.708'/%3e%3c/svg%3e");
  5732. }
  5733. .carousel-control-next-icon {
  5734. 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 0'/%3e%3c/svg%3e");
  5735. }
  5736. .carousel-indicators {
  5737. position: absolute;
  5738. left: 0;
  5739. bottom: 0;
  5740. right: 0;
  5741. z-index: 2;
  5742. display: flex;
  5743. justify-content: center;
  5744. padding: 0;
  5745. margin-left: 15%;
  5746. margin-bottom: 1rem;
  5747. margin-right: 15%;
  5748. }
  5749. .carousel-indicators [data-bs-target] {
  5750. box-sizing: content-box;
  5751. flex: 0 1 auto;
  5752. width: 30px;
  5753. height: 3px;
  5754. padding: 0;
  5755. margin-left: 3px;
  5756. margin-right: 3px;
  5757. text-indent: -999px;
  5758. cursor: pointer;
  5759. background-color: var(--bs-carousel-indicator-active-bg);
  5760. background-clip: padding-box;
  5761. border: 0;
  5762. border-top: 10px solid transparent;
  5763. border-bottom: 10px solid transparent;
  5764. opacity: 0.5;
  5765. transition: opacity 0.6s ease;
  5766. }
  5767. @media (prefers-reduced-motion: reduce) {
  5768. .carousel-indicators [data-bs-target] {
  5769. transition: none;
  5770. }
  5771. }
  5772. .carousel-indicators .active {
  5773. opacity: 1;
  5774. }
  5775. .carousel-caption {
  5776. position: absolute;
  5777. left: 15%;
  5778. bottom: 1.25rem;
  5779. right: 15%;
  5780. padding-top: 1.25rem;
  5781. padding-bottom: 1.25rem;
  5782. color: var(--bs-carousel-caption-color);
  5783. text-align: center;
  5784. }
  5785. .carousel-dark {
  5786. --bs-carousel-indicator-active-bg: #000;
  5787. --bs-carousel-caption-color: #000;
  5788. --bs-carousel-control-icon-filter: invert(1) grayscale(100);
  5789. }
  5790. :root,
  5791. [data-bs-theme=light] {
  5792. --bs-carousel-indicator-active-bg: #fff;
  5793. --bs-carousel-caption-color: #fff;
  5794. --bs-carousel-control-icon-filter: ;
  5795. }
  5796. [data-bs-theme=dark] {
  5797. --bs-carousel-indicator-active-bg: #000;
  5798. --bs-carousel-caption-color: #000;
  5799. --bs-carousel-control-icon-filter: invert(1) grayscale(100);
  5800. }
  5801. .spinner-grow,
  5802. .spinner-border {
  5803. display: inline-block;
  5804. flex-shrink: 0;
  5805. width: var(--bs-spinner-width);
  5806. height: var(--bs-spinner-height);
  5807. vertical-align: var(--bs-spinner-vertical-align);
  5808. border-radius: 50%;
  5809. animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
  5810. }
  5811. @keyframes spinner-border {
  5812. to {
  5813. transform: rotate(360deg) ;
  5814. }
  5815. }
  5816. .spinner-border {
  5817. --bs-spinner-width: 2rem;
  5818. --bs-spinner-height: 2rem;
  5819. --bs-spinner-vertical-align: -0.125em;
  5820. --bs-spinner-border-width: 0.25em;
  5821. --bs-spinner-animation-speed: 0.75s;
  5822. --bs-spinner-animation-name: spinner-border;
  5823. border: var(--bs-spinner-border-width) solid currentcolor;
  5824. border-left-color: transparent;
  5825. }
  5826. .spinner-border-sm {
  5827. --bs-spinner-width: 1rem;
  5828. --bs-spinner-height: 1rem;
  5829. --bs-spinner-border-width: 0.2em;
  5830. }
  5831. @keyframes spinner-grow {
  5832. 0% {
  5833. transform: scale(0);
  5834. }
  5835. 50% {
  5836. opacity: 1;
  5837. transform: none;
  5838. }
  5839. }
  5840. .spinner-grow {
  5841. --bs-spinner-width: 2rem;
  5842. --bs-spinner-height: 2rem;
  5843. --bs-spinner-vertical-align: -0.125em;
  5844. --bs-spinner-animation-speed: 0.75s;
  5845. --bs-spinner-animation-name: spinner-grow;
  5846. background-color: currentcolor;
  5847. opacity: 0;
  5848. }
  5849. .spinner-grow-sm {
  5850. --bs-spinner-width: 1rem;
  5851. --bs-spinner-height: 1rem;
  5852. }
  5853. @media (prefers-reduced-motion: reduce) {
  5854. .spinner-border,
  5855. .spinner-grow {
  5856. --bs-spinner-animation-speed: 1.5s;
  5857. }
  5858. }
  5859. .offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  5860. --bs-offcanvas-zindex: 1045;
  5861. --bs-offcanvas-width: 400px;
  5862. --bs-offcanvas-height: 30vh;
  5863. --bs-offcanvas-padding-x: 1rem;
  5864. --bs-offcanvas-padding-y: 1rem;
  5865. --bs-offcanvas-color: var(--bs-body-color);
  5866. --bs-offcanvas-bg: var(--bs-body-bg);
  5867. --bs-offcanvas-border-width: var(--bs-border-width);
  5868. --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  5869. --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
  5870. --bs-offcanvas-transition: transform 0.3s ease-in-out;
  5871. --bs-offcanvas-title-line-height: 1.5;
  5872. }
  5873. @media (max-width: 575.98px) {
  5874. .offcanvas-sm {
  5875. position: fixed;
  5876. bottom: 0;
  5877. z-index: var(--bs-offcanvas-zindex);
  5878. display: flex;
  5879. flex-direction: column;
  5880. max-width: 100%;
  5881. color: var(--bs-offcanvas-color);
  5882. visibility: hidden;
  5883. background-color: var(--bs-offcanvas-bg);
  5884. background-clip: padding-box;
  5885. outline: 0;
  5886. box-shadow: var(--bs-offcanvas-box-shadow);
  5887. transition: var(--bs-offcanvas-transition);
  5888. }
  5889. }
  5890. @media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  5891. .offcanvas-sm {
  5892. transition: none;
  5893. }
  5894. }
  5895. @media (max-width: 575.98px) {
  5896. .offcanvas-sm.offcanvas-start {
  5897. top: 0;
  5898. right: 0;
  5899. width: var(--bs-offcanvas-width);
  5900. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5901. transform: translateX(100%);
  5902. }
  5903. .offcanvas-sm.offcanvas-end {
  5904. top: 0;
  5905. left: 0;
  5906. width: var(--bs-offcanvas-width);
  5907. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5908. transform: translateX(-100%);
  5909. }
  5910. .offcanvas-sm.offcanvas-top {
  5911. top: 0;
  5912. left: 0;
  5913. right: 0;
  5914. height: var(--bs-offcanvas-height);
  5915. max-height: 100%;
  5916. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5917. transform: translateY(-100%);
  5918. }
  5919. .offcanvas-sm.offcanvas-bottom {
  5920. left: 0;
  5921. right: 0;
  5922. height: var(--bs-offcanvas-height);
  5923. max-height: 100%;
  5924. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5925. transform: translateY(100%);
  5926. }
  5927. .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
  5928. transform: none;
  5929. }
  5930. .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
  5931. visibility: visible;
  5932. }
  5933. }
  5934. @media (min-width: 576px) {
  5935. .offcanvas-sm {
  5936. --bs-offcanvas-height: auto;
  5937. --bs-offcanvas-border-width: 0;
  5938. background-color: transparent !important;
  5939. }
  5940. .offcanvas-sm .offcanvas-header {
  5941. display: none;
  5942. }
  5943. .offcanvas-sm .offcanvas-body {
  5944. display: flex;
  5945. flex-grow: 0;
  5946. padding: 0;
  5947. overflow-y: visible;
  5948. background-color: transparent !important;
  5949. }
  5950. }
  5951. @media (max-width: 767.98px) {
  5952. .offcanvas-md {
  5953. position: fixed;
  5954. bottom: 0;
  5955. z-index: var(--bs-offcanvas-zindex);
  5956. display: flex;
  5957. flex-direction: column;
  5958. max-width: 100%;
  5959. color: var(--bs-offcanvas-color);
  5960. visibility: hidden;
  5961. background-color: var(--bs-offcanvas-bg);
  5962. background-clip: padding-box;
  5963. outline: 0;
  5964. box-shadow: var(--bs-offcanvas-box-shadow);
  5965. transition: var(--bs-offcanvas-transition);
  5966. }
  5967. }
  5968. @media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  5969. .offcanvas-md {
  5970. transition: none;
  5971. }
  5972. }
  5973. @media (max-width: 767.98px) {
  5974. .offcanvas-md.offcanvas-start {
  5975. top: 0;
  5976. right: 0;
  5977. width: var(--bs-offcanvas-width);
  5978. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5979. transform: translateX(100%);
  5980. }
  5981. .offcanvas-md.offcanvas-end {
  5982. top: 0;
  5983. left: 0;
  5984. width: var(--bs-offcanvas-width);
  5985. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5986. transform: translateX(-100%);
  5987. }
  5988. .offcanvas-md.offcanvas-top {
  5989. top: 0;
  5990. left: 0;
  5991. right: 0;
  5992. height: var(--bs-offcanvas-height);
  5993. max-height: 100%;
  5994. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5995. transform: translateY(-100%);
  5996. }
  5997. .offcanvas-md.offcanvas-bottom {
  5998. left: 0;
  5999. right: 0;
  6000. height: var(--bs-offcanvas-height);
  6001. max-height: 100%;
  6002. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6003. transform: translateY(100%);
  6004. }
  6005. .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
  6006. transform: none;
  6007. }
  6008. .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
  6009. visibility: visible;
  6010. }
  6011. }
  6012. @media (min-width: 768px) {
  6013. .offcanvas-md {
  6014. --bs-offcanvas-height: auto;
  6015. --bs-offcanvas-border-width: 0;
  6016. background-color: transparent !important;
  6017. }
  6018. .offcanvas-md .offcanvas-header {
  6019. display: none;
  6020. }
  6021. .offcanvas-md .offcanvas-body {
  6022. display: flex;
  6023. flex-grow: 0;
  6024. padding: 0;
  6025. overflow-y: visible;
  6026. background-color: transparent !important;
  6027. }
  6028. }
  6029. @media (max-width: 991.98px) {
  6030. .offcanvas-lg {
  6031. position: fixed;
  6032. bottom: 0;
  6033. z-index: var(--bs-offcanvas-zindex);
  6034. display: flex;
  6035. flex-direction: column;
  6036. max-width: 100%;
  6037. color: var(--bs-offcanvas-color);
  6038. visibility: hidden;
  6039. background-color: var(--bs-offcanvas-bg);
  6040. background-clip: padding-box;
  6041. outline: 0;
  6042. box-shadow: var(--bs-offcanvas-box-shadow);
  6043. transition: var(--bs-offcanvas-transition);
  6044. }
  6045. }
  6046. @media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  6047. .offcanvas-lg {
  6048. transition: none;
  6049. }
  6050. }
  6051. @media (max-width: 991.98px) {
  6052. .offcanvas-lg.offcanvas-start {
  6053. top: 0;
  6054. right: 0;
  6055. width: var(--bs-offcanvas-width);
  6056. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6057. transform: translateX(100%);
  6058. }
  6059. .offcanvas-lg.offcanvas-end {
  6060. top: 0;
  6061. left: 0;
  6062. width: var(--bs-offcanvas-width);
  6063. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6064. transform: translateX(-100%);
  6065. }
  6066. .offcanvas-lg.offcanvas-top {
  6067. top: 0;
  6068. left: 0;
  6069. right: 0;
  6070. height: var(--bs-offcanvas-height);
  6071. max-height: 100%;
  6072. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6073. transform: translateY(-100%);
  6074. }
  6075. .offcanvas-lg.offcanvas-bottom {
  6076. left: 0;
  6077. right: 0;
  6078. height: var(--bs-offcanvas-height);
  6079. max-height: 100%;
  6080. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6081. transform: translateY(100%);
  6082. }
  6083. .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
  6084. transform: none;
  6085. }
  6086. .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
  6087. visibility: visible;
  6088. }
  6089. }
  6090. @media (min-width: 992px) {
  6091. .offcanvas-lg {
  6092. --bs-offcanvas-height: auto;
  6093. --bs-offcanvas-border-width: 0;
  6094. background-color: transparent !important;
  6095. }
  6096. .offcanvas-lg .offcanvas-header {
  6097. display: none;
  6098. }
  6099. .offcanvas-lg .offcanvas-body {
  6100. display: flex;
  6101. flex-grow: 0;
  6102. padding: 0;
  6103. overflow-y: visible;
  6104. background-color: transparent !important;
  6105. }
  6106. }
  6107. @media (max-width: 1199.98px) {
  6108. .offcanvas-xl {
  6109. position: fixed;
  6110. bottom: 0;
  6111. z-index: var(--bs-offcanvas-zindex);
  6112. display: flex;
  6113. flex-direction: column;
  6114. max-width: 100%;
  6115. color: var(--bs-offcanvas-color);
  6116. visibility: hidden;
  6117. background-color: var(--bs-offcanvas-bg);
  6118. background-clip: padding-box;
  6119. outline: 0;
  6120. box-shadow: var(--bs-offcanvas-box-shadow);
  6121. transition: var(--bs-offcanvas-transition);
  6122. }
  6123. }
  6124. @media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  6125. .offcanvas-xl {
  6126. transition: none;
  6127. }
  6128. }
  6129. @media (max-width: 1199.98px) {
  6130. .offcanvas-xl.offcanvas-start {
  6131. top: 0;
  6132. right: 0;
  6133. width: var(--bs-offcanvas-width);
  6134. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6135. transform: translateX(100%);
  6136. }
  6137. .offcanvas-xl.offcanvas-end {
  6138. top: 0;
  6139. left: 0;
  6140. width: var(--bs-offcanvas-width);
  6141. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6142. transform: translateX(-100%);
  6143. }
  6144. .offcanvas-xl.offcanvas-top {
  6145. top: 0;
  6146. left: 0;
  6147. right: 0;
  6148. height: var(--bs-offcanvas-height);
  6149. max-height: 100%;
  6150. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6151. transform: translateY(-100%);
  6152. }
  6153. .offcanvas-xl.offcanvas-bottom {
  6154. left: 0;
  6155. right: 0;
  6156. height: var(--bs-offcanvas-height);
  6157. max-height: 100%;
  6158. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6159. transform: translateY(100%);
  6160. }
  6161. .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
  6162. transform: none;
  6163. }
  6164. .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
  6165. visibility: visible;
  6166. }
  6167. }
  6168. @media (min-width: 1200px) {
  6169. .offcanvas-xl {
  6170. --bs-offcanvas-height: auto;
  6171. --bs-offcanvas-border-width: 0;
  6172. background-color: transparent !important;
  6173. }
  6174. .offcanvas-xl .offcanvas-header {
  6175. display: none;
  6176. }
  6177. .offcanvas-xl .offcanvas-body {
  6178. display: flex;
  6179. flex-grow: 0;
  6180. padding: 0;
  6181. overflow-y: visible;
  6182. background-color: transparent !important;
  6183. }
  6184. }
  6185. @media (max-width: 1399.98px) {
  6186. .offcanvas-xxl {
  6187. position: fixed;
  6188. bottom: 0;
  6189. z-index: var(--bs-offcanvas-zindex);
  6190. display: flex;
  6191. flex-direction: column;
  6192. max-width: 100%;
  6193. color: var(--bs-offcanvas-color);
  6194. visibility: hidden;
  6195. background-color: var(--bs-offcanvas-bg);
  6196. background-clip: padding-box;
  6197. outline: 0;
  6198. box-shadow: var(--bs-offcanvas-box-shadow);
  6199. transition: var(--bs-offcanvas-transition);
  6200. }
  6201. }
  6202. @media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  6203. .offcanvas-xxl {
  6204. transition: none;
  6205. }
  6206. }
  6207. @media (max-width: 1399.98px) {
  6208. .offcanvas-xxl.offcanvas-start {
  6209. top: 0;
  6210. right: 0;
  6211. width: var(--bs-offcanvas-width);
  6212. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6213. transform: translateX(100%);
  6214. }
  6215. .offcanvas-xxl.offcanvas-end {
  6216. top: 0;
  6217. left: 0;
  6218. width: var(--bs-offcanvas-width);
  6219. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6220. transform: translateX(-100%);
  6221. }
  6222. .offcanvas-xxl.offcanvas-top {
  6223. top: 0;
  6224. left: 0;
  6225. right: 0;
  6226. height: var(--bs-offcanvas-height);
  6227. max-height: 100%;
  6228. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6229. transform: translateY(-100%);
  6230. }
  6231. .offcanvas-xxl.offcanvas-bottom {
  6232. left: 0;
  6233. right: 0;
  6234. height: var(--bs-offcanvas-height);
  6235. max-height: 100%;
  6236. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6237. transform: translateY(100%);
  6238. }
  6239. .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
  6240. transform: none;
  6241. }
  6242. .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
  6243. visibility: visible;
  6244. }
  6245. }
  6246. @media (min-width: 1400px) {
  6247. .offcanvas-xxl {
  6248. --bs-offcanvas-height: auto;
  6249. --bs-offcanvas-border-width: 0;
  6250. background-color: transparent !important;
  6251. }
  6252. .offcanvas-xxl .offcanvas-header {
  6253. display: none;
  6254. }
  6255. .offcanvas-xxl .offcanvas-body {
  6256. display: flex;
  6257. flex-grow: 0;
  6258. padding: 0;
  6259. overflow-y: visible;
  6260. background-color: transparent !important;
  6261. }
  6262. }
  6263. .offcanvas {
  6264. position: fixed;
  6265. bottom: 0;
  6266. z-index: var(--bs-offcanvas-zindex);
  6267. display: flex;
  6268. flex-direction: column;
  6269. max-width: 100%;
  6270. color: var(--bs-offcanvas-color);
  6271. visibility: hidden;
  6272. background-color: var(--bs-offcanvas-bg);
  6273. background-clip: padding-box;
  6274. outline: 0;
  6275. box-shadow: var(--bs-offcanvas-box-shadow);
  6276. transition: var(--bs-offcanvas-transition);
  6277. }
  6278. @media (prefers-reduced-motion: reduce) {
  6279. .offcanvas {
  6280. transition: none;
  6281. }
  6282. }
  6283. .offcanvas.offcanvas-start {
  6284. top: 0;
  6285. right: 0;
  6286. width: var(--bs-offcanvas-width);
  6287. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6288. transform: translateX(100%);
  6289. }
  6290. .offcanvas.offcanvas-end {
  6291. top: 0;
  6292. left: 0;
  6293. width: var(--bs-offcanvas-width);
  6294. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6295. transform: translateX(-100%);
  6296. }
  6297. .offcanvas.offcanvas-top {
  6298. top: 0;
  6299. left: 0;
  6300. right: 0;
  6301. height: var(--bs-offcanvas-height);
  6302. max-height: 100%;
  6303. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6304. transform: translateY(-100%);
  6305. }
  6306. .offcanvas.offcanvas-bottom {
  6307. left: 0;
  6308. right: 0;
  6309. height: var(--bs-offcanvas-height);
  6310. max-height: 100%;
  6311. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6312. transform: translateY(100%);
  6313. }
  6314. .offcanvas.showing, .offcanvas.show:not(.hiding) {
  6315. transform: none;
  6316. }
  6317. .offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  6318. visibility: visible;
  6319. }
  6320. .offcanvas-backdrop {
  6321. position: fixed;
  6322. top: 0;
  6323. right: 0;
  6324. z-index: 1040;
  6325. width: 100vw;
  6326. height: 100vh;
  6327. background-color: #000;
  6328. }
  6329. .offcanvas-backdrop.fade {
  6330. opacity: 0;
  6331. }
  6332. .offcanvas-backdrop.show {
  6333. opacity: 0.5;
  6334. }
  6335. .offcanvas-header {
  6336. display: flex;
  6337. align-items: center;
  6338. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6339. }
  6340. .offcanvas-header .btn-close {
  6341. padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  6342. margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  6343. margin-left: calc(-0.5 * var(--bs-offcanvas-padding-x));
  6344. margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
  6345. margin-right: auto;
  6346. }
  6347. .offcanvas-title {
  6348. margin-bottom: 0;
  6349. line-height: var(--bs-offcanvas-title-line-height);
  6350. }
  6351. .offcanvas-body {
  6352. flex-grow: 1;
  6353. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6354. overflow-y: auto;
  6355. }
  6356. .placeholder {
  6357. display: inline-block;
  6358. min-height: 1em;
  6359. vertical-align: middle;
  6360. cursor: wait;
  6361. background-color: currentcolor;
  6362. opacity: 0.5;
  6363. }
  6364. .placeholder.btn::before {
  6365. display: inline-block;
  6366. content: "";
  6367. }
  6368. .placeholder-xs {
  6369. min-height: 0.6em;
  6370. }
  6371. .placeholder-sm {
  6372. min-height: 0.8em;
  6373. }
  6374. .placeholder-lg {
  6375. min-height: 1.2em;
  6376. }
  6377. .placeholder-glow .placeholder {
  6378. animation: placeholder-glow 2s ease-in-out infinite;
  6379. }
  6380. @keyframes placeholder-glow {
  6381. 50% {
  6382. opacity: 0.2;
  6383. }
  6384. }
  6385. .placeholder-wave {
  6386. -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6387. mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6388. -webkit-mask-size: 200% 100%;
  6389. mask-size: 200% 100%;
  6390. animation: placeholder-wave 2s linear infinite;
  6391. }
  6392. @keyframes placeholder-wave {
  6393. 100% {
  6394. -webkit-mask-position: -200% 0%;
  6395. mask-position: -200% 0%;
  6396. }
  6397. }
  6398. .clearfix::after {
  6399. display: block;
  6400. clear: both;
  6401. content: "";
  6402. }
  6403. .text-bg-primary {
  6404. color: #fff !important;
  6405. background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
  6406. }
  6407. .text-bg-secondary {
  6408. color: #fff !important;
  6409. background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
  6410. }
  6411. .text-bg-success {
  6412. color: #fff !important;
  6413. background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
  6414. }
  6415. .text-bg-info {
  6416. color: #000 !important;
  6417. background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
  6418. }
  6419. .text-bg-warning {
  6420. color: #000 !important;
  6421. background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
  6422. }
  6423. .text-bg-danger {
  6424. color: #fff !important;
  6425. background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
  6426. }
  6427. .text-bg-light {
  6428. color: #000 !important;
  6429. background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
  6430. }
  6431. .text-bg-dark {
  6432. color: #fff !important;
  6433. background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
  6434. }
  6435. .link-primary {
  6436. color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  6437. text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6438. }
  6439. .link-primary:hover, .link-primary:focus {
  6440. color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  6441. text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
  6442. }
  6443. .link-secondary {
  6444. color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  6445. text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6446. }
  6447. .link-secondary:hover, .link-secondary:focus {
  6448. color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  6449. text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
  6450. }
  6451. .link-success {
  6452. color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  6453. text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6454. }
  6455. .link-success:hover, .link-success:focus {
  6456. color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
  6457. text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
  6458. }
  6459. .link-info {
  6460. color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  6461. text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6462. }
  6463. .link-info:hover, .link-info:focus {
  6464. color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  6465. text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
  6466. }
  6467. .link-warning {
  6468. color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  6469. text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6470. }
  6471. .link-warning:hover, .link-warning:focus {
  6472. color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  6473. text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
  6474. }
  6475. .link-danger {
  6476. color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  6477. text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6478. }
  6479. .link-danger:hover, .link-danger:focus {
  6480. color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  6481. text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
  6482. }
  6483. .link-light {
  6484. color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  6485. text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6486. }
  6487. .link-light:hover, .link-light:focus {
  6488. color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  6489. text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
  6490. }
  6491. .link-dark {
  6492. color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  6493. text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6494. }
  6495. .link-dark:hover, .link-dark:focus {
  6496. color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  6497. text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
  6498. }
  6499. .link-body-emphasis {
  6500. color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  6501. text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6502. }
  6503. .link-body-emphasis:hover, .link-body-emphasis:focus {
  6504. color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  6505. text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
  6506. }
  6507. .focus-ring:focus {
  6508. outline: 0;
  6509. 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);
  6510. }
  6511. .icon-link {
  6512. display: inline-flex;
  6513. gap: 0.375rem;
  6514. align-items: center;
  6515. text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  6516. text-underline-offset: 0.25em;
  6517. backface-visibility: hidden;
  6518. }
  6519. .icon-link > .bi {
  6520. flex-shrink: 0;
  6521. width: 1em;
  6522. height: 1em;
  6523. fill: currentcolor;
  6524. transition: 0.2s ease-in-out transform;
  6525. }
  6526. @media (prefers-reduced-motion: reduce) {
  6527. .icon-link > .bi {
  6528. transition: none;
  6529. }
  6530. }
  6531. .icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  6532. transform: var(--bs-icon-link-transform, translate3d(-0.25em, 0, 0));
  6533. }
  6534. .ratio {
  6535. position: relative;
  6536. width: 100%;
  6537. }
  6538. .ratio::before {
  6539. display: block;
  6540. padding-top: var(--bs-aspect-ratio);
  6541. content: "";
  6542. }
  6543. .ratio > * {
  6544. position: absolute;
  6545. top: 0;
  6546. right: 0;
  6547. width: 100%;
  6548. height: 100%;
  6549. }
  6550. .ratio-1x1 {
  6551. --bs-aspect-ratio: 100%;
  6552. }
  6553. .ratio-4x3 {
  6554. --bs-aspect-ratio: 75%;
  6555. }
  6556. .ratio-16x9 {
  6557. --bs-aspect-ratio: 56.25%;
  6558. }
  6559. .ratio-21x9 {
  6560. --bs-aspect-ratio: 42.8571428571%;
  6561. }
  6562. .fixed-top {
  6563. position: fixed;
  6564. top: 0;
  6565. left: 0;
  6566. right: 0;
  6567. z-index: 1030;
  6568. }
  6569. .fixed-bottom {
  6570. position: fixed;
  6571. left: 0;
  6572. bottom: 0;
  6573. right: 0;
  6574. z-index: 1030;
  6575. }
  6576. .sticky-top {
  6577. position: sticky;
  6578. top: 0;
  6579. z-index: 1020;
  6580. }
  6581. .sticky-bottom {
  6582. position: sticky;
  6583. bottom: 0;
  6584. z-index: 1020;
  6585. }
  6586. @media (min-width: 576px) {
  6587. .sticky-sm-top {
  6588. position: sticky;
  6589. top: 0;
  6590. z-index: 1020;
  6591. }
  6592. .sticky-sm-bottom {
  6593. position: sticky;
  6594. bottom: 0;
  6595. z-index: 1020;
  6596. }
  6597. }
  6598. @media (min-width: 768px) {
  6599. .sticky-md-top {
  6600. position: sticky;
  6601. top: 0;
  6602. z-index: 1020;
  6603. }
  6604. .sticky-md-bottom {
  6605. position: sticky;
  6606. bottom: 0;
  6607. z-index: 1020;
  6608. }
  6609. }
  6610. @media (min-width: 992px) {
  6611. .sticky-lg-top {
  6612. position: sticky;
  6613. top: 0;
  6614. z-index: 1020;
  6615. }
  6616. .sticky-lg-bottom {
  6617. position: sticky;
  6618. bottom: 0;
  6619. z-index: 1020;
  6620. }
  6621. }
  6622. @media (min-width: 1200px) {
  6623. .sticky-xl-top {
  6624. position: sticky;
  6625. top: 0;
  6626. z-index: 1020;
  6627. }
  6628. .sticky-xl-bottom {
  6629. position: sticky;
  6630. bottom: 0;
  6631. z-index: 1020;
  6632. }
  6633. }
  6634. @media (min-width: 1400px) {
  6635. .sticky-xxl-top {
  6636. position: sticky;
  6637. top: 0;
  6638. z-index: 1020;
  6639. }
  6640. .sticky-xxl-bottom {
  6641. position: sticky;
  6642. bottom: 0;
  6643. z-index: 1020;
  6644. }
  6645. }
  6646. .hstack {
  6647. display: flex;
  6648. flex-direction: row;
  6649. align-items: center;
  6650. align-self: stretch;
  6651. }
  6652. .vstack {
  6653. display: flex;
  6654. flex: 1 1 auto;
  6655. flex-direction: column;
  6656. align-self: stretch;
  6657. }
  6658. .visually-hidden,
  6659. .visually-hidden-focusable:not(:focus):not(:focus-within) {
  6660. width: 1px !important;
  6661. height: 1px !important;
  6662. padding: 0 !important;
  6663. margin: -1px !important;
  6664. overflow: hidden !important;
  6665. clip: rect(0, 0, 0, 0) !important;
  6666. white-space: nowrap !important;
  6667. border: 0 !important;
  6668. }
  6669. .visually-hidden:not(caption),
  6670. .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  6671. position: absolute !important;
  6672. }
  6673. .visually-hidden *,
  6674. .visually-hidden-focusable:not(:focus):not(:focus-within) * {
  6675. overflow: hidden !important;
  6676. }
  6677. .stretched-link::after {
  6678. position: absolute;
  6679. top: 0;
  6680. left: 0;
  6681. bottom: 0;
  6682. right: 0;
  6683. z-index: 1;
  6684. content: "";
  6685. }
  6686. .text-truncate {
  6687. overflow: hidden;
  6688. text-overflow: ellipsis;
  6689. white-space: nowrap;
  6690. }
  6691. .vr {
  6692. display: inline-block;
  6693. align-self: stretch;
  6694. width: var(--bs-border-width);
  6695. min-height: 1em;
  6696. background-color: currentcolor;
  6697. opacity: 0.25;
  6698. }
  6699. .align-baseline {
  6700. vertical-align: baseline !important;
  6701. }
  6702. .align-top {
  6703. vertical-align: top !important;
  6704. }
  6705. .align-middle {
  6706. vertical-align: middle !important;
  6707. }
  6708. .align-bottom {
  6709. vertical-align: bottom !important;
  6710. }
  6711. .align-text-bottom {
  6712. vertical-align: text-bottom !important;
  6713. }
  6714. .align-text-top {
  6715. vertical-align: text-top !important;
  6716. }
  6717. .float-start {
  6718. float: right !important;
  6719. }
  6720. .float-end {
  6721. float: left !important;
  6722. }
  6723. .float-none {
  6724. float: none !important;
  6725. }
  6726. .object-fit-contain {
  6727. -o-object-fit: contain !important;
  6728. object-fit: contain !important;
  6729. }
  6730. .object-fit-cover {
  6731. -o-object-fit: cover !important;
  6732. object-fit: cover !important;
  6733. }
  6734. .object-fit-fill {
  6735. -o-object-fit: fill !important;
  6736. object-fit: fill !important;
  6737. }
  6738. .object-fit-scale {
  6739. -o-object-fit: scale-down !important;
  6740. object-fit: scale-down !important;
  6741. }
  6742. .object-fit-none {
  6743. -o-object-fit: none !important;
  6744. object-fit: none !important;
  6745. }
  6746. .opacity-0 {
  6747. opacity: 0 !important;
  6748. }
  6749. .opacity-25 {
  6750. opacity: 0.25 !important;
  6751. }
  6752. .opacity-50 {
  6753. opacity: 0.5 !important;
  6754. }
  6755. .opacity-75 {
  6756. opacity: 0.75 !important;
  6757. }
  6758. .opacity-100 {
  6759. opacity: 1 !important;
  6760. }
  6761. .overflow-auto {
  6762. overflow: auto !important;
  6763. }
  6764. .overflow-hidden {
  6765. overflow: hidden !important;
  6766. }
  6767. .overflow-visible {
  6768. overflow: visible !important;
  6769. }
  6770. .overflow-scroll {
  6771. overflow: scroll !important;
  6772. }
  6773. .overflow-x-auto {
  6774. overflow-x: auto !important;
  6775. }
  6776. .overflow-x-hidden {
  6777. overflow-x: hidden !important;
  6778. }
  6779. .overflow-x-visible {
  6780. overflow-x: visible !important;
  6781. }
  6782. .overflow-x-scroll {
  6783. overflow-x: scroll !important;
  6784. }
  6785. .overflow-y-auto {
  6786. overflow-y: auto !important;
  6787. }
  6788. .overflow-y-hidden {
  6789. overflow-y: hidden !important;
  6790. }
  6791. .overflow-y-visible {
  6792. overflow-y: visible !important;
  6793. }
  6794. .overflow-y-scroll {
  6795. overflow-y: scroll !important;
  6796. }
  6797. .d-inline {
  6798. display: inline !important;
  6799. }
  6800. .d-inline-block {
  6801. display: inline-block !important;
  6802. }
  6803. .d-block {
  6804. display: block !important;
  6805. }
  6806. .d-grid {
  6807. display: grid !important;
  6808. }
  6809. .d-inline-grid {
  6810. display: inline-grid !important;
  6811. }
  6812. .d-table {
  6813. display: table !important;
  6814. }
  6815. .d-table-row {
  6816. display: table-row !important;
  6817. }
  6818. .d-table-cell {
  6819. display: table-cell !important;
  6820. }
  6821. .d-flex {
  6822. display: flex !important;
  6823. }
  6824. .d-inline-flex {
  6825. display: inline-flex !important;
  6826. }
  6827. .d-none {
  6828. display: none !important;
  6829. }
  6830. .shadow {
  6831. box-shadow: var(--bs-box-shadow) !important;
  6832. }
  6833. .shadow-sm {
  6834. box-shadow: var(--bs-box-shadow-sm) !important;
  6835. }
  6836. .shadow-lg {
  6837. box-shadow: var(--bs-box-shadow-lg) !important;
  6838. }
  6839. .shadow-none {
  6840. box-shadow: none !important;
  6841. }
  6842. .focus-ring-primary {
  6843. --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
  6844. }
  6845. .focus-ring-secondary {
  6846. --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
  6847. }
  6848. .focus-ring-success {
  6849. --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
  6850. }
  6851. .focus-ring-info {
  6852. --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
  6853. }
  6854. .focus-ring-warning {
  6855. --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
  6856. }
  6857. .focus-ring-danger {
  6858. --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
  6859. }
  6860. .focus-ring-light {
  6861. --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
  6862. }
  6863. .focus-ring-dark {
  6864. --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
  6865. }
  6866. .position-static {
  6867. position: static !important;
  6868. }
  6869. .position-relative {
  6870. position: relative !important;
  6871. }
  6872. .position-absolute {
  6873. position: absolute !important;
  6874. }
  6875. .position-fixed {
  6876. position: fixed !important;
  6877. }
  6878. .position-sticky {
  6879. position: sticky !important;
  6880. }
  6881. .top-0 {
  6882. top: 0 !important;
  6883. }
  6884. .top-50 {
  6885. top: 50% !important;
  6886. }
  6887. .top-100 {
  6888. top: 100% !important;
  6889. }
  6890. .bottom-0 {
  6891. bottom: 0 !important;
  6892. }
  6893. .bottom-50 {
  6894. bottom: 50% !important;
  6895. }
  6896. .bottom-100 {
  6897. bottom: 100% !important;
  6898. }
  6899. .start-0 {
  6900. right: 0 !important;
  6901. }
  6902. .start-50 {
  6903. right: 50% !important;
  6904. }
  6905. .start-100 {
  6906. right: 100% !important;
  6907. }
  6908. .end-0 {
  6909. left: 0 !important;
  6910. }
  6911. .end-50 {
  6912. left: 50% !important;
  6913. }
  6914. .end-100 {
  6915. left: 100% !important;
  6916. }
  6917. .translate-middle {
  6918. transform: translate(50%, -50%) !important;
  6919. }
  6920. .translate-middle-x {
  6921. transform: translateX(50%) !important;
  6922. }
  6923. .translate-middle-y {
  6924. transform: translateY(-50%) !important;
  6925. }
  6926. .border {
  6927. border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6928. }
  6929. .border-0 {
  6930. border: 0 !important;
  6931. }
  6932. .border-top {
  6933. border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6934. }
  6935. .border-top-0 {
  6936. border-top: 0 !important;
  6937. }
  6938. .border-end {
  6939. border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6940. }
  6941. .border-end-0 {
  6942. border-left: 0 !important;
  6943. }
  6944. .border-bottom {
  6945. border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6946. }
  6947. .border-bottom-0 {
  6948. border-bottom: 0 !important;
  6949. }
  6950. .border-start {
  6951. border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6952. }
  6953. .border-start-0 {
  6954. border-right: 0 !important;
  6955. }
  6956. .border-primary {
  6957. --bs-border-opacity: 1;
  6958. border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
  6959. }
  6960. .border-secondary {
  6961. --bs-border-opacity: 1;
  6962. border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
  6963. }
  6964. .border-success {
  6965. --bs-border-opacity: 1;
  6966. border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
  6967. }
  6968. .border-info {
  6969. --bs-border-opacity: 1;
  6970. border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
  6971. }
  6972. .border-warning {
  6973. --bs-border-opacity: 1;
  6974. border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
  6975. }
  6976. .border-danger {
  6977. --bs-border-opacity: 1;
  6978. border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
  6979. }
  6980. .border-light {
  6981. --bs-border-opacity: 1;
  6982. border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
  6983. }
  6984. .border-dark {
  6985. --bs-border-opacity: 1;
  6986. border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
  6987. }
  6988. .border-black {
  6989. --bs-border-opacity: 1;
  6990. border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
  6991. }
  6992. .border-white {
  6993. --bs-border-opacity: 1;
  6994. border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
  6995. }
  6996. .border-primary-subtle {
  6997. border-color: var(--bs-primary-border-subtle) !important;
  6998. }
  6999. .border-secondary-subtle {
  7000. border-color: var(--bs-secondary-border-subtle) !important;
  7001. }
  7002. .border-success-subtle {
  7003. border-color: var(--bs-success-border-subtle) !important;
  7004. }
  7005. .border-info-subtle {
  7006. border-color: var(--bs-info-border-subtle) !important;
  7007. }
  7008. .border-warning-subtle {
  7009. border-color: var(--bs-warning-border-subtle) !important;
  7010. }
  7011. .border-danger-subtle {
  7012. border-color: var(--bs-danger-border-subtle) !important;
  7013. }
  7014. .border-light-subtle {
  7015. border-color: var(--bs-light-border-subtle) !important;
  7016. }
  7017. .border-dark-subtle {
  7018. border-color: var(--bs-dark-border-subtle) !important;
  7019. }
  7020. .border-1 {
  7021. border-width: 1px !important;
  7022. }
  7023. .border-2 {
  7024. border-width: 2px !important;
  7025. }
  7026. .border-3 {
  7027. border-width: 3px !important;
  7028. }
  7029. .border-4 {
  7030. border-width: 4px !important;
  7031. }
  7032. .border-5 {
  7033. border-width: 5px !important;
  7034. }
  7035. .border-opacity-10 {
  7036. --bs-border-opacity: 0.1;
  7037. }
  7038. .border-opacity-25 {
  7039. --bs-border-opacity: 0.25;
  7040. }
  7041. .border-opacity-50 {
  7042. --bs-border-opacity: 0.5;
  7043. }
  7044. .border-opacity-75 {
  7045. --bs-border-opacity: 0.75;
  7046. }
  7047. .border-opacity-100 {
  7048. --bs-border-opacity: 1;
  7049. }
  7050. .w-25 {
  7051. width: 25% !important;
  7052. }
  7053. .w-50 {
  7054. width: 50% !important;
  7055. }
  7056. .w-75 {
  7057. width: 75% !important;
  7058. }
  7059. .w-100 {
  7060. width: 100% !important;
  7061. }
  7062. .w-auto {
  7063. width: auto !important;
  7064. }
  7065. .mw-100 {
  7066. max-width: 100% !important;
  7067. }
  7068. .vw-100 {
  7069. width: 100vw !important;
  7070. }
  7071. .min-vw-100 {
  7072. min-width: 100vw !important;
  7073. }
  7074. .h-25 {
  7075. height: 25% !important;
  7076. }
  7077. .h-50 {
  7078. height: 50% !important;
  7079. }
  7080. .h-75 {
  7081. height: 75% !important;
  7082. }
  7083. .h-100 {
  7084. height: 100% !important;
  7085. }
  7086. .h-auto {
  7087. height: auto !important;
  7088. }
  7089. .mh-100 {
  7090. max-height: 100% !important;
  7091. }
  7092. .vh-100 {
  7093. height: 100vh !important;
  7094. }
  7095. .min-vh-100 {
  7096. min-height: 100vh !important;
  7097. }
  7098. .flex-fill {
  7099. flex: 1 1 auto !important;
  7100. }
  7101. .flex-row {
  7102. flex-direction: row !important;
  7103. }
  7104. .flex-column {
  7105. flex-direction: column !important;
  7106. }
  7107. .flex-row-reverse {
  7108. flex-direction: row-reverse !important;
  7109. }
  7110. .flex-column-reverse {
  7111. flex-direction: column-reverse !important;
  7112. }
  7113. .flex-grow-0 {
  7114. flex-grow: 0 !important;
  7115. }
  7116. .flex-grow-1 {
  7117. flex-grow: 1 !important;
  7118. }
  7119. .flex-shrink-0 {
  7120. flex-shrink: 0 !important;
  7121. }
  7122. .flex-shrink-1 {
  7123. flex-shrink: 1 !important;
  7124. }
  7125. .flex-wrap {
  7126. flex-wrap: wrap !important;
  7127. }
  7128. .flex-nowrap {
  7129. flex-wrap: nowrap !important;
  7130. }
  7131. .flex-wrap-reverse {
  7132. flex-wrap: wrap-reverse !important;
  7133. }
  7134. .justify-content-start {
  7135. justify-content: flex-start !important;
  7136. }
  7137. .justify-content-end {
  7138. justify-content: flex-end !important;
  7139. }
  7140. .justify-content-center {
  7141. justify-content: center !important;
  7142. }
  7143. .justify-content-between {
  7144. justify-content: space-between !important;
  7145. }
  7146. .justify-content-around {
  7147. justify-content: space-around !important;
  7148. }
  7149. .justify-content-evenly {
  7150. justify-content: space-evenly !important;
  7151. }
  7152. .align-items-start {
  7153. align-items: flex-start !important;
  7154. }
  7155. .align-items-end {
  7156. align-items: flex-end !important;
  7157. }
  7158. .align-items-center {
  7159. align-items: center !important;
  7160. }
  7161. .align-items-baseline {
  7162. align-items: baseline !important;
  7163. }
  7164. .align-items-stretch {
  7165. align-items: stretch !important;
  7166. }
  7167. .align-content-start {
  7168. align-content: flex-start !important;
  7169. }
  7170. .align-content-end {
  7171. align-content: flex-end !important;
  7172. }
  7173. .align-content-center {
  7174. align-content: center !important;
  7175. }
  7176. .align-content-between {
  7177. align-content: space-between !important;
  7178. }
  7179. .align-content-around {
  7180. align-content: space-around !important;
  7181. }
  7182. .align-content-stretch {
  7183. align-content: stretch !important;
  7184. }
  7185. .align-self-auto {
  7186. align-self: auto !important;
  7187. }
  7188. .align-self-start {
  7189. align-self: flex-start !important;
  7190. }
  7191. .align-self-end {
  7192. align-self: flex-end !important;
  7193. }
  7194. .align-self-center {
  7195. align-self: center !important;
  7196. }
  7197. .align-self-baseline {
  7198. align-self: baseline !important;
  7199. }
  7200. .align-self-stretch {
  7201. align-self: stretch !important;
  7202. }
  7203. .order-first {
  7204. order: -1 !important;
  7205. }
  7206. .order-0 {
  7207. order: 0 !important;
  7208. }
  7209. .order-1 {
  7210. order: 1 !important;
  7211. }
  7212. .order-2 {
  7213. order: 2 !important;
  7214. }
  7215. .order-3 {
  7216. order: 3 !important;
  7217. }
  7218. .order-4 {
  7219. order: 4 !important;
  7220. }
  7221. .order-5 {
  7222. order: 5 !important;
  7223. }
  7224. .order-last {
  7225. order: 6 !important;
  7226. }
  7227. .m-0 {
  7228. margin: 0 !important;
  7229. }
  7230. .m-1 {
  7231. margin: 0.25rem !important;
  7232. }
  7233. .m-2 {
  7234. margin: 0.5rem !important;
  7235. }
  7236. .m-3 {
  7237. margin: 1rem !important;
  7238. }
  7239. .m-4 {
  7240. margin: 1.5rem !important;
  7241. }
  7242. .m-5 {
  7243. margin: 3rem !important;
  7244. }
  7245. .m-auto {
  7246. margin: auto !important;
  7247. }
  7248. .mx-0 {
  7249. margin-left: 0 !important;
  7250. margin-right: 0 !important;
  7251. }
  7252. .mx-1 {
  7253. margin-left: 0.25rem !important;
  7254. margin-right: 0.25rem !important;
  7255. }
  7256. .mx-2 {
  7257. margin-left: 0.5rem !important;
  7258. margin-right: 0.5rem !important;
  7259. }
  7260. .mx-3 {
  7261. margin-left: 1rem !important;
  7262. margin-right: 1rem !important;
  7263. }
  7264. .mx-4 {
  7265. margin-left: 1.5rem !important;
  7266. margin-right: 1.5rem !important;
  7267. }
  7268. .mx-5 {
  7269. margin-left: 3rem !important;
  7270. margin-right: 3rem !important;
  7271. }
  7272. .mx-auto {
  7273. margin-left: auto !important;
  7274. margin-right: auto !important;
  7275. }
  7276. .my-0 {
  7277. margin-top: 0 !important;
  7278. margin-bottom: 0 !important;
  7279. }
  7280. .my-1 {
  7281. margin-top: 0.25rem !important;
  7282. margin-bottom: 0.25rem !important;
  7283. }
  7284. .my-2 {
  7285. margin-top: 0.5rem !important;
  7286. margin-bottom: 0.5rem !important;
  7287. }
  7288. .my-3 {
  7289. margin-top: 1rem !important;
  7290. margin-bottom: 1rem !important;
  7291. }
  7292. .my-4 {
  7293. margin-top: 1.5rem !important;
  7294. margin-bottom: 1.5rem !important;
  7295. }
  7296. .my-5 {
  7297. margin-top: 3rem !important;
  7298. margin-bottom: 3rem !important;
  7299. }
  7300. .my-auto {
  7301. margin-top: auto !important;
  7302. margin-bottom: auto !important;
  7303. }
  7304. .mt-0 {
  7305. margin-top: 0 !important;
  7306. }
  7307. .mt-1 {
  7308. margin-top: 0.25rem !important;
  7309. }
  7310. .mt-2 {
  7311. margin-top: 0.5rem !important;
  7312. }
  7313. .mt-3 {
  7314. margin-top: 1rem !important;
  7315. }
  7316. .mt-4 {
  7317. margin-top: 1.5rem !important;
  7318. }
  7319. .mt-5 {
  7320. margin-top: 3rem !important;
  7321. }
  7322. .mt-auto {
  7323. margin-top: auto !important;
  7324. }
  7325. .me-0 {
  7326. margin-left: 0 !important;
  7327. }
  7328. .me-1 {
  7329. margin-left: 0.25rem !important;
  7330. }
  7331. .me-2 {
  7332. margin-left: 0.5rem !important;
  7333. }
  7334. .me-3 {
  7335. margin-left: 1rem !important;
  7336. }
  7337. .me-4 {
  7338. margin-left: 1.5rem !important;
  7339. }
  7340. .me-5 {
  7341. margin-left: 3rem !important;
  7342. }
  7343. .me-auto {
  7344. margin-left: auto !important;
  7345. }
  7346. .mb-0 {
  7347. margin-bottom: 0 !important;
  7348. }
  7349. .mb-1 {
  7350. margin-bottom: 0.25rem !important;
  7351. }
  7352. .mb-2 {
  7353. margin-bottom: 0.5rem !important;
  7354. }
  7355. .mb-3 {
  7356. margin-bottom: 1rem !important;
  7357. }
  7358. .mb-4 {
  7359. margin-bottom: 1.5rem !important;
  7360. }
  7361. .mb-5 {
  7362. margin-bottom: 3rem !important;
  7363. }
  7364. .mb-auto {
  7365. margin-bottom: auto !important;
  7366. }
  7367. .ms-0 {
  7368. margin-right: 0 !important;
  7369. }
  7370. .ms-1 {
  7371. margin-right: 0.25rem !important;
  7372. }
  7373. .ms-2 {
  7374. margin-right: 0.5rem !important;
  7375. }
  7376. .ms-3 {
  7377. margin-right: 1rem !important;
  7378. }
  7379. .ms-4 {
  7380. margin-right: 1.5rem !important;
  7381. }
  7382. .ms-5 {
  7383. margin-right: 3rem !important;
  7384. }
  7385. .ms-auto {
  7386. margin-right: auto !important;
  7387. }
  7388. .m-n1 {
  7389. margin: -0.25rem !important;
  7390. }
  7391. .m-n2 {
  7392. margin: -0.5rem !important;
  7393. }
  7394. .m-n3 {
  7395. margin: -1rem !important;
  7396. }
  7397. .m-n4 {
  7398. margin: -1.5rem !important;
  7399. }
  7400. .m-n5 {
  7401. margin: -3rem !important;
  7402. }
  7403. .mx-n1 {
  7404. margin-left: -0.25rem !important;
  7405. margin-right: -0.25rem !important;
  7406. }
  7407. .mx-n2 {
  7408. margin-left: -0.5rem !important;
  7409. margin-right: -0.5rem !important;
  7410. }
  7411. .mx-n3 {
  7412. margin-left: -1rem !important;
  7413. margin-right: -1rem !important;
  7414. }
  7415. .mx-n4 {
  7416. margin-left: -1.5rem !important;
  7417. margin-right: -1.5rem !important;
  7418. }
  7419. .mx-n5 {
  7420. margin-left: -3rem !important;
  7421. margin-right: -3rem !important;
  7422. }
  7423. .my-n1 {
  7424. margin-top: -0.25rem !important;
  7425. margin-bottom: -0.25rem !important;
  7426. }
  7427. .my-n2 {
  7428. margin-top: -0.5rem !important;
  7429. margin-bottom: -0.5rem !important;
  7430. }
  7431. .my-n3 {
  7432. margin-top: -1rem !important;
  7433. margin-bottom: -1rem !important;
  7434. }
  7435. .my-n4 {
  7436. margin-top: -1.5rem !important;
  7437. margin-bottom: -1.5rem !important;
  7438. }
  7439. .my-n5 {
  7440. margin-top: -3rem !important;
  7441. margin-bottom: -3rem !important;
  7442. }
  7443. .mt-n1 {
  7444. margin-top: -0.25rem !important;
  7445. }
  7446. .mt-n2 {
  7447. margin-top: -0.5rem !important;
  7448. }
  7449. .mt-n3 {
  7450. margin-top: -1rem !important;
  7451. }
  7452. .mt-n4 {
  7453. margin-top: -1.5rem !important;
  7454. }
  7455. .mt-n5 {
  7456. margin-top: -3rem !important;
  7457. }
  7458. .me-n1 {
  7459. margin-left: -0.25rem !important;
  7460. }
  7461. .me-n2 {
  7462. margin-left: -0.5rem !important;
  7463. }
  7464. .me-n3 {
  7465. margin-left: -1rem !important;
  7466. }
  7467. .me-n4 {
  7468. margin-left: -1.5rem !important;
  7469. }
  7470. .me-n5 {
  7471. margin-left: -3rem !important;
  7472. }
  7473. .mb-n1 {
  7474. margin-bottom: -0.25rem !important;
  7475. }
  7476. .mb-n2 {
  7477. margin-bottom: -0.5rem !important;
  7478. }
  7479. .mb-n3 {
  7480. margin-bottom: -1rem !important;
  7481. }
  7482. .mb-n4 {
  7483. margin-bottom: -1.5rem !important;
  7484. }
  7485. .mb-n5 {
  7486. margin-bottom: -3rem !important;
  7487. }
  7488. .ms-n1 {
  7489. margin-right: -0.25rem !important;
  7490. }
  7491. .ms-n2 {
  7492. margin-right: -0.5rem !important;
  7493. }
  7494. .ms-n3 {
  7495. margin-right: -1rem !important;
  7496. }
  7497. .ms-n4 {
  7498. margin-right: -1.5rem !important;
  7499. }
  7500. .ms-n5 {
  7501. margin-right: -3rem !important;
  7502. }
  7503. .p-0 {
  7504. padding: 0 !important;
  7505. }
  7506. .p-1 {
  7507. padding: 0.25rem !important;
  7508. }
  7509. .p-2 {
  7510. padding: 0.5rem !important;
  7511. }
  7512. .p-3 {
  7513. padding: 1rem !important;
  7514. }
  7515. .p-4 {
  7516. padding: 1.5rem !important;
  7517. }
  7518. .p-5 {
  7519. padding: 3rem !important;
  7520. }
  7521. .px-0 {
  7522. padding-left: 0 !important;
  7523. padding-right: 0 !important;
  7524. }
  7525. .px-1 {
  7526. padding-left: 0.25rem !important;
  7527. padding-right: 0.25rem !important;
  7528. }
  7529. .px-2 {
  7530. padding-left: 0.5rem !important;
  7531. padding-right: 0.5rem !important;
  7532. }
  7533. .px-3 {
  7534. padding-left: 1rem !important;
  7535. padding-right: 1rem !important;
  7536. }
  7537. .px-4 {
  7538. padding-left: 1.5rem !important;
  7539. padding-right: 1.5rem !important;
  7540. }
  7541. .px-5 {
  7542. padding-left: 3rem !important;
  7543. padding-right: 3rem !important;
  7544. }
  7545. .py-0 {
  7546. padding-top: 0 !important;
  7547. padding-bottom: 0 !important;
  7548. }
  7549. .py-1 {
  7550. padding-top: 0.25rem !important;
  7551. padding-bottom: 0.25rem !important;
  7552. }
  7553. .py-2 {
  7554. padding-top: 0.5rem !important;
  7555. padding-bottom: 0.5rem !important;
  7556. }
  7557. .py-3 {
  7558. padding-top: 1rem !important;
  7559. padding-bottom: 1rem !important;
  7560. }
  7561. .py-4 {
  7562. padding-top: 1.5rem !important;
  7563. padding-bottom: 1.5rem !important;
  7564. }
  7565. .py-5 {
  7566. padding-top: 3rem !important;
  7567. padding-bottom: 3rem !important;
  7568. }
  7569. .pt-0 {
  7570. padding-top: 0 !important;
  7571. }
  7572. .pt-1 {
  7573. padding-top: 0.25rem !important;
  7574. }
  7575. .pt-2 {
  7576. padding-top: 0.5rem !important;
  7577. }
  7578. .pt-3 {
  7579. padding-top: 1rem !important;
  7580. }
  7581. .pt-4 {
  7582. padding-top: 1.5rem !important;
  7583. }
  7584. .pt-5 {
  7585. padding-top: 3rem !important;
  7586. }
  7587. .pe-0 {
  7588. padding-left: 0 !important;
  7589. }
  7590. .pe-1 {
  7591. padding-left: 0.25rem !important;
  7592. }
  7593. .pe-2 {
  7594. padding-left: 0.5rem !important;
  7595. }
  7596. .pe-3 {
  7597. padding-left: 1rem !important;
  7598. }
  7599. .pe-4 {
  7600. padding-left: 1.5rem !important;
  7601. }
  7602. .pe-5 {
  7603. padding-left: 3rem !important;
  7604. }
  7605. .pb-0 {
  7606. padding-bottom: 0 !important;
  7607. }
  7608. .pb-1 {
  7609. padding-bottom: 0.25rem !important;
  7610. }
  7611. .pb-2 {
  7612. padding-bottom: 0.5rem !important;
  7613. }
  7614. .pb-3 {
  7615. padding-bottom: 1rem !important;
  7616. }
  7617. .pb-4 {
  7618. padding-bottom: 1.5rem !important;
  7619. }
  7620. .pb-5 {
  7621. padding-bottom: 3rem !important;
  7622. }
  7623. .ps-0 {
  7624. padding-right: 0 !important;
  7625. }
  7626. .ps-1 {
  7627. padding-right: 0.25rem !important;
  7628. }
  7629. .ps-2 {
  7630. padding-right: 0.5rem !important;
  7631. }
  7632. .ps-3 {
  7633. padding-right: 1rem !important;
  7634. }
  7635. .ps-4 {
  7636. padding-right: 1.5rem !important;
  7637. }
  7638. .ps-5 {
  7639. padding-right: 3rem !important;
  7640. }
  7641. .gap-0 {
  7642. gap: 0 !important;
  7643. }
  7644. .gap-1 {
  7645. gap: 0.25rem !important;
  7646. }
  7647. .gap-2 {
  7648. gap: 0.5rem !important;
  7649. }
  7650. .gap-3 {
  7651. gap: 1rem !important;
  7652. }
  7653. .gap-4 {
  7654. gap: 1.5rem !important;
  7655. }
  7656. .gap-5 {
  7657. gap: 3rem !important;
  7658. }
  7659. .row-gap-0 {
  7660. row-gap: 0 !important;
  7661. }
  7662. .row-gap-1 {
  7663. row-gap: 0.25rem !important;
  7664. }
  7665. .row-gap-2 {
  7666. row-gap: 0.5rem !important;
  7667. }
  7668. .row-gap-3 {
  7669. row-gap: 1rem !important;
  7670. }
  7671. .row-gap-4 {
  7672. row-gap: 1.5rem !important;
  7673. }
  7674. .row-gap-5 {
  7675. row-gap: 3rem !important;
  7676. }
  7677. .column-gap-0 {
  7678. -moz-column-gap: 0 !important;
  7679. column-gap: 0 !important;
  7680. }
  7681. .column-gap-1 {
  7682. -moz-column-gap: 0.25rem !important;
  7683. column-gap: 0.25rem !important;
  7684. }
  7685. .column-gap-2 {
  7686. -moz-column-gap: 0.5rem !important;
  7687. column-gap: 0.5rem !important;
  7688. }
  7689. .column-gap-3 {
  7690. -moz-column-gap: 1rem !important;
  7691. column-gap: 1rem !important;
  7692. }
  7693. .column-gap-4 {
  7694. -moz-column-gap: 1.5rem !important;
  7695. column-gap: 1.5rem !important;
  7696. }
  7697. .column-gap-5 {
  7698. -moz-column-gap: 3rem !important;
  7699. column-gap: 3rem !important;
  7700. }
  7701. .font-monospace {
  7702. font-family: var(--bs-font-monospace) !important;
  7703. }
  7704. .fs-1 {
  7705. font-size: calc(1.375rem + 1.5vw) !important;
  7706. }
  7707. .fs-2 {
  7708. font-size: calc(1.325rem + 0.9vw) !important;
  7709. }
  7710. .fs-3 {
  7711. font-size: calc(1.3rem + 0.6vw) !important;
  7712. }
  7713. .fs-4 {
  7714. font-size: calc(1.275rem + 0.3vw) !important;
  7715. }
  7716. .fs-5 {
  7717. font-size: 1.25rem !important;
  7718. }
  7719. .fs-6 {
  7720. font-size: 1rem !important;
  7721. }
  7722. .fs-7 {
  7723. font-size: 0.875rem !important;
  7724. }
  7725. .fs-8 {
  7726. font-size: 0.75rem !important;
  7727. }
  7728. .fst-italic {
  7729. font-style: italic !important;
  7730. }
  7731. .fst-normal {
  7732. font-style: normal !important;
  7733. }
  7734. .fw-lighter {
  7735. font-weight: lighter !important;
  7736. }
  7737. .fw-light {
  7738. font-weight: 300 !important;
  7739. }
  7740. .fw-normal {
  7741. font-weight: 400 !important;
  7742. }
  7743. .fw-medium {
  7744. font-weight: 500 !important;
  7745. }
  7746. .fw-semibold {
  7747. font-weight: 600 !important;
  7748. }
  7749. .fw-bold {
  7750. font-weight: 700 !important;
  7751. }
  7752. .fw-bolder {
  7753. font-weight: bolder !important;
  7754. }
  7755. .lh-1 {
  7756. line-height: 1 !important;
  7757. }
  7758. .lh-sm {
  7759. line-height: 1.25 !important;
  7760. }
  7761. .lh-base {
  7762. line-height: 1.5 !important;
  7763. }
  7764. .lh-lg {
  7765. line-height: 2 !important;
  7766. }
  7767. .text-start {
  7768. text-align: right !important;
  7769. }
  7770. .text-end {
  7771. text-align: left !important;
  7772. }
  7773. .text-center {
  7774. text-align: center !important;
  7775. }
  7776. .text-decoration-none {
  7777. text-decoration: none !important;
  7778. }
  7779. .text-decoration-underline {
  7780. text-decoration: underline !important;
  7781. }
  7782. .text-decoration-line-through {
  7783. text-decoration: line-through !important;
  7784. }
  7785. .text-lowercase {
  7786. text-transform: lowercase !important;
  7787. }
  7788. .text-uppercase {
  7789. text-transform: uppercase !important;
  7790. }
  7791. .text-capitalize {
  7792. text-transform: capitalize !important;
  7793. }
  7794. .text-wrap {
  7795. white-space: normal !important;
  7796. }
  7797. .text-nowrap {
  7798. white-space: nowrap !important;
  7799. }
  7800. .text-primary {
  7801. --bs-text-opacity: 1;
  7802. color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
  7803. }
  7804. .text-secondary {
  7805. --bs-text-opacity: 1;
  7806. color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
  7807. }
  7808. .text-success {
  7809. --bs-text-opacity: 1;
  7810. color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
  7811. }
  7812. .text-info {
  7813. --bs-text-opacity: 1;
  7814. color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
  7815. }
  7816. .text-warning {
  7817. --bs-text-opacity: 1;
  7818. color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
  7819. }
  7820. .text-danger {
  7821. --bs-text-opacity: 1;
  7822. color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
  7823. }
  7824. .text-light {
  7825. --bs-text-opacity: 1;
  7826. color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
  7827. }
  7828. .text-dark {
  7829. --bs-text-opacity: 1;
  7830. color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
  7831. }
  7832. .text-black {
  7833. --bs-text-opacity: 1;
  7834. color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
  7835. }
  7836. .text-white {
  7837. --bs-text-opacity: 1;
  7838. color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
  7839. }
  7840. .text-body {
  7841. --bs-text-opacity: 1;
  7842. color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
  7843. }
  7844. .text-muted {
  7845. --bs-text-opacity: 1;
  7846. color: var(--bs-secondary-color) !important;
  7847. }
  7848. .text-black-50 {
  7849. --bs-text-opacity: 1;
  7850. color: rgba(0, 0, 0, 0.5) !important;
  7851. }
  7852. .text-white-50 {
  7853. --bs-text-opacity: 1;
  7854. color: rgba(255, 255, 255, 0.5) !important;
  7855. }
  7856. .text-body-secondary {
  7857. --bs-text-opacity: 1;
  7858. color: var(--bs-secondary-color) !important;
  7859. }
  7860. .text-body-tertiary {
  7861. --bs-text-opacity: 1;
  7862. color: var(--bs-tertiary-color) !important;
  7863. }
  7864. .text-body-emphasis {
  7865. --bs-text-opacity: 1;
  7866. color: var(--bs-emphasis-color) !important;
  7867. }
  7868. .text-reset {
  7869. --bs-text-opacity: 1;
  7870. color: inherit !important;
  7871. }
  7872. .text-opacity-25 {
  7873. --bs-text-opacity: 0.25;
  7874. }
  7875. .text-opacity-50 {
  7876. --bs-text-opacity: 0.5;
  7877. }
  7878. .text-opacity-75 {
  7879. --bs-text-opacity: 0.75;
  7880. }
  7881. .text-opacity-100 {
  7882. --bs-text-opacity: 1;
  7883. }
  7884. .text-primary-emphasis {
  7885. color: var(--bs-primary-text-emphasis) !important;
  7886. }
  7887. .text-secondary-emphasis {
  7888. color: var(--bs-secondary-text-emphasis) !important;
  7889. }
  7890. .text-success-emphasis {
  7891. color: var(--bs-success-text-emphasis) !important;
  7892. }
  7893. .text-info-emphasis {
  7894. color: var(--bs-info-text-emphasis) !important;
  7895. }
  7896. .text-warning-emphasis {
  7897. color: var(--bs-warning-text-emphasis) !important;
  7898. }
  7899. .text-danger-emphasis {
  7900. color: var(--bs-danger-text-emphasis) !important;
  7901. }
  7902. .text-light-emphasis {
  7903. color: var(--bs-light-text-emphasis) !important;
  7904. }
  7905. .text-dark-emphasis {
  7906. color: var(--bs-dark-text-emphasis) !important;
  7907. }
  7908. .link-opacity-10 {
  7909. --bs-link-opacity: 0.1;
  7910. }
  7911. .link-opacity-10-hover:hover {
  7912. --bs-link-opacity: 0.1;
  7913. }
  7914. .link-opacity-25 {
  7915. --bs-link-opacity: 0.25;
  7916. }
  7917. .link-opacity-25-hover:hover {
  7918. --bs-link-opacity: 0.25;
  7919. }
  7920. .link-opacity-50 {
  7921. --bs-link-opacity: 0.5;
  7922. }
  7923. .link-opacity-50-hover:hover {
  7924. --bs-link-opacity: 0.5;
  7925. }
  7926. .link-opacity-75 {
  7927. --bs-link-opacity: 0.75;
  7928. }
  7929. .link-opacity-75-hover:hover {
  7930. --bs-link-opacity: 0.75;
  7931. }
  7932. .link-opacity-100 {
  7933. --bs-link-opacity: 1;
  7934. }
  7935. .link-opacity-100-hover:hover {
  7936. --bs-link-opacity: 1;
  7937. }
  7938. .link-offset-1 {
  7939. text-underline-offset: 0.125em !important;
  7940. }
  7941. .link-offset-1-hover:hover {
  7942. text-underline-offset: 0.125em !important;
  7943. }
  7944. .link-offset-2 {
  7945. text-underline-offset: 0.25em !important;
  7946. }
  7947. .link-offset-2-hover:hover {
  7948. text-underline-offset: 0.25em !important;
  7949. }
  7950. .link-offset-3 {
  7951. text-underline-offset: 0.375em !important;
  7952. }
  7953. .link-offset-3-hover:hover {
  7954. text-underline-offset: 0.375em !important;
  7955. }
  7956. .link-underline-primary {
  7957. --bs-link-underline-opacity: 1;
  7958. text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
  7959. }
  7960. .link-underline-secondary {
  7961. --bs-link-underline-opacity: 1;
  7962. text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
  7963. }
  7964. .link-underline-success {
  7965. --bs-link-underline-opacity: 1;
  7966. text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
  7967. }
  7968. .link-underline-info {
  7969. --bs-link-underline-opacity: 1;
  7970. text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
  7971. }
  7972. .link-underline-warning {
  7973. --bs-link-underline-opacity: 1;
  7974. text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
  7975. }
  7976. .link-underline-danger {
  7977. --bs-link-underline-opacity: 1;
  7978. text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
  7979. }
  7980. .link-underline-light {
  7981. --bs-link-underline-opacity: 1;
  7982. text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
  7983. }
  7984. .link-underline-dark {
  7985. --bs-link-underline-opacity: 1;
  7986. text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
  7987. }
  7988. .link-underline {
  7989. --bs-link-underline-opacity: 1;
  7990. text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  7991. }
  7992. .link-underline-opacity-0 {
  7993. --bs-link-underline-opacity: 0;
  7994. }
  7995. .link-underline-opacity-0-hover:hover {
  7996. --bs-link-underline-opacity: 0;
  7997. }
  7998. .link-underline-opacity-10 {
  7999. --bs-link-underline-opacity: 0.1;
  8000. }
  8001. .link-underline-opacity-10-hover:hover {
  8002. --bs-link-underline-opacity: 0.1;
  8003. }
  8004. .link-underline-opacity-25 {
  8005. --bs-link-underline-opacity: 0.25;
  8006. }
  8007. .link-underline-opacity-25-hover:hover {
  8008. --bs-link-underline-opacity: 0.25;
  8009. }
  8010. .link-underline-opacity-50 {
  8011. --bs-link-underline-opacity: 0.5;
  8012. }
  8013. .link-underline-opacity-50-hover:hover {
  8014. --bs-link-underline-opacity: 0.5;
  8015. }
  8016. .link-underline-opacity-75 {
  8017. --bs-link-underline-opacity: 0.75;
  8018. }
  8019. .link-underline-opacity-75-hover:hover {
  8020. --bs-link-underline-opacity: 0.75;
  8021. }
  8022. .link-underline-opacity-100 {
  8023. --bs-link-underline-opacity: 1;
  8024. }
  8025. .link-underline-opacity-100-hover:hover {
  8026. --bs-link-underline-opacity: 1;
  8027. }
  8028. .bg-primary {
  8029. --bs-bg-opacity: 1;
  8030. background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
  8031. }
  8032. .bg-secondary {
  8033. --bs-bg-opacity: 1;
  8034. background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
  8035. }
  8036. .bg-success {
  8037. --bs-bg-opacity: 1;
  8038. background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
  8039. }
  8040. .bg-info {
  8041. --bs-bg-opacity: 1;
  8042. background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
  8043. }
  8044. .bg-warning {
  8045. --bs-bg-opacity: 1;
  8046. background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  8047. }
  8048. .bg-danger {
  8049. --bs-bg-opacity: 1;
  8050. background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
  8051. }
  8052. .bg-light {
  8053. --bs-bg-opacity: 1;
  8054. background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  8055. }
  8056. .bg-dark {
  8057. --bs-bg-opacity: 1;
  8058. background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  8059. }
  8060. .bg-black {
  8061. --bs-bg-opacity: 1;
  8062. background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
  8063. }
  8064. .bg-white {
  8065. --bs-bg-opacity: 1;
  8066. background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  8067. }
  8068. .bg-body {
  8069. --bs-bg-opacity: 1;
  8070. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  8071. }
  8072. .bg-transparent {
  8073. --bs-bg-opacity: 1;
  8074. background-color: transparent !important;
  8075. }
  8076. .bg-body-secondary {
  8077. --bs-bg-opacity: 1;
  8078. background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
  8079. }
  8080. .bg-body-tertiary {
  8081. --bs-bg-opacity: 1;
  8082. background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
  8083. }
  8084. .bg-opacity-10 {
  8085. --bs-bg-opacity: 0.1;
  8086. }
  8087. .bg-opacity-25 {
  8088. --bs-bg-opacity: 0.25;
  8089. }
  8090. .bg-opacity-50 {
  8091. --bs-bg-opacity: 0.5;
  8092. }
  8093. .bg-opacity-75 {
  8094. --bs-bg-opacity: 0.75;
  8095. }
  8096. .bg-opacity-100 {
  8097. --bs-bg-opacity: 1;
  8098. }
  8099. .bg-primary-subtle {
  8100. background-color: var(--bs-primary-bg-subtle) !important;
  8101. }
  8102. .bg-secondary-subtle {
  8103. background-color: var(--bs-secondary-bg-subtle) !important;
  8104. }
  8105. .bg-success-subtle {
  8106. background-color: var(--bs-success-bg-subtle) !important;
  8107. }
  8108. .bg-info-subtle {
  8109. background-color: var(--bs-info-bg-subtle) !important;
  8110. }
  8111. .bg-warning-subtle {
  8112. background-color: var(--bs-warning-bg-subtle) !important;
  8113. }
  8114. .bg-danger-subtle {
  8115. background-color: var(--bs-danger-bg-subtle) !important;
  8116. }
  8117. .bg-light-subtle {
  8118. background-color: var(--bs-light-bg-subtle) !important;
  8119. }
  8120. .bg-dark-subtle {
  8121. background-color: var(--bs-dark-bg-subtle) !important;
  8122. }
  8123. .bg-gradient {
  8124. background-image: var(--bs-gradient) !important;
  8125. }
  8126. .user-select-all {
  8127. -webkit-user-select: all !important;
  8128. user-select: all !important;
  8129. }
  8130. .user-select-auto {
  8131. -webkit-user-select: auto !important;
  8132. user-select: auto !important;
  8133. }
  8134. .user-select-none {
  8135. -webkit-user-select: none !important;
  8136. user-select: none !important;
  8137. }
  8138. .pe-none {
  8139. pointer-events: none !important;
  8140. }
  8141. .pe-auto {
  8142. pointer-events: auto !important;
  8143. }
  8144. .rounded {
  8145. border-radius: var(--bs-border-radius) !important;
  8146. }
  8147. .rounded-0 {
  8148. border-radius: 0 !important;
  8149. }
  8150. .rounded-1 {
  8151. border-radius: var(--bs-border-radius-sm) !important;
  8152. }
  8153. .rounded-2 {
  8154. border-radius: var(--bs-border-radius) !important;
  8155. }
  8156. .rounded-3 {
  8157. border-radius: var(--bs-border-radius-lg) !important;
  8158. }
  8159. .rounded-4 {
  8160. border-radius: var(--bs-border-radius-xl) !important;
  8161. }
  8162. .rounded-5 {
  8163. border-radius: var(--bs-border-radius-xxl) !important;
  8164. }
  8165. .rounded-circle {
  8166. border-radius: 50% !important;
  8167. }
  8168. .rounded-pill {
  8169. border-radius: var(--bs-border-radius-pill) !important;
  8170. }
  8171. .rounded-top {
  8172. border-top-right-radius: var(--bs-border-radius) !important;
  8173. border-top-left-radius: var(--bs-border-radius) !important;
  8174. }
  8175. .rounded-top-0 {
  8176. border-top-right-radius: 0 !important;
  8177. border-top-left-radius: 0 !important;
  8178. }
  8179. .rounded-top-1 {
  8180. border-top-right-radius: var(--bs-border-radius-sm) !important;
  8181. border-top-left-radius: var(--bs-border-radius-sm) !important;
  8182. }
  8183. .rounded-top-2 {
  8184. border-top-right-radius: var(--bs-border-radius) !important;
  8185. border-top-left-radius: var(--bs-border-radius) !important;
  8186. }
  8187. .rounded-top-3 {
  8188. border-top-right-radius: var(--bs-border-radius-lg) !important;
  8189. border-top-left-radius: var(--bs-border-radius-lg) !important;
  8190. }
  8191. .rounded-top-4 {
  8192. border-top-right-radius: var(--bs-border-radius-xl) !important;
  8193. border-top-left-radius: var(--bs-border-radius-xl) !important;
  8194. }
  8195. .rounded-top-5 {
  8196. border-top-right-radius: var(--bs-border-radius-xxl) !important;
  8197. border-top-left-radius: var(--bs-border-radius-xxl) !important;
  8198. }
  8199. .rounded-top-circle {
  8200. border-top-right-radius: 50% !important;
  8201. border-top-left-radius: 50% !important;
  8202. }
  8203. .rounded-top-pill {
  8204. border-top-right-radius: var(--bs-border-radius-pill) !important;
  8205. border-top-left-radius: var(--bs-border-radius-pill) !important;
  8206. }
  8207. .rounded-end {
  8208. border-top-left-radius: var(--bs-border-radius) !important;
  8209. border-bottom-left-radius: var(--bs-border-radius) !important;
  8210. }
  8211. .rounded-end-0 {
  8212. border-top-left-radius: 0 !important;
  8213. border-bottom-left-radius: 0 !important;
  8214. }
  8215. .rounded-end-1 {
  8216. border-top-left-radius: var(--bs-border-radius-sm) !important;
  8217. border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  8218. }
  8219. .rounded-end-2 {
  8220. border-top-left-radius: var(--bs-border-radius) !important;
  8221. border-bottom-left-radius: var(--bs-border-radius) !important;
  8222. }
  8223. .rounded-end-3 {
  8224. border-top-left-radius: var(--bs-border-radius-lg) !important;
  8225. border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  8226. }
  8227. .rounded-end-4 {
  8228. border-top-left-radius: var(--bs-border-radius-xl) !important;
  8229. border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  8230. }
  8231. .rounded-end-5 {
  8232. border-top-left-radius: var(--bs-border-radius-xxl) !important;
  8233. border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  8234. }
  8235. .rounded-end-circle {
  8236. border-top-left-radius: 50% !important;
  8237. border-bottom-left-radius: 50% !important;
  8238. }
  8239. .rounded-end-pill {
  8240. border-top-left-radius: var(--bs-border-radius-pill) !important;
  8241. border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  8242. }
  8243. .rounded-bottom {
  8244. border-bottom-left-radius: var(--bs-border-radius) !important;
  8245. border-bottom-right-radius: var(--bs-border-radius) !important;
  8246. }
  8247. .rounded-bottom-0 {
  8248. border-bottom-left-radius: 0 !important;
  8249. border-bottom-right-radius: 0 !important;
  8250. }
  8251. .rounded-bottom-1 {
  8252. border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  8253. border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  8254. }
  8255. .rounded-bottom-2 {
  8256. border-bottom-left-radius: var(--bs-border-radius) !important;
  8257. border-bottom-right-radius: var(--bs-border-radius) !important;
  8258. }
  8259. .rounded-bottom-3 {
  8260. border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  8261. border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  8262. }
  8263. .rounded-bottom-4 {
  8264. border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  8265. border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  8266. }
  8267. .rounded-bottom-5 {
  8268. border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  8269. border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  8270. }
  8271. .rounded-bottom-circle {
  8272. border-bottom-left-radius: 50% !important;
  8273. border-bottom-right-radius: 50% !important;
  8274. }
  8275. .rounded-bottom-pill {
  8276. border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  8277. border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  8278. }
  8279. .rounded-start {
  8280. border-bottom-right-radius: var(--bs-border-radius) !important;
  8281. border-top-right-radius: var(--bs-border-radius) !important;
  8282. }
  8283. .rounded-start-0 {
  8284. border-bottom-right-radius: 0 !important;
  8285. border-top-right-radius: 0 !important;
  8286. }
  8287. .rounded-start-1 {
  8288. border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  8289. border-top-right-radius: var(--bs-border-radius-sm) !important;
  8290. }
  8291. .rounded-start-2 {
  8292. border-bottom-right-radius: var(--bs-border-radius) !important;
  8293. border-top-right-radius: var(--bs-border-radius) !important;
  8294. }
  8295. .rounded-start-3 {
  8296. border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  8297. border-top-right-radius: var(--bs-border-radius-lg) !important;
  8298. }
  8299. .rounded-start-4 {
  8300. border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  8301. border-top-right-radius: var(--bs-border-radius-xl) !important;
  8302. }
  8303. .rounded-start-5 {
  8304. border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  8305. border-top-right-radius: var(--bs-border-radius-xxl) !important;
  8306. }
  8307. .rounded-start-circle {
  8308. border-bottom-right-radius: 50% !important;
  8309. border-top-right-radius: 50% !important;
  8310. }
  8311. .rounded-start-pill {
  8312. border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  8313. border-top-right-radius: var(--bs-border-radius-pill) !important;
  8314. }
  8315. .visible {
  8316. visibility: visible !important;
  8317. }
  8318. .invisible {
  8319. visibility: hidden !important;
  8320. }
  8321. .z-n1 {
  8322. z-index: -1 !important;
  8323. }
  8324. .z-0 {
  8325. z-index: 0 !important;
  8326. }
  8327. .z-1 {
  8328. z-index: 1 !important;
  8329. }
  8330. .z-2 {
  8331. z-index: 2 !important;
  8332. }
  8333. .z-3 {
  8334. z-index: 3 !important;
  8335. }
  8336. @media (min-width: 576px) {
  8337. .float-sm-start {
  8338. float: right !important;
  8339. }
  8340. .float-sm-end {
  8341. float: left !important;
  8342. }
  8343. .float-sm-none {
  8344. float: none !important;
  8345. }
  8346. .object-fit-sm-contain {
  8347. -o-object-fit: contain !important;
  8348. object-fit: contain !important;
  8349. }
  8350. .object-fit-sm-cover {
  8351. -o-object-fit: cover !important;
  8352. object-fit: cover !important;
  8353. }
  8354. .object-fit-sm-fill {
  8355. -o-object-fit: fill !important;
  8356. object-fit: fill !important;
  8357. }
  8358. .object-fit-sm-scale {
  8359. -o-object-fit: scale-down !important;
  8360. object-fit: scale-down !important;
  8361. }
  8362. .object-fit-sm-none {
  8363. -o-object-fit: none !important;
  8364. object-fit: none !important;
  8365. }
  8366. .d-sm-inline {
  8367. display: inline !important;
  8368. }
  8369. .d-sm-inline-block {
  8370. display: inline-block !important;
  8371. }
  8372. .d-sm-block {
  8373. display: block !important;
  8374. }
  8375. .d-sm-grid {
  8376. display: grid !important;
  8377. }
  8378. .d-sm-inline-grid {
  8379. display: inline-grid !important;
  8380. }
  8381. .d-sm-table {
  8382. display: table !important;
  8383. }
  8384. .d-sm-table-row {
  8385. display: table-row !important;
  8386. }
  8387. .d-sm-table-cell {
  8388. display: table-cell !important;
  8389. }
  8390. .d-sm-flex {
  8391. display: flex !important;
  8392. }
  8393. .d-sm-inline-flex {
  8394. display: inline-flex !important;
  8395. }
  8396. .d-sm-none {
  8397. display: none !important;
  8398. }
  8399. .flex-sm-fill {
  8400. flex: 1 1 auto !important;
  8401. }
  8402. .flex-sm-row {
  8403. flex-direction: row !important;
  8404. }
  8405. .flex-sm-column {
  8406. flex-direction: column !important;
  8407. }
  8408. .flex-sm-row-reverse {
  8409. flex-direction: row-reverse !important;
  8410. }
  8411. .flex-sm-column-reverse {
  8412. flex-direction: column-reverse !important;
  8413. }
  8414. .flex-sm-grow-0 {
  8415. flex-grow: 0 !important;
  8416. }
  8417. .flex-sm-grow-1 {
  8418. flex-grow: 1 !important;
  8419. }
  8420. .flex-sm-shrink-0 {
  8421. flex-shrink: 0 !important;
  8422. }
  8423. .flex-sm-shrink-1 {
  8424. flex-shrink: 1 !important;
  8425. }
  8426. .flex-sm-wrap {
  8427. flex-wrap: wrap !important;
  8428. }
  8429. .flex-sm-nowrap {
  8430. flex-wrap: nowrap !important;
  8431. }
  8432. .flex-sm-wrap-reverse {
  8433. flex-wrap: wrap-reverse !important;
  8434. }
  8435. .justify-content-sm-start {
  8436. justify-content: flex-start !important;
  8437. }
  8438. .justify-content-sm-end {
  8439. justify-content: flex-end !important;
  8440. }
  8441. .justify-content-sm-center {
  8442. justify-content: center !important;
  8443. }
  8444. .justify-content-sm-between {
  8445. justify-content: space-between !important;
  8446. }
  8447. .justify-content-sm-around {
  8448. justify-content: space-around !important;
  8449. }
  8450. .justify-content-sm-evenly {
  8451. justify-content: space-evenly !important;
  8452. }
  8453. .align-items-sm-start {
  8454. align-items: flex-start !important;
  8455. }
  8456. .align-items-sm-end {
  8457. align-items: flex-end !important;
  8458. }
  8459. .align-items-sm-center {
  8460. align-items: center !important;
  8461. }
  8462. .align-items-sm-baseline {
  8463. align-items: baseline !important;
  8464. }
  8465. .align-items-sm-stretch {
  8466. align-items: stretch !important;
  8467. }
  8468. .align-content-sm-start {
  8469. align-content: flex-start !important;
  8470. }
  8471. .align-content-sm-end {
  8472. align-content: flex-end !important;
  8473. }
  8474. .align-content-sm-center {
  8475. align-content: center !important;
  8476. }
  8477. .align-content-sm-between {
  8478. align-content: space-between !important;
  8479. }
  8480. .align-content-sm-around {
  8481. align-content: space-around !important;
  8482. }
  8483. .align-content-sm-stretch {
  8484. align-content: stretch !important;
  8485. }
  8486. .align-self-sm-auto {
  8487. align-self: auto !important;
  8488. }
  8489. .align-self-sm-start {
  8490. align-self: flex-start !important;
  8491. }
  8492. .align-self-sm-end {
  8493. align-self: flex-end !important;
  8494. }
  8495. .align-self-sm-center {
  8496. align-self: center !important;
  8497. }
  8498. .align-self-sm-baseline {
  8499. align-self: baseline !important;
  8500. }
  8501. .align-self-sm-stretch {
  8502. align-self: stretch !important;
  8503. }
  8504. .order-sm-first {
  8505. order: -1 !important;
  8506. }
  8507. .order-sm-0 {
  8508. order: 0 !important;
  8509. }
  8510. .order-sm-1 {
  8511. order: 1 !important;
  8512. }
  8513. .order-sm-2 {
  8514. order: 2 !important;
  8515. }
  8516. .order-sm-3 {
  8517. order: 3 !important;
  8518. }
  8519. .order-sm-4 {
  8520. order: 4 !important;
  8521. }
  8522. .order-sm-5 {
  8523. order: 5 !important;
  8524. }
  8525. .order-sm-last {
  8526. order: 6 !important;
  8527. }
  8528. .m-sm-0 {
  8529. margin: 0 !important;
  8530. }
  8531. .m-sm-1 {
  8532. margin: 0.25rem !important;
  8533. }
  8534. .m-sm-2 {
  8535. margin: 0.5rem !important;
  8536. }
  8537. .m-sm-3 {
  8538. margin: 1rem !important;
  8539. }
  8540. .m-sm-4 {
  8541. margin: 1.5rem !important;
  8542. }
  8543. .m-sm-5 {
  8544. margin: 3rem !important;
  8545. }
  8546. .m-sm-auto {
  8547. margin: auto !important;
  8548. }
  8549. .mx-sm-0 {
  8550. margin-left: 0 !important;
  8551. margin-right: 0 !important;
  8552. }
  8553. .mx-sm-1 {
  8554. margin-left: 0.25rem !important;
  8555. margin-right: 0.25rem !important;
  8556. }
  8557. .mx-sm-2 {
  8558. margin-left: 0.5rem !important;
  8559. margin-right: 0.5rem !important;
  8560. }
  8561. .mx-sm-3 {
  8562. margin-left: 1rem !important;
  8563. margin-right: 1rem !important;
  8564. }
  8565. .mx-sm-4 {
  8566. margin-left: 1.5rem !important;
  8567. margin-right: 1.5rem !important;
  8568. }
  8569. .mx-sm-5 {
  8570. margin-left: 3rem !important;
  8571. margin-right: 3rem !important;
  8572. }
  8573. .mx-sm-auto {
  8574. margin-left: auto !important;
  8575. margin-right: auto !important;
  8576. }
  8577. .my-sm-0 {
  8578. margin-top: 0 !important;
  8579. margin-bottom: 0 !important;
  8580. }
  8581. .my-sm-1 {
  8582. margin-top: 0.25rem !important;
  8583. margin-bottom: 0.25rem !important;
  8584. }
  8585. .my-sm-2 {
  8586. margin-top: 0.5rem !important;
  8587. margin-bottom: 0.5rem !important;
  8588. }
  8589. .my-sm-3 {
  8590. margin-top: 1rem !important;
  8591. margin-bottom: 1rem !important;
  8592. }
  8593. .my-sm-4 {
  8594. margin-top: 1.5rem !important;
  8595. margin-bottom: 1.5rem !important;
  8596. }
  8597. .my-sm-5 {
  8598. margin-top: 3rem !important;
  8599. margin-bottom: 3rem !important;
  8600. }
  8601. .my-sm-auto {
  8602. margin-top: auto !important;
  8603. margin-bottom: auto !important;
  8604. }
  8605. .mt-sm-0 {
  8606. margin-top: 0 !important;
  8607. }
  8608. .mt-sm-1 {
  8609. margin-top: 0.25rem !important;
  8610. }
  8611. .mt-sm-2 {
  8612. margin-top: 0.5rem !important;
  8613. }
  8614. .mt-sm-3 {
  8615. margin-top: 1rem !important;
  8616. }
  8617. .mt-sm-4 {
  8618. margin-top: 1.5rem !important;
  8619. }
  8620. .mt-sm-5 {
  8621. margin-top: 3rem !important;
  8622. }
  8623. .mt-sm-auto {
  8624. margin-top: auto !important;
  8625. }
  8626. .me-sm-0 {
  8627. margin-left: 0 !important;
  8628. }
  8629. .me-sm-1 {
  8630. margin-left: 0.25rem !important;
  8631. }
  8632. .me-sm-2 {
  8633. margin-left: 0.5rem !important;
  8634. }
  8635. .me-sm-3 {
  8636. margin-left: 1rem !important;
  8637. }
  8638. .me-sm-4 {
  8639. margin-left: 1.5rem !important;
  8640. }
  8641. .me-sm-5 {
  8642. margin-left: 3rem !important;
  8643. }
  8644. .me-sm-auto {
  8645. margin-left: auto !important;
  8646. }
  8647. .mb-sm-0 {
  8648. margin-bottom: 0 !important;
  8649. }
  8650. .mb-sm-1 {
  8651. margin-bottom: 0.25rem !important;
  8652. }
  8653. .mb-sm-2 {
  8654. margin-bottom: 0.5rem !important;
  8655. }
  8656. .mb-sm-3 {
  8657. margin-bottom: 1rem !important;
  8658. }
  8659. .mb-sm-4 {
  8660. margin-bottom: 1.5rem !important;
  8661. }
  8662. .mb-sm-5 {
  8663. margin-bottom: 3rem !important;
  8664. }
  8665. .mb-sm-auto {
  8666. margin-bottom: auto !important;
  8667. }
  8668. .ms-sm-0 {
  8669. margin-right: 0 !important;
  8670. }
  8671. .ms-sm-1 {
  8672. margin-right: 0.25rem !important;
  8673. }
  8674. .ms-sm-2 {
  8675. margin-right: 0.5rem !important;
  8676. }
  8677. .ms-sm-3 {
  8678. margin-right: 1rem !important;
  8679. }
  8680. .ms-sm-4 {
  8681. margin-right: 1.5rem !important;
  8682. }
  8683. .ms-sm-5 {
  8684. margin-right: 3rem !important;
  8685. }
  8686. .ms-sm-auto {
  8687. margin-right: auto !important;
  8688. }
  8689. .m-sm-n1 {
  8690. margin: -0.25rem !important;
  8691. }
  8692. .m-sm-n2 {
  8693. margin: -0.5rem !important;
  8694. }
  8695. .m-sm-n3 {
  8696. margin: -1rem !important;
  8697. }
  8698. .m-sm-n4 {
  8699. margin: -1.5rem !important;
  8700. }
  8701. .m-sm-n5 {
  8702. margin: -3rem !important;
  8703. }
  8704. .mx-sm-n1 {
  8705. margin-left: -0.25rem !important;
  8706. margin-right: -0.25rem !important;
  8707. }
  8708. .mx-sm-n2 {
  8709. margin-left: -0.5rem !important;
  8710. margin-right: -0.5rem !important;
  8711. }
  8712. .mx-sm-n3 {
  8713. margin-left: -1rem !important;
  8714. margin-right: -1rem !important;
  8715. }
  8716. .mx-sm-n4 {
  8717. margin-left: -1.5rem !important;
  8718. margin-right: -1.5rem !important;
  8719. }
  8720. .mx-sm-n5 {
  8721. margin-left: -3rem !important;
  8722. margin-right: -3rem !important;
  8723. }
  8724. .my-sm-n1 {
  8725. margin-top: -0.25rem !important;
  8726. margin-bottom: -0.25rem !important;
  8727. }
  8728. .my-sm-n2 {
  8729. margin-top: -0.5rem !important;
  8730. margin-bottom: -0.5rem !important;
  8731. }
  8732. .my-sm-n3 {
  8733. margin-top: -1rem !important;
  8734. margin-bottom: -1rem !important;
  8735. }
  8736. .my-sm-n4 {
  8737. margin-top: -1.5rem !important;
  8738. margin-bottom: -1.5rem !important;
  8739. }
  8740. .my-sm-n5 {
  8741. margin-top: -3rem !important;
  8742. margin-bottom: -3rem !important;
  8743. }
  8744. .mt-sm-n1 {
  8745. margin-top: -0.25rem !important;
  8746. }
  8747. .mt-sm-n2 {
  8748. margin-top: -0.5rem !important;
  8749. }
  8750. .mt-sm-n3 {
  8751. margin-top: -1rem !important;
  8752. }
  8753. .mt-sm-n4 {
  8754. margin-top: -1.5rem !important;
  8755. }
  8756. .mt-sm-n5 {
  8757. margin-top: -3rem !important;
  8758. }
  8759. .me-sm-n1 {
  8760. margin-left: -0.25rem !important;
  8761. }
  8762. .me-sm-n2 {
  8763. margin-left: -0.5rem !important;
  8764. }
  8765. .me-sm-n3 {
  8766. margin-left: -1rem !important;
  8767. }
  8768. .me-sm-n4 {
  8769. margin-left: -1.5rem !important;
  8770. }
  8771. .me-sm-n5 {
  8772. margin-left: -3rem !important;
  8773. }
  8774. .mb-sm-n1 {
  8775. margin-bottom: -0.25rem !important;
  8776. }
  8777. .mb-sm-n2 {
  8778. margin-bottom: -0.5rem !important;
  8779. }
  8780. .mb-sm-n3 {
  8781. margin-bottom: -1rem !important;
  8782. }
  8783. .mb-sm-n4 {
  8784. margin-bottom: -1.5rem !important;
  8785. }
  8786. .mb-sm-n5 {
  8787. margin-bottom: -3rem !important;
  8788. }
  8789. .ms-sm-n1 {
  8790. margin-right: -0.25rem !important;
  8791. }
  8792. .ms-sm-n2 {
  8793. margin-right: -0.5rem !important;
  8794. }
  8795. .ms-sm-n3 {
  8796. margin-right: -1rem !important;
  8797. }
  8798. .ms-sm-n4 {
  8799. margin-right: -1.5rem !important;
  8800. }
  8801. .ms-sm-n5 {
  8802. margin-right: -3rem !important;
  8803. }
  8804. .p-sm-0 {
  8805. padding: 0 !important;
  8806. }
  8807. .p-sm-1 {
  8808. padding: 0.25rem !important;
  8809. }
  8810. .p-sm-2 {
  8811. padding: 0.5rem !important;
  8812. }
  8813. .p-sm-3 {
  8814. padding: 1rem !important;
  8815. }
  8816. .p-sm-4 {
  8817. padding: 1.5rem !important;
  8818. }
  8819. .p-sm-5 {
  8820. padding: 3rem !important;
  8821. }
  8822. .px-sm-0 {
  8823. padding-left: 0 !important;
  8824. padding-right: 0 !important;
  8825. }
  8826. .px-sm-1 {
  8827. padding-left: 0.25rem !important;
  8828. padding-right: 0.25rem !important;
  8829. }
  8830. .px-sm-2 {
  8831. padding-left: 0.5rem !important;
  8832. padding-right: 0.5rem !important;
  8833. }
  8834. .px-sm-3 {
  8835. padding-left: 1rem !important;
  8836. padding-right: 1rem !important;
  8837. }
  8838. .px-sm-4 {
  8839. padding-left: 1.5rem !important;
  8840. padding-right: 1.5rem !important;
  8841. }
  8842. .px-sm-5 {
  8843. padding-left: 3rem !important;
  8844. padding-right: 3rem !important;
  8845. }
  8846. .py-sm-0 {
  8847. padding-top: 0 !important;
  8848. padding-bottom: 0 !important;
  8849. }
  8850. .py-sm-1 {
  8851. padding-top: 0.25rem !important;
  8852. padding-bottom: 0.25rem !important;
  8853. }
  8854. .py-sm-2 {
  8855. padding-top: 0.5rem !important;
  8856. padding-bottom: 0.5rem !important;
  8857. }
  8858. .py-sm-3 {
  8859. padding-top: 1rem !important;
  8860. padding-bottom: 1rem !important;
  8861. }
  8862. .py-sm-4 {
  8863. padding-top: 1.5rem !important;
  8864. padding-bottom: 1.5rem !important;
  8865. }
  8866. .py-sm-5 {
  8867. padding-top: 3rem !important;
  8868. padding-bottom: 3rem !important;
  8869. }
  8870. .pt-sm-0 {
  8871. padding-top: 0 !important;
  8872. }
  8873. .pt-sm-1 {
  8874. padding-top: 0.25rem !important;
  8875. }
  8876. .pt-sm-2 {
  8877. padding-top: 0.5rem !important;
  8878. }
  8879. .pt-sm-3 {
  8880. padding-top: 1rem !important;
  8881. }
  8882. .pt-sm-4 {
  8883. padding-top: 1.5rem !important;
  8884. }
  8885. .pt-sm-5 {
  8886. padding-top: 3rem !important;
  8887. }
  8888. .pe-sm-0 {
  8889. padding-left: 0 !important;
  8890. }
  8891. .pe-sm-1 {
  8892. padding-left: 0.25rem !important;
  8893. }
  8894. .pe-sm-2 {
  8895. padding-left: 0.5rem !important;
  8896. }
  8897. .pe-sm-3 {
  8898. padding-left: 1rem !important;
  8899. }
  8900. .pe-sm-4 {
  8901. padding-left: 1.5rem !important;
  8902. }
  8903. .pe-sm-5 {
  8904. padding-left: 3rem !important;
  8905. }
  8906. .pb-sm-0 {
  8907. padding-bottom: 0 !important;
  8908. }
  8909. .pb-sm-1 {
  8910. padding-bottom: 0.25rem !important;
  8911. }
  8912. .pb-sm-2 {
  8913. padding-bottom: 0.5rem !important;
  8914. }
  8915. .pb-sm-3 {
  8916. padding-bottom: 1rem !important;
  8917. }
  8918. .pb-sm-4 {
  8919. padding-bottom: 1.5rem !important;
  8920. }
  8921. .pb-sm-5 {
  8922. padding-bottom: 3rem !important;
  8923. }
  8924. .ps-sm-0 {
  8925. padding-right: 0 !important;
  8926. }
  8927. .ps-sm-1 {
  8928. padding-right: 0.25rem !important;
  8929. }
  8930. .ps-sm-2 {
  8931. padding-right: 0.5rem !important;
  8932. }
  8933. .ps-sm-3 {
  8934. padding-right: 1rem !important;
  8935. }
  8936. .ps-sm-4 {
  8937. padding-right: 1.5rem !important;
  8938. }
  8939. .ps-sm-5 {
  8940. padding-right: 3rem !important;
  8941. }
  8942. .gap-sm-0 {
  8943. gap: 0 !important;
  8944. }
  8945. .gap-sm-1 {
  8946. gap: 0.25rem !important;
  8947. }
  8948. .gap-sm-2 {
  8949. gap: 0.5rem !important;
  8950. }
  8951. .gap-sm-3 {
  8952. gap: 1rem !important;
  8953. }
  8954. .gap-sm-4 {
  8955. gap: 1.5rem !important;
  8956. }
  8957. .gap-sm-5 {
  8958. gap: 3rem !important;
  8959. }
  8960. .row-gap-sm-0 {
  8961. row-gap: 0 !important;
  8962. }
  8963. .row-gap-sm-1 {
  8964. row-gap: 0.25rem !important;
  8965. }
  8966. .row-gap-sm-2 {
  8967. row-gap: 0.5rem !important;
  8968. }
  8969. .row-gap-sm-3 {
  8970. row-gap: 1rem !important;
  8971. }
  8972. .row-gap-sm-4 {
  8973. row-gap: 1.5rem !important;
  8974. }
  8975. .row-gap-sm-5 {
  8976. row-gap: 3rem !important;
  8977. }
  8978. .column-gap-sm-0 {
  8979. -moz-column-gap: 0 !important;
  8980. column-gap: 0 !important;
  8981. }
  8982. .column-gap-sm-1 {
  8983. -moz-column-gap: 0.25rem !important;
  8984. column-gap: 0.25rem !important;
  8985. }
  8986. .column-gap-sm-2 {
  8987. -moz-column-gap: 0.5rem !important;
  8988. column-gap: 0.5rem !important;
  8989. }
  8990. .column-gap-sm-3 {
  8991. -moz-column-gap: 1rem !important;
  8992. column-gap: 1rem !important;
  8993. }
  8994. .column-gap-sm-4 {
  8995. -moz-column-gap: 1.5rem !important;
  8996. column-gap: 1.5rem !important;
  8997. }
  8998. .column-gap-sm-5 {
  8999. -moz-column-gap: 3rem !important;
  9000. column-gap: 3rem !important;
  9001. }
  9002. .text-sm-start {
  9003. text-align: right !important;
  9004. }
  9005. .text-sm-end {
  9006. text-align: left !important;
  9007. }
  9008. .text-sm-center {
  9009. text-align: center !important;
  9010. }
  9011. }
  9012. @media (min-width: 768px) {
  9013. .float-md-start {
  9014. float: right !important;
  9015. }
  9016. .float-md-end {
  9017. float: left !important;
  9018. }
  9019. .float-md-none {
  9020. float: none !important;
  9021. }
  9022. .object-fit-md-contain {
  9023. -o-object-fit: contain !important;
  9024. object-fit: contain !important;
  9025. }
  9026. .object-fit-md-cover {
  9027. -o-object-fit: cover !important;
  9028. object-fit: cover !important;
  9029. }
  9030. .object-fit-md-fill {
  9031. -o-object-fit: fill !important;
  9032. object-fit: fill !important;
  9033. }
  9034. .object-fit-md-scale {
  9035. -o-object-fit: scale-down !important;
  9036. object-fit: scale-down !important;
  9037. }
  9038. .object-fit-md-none {
  9039. -o-object-fit: none !important;
  9040. object-fit: none !important;
  9041. }
  9042. .d-md-inline {
  9043. display: inline !important;
  9044. }
  9045. .d-md-inline-block {
  9046. display: inline-block !important;
  9047. }
  9048. .d-md-block {
  9049. display: block !important;
  9050. }
  9051. .d-md-grid {
  9052. display: grid !important;
  9053. }
  9054. .d-md-inline-grid {
  9055. display: inline-grid !important;
  9056. }
  9057. .d-md-table {
  9058. display: table !important;
  9059. }
  9060. .d-md-table-row {
  9061. display: table-row !important;
  9062. }
  9063. .d-md-table-cell {
  9064. display: table-cell !important;
  9065. }
  9066. .d-md-flex {
  9067. display: flex !important;
  9068. }
  9069. .d-md-inline-flex {
  9070. display: inline-flex !important;
  9071. }
  9072. .d-md-none {
  9073. display: none !important;
  9074. }
  9075. .flex-md-fill {
  9076. flex: 1 1 auto !important;
  9077. }
  9078. .flex-md-row {
  9079. flex-direction: row !important;
  9080. }
  9081. .flex-md-column {
  9082. flex-direction: column !important;
  9083. }
  9084. .flex-md-row-reverse {
  9085. flex-direction: row-reverse !important;
  9086. }
  9087. .flex-md-column-reverse {
  9088. flex-direction: column-reverse !important;
  9089. }
  9090. .flex-md-grow-0 {
  9091. flex-grow: 0 !important;
  9092. }
  9093. .flex-md-grow-1 {
  9094. flex-grow: 1 !important;
  9095. }
  9096. .flex-md-shrink-0 {
  9097. flex-shrink: 0 !important;
  9098. }
  9099. .flex-md-shrink-1 {
  9100. flex-shrink: 1 !important;
  9101. }
  9102. .flex-md-wrap {
  9103. flex-wrap: wrap !important;
  9104. }
  9105. .flex-md-nowrap {
  9106. flex-wrap: nowrap !important;
  9107. }
  9108. .flex-md-wrap-reverse {
  9109. flex-wrap: wrap-reverse !important;
  9110. }
  9111. .justify-content-md-start {
  9112. justify-content: flex-start !important;
  9113. }
  9114. .justify-content-md-end {
  9115. justify-content: flex-end !important;
  9116. }
  9117. .justify-content-md-center {
  9118. justify-content: center !important;
  9119. }
  9120. .justify-content-md-between {
  9121. justify-content: space-between !important;
  9122. }
  9123. .justify-content-md-around {
  9124. justify-content: space-around !important;
  9125. }
  9126. .justify-content-md-evenly {
  9127. justify-content: space-evenly !important;
  9128. }
  9129. .align-items-md-start {
  9130. align-items: flex-start !important;
  9131. }
  9132. .align-items-md-end {
  9133. align-items: flex-end !important;
  9134. }
  9135. .align-items-md-center {
  9136. align-items: center !important;
  9137. }
  9138. .align-items-md-baseline {
  9139. align-items: baseline !important;
  9140. }
  9141. .align-items-md-stretch {
  9142. align-items: stretch !important;
  9143. }
  9144. .align-content-md-start {
  9145. align-content: flex-start !important;
  9146. }
  9147. .align-content-md-end {
  9148. align-content: flex-end !important;
  9149. }
  9150. .align-content-md-center {
  9151. align-content: center !important;
  9152. }
  9153. .align-content-md-between {
  9154. align-content: space-between !important;
  9155. }
  9156. .align-content-md-around {
  9157. align-content: space-around !important;
  9158. }
  9159. .align-content-md-stretch {
  9160. align-content: stretch !important;
  9161. }
  9162. .align-self-md-auto {
  9163. align-self: auto !important;
  9164. }
  9165. .align-self-md-start {
  9166. align-self: flex-start !important;
  9167. }
  9168. .align-self-md-end {
  9169. align-self: flex-end !important;
  9170. }
  9171. .align-self-md-center {
  9172. align-self: center !important;
  9173. }
  9174. .align-self-md-baseline {
  9175. align-self: baseline !important;
  9176. }
  9177. .align-self-md-stretch {
  9178. align-self: stretch !important;
  9179. }
  9180. .order-md-first {
  9181. order: -1 !important;
  9182. }
  9183. .order-md-0 {
  9184. order: 0 !important;
  9185. }
  9186. .order-md-1 {
  9187. order: 1 !important;
  9188. }
  9189. .order-md-2 {
  9190. order: 2 !important;
  9191. }
  9192. .order-md-3 {
  9193. order: 3 !important;
  9194. }
  9195. .order-md-4 {
  9196. order: 4 !important;
  9197. }
  9198. .order-md-5 {
  9199. order: 5 !important;
  9200. }
  9201. .order-md-last {
  9202. order: 6 !important;
  9203. }
  9204. .m-md-0 {
  9205. margin: 0 !important;
  9206. }
  9207. .m-md-1 {
  9208. margin: 0.25rem !important;
  9209. }
  9210. .m-md-2 {
  9211. margin: 0.5rem !important;
  9212. }
  9213. .m-md-3 {
  9214. margin: 1rem !important;
  9215. }
  9216. .m-md-4 {
  9217. margin: 1.5rem !important;
  9218. }
  9219. .m-md-5 {
  9220. margin: 3rem !important;
  9221. }
  9222. .m-md-auto {
  9223. margin: auto !important;
  9224. }
  9225. .mx-md-0 {
  9226. margin-left: 0 !important;
  9227. margin-right: 0 !important;
  9228. }
  9229. .mx-md-1 {
  9230. margin-left: 0.25rem !important;
  9231. margin-right: 0.25rem !important;
  9232. }
  9233. .mx-md-2 {
  9234. margin-left: 0.5rem !important;
  9235. margin-right: 0.5rem !important;
  9236. }
  9237. .mx-md-3 {
  9238. margin-left: 1rem !important;
  9239. margin-right: 1rem !important;
  9240. }
  9241. .mx-md-4 {
  9242. margin-left: 1.5rem !important;
  9243. margin-right: 1.5rem !important;
  9244. }
  9245. .mx-md-5 {
  9246. margin-left: 3rem !important;
  9247. margin-right: 3rem !important;
  9248. }
  9249. .mx-md-auto {
  9250. margin-left: auto !important;
  9251. margin-right: auto !important;
  9252. }
  9253. .my-md-0 {
  9254. margin-top: 0 !important;
  9255. margin-bottom: 0 !important;
  9256. }
  9257. .my-md-1 {
  9258. margin-top: 0.25rem !important;
  9259. margin-bottom: 0.25rem !important;
  9260. }
  9261. .my-md-2 {
  9262. margin-top: 0.5rem !important;
  9263. margin-bottom: 0.5rem !important;
  9264. }
  9265. .my-md-3 {
  9266. margin-top: 1rem !important;
  9267. margin-bottom: 1rem !important;
  9268. }
  9269. .my-md-4 {
  9270. margin-top: 1.5rem !important;
  9271. margin-bottom: 1.5rem !important;
  9272. }
  9273. .my-md-5 {
  9274. margin-top: 3rem !important;
  9275. margin-bottom: 3rem !important;
  9276. }
  9277. .my-md-auto {
  9278. margin-top: auto !important;
  9279. margin-bottom: auto !important;
  9280. }
  9281. .mt-md-0 {
  9282. margin-top: 0 !important;
  9283. }
  9284. .mt-md-1 {
  9285. margin-top: 0.25rem !important;
  9286. }
  9287. .mt-md-2 {
  9288. margin-top: 0.5rem !important;
  9289. }
  9290. .mt-md-3 {
  9291. margin-top: 1rem !important;
  9292. }
  9293. .mt-md-4 {
  9294. margin-top: 1.5rem !important;
  9295. }
  9296. .mt-md-5 {
  9297. margin-top: 3rem !important;
  9298. }
  9299. .mt-md-auto {
  9300. margin-top: auto !important;
  9301. }
  9302. .me-md-0 {
  9303. margin-left: 0 !important;
  9304. }
  9305. .me-md-1 {
  9306. margin-left: 0.25rem !important;
  9307. }
  9308. .me-md-2 {
  9309. margin-left: 0.5rem !important;
  9310. }
  9311. .me-md-3 {
  9312. margin-left: 1rem !important;
  9313. }
  9314. .me-md-4 {
  9315. margin-left: 1.5rem !important;
  9316. }
  9317. .me-md-5 {
  9318. margin-left: 3rem !important;
  9319. }
  9320. .me-md-auto {
  9321. margin-left: auto !important;
  9322. }
  9323. .mb-md-0 {
  9324. margin-bottom: 0 !important;
  9325. }
  9326. .mb-md-1 {
  9327. margin-bottom: 0.25rem !important;
  9328. }
  9329. .mb-md-2 {
  9330. margin-bottom: 0.5rem !important;
  9331. }
  9332. .mb-md-3 {
  9333. margin-bottom: 1rem !important;
  9334. }
  9335. .mb-md-4 {
  9336. margin-bottom: 1.5rem !important;
  9337. }
  9338. .mb-md-5 {
  9339. margin-bottom: 3rem !important;
  9340. }
  9341. .mb-md-auto {
  9342. margin-bottom: auto !important;
  9343. }
  9344. .ms-md-0 {
  9345. margin-right: 0 !important;
  9346. }
  9347. .ms-md-1 {
  9348. margin-right: 0.25rem !important;
  9349. }
  9350. .ms-md-2 {
  9351. margin-right: 0.5rem !important;
  9352. }
  9353. .ms-md-3 {
  9354. margin-right: 1rem !important;
  9355. }
  9356. .ms-md-4 {
  9357. margin-right: 1.5rem !important;
  9358. }
  9359. .ms-md-5 {
  9360. margin-right: 3rem !important;
  9361. }
  9362. .ms-md-auto {
  9363. margin-right: auto !important;
  9364. }
  9365. .m-md-n1 {
  9366. margin: -0.25rem !important;
  9367. }
  9368. .m-md-n2 {
  9369. margin: -0.5rem !important;
  9370. }
  9371. .m-md-n3 {
  9372. margin: -1rem !important;
  9373. }
  9374. .m-md-n4 {
  9375. margin: -1.5rem !important;
  9376. }
  9377. .m-md-n5 {
  9378. margin: -3rem !important;
  9379. }
  9380. .mx-md-n1 {
  9381. margin-left: -0.25rem !important;
  9382. margin-right: -0.25rem !important;
  9383. }
  9384. .mx-md-n2 {
  9385. margin-left: -0.5rem !important;
  9386. margin-right: -0.5rem !important;
  9387. }
  9388. .mx-md-n3 {
  9389. margin-left: -1rem !important;
  9390. margin-right: -1rem !important;
  9391. }
  9392. .mx-md-n4 {
  9393. margin-left: -1.5rem !important;
  9394. margin-right: -1.5rem !important;
  9395. }
  9396. .mx-md-n5 {
  9397. margin-left: -3rem !important;
  9398. margin-right: -3rem !important;
  9399. }
  9400. .my-md-n1 {
  9401. margin-top: -0.25rem !important;
  9402. margin-bottom: -0.25rem !important;
  9403. }
  9404. .my-md-n2 {
  9405. margin-top: -0.5rem !important;
  9406. margin-bottom: -0.5rem !important;
  9407. }
  9408. .my-md-n3 {
  9409. margin-top: -1rem !important;
  9410. margin-bottom: -1rem !important;
  9411. }
  9412. .my-md-n4 {
  9413. margin-top: -1.5rem !important;
  9414. margin-bottom: -1.5rem !important;
  9415. }
  9416. .my-md-n5 {
  9417. margin-top: -3rem !important;
  9418. margin-bottom: -3rem !important;
  9419. }
  9420. .mt-md-n1 {
  9421. margin-top: -0.25rem !important;
  9422. }
  9423. .mt-md-n2 {
  9424. margin-top: -0.5rem !important;
  9425. }
  9426. .mt-md-n3 {
  9427. margin-top: -1rem !important;
  9428. }
  9429. .mt-md-n4 {
  9430. margin-top: -1.5rem !important;
  9431. }
  9432. .mt-md-n5 {
  9433. margin-top: -3rem !important;
  9434. }
  9435. .me-md-n1 {
  9436. margin-left: -0.25rem !important;
  9437. }
  9438. .me-md-n2 {
  9439. margin-left: -0.5rem !important;
  9440. }
  9441. .me-md-n3 {
  9442. margin-left: -1rem !important;
  9443. }
  9444. .me-md-n4 {
  9445. margin-left: -1.5rem !important;
  9446. }
  9447. .me-md-n5 {
  9448. margin-left: -3rem !important;
  9449. }
  9450. .mb-md-n1 {
  9451. margin-bottom: -0.25rem !important;
  9452. }
  9453. .mb-md-n2 {
  9454. margin-bottom: -0.5rem !important;
  9455. }
  9456. .mb-md-n3 {
  9457. margin-bottom: -1rem !important;
  9458. }
  9459. .mb-md-n4 {
  9460. margin-bottom: -1.5rem !important;
  9461. }
  9462. .mb-md-n5 {
  9463. margin-bottom: -3rem !important;
  9464. }
  9465. .ms-md-n1 {
  9466. margin-right: -0.25rem !important;
  9467. }
  9468. .ms-md-n2 {
  9469. margin-right: -0.5rem !important;
  9470. }
  9471. .ms-md-n3 {
  9472. margin-right: -1rem !important;
  9473. }
  9474. .ms-md-n4 {
  9475. margin-right: -1.5rem !important;
  9476. }
  9477. .ms-md-n5 {
  9478. margin-right: -3rem !important;
  9479. }
  9480. .p-md-0 {
  9481. padding: 0 !important;
  9482. }
  9483. .p-md-1 {
  9484. padding: 0.25rem !important;
  9485. }
  9486. .p-md-2 {
  9487. padding: 0.5rem !important;
  9488. }
  9489. .p-md-3 {
  9490. padding: 1rem !important;
  9491. }
  9492. .p-md-4 {
  9493. padding: 1.5rem !important;
  9494. }
  9495. .p-md-5 {
  9496. padding: 3rem !important;
  9497. }
  9498. .px-md-0 {
  9499. padding-left: 0 !important;
  9500. padding-right: 0 !important;
  9501. }
  9502. .px-md-1 {
  9503. padding-left: 0.25rem !important;
  9504. padding-right: 0.25rem !important;
  9505. }
  9506. .px-md-2 {
  9507. padding-left: 0.5rem !important;
  9508. padding-right: 0.5rem !important;
  9509. }
  9510. .px-md-3 {
  9511. padding-left: 1rem !important;
  9512. padding-right: 1rem !important;
  9513. }
  9514. .px-md-4 {
  9515. padding-left: 1.5rem !important;
  9516. padding-right: 1.5rem !important;
  9517. }
  9518. .px-md-5 {
  9519. padding-left: 3rem !important;
  9520. padding-right: 3rem !important;
  9521. }
  9522. .py-md-0 {
  9523. padding-top: 0 !important;
  9524. padding-bottom: 0 !important;
  9525. }
  9526. .py-md-1 {
  9527. padding-top: 0.25rem !important;
  9528. padding-bottom: 0.25rem !important;
  9529. }
  9530. .py-md-2 {
  9531. padding-top: 0.5rem !important;
  9532. padding-bottom: 0.5rem !important;
  9533. }
  9534. .py-md-3 {
  9535. padding-top: 1rem !important;
  9536. padding-bottom: 1rem !important;
  9537. }
  9538. .py-md-4 {
  9539. padding-top: 1.5rem !important;
  9540. padding-bottom: 1.5rem !important;
  9541. }
  9542. .py-md-5 {
  9543. padding-top: 3rem !important;
  9544. padding-bottom: 3rem !important;
  9545. }
  9546. .pt-md-0 {
  9547. padding-top: 0 !important;
  9548. }
  9549. .pt-md-1 {
  9550. padding-top: 0.25rem !important;
  9551. }
  9552. .pt-md-2 {
  9553. padding-top: 0.5rem !important;
  9554. }
  9555. .pt-md-3 {
  9556. padding-top: 1rem !important;
  9557. }
  9558. .pt-md-4 {
  9559. padding-top: 1.5rem !important;
  9560. }
  9561. .pt-md-5 {
  9562. padding-top: 3rem !important;
  9563. }
  9564. .pe-md-0 {
  9565. padding-left: 0 !important;
  9566. }
  9567. .pe-md-1 {
  9568. padding-left: 0.25rem !important;
  9569. }
  9570. .pe-md-2 {
  9571. padding-left: 0.5rem !important;
  9572. }
  9573. .pe-md-3 {
  9574. padding-left: 1rem !important;
  9575. }
  9576. .pe-md-4 {
  9577. padding-left: 1.5rem !important;
  9578. }
  9579. .pe-md-5 {
  9580. padding-left: 3rem !important;
  9581. }
  9582. .pb-md-0 {
  9583. padding-bottom: 0 !important;
  9584. }
  9585. .pb-md-1 {
  9586. padding-bottom: 0.25rem !important;
  9587. }
  9588. .pb-md-2 {
  9589. padding-bottom: 0.5rem !important;
  9590. }
  9591. .pb-md-3 {
  9592. padding-bottom: 1rem !important;
  9593. }
  9594. .pb-md-4 {
  9595. padding-bottom: 1.5rem !important;
  9596. }
  9597. .pb-md-5 {
  9598. padding-bottom: 3rem !important;
  9599. }
  9600. .ps-md-0 {
  9601. padding-right: 0 !important;
  9602. }
  9603. .ps-md-1 {
  9604. padding-right: 0.25rem !important;
  9605. }
  9606. .ps-md-2 {
  9607. padding-right: 0.5rem !important;
  9608. }
  9609. .ps-md-3 {
  9610. padding-right: 1rem !important;
  9611. }
  9612. .ps-md-4 {
  9613. padding-right: 1.5rem !important;
  9614. }
  9615. .ps-md-5 {
  9616. padding-right: 3rem !important;
  9617. }
  9618. .gap-md-0 {
  9619. gap: 0 !important;
  9620. }
  9621. .gap-md-1 {
  9622. gap: 0.25rem !important;
  9623. }
  9624. .gap-md-2 {
  9625. gap: 0.5rem !important;
  9626. }
  9627. .gap-md-3 {
  9628. gap: 1rem !important;
  9629. }
  9630. .gap-md-4 {
  9631. gap: 1.5rem !important;
  9632. }
  9633. .gap-md-5 {
  9634. gap: 3rem !important;
  9635. }
  9636. .row-gap-md-0 {
  9637. row-gap: 0 !important;
  9638. }
  9639. .row-gap-md-1 {
  9640. row-gap: 0.25rem !important;
  9641. }
  9642. .row-gap-md-2 {
  9643. row-gap: 0.5rem !important;
  9644. }
  9645. .row-gap-md-3 {
  9646. row-gap: 1rem !important;
  9647. }
  9648. .row-gap-md-4 {
  9649. row-gap: 1.5rem !important;
  9650. }
  9651. .row-gap-md-5 {
  9652. row-gap: 3rem !important;
  9653. }
  9654. .column-gap-md-0 {
  9655. -moz-column-gap: 0 !important;
  9656. column-gap: 0 !important;
  9657. }
  9658. .column-gap-md-1 {
  9659. -moz-column-gap: 0.25rem !important;
  9660. column-gap: 0.25rem !important;
  9661. }
  9662. .column-gap-md-2 {
  9663. -moz-column-gap: 0.5rem !important;
  9664. column-gap: 0.5rem !important;
  9665. }
  9666. .column-gap-md-3 {
  9667. -moz-column-gap: 1rem !important;
  9668. column-gap: 1rem !important;
  9669. }
  9670. .column-gap-md-4 {
  9671. -moz-column-gap: 1.5rem !important;
  9672. column-gap: 1.5rem !important;
  9673. }
  9674. .column-gap-md-5 {
  9675. -moz-column-gap: 3rem !important;
  9676. column-gap: 3rem !important;
  9677. }
  9678. .text-md-start {
  9679. text-align: right !important;
  9680. }
  9681. .text-md-end {
  9682. text-align: left !important;
  9683. }
  9684. .text-md-center {
  9685. text-align: center !important;
  9686. }
  9687. }
  9688. @media (min-width: 992px) {
  9689. .float-lg-start {
  9690. float: right !important;
  9691. }
  9692. .float-lg-end {
  9693. float: left !important;
  9694. }
  9695. .float-lg-none {
  9696. float: none !important;
  9697. }
  9698. .object-fit-lg-contain {
  9699. -o-object-fit: contain !important;
  9700. object-fit: contain !important;
  9701. }
  9702. .object-fit-lg-cover {
  9703. -o-object-fit: cover !important;
  9704. object-fit: cover !important;
  9705. }
  9706. .object-fit-lg-fill {
  9707. -o-object-fit: fill !important;
  9708. object-fit: fill !important;
  9709. }
  9710. .object-fit-lg-scale {
  9711. -o-object-fit: scale-down !important;
  9712. object-fit: scale-down !important;
  9713. }
  9714. .object-fit-lg-none {
  9715. -o-object-fit: none !important;
  9716. object-fit: none !important;
  9717. }
  9718. .d-lg-inline {
  9719. display: inline !important;
  9720. }
  9721. .d-lg-inline-block {
  9722. display: inline-block !important;
  9723. }
  9724. .d-lg-block {
  9725. display: block !important;
  9726. }
  9727. .d-lg-grid {
  9728. display: grid !important;
  9729. }
  9730. .d-lg-inline-grid {
  9731. display: inline-grid !important;
  9732. }
  9733. .d-lg-table {
  9734. display: table !important;
  9735. }
  9736. .d-lg-table-row {
  9737. display: table-row !important;
  9738. }
  9739. .d-lg-table-cell {
  9740. display: table-cell !important;
  9741. }
  9742. .d-lg-flex {
  9743. display: flex !important;
  9744. }
  9745. .d-lg-inline-flex {
  9746. display: inline-flex !important;
  9747. }
  9748. .d-lg-none {
  9749. display: none !important;
  9750. }
  9751. .flex-lg-fill {
  9752. flex: 1 1 auto !important;
  9753. }
  9754. .flex-lg-row {
  9755. flex-direction: row !important;
  9756. }
  9757. .flex-lg-column {
  9758. flex-direction: column !important;
  9759. }
  9760. .flex-lg-row-reverse {
  9761. flex-direction: row-reverse !important;
  9762. }
  9763. .flex-lg-column-reverse {
  9764. flex-direction: column-reverse !important;
  9765. }
  9766. .flex-lg-grow-0 {
  9767. flex-grow: 0 !important;
  9768. }
  9769. .flex-lg-grow-1 {
  9770. flex-grow: 1 !important;
  9771. }
  9772. .flex-lg-shrink-0 {
  9773. flex-shrink: 0 !important;
  9774. }
  9775. .flex-lg-shrink-1 {
  9776. flex-shrink: 1 !important;
  9777. }
  9778. .flex-lg-wrap {
  9779. flex-wrap: wrap !important;
  9780. }
  9781. .flex-lg-nowrap {
  9782. flex-wrap: nowrap !important;
  9783. }
  9784. .flex-lg-wrap-reverse {
  9785. flex-wrap: wrap-reverse !important;
  9786. }
  9787. .justify-content-lg-start {
  9788. justify-content: flex-start !important;
  9789. }
  9790. .justify-content-lg-end {
  9791. justify-content: flex-end !important;
  9792. }
  9793. .justify-content-lg-center {
  9794. justify-content: center !important;
  9795. }
  9796. .justify-content-lg-between {
  9797. justify-content: space-between !important;
  9798. }
  9799. .justify-content-lg-around {
  9800. justify-content: space-around !important;
  9801. }
  9802. .justify-content-lg-evenly {
  9803. justify-content: space-evenly !important;
  9804. }
  9805. .align-items-lg-start {
  9806. align-items: flex-start !important;
  9807. }
  9808. .align-items-lg-end {
  9809. align-items: flex-end !important;
  9810. }
  9811. .align-items-lg-center {
  9812. align-items: center !important;
  9813. }
  9814. .align-items-lg-baseline {
  9815. align-items: baseline !important;
  9816. }
  9817. .align-items-lg-stretch {
  9818. align-items: stretch !important;
  9819. }
  9820. .align-content-lg-start {
  9821. align-content: flex-start !important;
  9822. }
  9823. .align-content-lg-end {
  9824. align-content: flex-end !important;
  9825. }
  9826. .align-content-lg-center {
  9827. align-content: center !important;
  9828. }
  9829. .align-content-lg-between {
  9830. align-content: space-between !important;
  9831. }
  9832. .align-content-lg-around {
  9833. align-content: space-around !important;
  9834. }
  9835. .align-content-lg-stretch {
  9836. align-content: stretch !important;
  9837. }
  9838. .align-self-lg-auto {
  9839. align-self: auto !important;
  9840. }
  9841. .align-self-lg-start {
  9842. align-self: flex-start !important;
  9843. }
  9844. .align-self-lg-end {
  9845. align-self: flex-end !important;
  9846. }
  9847. .align-self-lg-center {
  9848. align-self: center !important;
  9849. }
  9850. .align-self-lg-baseline {
  9851. align-self: baseline !important;
  9852. }
  9853. .align-self-lg-stretch {
  9854. align-self: stretch !important;
  9855. }
  9856. .order-lg-first {
  9857. order: -1 !important;
  9858. }
  9859. .order-lg-0 {
  9860. order: 0 !important;
  9861. }
  9862. .order-lg-1 {
  9863. order: 1 !important;
  9864. }
  9865. .order-lg-2 {
  9866. order: 2 !important;
  9867. }
  9868. .order-lg-3 {
  9869. order: 3 !important;
  9870. }
  9871. .order-lg-4 {
  9872. order: 4 !important;
  9873. }
  9874. .order-lg-5 {
  9875. order: 5 !important;
  9876. }
  9877. .order-lg-last {
  9878. order: 6 !important;
  9879. }
  9880. .m-lg-0 {
  9881. margin: 0 !important;
  9882. }
  9883. .m-lg-1 {
  9884. margin: 0.25rem !important;
  9885. }
  9886. .m-lg-2 {
  9887. margin: 0.5rem !important;
  9888. }
  9889. .m-lg-3 {
  9890. margin: 1rem !important;
  9891. }
  9892. .m-lg-4 {
  9893. margin: 1.5rem !important;
  9894. }
  9895. .m-lg-5 {
  9896. margin: 3rem !important;
  9897. }
  9898. .m-lg-auto {
  9899. margin: auto !important;
  9900. }
  9901. .mx-lg-0 {
  9902. margin-left: 0 !important;
  9903. margin-right: 0 !important;
  9904. }
  9905. .mx-lg-1 {
  9906. margin-left: 0.25rem !important;
  9907. margin-right: 0.25rem !important;
  9908. }
  9909. .mx-lg-2 {
  9910. margin-left: 0.5rem !important;
  9911. margin-right: 0.5rem !important;
  9912. }
  9913. .mx-lg-3 {
  9914. margin-left: 1rem !important;
  9915. margin-right: 1rem !important;
  9916. }
  9917. .mx-lg-4 {
  9918. margin-left: 1.5rem !important;
  9919. margin-right: 1.5rem !important;
  9920. }
  9921. .mx-lg-5 {
  9922. margin-left: 3rem !important;
  9923. margin-right: 3rem !important;
  9924. }
  9925. .mx-lg-auto {
  9926. margin-left: auto !important;
  9927. margin-right: auto !important;
  9928. }
  9929. .my-lg-0 {
  9930. margin-top: 0 !important;
  9931. margin-bottom: 0 !important;
  9932. }
  9933. .my-lg-1 {
  9934. margin-top: 0.25rem !important;
  9935. margin-bottom: 0.25rem !important;
  9936. }
  9937. .my-lg-2 {
  9938. margin-top: 0.5rem !important;
  9939. margin-bottom: 0.5rem !important;
  9940. }
  9941. .my-lg-3 {
  9942. margin-top: 1rem !important;
  9943. margin-bottom: 1rem !important;
  9944. }
  9945. .my-lg-4 {
  9946. margin-top: 1.5rem !important;
  9947. margin-bottom: 1.5rem !important;
  9948. }
  9949. .my-lg-5 {
  9950. margin-top: 3rem !important;
  9951. margin-bottom: 3rem !important;
  9952. }
  9953. .my-lg-auto {
  9954. margin-top: auto !important;
  9955. margin-bottom: auto !important;
  9956. }
  9957. .mt-lg-0 {
  9958. margin-top: 0 !important;
  9959. }
  9960. .mt-lg-1 {
  9961. margin-top: 0.25rem !important;
  9962. }
  9963. .mt-lg-2 {
  9964. margin-top: 0.5rem !important;
  9965. }
  9966. .mt-lg-3 {
  9967. margin-top: 1rem !important;
  9968. }
  9969. .mt-lg-4 {
  9970. margin-top: 1.5rem !important;
  9971. }
  9972. .mt-lg-5 {
  9973. margin-top: 3rem !important;
  9974. }
  9975. .mt-lg-auto {
  9976. margin-top: auto !important;
  9977. }
  9978. .me-lg-0 {
  9979. margin-left: 0 !important;
  9980. }
  9981. .me-lg-1 {
  9982. margin-left: 0.25rem !important;
  9983. }
  9984. .me-lg-2 {
  9985. margin-left: 0.5rem !important;
  9986. }
  9987. .me-lg-3 {
  9988. margin-left: 1rem !important;
  9989. }
  9990. .me-lg-4 {
  9991. margin-left: 1.5rem !important;
  9992. }
  9993. .me-lg-5 {
  9994. margin-left: 3rem !important;
  9995. }
  9996. .me-lg-auto {
  9997. margin-left: auto !important;
  9998. }
  9999. .mb-lg-0 {
  10000. margin-bottom: 0 !important;
  10001. }
  10002. .mb-lg-1 {
  10003. margin-bottom: 0.25rem !important;
  10004. }
  10005. .mb-lg-2 {
  10006. margin-bottom: 0.5rem !important;
  10007. }
  10008. .mb-lg-3 {
  10009. margin-bottom: 1rem !important;
  10010. }
  10011. .mb-lg-4 {
  10012. margin-bottom: 1.5rem !important;
  10013. }
  10014. .mb-lg-5 {
  10015. margin-bottom: 3rem !important;
  10016. }
  10017. .mb-lg-auto {
  10018. margin-bottom: auto !important;
  10019. }
  10020. .ms-lg-0 {
  10021. margin-right: 0 !important;
  10022. }
  10023. .ms-lg-1 {
  10024. margin-right: 0.25rem !important;
  10025. }
  10026. .ms-lg-2 {
  10027. margin-right: 0.5rem !important;
  10028. }
  10029. .ms-lg-3 {
  10030. margin-right: 1rem !important;
  10031. }
  10032. .ms-lg-4 {
  10033. margin-right: 1.5rem !important;
  10034. }
  10035. .ms-lg-5 {
  10036. margin-right: 3rem !important;
  10037. }
  10038. .ms-lg-auto {
  10039. margin-right: auto !important;
  10040. }
  10041. .m-lg-n1 {
  10042. margin: -0.25rem !important;
  10043. }
  10044. .m-lg-n2 {
  10045. margin: -0.5rem !important;
  10046. }
  10047. .m-lg-n3 {
  10048. margin: -1rem !important;
  10049. }
  10050. .m-lg-n4 {
  10051. margin: -1.5rem !important;
  10052. }
  10053. .m-lg-n5 {
  10054. margin: -3rem !important;
  10055. }
  10056. .mx-lg-n1 {
  10057. margin-left: -0.25rem !important;
  10058. margin-right: -0.25rem !important;
  10059. }
  10060. .mx-lg-n2 {
  10061. margin-left: -0.5rem !important;
  10062. margin-right: -0.5rem !important;
  10063. }
  10064. .mx-lg-n3 {
  10065. margin-left: -1rem !important;
  10066. margin-right: -1rem !important;
  10067. }
  10068. .mx-lg-n4 {
  10069. margin-left: -1.5rem !important;
  10070. margin-right: -1.5rem !important;
  10071. }
  10072. .mx-lg-n5 {
  10073. margin-left: -3rem !important;
  10074. margin-right: -3rem !important;
  10075. }
  10076. .my-lg-n1 {
  10077. margin-top: -0.25rem !important;
  10078. margin-bottom: -0.25rem !important;
  10079. }
  10080. .my-lg-n2 {
  10081. margin-top: -0.5rem !important;
  10082. margin-bottom: -0.5rem !important;
  10083. }
  10084. .my-lg-n3 {
  10085. margin-top: -1rem !important;
  10086. margin-bottom: -1rem !important;
  10087. }
  10088. .my-lg-n4 {
  10089. margin-top: -1.5rem !important;
  10090. margin-bottom: -1.5rem !important;
  10091. }
  10092. .my-lg-n5 {
  10093. margin-top: -3rem !important;
  10094. margin-bottom: -3rem !important;
  10095. }
  10096. .mt-lg-n1 {
  10097. margin-top: -0.25rem !important;
  10098. }
  10099. .mt-lg-n2 {
  10100. margin-top: -0.5rem !important;
  10101. }
  10102. .mt-lg-n3 {
  10103. margin-top: -1rem !important;
  10104. }
  10105. .mt-lg-n4 {
  10106. margin-top: -1.5rem !important;
  10107. }
  10108. .mt-lg-n5 {
  10109. margin-top: -3rem !important;
  10110. }
  10111. .me-lg-n1 {
  10112. margin-left: -0.25rem !important;
  10113. }
  10114. .me-lg-n2 {
  10115. margin-left: -0.5rem !important;
  10116. }
  10117. .me-lg-n3 {
  10118. margin-left: -1rem !important;
  10119. }
  10120. .me-lg-n4 {
  10121. margin-left: -1.5rem !important;
  10122. }
  10123. .me-lg-n5 {
  10124. margin-left: -3rem !important;
  10125. }
  10126. .mb-lg-n1 {
  10127. margin-bottom: -0.25rem !important;
  10128. }
  10129. .mb-lg-n2 {
  10130. margin-bottom: -0.5rem !important;
  10131. }
  10132. .mb-lg-n3 {
  10133. margin-bottom: -1rem !important;
  10134. }
  10135. .mb-lg-n4 {
  10136. margin-bottom: -1.5rem !important;
  10137. }
  10138. .mb-lg-n5 {
  10139. margin-bottom: -3rem !important;
  10140. }
  10141. .ms-lg-n1 {
  10142. margin-right: -0.25rem !important;
  10143. }
  10144. .ms-lg-n2 {
  10145. margin-right: -0.5rem !important;
  10146. }
  10147. .ms-lg-n3 {
  10148. margin-right: -1rem !important;
  10149. }
  10150. .ms-lg-n4 {
  10151. margin-right: -1.5rem !important;
  10152. }
  10153. .ms-lg-n5 {
  10154. margin-right: -3rem !important;
  10155. }
  10156. .p-lg-0 {
  10157. padding: 0 !important;
  10158. }
  10159. .p-lg-1 {
  10160. padding: 0.25rem !important;
  10161. }
  10162. .p-lg-2 {
  10163. padding: 0.5rem !important;
  10164. }
  10165. .p-lg-3 {
  10166. padding: 1rem !important;
  10167. }
  10168. .p-lg-4 {
  10169. padding: 1.5rem !important;
  10170. }
  10171. .p-lg-5 {
  10172. padding: 3rem !important;
  10173. }
  10174. .px-lg-0 {
  10175. padding-left: 0 !important;
  10176. padding-right: 0 !important;
  10177. }
  10178. .px-lg-1 {
  10179. padding-left: 0.25rem !important;
  10180. padding-right: 0.25rem !important;
  10181. }
  10182. .px-lg-2 {
  10183. padding-left: 0.5rem !important;
  10184. padding-right: 0.5rem !important;
  10185. }
  10186. .px-lg-3 {
  10187. padding-left: 1rem !important;
  10188. padding-right: 1rem !important;
  10189. }
  10190. .px-lg-4 {
  10191. padding-left: 1.5rem !important;
  10192. padding-right: 1.5rem !important;
  10193. }
  10194. .px-lg-5 {
  10195. padding-left: 3rem !important;
  10196. padding-right: 3rem !important;
  10197. }
  10198. .py-lg-0 {
  10199. padding-top: 0 !important;
  10200. padding-bottom: 0 !important;
  10201. }
  10202. .py-lg-1 {
  10203. padding-top: 0.25rem !important;
  10204. padding-bottom: 0.25rem !important;
  10205. }
  10206. .py-lg-2 {
  10207. padding-top: 0.5rem !important;
  10208. padding-bottom: 0.5rem !important;
  10209. }
  10210. .py-lg-3 {
  10211. padding-top: 1rem !important;
  10212. padding-bottom: 1rem !important;
  10213. }
  10214. .py-lg-4 {
  10215. padding-top: 1.5rem !important;
  10216. padding-bottom: 1.5rem !important;
  10217. }
  10218. .py-lg-5 {
  10219. padding-top: 3rem !important;
  10220. padding-bottom: 3rem !important;
  10221. }
  10222. .pt-lg-0 {
  10223. padding-top: 0 !important;
  10224. }
  10225. .pt-lg-1 {
  10226. padding-top: 0.25rem !important;
  10227. }
  10228. .pt-lg-2 {
  10229. padding-top: 0.5rem !important;
  10230. }
  10231. .pt-lg-3 {
  10232. padding-top: 1rem !important;
  10233. }
  10234. .pt-lg-4 {
  10235. padding-top: 1.5rem !important;
  10236. }
  10237. .pt-lg-5 {
  10238. padding-top: 3rem !important;
  10239. }
  10240. .pe-lg-0 {
  10241. padding-left: 0 !important;
  10242. }
  10243. .pe-lg-1 {
  10244. padding-left: 0.25rem !important;
  10245. }
  10246. .pe-lg-2 {
  10247. padding-left: 0.5rem !important;
  10248. }
  10249. .pe-lg-3 {
  10250. padding-left: 1rem !important;
  10251. }
  10252. .pe-lg-4 {
  10253. padding-left: 1.5rem !important;
  10254. }
  10255. .pe-lg-5 {
  10256. padding-left: 3rem !important;
  10257. }
  10258. .pb-lg-0 {
  10259. padding-bottom: 0 !important;
  10260. }
  10261. .pb-lg-1 {
  10262. padding-bottom: 0.25rem !important;
  10263. }
  10264. .pb-lg-2 {
  10265. padding-bottom: 0.5rem !important;
  10266. }
  10267. .pb-lg-3 {
  10268. padding-bottom: 1rem !important;
  10269. }
  10270. .pb-lg-4 {
  10271. padding-bottom: 1.5rem !important;
  10272. }
  10273. .pb-lg-5 {
  10274. padding-bottom: 3rem !important;
  10275. }
  10276. .ps-lg-0 {
  10277. padding-right: 0 !important;
  10278. }
  10279. .ps-lg-1 {
  10280. padding-right: 0.25rem !important;
  10281. }
  10282. .ps-lg-2 {
  10283. padding-right: 0.5rem !important;
  10284. }
  10285. .ps-lg-3 {
  10286. padding-right: 1rem !important;
  10287. }
  10288. .ps-lg-4 {
  10289. padding-right: 1.5rem !important;
  10290. }
  10291. .ps-lg-5 {
  10292. padding-right: 3rem !important;
  10293. }
  10294. .gap-lg-0 {
  10295. gap: 0 !important;
  10296. }
  10297. .gap-lg-1 {
  10298. gap: 0.25rem !important;
  10299. }
  10300. .gap-lg-2 {
  10301. gap: 0.5rem !important;
  10302. }
  10303. .gap-lg-3 {
  10304. gap: 1rem !important;
  10305. }
  10306. .gap-lg-4 {
  10307. gap: 1.5rem !important;
  10308. }
  10309. .gap-lg-5 {
  10310. gap: 3rem !important;
  10311. }
  10312. .row-gap-lg-0 {
  10313. row-gap: 0 !important;
  10314. }
  10315. .row-gap-lg-1 {
  10316. row-gap: 0.25rem !important;
  10317. }
  10318. .row-gap-lg-2 {
  10319. row-gap: 0.5rem !important;
  10320. }
  10321. .row-gap-lg-3 {
  10322. row-gap: 1rem !important;
  10323. }
  10324. .row-gap-lg-4 {
  10325. row-gap: 1.5rem !important;
  10326. }
  10327. .row-gap-lg-5 {
  10328. row-gap: 3rem !important;
  10329. }
  10330. .column-gap-lg-0 {
  10331. -moz-column-gap: 0 !important;
  10332. column-gap: 0 !important;
  10333. }
  10334. .column-gap-lg-1 {
  10335. -moz-column-gap: 0.25rem !important;
  10336. column-gap: 0.25rem !important;
  10337. }
  10338. .column-gap-lg-2 {
  10339. -moz-column-gap: 0.5rem !important;
  10340. column-gap: 0.5rem !important;
  10341. }
  10342. .column-gap-lg-3 {
  10343. -moz-column-gap: 1rem !important;
  10344. column-gap: 1rem !important;
  10345. }
  10346. .column-gap-lg-4 {
  10347. -moz-column-gap: 1.5rem !important;
  10348. column-gap: 1.5rem !important;
  10349. }
  10350. .column-gap-lg-5 {
  10351. -moz-column-gap: 3rem !important;
  10352. column-gap: 3rem !important;
  10353. }
  10354. .text-lg-start {
  10355. text-align: right !important;
  10356. }
  10357. .text-lg-end {
  10358. text-align: left !important;
  10359. }
  10360. .text-lg-center {
  10361. text-align: center !important;
  10362. }
  10363. }
  10364. @media (min-width: 1200px) {
  10365. .float-xl-start {
  10366. float: right !important;
  10367. }
  10368. .float-xl-end {
  10369. float: left !important;
  10370. }
  10371. .float-xl-none {
  10372. float: none !important;
  10373. }
  10374. .object-fit-xl-contain {
  10375. -o-object-fit: contain !important;
  10376. object-fit: contain !important;
  10377. }
  10378. .object-fit-xl-cover {
  10379. -o-object-fit: cover !important;
  10380. object-fit: cover !important;
  10381. }
  10382. .object-fit-xl-fill {
  10383. -o-object-fit: fill !important;
  10384. object-fit: fill !important;
  10385. }
  10386. .object-fit-xl-scale {
  10387. -o-object-fit: scale-down !important;
  10388. object-fit: scale-down !important;
  10389. }
  10390. .object-fit-xl-none {
  10391. -o-object-fit: none !important;
  10392. object-fit: none !important;
  10393. }
  10394. .d-xl-inline {
  10395. display: inline !important;
  10396. }
  10397. .d-xl-inline-block {
  10398. display: inline-block !important;
  10399. }
  10400. .d-xl-block {
  10401. display: block !important;
  10402. }
  10403. .d-xl-grid {
  10404. display: grid !important;
  10405. }
  10406. .d-xl-inline-grid {
  10407. display: inline-grid !important;
  10408. }
  10409. .d-xl-table {
  10410. display: table !important;
  10411. }
  10412. .d-xl-table-row {
  10413. display: table-row !important;
  10414. }
  10415. .d-xl-table-cell {
  10416. display: table-cell !important;
  10417. }
  10418. .d-xl-flex {
  10419. display: flex !important;
  10420. }
  10421. .d-xl-inline-flex {
  10422. display: inline-flex !important;
  10423. }
  10424. .d-xl-none {
  10425. display: none !important;
  10426. }
  10427. .flex-xl-fill {
  10428. flex: 1 1 auto !important;
  10429. }
  10430. .flex-xl-row {
  10431. flex-direction: row !important;
  10432. }
  10433. .flex-xl-column {
  10434. flex-direction: column !important;
  10435. }
  10436. .flex-xl-row-reverse {
  10437. flex-direction: row-reverse !important;
  10438. }
  10439. .flex-xl-column-reverse {
  10440. flex-direction: column-reverse !important;
  10441. }
  10442. .flex-xl-grow-0 {
  10443. flex-grow: 0 !important;
  10444. }
  10445. .flex-xl-grow-1 {
  10446. flex-grow: 1 !important;
  10447. }
  10448. .flex-xl-shrink-0 {
  10449. flex-shrink: 0 !important;
  10450. }
  10451. .flex-xl-shrink-1 {
  10452. flex-shrink: 1 !important;
  10453. }
  10454. .flex-xl-wrap {
  10455. flex-wrap: wrap !important;
  10456. }
  10457. .flex-xl-nowrap {
  10458. flex-wrap: nowrap !important;
  10459. }
  10460. .flex-xl-wrap-reverse {
  10461. flex-wrap: wrap-reverse !important;
  10462. }
  10463. .justify-content-xl-start {
  10464. justify-content: flex-start !important;
  10465. }
  10466. .justify-content-xl-end {
  10467. justify-content: flex-end !important;
  10468. }
  10469. .justify-content-xl-center {
  10470. justify-content: center !important;
  10471. }
  10472. .justify-content-xl-between {
  10473. justify-content: space-between !important;
  10474. }
  10475. .justify-content-xl-around {
  10476. justify-content: space-around !important;
  10477. }
  10478. .justify-content-xl-evenly {
  10479. justify-content: space-evenly !important;
  10480. }
  10481. .align-items-xl-start {
  10482. align-items: flex-start !important;
  10483. }
  10484. .align-items-xl-end {
  10485. align-items: flex-end !important;
  10486. }
  10487. .align-items-xl-center {
  10488. align-items: center !important;
  10489. }
  10490. .align-items-xl-baseline {
  10491. align-items: baseline !important;
  10492. }
  10493. .align-items-xl-stretch {
  10494. align-items: stretch !important;
  10495. }
  10496. .align-content-xl-start {
  10497. align-content: flex-start !important;
  10498. }
  10499. .align-content-xl-end {
  10500. align-content: flex-end !important;
  10501. }
  10502. .align-content-xl-center {
  10503. align-content: center !important;
  10504. }
  10505. .align-content-xl-between {
  10506. align-content: space-between !important;
  10507. }
  10508. .align-content-xl-around {
  10509. align-content: space-around !important;
  10510. }
  10511. .align-content-xl-stretch {
  10512. align-content: stretch !important;
  10513. }
  10514. .align-self-xl-auto {
  10515. align-self: auto !important;
  10516. }
  10517. .align-self-xl-start {
  10518. align-self: flex-start !important;
  10519. }
  10520. .align-self-xl-end {
  10521. align-self: flex-end !important;
  10522. }
  10523. .align-self-xl-center {
  10524. align-self: center !important;
  10525. }
  10526. .align-self-xl-baseline {
  10527. align-self: baseline !important;
  10528. }
  10529. .align-self-xl-stretch {
  10530. align-self: stretch !important;
  10531. }
  10532. .order-xl-first {
  10533. order: -1 !important;
  10534. }
  10535. .order-xl-0 {
  10536. order: 0 !important;
  10537. }
  10538. .order-xl-1 {
  10539. order: 1 !important;
  10540. }
  10541. .order-xl-2 {
  10542. order: 2 !important;
  10543. }
  10544. .order-xl-3 {
  10545. order: 3 !important;
  10546. }
  10547. .order-xl-4 {
  10548. order: 4 !important;
  10549. }
  10550. .order-xl-5 {
  10551. order: 5 !important;
  10552. }
  10553. .order-xl-last {
  10554. order: 6 !important;
  10555. }
  10556. .m-xl-0 {
  10557. margin: 0 !important;
  10558. }
  10559. .m-xl-1 {
  10560. margin: 0.25rem !important;
  10561. }
  10562. .m-xl-2 {
  10563. margin: 0.5rem !important;
  10564. }
  10565. .m-xl-3 {
  10566. margin: 1rem !important;
  10567. }
  10568. .m-xl-4 {
  10569. margin: 1.5rem !important;
  10570. }
  10571. .m-xl-5 {
  10572. margin: 3rem !important;
  10573. }
  10574. .m-xl-auto {
  10575. margin: auto !important;
  10576. }
  10577. .mx-xl-0 {
  10578. margin-left: 0 !important;
  10579. margin-right: 0 !important;
  10580. }
  10581. .mx-xl-1 {
  10582. margin-left: 0.25rem !important;
  10583. margin-right: 0.25rem !important;
  10584. }
  10585. .mx-xl-2 {
  10586. margin-left: 0.5rem !important;
  10587. margin-right: 0.5rem !important;
  10588. }
  10589. .mx-xl-3 {
  10590. margin-left: 1rem !important;
  10591. margin-right: 1rem !important;
  10592. }
  10593. .mx-xl-4 {
  10594. margin-left: 1.5rem !important;
  10595. margin-right: 1.5rem !important;
  10596. }
  10597. .mx-xl-5 {
  10598. margin-left: 3rem !important;
  10599. margin-right: 3rem !important;
  10600. }
  10601. .mx-xl-auto {
  10602. margin-left: auto !important;
  10603. margin-right: auto !important;
  10604. }
  10605. .my-xl-0 {
  10606. margin-top: 0 !important;
  10607. margin-bottom: 0 !important;
  10608. }
  10609. .my-xl-1 {
  10610. margin-top: 0.25rem !important;
  10611. margin-bottom: 0.25rem !important;
  10612. }
  10613. .my-xl-2 {
  10614. margin-top: 0.5rem !important;
  10615. margin-bottom: 0.5rem !important;
  10616. }
  10617. .my-xl-3 {
  10618. margin-top: 1rem !important;
  10619. margin-bottom: 1rem !important;
  10620. }
  10621. .my-xl-4 {
  10622. margin-top: 1.5rem !important;
  10623. margin-bottom: 1.5rem !important;
  10624. }
  10625. .my-xl-5 {
  10626. margin-top: 3rem !important;
  10627. margin-bottom: 3rem !important;
  10628. }
  10629. .my-xl-auto {
  10630. margin-top: auto !important;
  10631. margin-bottom: auto !important;
  10632. }
  10633. .mt-xl-0 {
  10634. margin-top: 0 !important;
  10635. }
  10636. .mt-xl-1 {
  10637. margin-top: 0.25rem !important;
  10638. }
  10639. .mt-xl-2 {
  10640. margin-top: 0.5rem !important;
  10641. }
  10642. .mt-xl-3 {
  10643. margin-top: 1rem !important;
  10644. }
  10645. .mt-xl-4 {
  10646. margin-top: 1.5rem !important;
  10647. }
  10648. .mt-xl-5 {
  10649. margin-top: 3rem !important;
  10650. }
  10651. .mt-xl-auto {
  10652. margin-top: auto !important;
  10653. }
  10654. .me-xl-0 {
  10655. margin-left: 0 !important;
  10656. }
  10657. .me-xl-1 {
  10658. margin-left: 0.25rem !important;
  10659. }
  10660. .me-xl-2 {
  10661. margin-left: 0.5rem !important;
  10662. }
  10663. .me-xl-3 {
  10664. margin-left: 1rem !important;
  10665. }
  10666. .me-xl-4 {
  10667. margin-left: 1.5rem !important;
  10668. }
  10669. .me-xl-5 {
  10670. margin-left: 3rem !important;
  10671. }
  10672. .me-xl-auto {
  10673. margin-left: auto !important;
  10674. }
  10675. .mb-xl-0 {
  10676. margin-bottom: 0 !important;
  10677. }
  10678. .mb-xl-1 {
  10679. margin-bottom: 0.25rem !important;
  10680. }
  10681. .mb-xl-2 {
  10682. margin-bottom: 0.5rem !important;
  10683. }
  10684. .mb-xl-3 {
  10685. margin-bottom: 1rem !important;
  10686. }
  10687. .mb-xl-4 {
  10688. margin-bottom: 1.5rem !important;
  10689. }
  10690. .mb-xl-5 {
  10691. margin-bottom: 3rem !important;
  10692. }
  10693. .mb-xl-auto {
  10694. margin-bottom: auto !important;
  10695. }
  10696. .ms-xl-0 {
  10697. margin-right: 0 !important;
  10698. }
  10699. .ms-xl-1 {
  10700. margin-right: 0.25rem !important;
  10701. }
  10702. .ms-xl-2 {
  10703. margin-right: 0.5rem !important;
  10704. }
  10705. .ms-xl-3 {
  10706. margin-right: 1rem !important;
  10707. }
  10708. .ms-xl-4 {
  10709. margin-right: 1.5rem !important;
  10710. }
  10711. .ms-xl-5 {
  10712. margin-right: 3rem !important;
  10713. }
  10714. .ms-xl-auto {
  10715. margin-right: auto !important;
  10716. }
  10717. .m-xl-n1 {
  10718. margin: -0.25rem !important;
  10719. }
  10720. .m-xl-n2 {
  10721. margin: -0.5rem !important;
  10722. }
  10723. .m-xl-n3 {
  10724. margin: -1rem !important;
  10725. }
  10726. .m-xl-n4 {
  10727. margin: -1.5rem !important;
  10728. }
  10729. .m-xl-n5 {
  10730. margin: -3rem !important;
  10731. }
  10732. .mx-xl-n1 {
  10733. margin-left: -0.25rem !important;
  10734. margin-right: -0.25rem !important;
  10735. }
  10736. .mx-xl-n2 {
  10737. margin-left: -0.5rem !important;
  10738. margin-right: -0.5rem !important;
  10739. }
  10740. .mx-xl-n3 {
  10741. margin-left: -1rem !important;
  10742. margin-right: -1rem !important;
  10743. }
  10744. .mx-xl-n4 {
  10745. margin-left: -1.5rem !important;
  10746. margin-right: -1.5rem !important;
  10747. }
  10748. .mx-xl-n5 {
  10749. margin-left: -3rem !important;
  10750. margin-right: -3rem !important;
  10751. }
  10752. .my-xl-n1 {
  10753. margin-top: -0.25rem !important;
  10754. margin-bottom: -0.25rem !important;
  10755. }
  10756. .my-xl-n2 {
  10757. margin-top: -0.5rem !important;
  10758. margin-bottom: -0.5rem !important;
  10759. }
  10760. .my-xl-n3 {
  10761. margin-top: -1rem !important;
  10762. margin-bottom: -1rem !important;
  10763. }
  10764. .my-xl-n4 {
  10765. margin-top: -1.5rem !important;
  10766. margin-bottom: -1.5rem !important;
  10767. }
  10768. .my-xl-n5 {
  10769. margin-top: -3rem !important;
  10770. margin-bottom: -3rem !important;
  10771. }
  10772. .mt-xl-n1 {
  10773. margin-top: -0.25rem !important;
  10774. }
  10775. .mt-xl-n2 {
  10776. margin-top: -0.5rem !important;
  10777. }
  10778. .mt-xl-n3 {
  10779. margin-top: -1rem !important;
  10780. }
  10781. .mt-xl-n4 {
  10782. margin-top: -1.5rem !important;
  10783. }
  10784. .mt-xl-n5 {
  10785. margin-top: -3rem !important;
  10786. }
  10787. .me-xl-n1 {
  10788. margin-left: -0.25rem !important;
  10789. }
  10790. .me-xl-n2 {
  10791. margin-left: -0.5rem !important;
  10792. }
  10793. .me-xl-n3 {
  10794. margin-left: -1rem !important;
  10795. }
  10796. .me-xl-n4 {
  10797. margin-left: -1.5rem !important;
  10798. }
  10799. .me-xl-n5 {
  10800. margin-left: -3rem !important;
  10801. }
  10802. .mb-xl-n1 {
  10803. margin-bottom: -0.25rem !important;
  10804. }
  10805. .mb-xl-n2 {
  10806. margin-bottom: -0.5rem !important;
  10807. }
  10808. .mb-xl-n3 {
  10809. margin-bottom: -1rem !important;
  10810. }
  10811. .mb-xl-n4 {
  10812. margin-bottom: -1.5rem !important;
  10813. }
  10814. .mb-xl-n5 {
  10815. margin-bottom: -3rem !important;
  10816. }
  10817. .ms-xl-n1 {
  10818. margin-right: -0.25rem !important;
  10819. }
  10820. .ms-xl-n2 {
  10821. margin-right: -0.5rem !important;
  10822. }
  10823. .ms-xl-n3 {
  10824. margin-right: -1rem !important;
  10825. }
  10826. .ms-xl-n4 {
  10827. margin-right: -1.5rem !important;
  10828. }
  10829. .ms-xl-n5 {
  10830. margin-right: -3rem !important;
  10831. }
  10832. .p-xl-0 {
  10833. padding: 0 !important;
  10834. }
  10835. .p-xl-1 {
  10836. padding: 0.25rem !important;
  10837. }
  10838. .p-xl-2 {
  10839. padding: 0.5rem !important;
  10840. }
  10841. .p-xl-3 {
  10842. padding: 1rem !important;
  10843. }
  10844. .p-xl-4 {
  10845. padding: 1.5rem !important;
  10846. }
  10847. .p-xl-5 {
  10848. padding: 3rem !important;
  10849. }
  10850. .px-xl-0 {
  10851. padding-left: 0 !important;
  10852. padding-right: 0 !important;
  10853. }
  10854. .px-xl-1 {
  10855. padding-left: 0.25rem !important;
  10856. padding-right: 0.25rem !important;
  10857. }
  10858. .px-xl-2 {
  10859. padding-left: 0.5rem !important;
  10860. padding-right: 0.5rem !important;
  10861. }
  10862. .px-xl-3 {
  10863. padding-left: 1rem !important;
  10864. padding-right: 1rem !important;
  10865. }
  10866. .px-xl-4 {
  10867. padding-left: 1.5rem !important;
  10868. padding-right: 1.5rem !important;
  10869. }
  10870. .px-xl-5 {
  10871. padding-left: 3rem !important;
  10872. padding-right: 3rem !important;
  10873. }
  10874. .py-xl-0 {
  10875. padding-top: 0 !important;
  10876. padding-bottom: 0 !important;
  10877. }
  10878. .py-xl-1 {
  10879. padding-top: 0.25rem !important;
  10880. padding-bottom: 0.25rem !important;
  10881. }
  10882. .py-xl-2 {
  10883. padding-top: 0.5rem !important;
  10884. padding-bottom: 0.5rem !important;
  10885. }
  10886. .py-xl-3 {
  10887. padding-top: 1rem !important;
  10888. padding-bottom: 1rem !important;
  10889. }
  10890. .py-xl-4 {
  10891. padding-top: 1.5rem !important;
  10892. padding-bottom: 1.5rem !important;
  10893. }
  10894. .py-xl-5 {
  10895. padding-top: 3rem !important;
  10896. padding-bottom: 3rem !important;
  10897. }
  10898. .pt-xl-0 {
  10899. padding-top: 0 !important;
  10900. }
  10901. .pt-xl-1 {
  10902. padding-top: 0.25rem !important;
  10903. }
  10904. .pt-xl-2 {
  10905. padding-top: 0.5rem !important;
  10906. }
  10907. .pt-xl-3 {
  10908. padding-top: 1rem !important;
  10909. }
  10910. .pt-xl-4 {
  10911. padding-top: 1.5rem !important;
  10912. }
  10913. .pt-xl-5 {
  10914. padding-top: 3rem !important;
  10915. }
  10916. .pe-xl-0 {
  10917. padding-left: 0 !important;
  10918. }
  10919. .pe-xl-1 {
  10920. padding-left: 0.25rem !important;
  10921. }
  10922. .pe-xl-2 {
  10923. padding-left: 0.5rem !important;
  10924. }
  10925. .pe-xl-3 {
  10926. padding-left: 1rem !important;
  10927. }
  10928. .pe-xl-4 {
  10929. padding-left: 1.5rem !important;
  10930. }
  10931. .pe-xl-5 {
  10932. padding-left: 3rem !important;
  10933. }
  10934. .pb-xl-0 {
  10935. padding-bottom: 0 !important;
  10936. }
  10937. .pb-xl-1 {
  10938. padding-bottom: 0.25rem !important;
  10939. }
  10940. .pb-xl-2 {
  10941. padding-bottom: 0.5rem !important;
  10942. }
  10943. .pb-xl-3 {
  10944. padding-bottom: 1rem !important;
  10945. }
  10946. .pb-xl-4 {
  10947. padding-bottom: 1.5rem !important;
  10948. }
  10949. .pb-xl-5 {
  10950. padding-bottom: 3rem !important;
  10951. }
  10952. .ps-xl-0 {
  10953. padding-right: 0 !important;
  10954. }
  10955. .ps-xl-1 {
  10956. padding-right: 0.25rem !important;
  10957. }
  10958. .ps-xl-2 {
  10959. padding-right: 0.5rem !important;
  10960. }
  10961. .ps-xl-3 {
  10962. padding-right: 1rem !important;
  10963. }
  10964. .ps-xl-4 {
  10965. padding-right: 1.5rem !important;
  10966. }
  10967. .ps-xl-5 {
  10968. padding-right: 3rem !important;
  10969. }
  10970. .gap-xl-0 {
  10971. gap: 0 !important;
  10972. }
  10973. .gap-xl-1 {
  10974. gap: 0.25rem !important;
  10975. }
  10976. .gap-xl-2 {
  10977. gap: 0.5rem !important;
  10978. }
  10979. .gap-xl-3 {
  10980. gap: 1rem !important;
  10981. }
  10982. .gap-xl-4 {
  10983. gap: 1.5rem !important;
  10984. }
  10985. .gap-xl-5 {
  10986. gap: 3rem !important;
  10987. }
  10988. .row-gap-xl-0 {
  10989. row-gap: 0 !important;
  10990. }
  10991. .row-gap-xl-1 {
  10992. row-gap: 0.25rem !important;
  10993. }
  10994. .row-gap-xl-2 {
  10995. row-gap: 0.5rem !important;
  10996. }
  10997. .row-gap-xl-3 {
  10998. row-gap: 1rem !important;
  10999. }
  11000. .row-gap-xl-4 {
  11001. row-gap: 1.5rem !important;
  11002. }
  11003. .row-gap-xl-5 {
  11004. row-gap: 3rem !important;
  11005. }
  11006. .column-gap-xl-0 {
  11007. -moz-column-gap: 0 !important;
  11008. column-gap: 0 !important;
  11009. }
  11010. .column-gap-xl-1 {
  11011. -moz-column-gap: 0.25rem !important;
  11012. column-gap: 0.25rem !important;
  11013. }
  11014. .column-gap-xl-2 {
  11015. -moz-column-gap: 0.5rem !important;
  11016. column-gap: 0.5rem !important;
  11017. }
  11018. .column-gap-xl-3 {
  11019. -moz-column-gap: 1rem !important;
  11020. column-gap: 1rem !important;
  11021. }
  11022. .column-gap-xl-4 {
  11023. -moz-column-gap: 1.5rem !important;
  11024. column-gap: 1.5rem !important;
  11025. }
  11026. .column-gap-xl-5 {
  11027. -moz-column-gap: 3rem !important;
  11028. column-gap: 3rem !important;
  11029. }
  11030. .text-xl-start {
  11031. text-align: right !important;
  11032. }
  11033. .text-xl-end {
  11034. text-align: left !important;
  11035. }
  11036. .text-xl-center {
  11037. text-align: center !important;
  11038. }
  11039. }
  11040. @media (min-width: 1400px) {
  11041. .float-xxl-start {
  11042. float: right !important;
  11043. }
  11044. .float-xxl-end {
  11045. float: left !important;
  11046. }
  11047. .float-xxl-none {
  11048. float: none !important;
  11049. }
  11050. .object-fit-xxl-contain {
  11051. -o-object-fit: contain !important;
  11052. object-fit: contain !important;
  11053. }
  11054. .object-fit-xxl-cover {
  11055. -o-object-fit: cover !important;
  11056. object-fit: cover !important;
  11057. }
  11058. .object-fit-xxl-fill {
  11059. -o-object-fit: fill !important;
  11060. object-fit: fill !important;
  11061. }
  11062. .object-fit-xxl-scale {
  11063. -o-object-fit: scale-down !important;
  11064. object-fit: scale-down !important;
  11065. }
  11066. .object-fit-xxl-none {
  11067. -o-object-fit: none !important;
  11068. object-fit: none !important;
  11069. }
  11070. .d-xxl-inline {
  11071. display: inline !important;
  11072. }
  11073. .d-xxl-inline-block {
  11074. display: inline-block !important;
  11075. }
  11076. .d-xxl-block {
  11077. display: block !important;
  11078. }
  11079. .d-xxl-grid {
  11080. display: grid !important;
  11081. }
  11082. .d-xxl-inline-grid {
  11083. display: inline-grid !important;
  11084. }
  11085. .d-xxl-table {
  11086. display: table !important;
  11087. }
  11088. .d-xxl-table-row {
  11089. display: table-row !important;
  11090. }
  11091. .d-xxl-table-cell {
  11092. display: table-cell !important;
  11093. }
  11094. .d-xxl-flex {
  11095. display: flex !important;
  11096. }
  11097. .d-xxl-inline-flex {
  11098. display: inline-flex !important;
  11099. }
  11100. .d-xxl-none {
  11101. display: none !important;
  11102. }
  11103. .flex-xxl-fill {
  11104. flex: 1 1 auto !important;
  11105. }
  11106. .flex-xxl-row {
  11107. flex-direction: row !important;
  11108. }
  11109. .flex-xxl-column {
  11110. flex-direction: column !important;
  11111. }
  11112. .flex-xxl-row-reverse {
  11113. flex-direction: row-reverse !important;
  11114. }
  11115. .flex-xxl-column-reverse {
  11116. flex-direction: column-reverse !important;
  11117. }
  11118. .flex-xxl-grow-0 {
  11119. flex-grow: 0 !important;
  11120. }
  11121. .flex-xxl-grow-1 {
  11122. flex-grow: 1 !important;
  11123. }
  11124. .flex-xxl-shrink-0 {
  11125. flex-shrink: 0 !important;
  11126. }
  11127. .flex-xxl-shrink-1 {
  11128. flex-shrink: 1 !important;
  11129. }
  11130. .flex-xxl-wrap {
  11131. flex-wrap: wrap !important;
  11132. }
  11133. .flex-xxl-nowrap {
  11134. flex-wrap: nowrap !important;
  11135. }
  11136. .flex-xxl-wrap-reverse {
  11137. flex-wrap: wrap-reverse !important;
  11138. }
  11139. .justify-content-xxl-start {
  11140. justify-content: flex-start !important;
  11141. }
  11142. .justify-content-xxl-end {
  11143. justify-content: flex-end !important;
  11144. }
  11145. .justify-content-xxl-center {
  11146. justify-content: center !important;
  11147. }
  11148. .justify-content-xxl-between {
  11149. justify-content: space-between !important;
  11150. }
  11151. .justify-content-xxl-around {
  11152. justify-content: space-around !important;
  11153. }
  11154. .justify-content-xxl-evenly {
  11155. justify-content: space-evenly !important;
  11156. }
  11157. .align-items-xxl-start {
  11158. align-items: flex-start !important;
  11159. }
  11160. .align-items-xxl-end {
  11161. align-items: flex-end !important;
  11162. }
  11163. .align-items-xxl-center {
  11164. align-items: center !important;
  11165. }
  11166. .align-items-xxl-baseline {
  11167. align-items: baseline !important;
  11168. }
  11169. .align-items-xxl-stretch {
  11170. align-items: stretch !important;
  11171. }
  11172. .align-content-xxl-start {
  11173. align-content: flex-start !important;
  11174. }
  11175. .align-content-xxl-end {
  11176. align-content: flex-end !important;
  11177. }
  11178. .align-content-xxl-center {
  11179. align-content: center !important;
  11180. }
  11181. .align-content-xxl-between {
  11182. align-content: space-between !important;
  11183. }
  11184. .align-content-xxl-around {
  11185. align-content: space-around !important;
  11186. }
  11187. .align-content-xxl-stretch {
  11188. align-content: stretch !important;
  11189. }
  11190. .align-self-xxl-auto {
  11191. align-self: auto !important;
  11192. }
  11193. .align-self-xxl-start {
  11194. align-self: flex-start !important;
  11195. }
  11196. .align-self-xxl-end {
  11197. align-self: flex-end !important;
  11198. }
  11199. .align-self-xxl-center {
  11200. align-self: center !important;
  11201. }
  11202. .align-self-xxl-baseline {
  11203. align-self: baseline !important;
  11204. }
  11205. .align-self-xxl-stretch {
  11206. align-self: stretch !important;
  11207. }
  11208. .order-xxl-first {
  11209. order: -1 !important;
  11210. }
  11211. .order-xxl-0 {
  11212. order: 0 !important;
  11213. }
  11214. .order-xxl-1 {
  11215. order: 1 !important;
  11216. }
  11217. .order-xxl-2 {
  11218. order: 2 !important;
  11219. }
  11220. .order-xxl-3 {
  11221. order: 3 !important;
  11222. }
  11223. .order-xxl-4 {
  11224. order: 4 !important;
  11225. }
  11226. .order-xxl-5 {
  11227. order: 5 !important;
  11228. }
  11229. .order-xxl-last {
  11230. order: 6 !important;
  11231. }
  11232. .m-xxl-0 {
  11233. margin: 0 !important;
  11234. }
  11235. .m-xxl-1 {
  11236. margin: 0.25rem !important;
  11237. }
  11238. .m-xxl-2 {
  11239. margin: 0.5rem !important;
  11240. }
  11241. .m-xxl-3 {
  11242. margin: 1rem !important;
  11243. }
  11244. .m-xxl-4 {
  11245. margin: 1.5rem !important;
  11246. }
  11247. .m-xxl-5 {
  11248. margin: 3rem !important;
  11249. }
  11250. .m-xxl-auto {
  11251. margin: auto !important;
  11252. }
  11253. .mx-xxl-0 {
  11254. margin-left: 0 !important;
  11255. margin-right: 0 !important;
  11256. }
  11257. .mx-xxl-1 {
  11258. margin-left: 0.25rem !important;
  11259. margin-right: 0.25rem !important;
  11260. }
  11261. .mx-xxl-2 {
  11262. margin-left: 0.5rem !important;
  11263. margin-right: 0.5rem !important;
  11264. }
  11265. .mx-xxl-3 {
  11266. margin-left: 1rem !important;
  11267. margin-right: 1rem !important;
  11268. }
  11269. .mx-xxl-4 {
  11270. margin-left: 1.5rem !important;
  11271. margin-right: 1.5rem !important;
  11272. }
  11273. .mx-xxl-5 {
  11274. margin-left: 3rem !important;
  11275. margin-right: 3rem !important;
  11276. }
  11277. .mx-xxl-auto {
  11278. margin-left: auto !important;
  11279. margin-right: auto !important;
  11280. }
  11281. .my-xxl-0 {
  11282. margin-top: 0 !important;
  11283. margin-bottom: 0 !important;
  11284. }
  11285. .my-xxl-1 {
  11286. margin-top: 0.25rem !important;
  11287. margin-bottom: 0.25rem !important;
  11288. }
  11289. .my-xxl-2 {
  11290. margin-top: 0.5rem !important;
  11291. margin-bottom: 0.5rem !important;
  11292. }
  11293. .my-xxl-3 {
  11294. margin-top: 1rem !important;
  11295. margin-bottom: 1rem !important;
  11296. }
  11297. .my-xxl-4 {
  11298. margin-top: 1.5rem !important;
  11299. margin-bottom: 1.5rem !important;
  11300. }
  11301. .my-xxl-5 {
  11302. margin-top: 3rem !important;
  11303. margin-bottom: 3rem !important;
  11304. }
  11305. .my-xxl-auto {
  11306. margin-top: auto !important;
  11307. margin-bottom: auto !important;
  11308. }
  11309. .mt-xxl-0 {
  11310. margin-top: 0 !important;
  11311. }
  11312. .mt-xxl-1 {
  11313. margin-top: 0.25rem !important;
  11314. }
  11315. .mt-xxl-2 {
  11316. margin-top: 0.5rem !important;
  11317. }
  11318. .mt-xxl-3 {
  11319. margin-top: 1rem !important;
  11320. }
  11321. .mt-xxl-4 {
  11322. margin-top: 1.5rem !important;
  11323. }
  11324. .mt-xxl-5 {
  11325. margin-top: 3rem !important;
  11326. }
  11327. .mt-xxl-auto {
  11328. margin-top: auto !important;
  11329. }
  11330. .me-xxl-0 {
  11331. margin-left: 0 !important;
  11332. }
  11333. .me-xxl-1 {
  11334. margin-left: 0.25rem !important;
  11335. }
  11336. .me-xxl-2 {
  11337. margin-left: 0.5rem !important;
  11338. }
  11339. .me-xxl-3 {
  11340. margin-left: 1rem !important;
  11341. }
  11342. .me-xxl-4 {
  11343. margin-left: 1.5rem !important;
  11344. }
  11345. .me-xxl-5 {
  11346. margin-left: 3rem !important;
  11347. }
  11348. .me-xxl-auto {
  11349. margin-left: auto !important;
  11350. }
  11351. .mb-xxl-0 {
  11352. margin-bottom: 0 !important;
  11353. }
  11354. .mb-xxl-1 {
  11355. margin-bottom: 0.25rem !important;
  11356. }
  11357. .mb-xxl-2 {
  11358. margin-bottom: 0.5rem !important;
  11359. }
  11360. .mb-xxl-3 {
  11361. margin-bottom: 1rem !important;
  11362. }
  11363. .mb-xxl-4 {
  11364. margin-bottom: 1.5rem !important;
  11365. }
  11366. .mb-xxl-5 {
  11367. margin-bottom: 3rem !important;
  11368. }
  11369. .mb-xxl-auto {
  11370. margin-bottom: auto !important;
  11371. }
  11372. .ms-xxl-0 {
  11373. margin-right: 0 !important;
  11374. }
  11375. .ms-xxl-1 {
  11376. margin-right: 0.25rem !important;
  11377. }
  11378. .ms-xxl-2 {
  11379. margin-right: 0.5rem !important;
  11380. }
  11381. .ms-xxl-3 {
  11382. margin-right: 1rem !important;
  11383. }
  11384. .ms-xxl-4 {
  11385. margin-right: 1.5rem !important;
  11386. }
  11387. .ms-xxl-5 {
  11388. margin-right: 3rem !important;
  11389. }
  11390. .ms-xxl-auto {
  11391. margin-right: auto !important;
  11392. }
  11393. .m-xxl-n1 {
  11394. margin: -0.25rem !important;
  11395. }
  11396. .m-xxl-n2 {
  11397. margin: -0.5rem !important;
  11398. }
  11399. .m-xxl-n3 {
  11400. margin: -1rem !important;
  11401. }
  11402. .m-xxl-n4 {
  11403. margin: -1.5rem !important;
  11404. }
  11405. .m-xxl-n5 {
  11406. margin: -3rem !important;
  11407. }
  11408. .mx-xxl-n1 {
  11409. margin-left: -0.25rem !important;
  11410. margin-right: -0.25rem !important;
  11411. }
  11412. .mx-xxl-n2 {
  11413. margin-left: -0.5rem !important;
  11414. margin-right: -0.5rem !important;
  11415. }
  11416. .mx-xxl-n3 {
  11417. margin-left: -1rem !important;
  11418. margin-right: -1rem !important;
  11419. }
  11420. .mx-xxl-n4 {
  11421. margin-left: -1.5rem !important;
  11422. margin-right: -1.5rem !important;
  11423. }
  11424. .mx-xxl-n5 {
  11425. margin-left: -3rem !important;
  11426. margin-right: -3rem !important;
  11427. }
  11428. .my-xxl-n1 {
  11429. margin-top: -0.25rem !important;
  11430. margin-bottom: -0.25rem !important;
  11431. }
  11432. .my-xxl-n2 {
  11433. margin-top: -0.5rem !important;
  11434. margin-bottom: -0.5rem !important;
  11435. }
  11436. .my-xxl-n3 {
  11437. margin-top: -1rem !important;
  11438. margin-bottom: -1rem !important;
  11439. }
  11440. .my-xxl-n4 {
  11441. margin-top: -1.5rem !important;
  11442. margin-bottom: -1.5rem !important;
  11443. }
  11444. .my-xxl-n5 {
  11445. margin-top: -3rem !important;
  11446. margin-bottom: -3rem !important;
  11447. }
  11448. .mt-xxl-n1 {
  11449. margin-top: -0.25rem !important;
  11450. }
  11451. .mt-xxl-n2 {
  11452. margin-top: -0.5rem !important;
  11453. }
  11454. .mt-xxl-n3 {
  11455. margin-top: -1rem !important;
  11456. }
  11457. .mt-xxl-n4 {
  11458. margin-top: -1.5rem !important;
  11459. }
  11460. .mt-xxl-n5 {
  11461. margin-top: -3rem !important;
  11462. }
  11463. .me-xxl-n1 {
  11464. margin-left: -0.25rem !important;
  11465. }
  11466. .me-xxl-n2 {
  11467. margin-left: -0.5rem !important;
  11468. }
  11469. .me-xxl-n3 {
  11470. margin-left: -1rem !important;
  11471. }
  11472. .me-xxl-n4 {
  11473. margin-left: -1.5rem !important;
  11474. }
  11475. .me-xxl-n5 {
  11476. margin-left: -3rem !important;
  11477. }
  11478. .mb-xxl-n1 {
  11479. margin-bottom: -0.25rem !important;
  11480. }
  11481. .mb-xxl-n2 {
  11482. margin-bottom: -0.5rem !important;
  11483. }
  11484. .mb-xxl-n3 {
  11485. margin-bottom: -1rem !important;
  11486. }
  11487. .mb-xxl-n4 {
  11488. margin-bottom: -1.5rem !important;
  11489. }
  11490. .mb-xxl-n5 {
  11491. margin-bottom: -3rem !important;
  11492. }
  11493. .ms-xxl-n1 {
  11494. margin-right: -0.25rem !important;
  11495. }
  11496. .ms-xxl-n2 {
  11497. margin-right: -0.5rem !important;
  11498. }
  11499. .ms-xxl-n3 {
  11500. margin-right: -1rem !important;
  11501. }
  11502. .ms-xxl-n4 {
  11503. margin-right: -1.5rem !important;
  11504. }
  11505. .ms-xxl-n5 {
  11506. margin-right: -3rem !important;
  11507. }
  11508. .p-xxl-0 {
  11509. padding: 0 !important;
  11510. }
  11511. .p-xxl-1 {
  11512. padding: 0.25rem !important;
  11513. }
  11514. .p-xxl-2 {
  11515. padding: 0.5rem !important;
  11516. }
  11517. .p-xxl-3 {
  11518. padding: 1rem !important;
  11519. }
  11520. .p-xxl-4 {
  11521. padding: 1.5rem !important;
  11522. }
  11523. .p-xxl-5 {
  11524. padding: 3rem !important;
  11525. }
  11526. .px-xxl-0 {
  11527. padding-left: 0 !important;
  11528. padding-right: 0 !important;
  11529. }
  11530. .px-xxl-1 {
  11531. padding-left: 0.25rem !important;
  11532. padding-right: 0.25rem !important;
  11533. }
  11534. .px-xxl-2 {
  11535. padding-left: 0.5rem !important;
  11536. padding-right: 0.5rem !important;
  11537. }
  11538. .px-xxl-3 {
  11539. padding-left: 1rem !important;
  11540. padding-right: 1rem !important;
  11541. }
  11542. .px-xxl-4 {
  11543. padding-left: 1.5rem !important;
  11544. padding-right: 1.5rem !important;
  11545. }
  11546. .px-xxl-5 {
  11547. padding-left: 3rem !important;
  11548. padding-right: 3rem !important;
  11549. }
  11550. .py-xxl-0 {
  11551. padding-top: 0 !important;
  11552. padding-bottom: 0 !important;
  11553. }
  11554. .py-xxl-1 {
  11555. padding-top: 0.25rem !important;
  11556. padding-bottom: 0.25rem !important;
  11557. }
  11558. .py-xxl-2 {
  11559. padding-top: 0.5rem !important;
  11560. padding-bottom: 0.5rem !important;
  11561. }
  11562. .py-xxl-3 {
  11563. padding-top: 1rem !important;
  11564. padding-bottom: 1rem !important;
  11565. }
  11566. .py-xxl-4 {
  11567. padding-top: 1.5rem !important;
  11568. padding-bottom: 1.5rem !important;
  11569. }
  11570. .py-xxl-5 {
  11571. padding-top: 3rem !important;
  11572. padding-bottom: 3rem !important;
  11573. }
  11574. .pt-xxl-0 {
  11575. padding-top: 0 !important;
  11576. }
  11577. .pt-xxl-1 {
  11578. padding-top: 0.25rem !important;
  11579. }
  11580. .pt-xxl-2 {
  11581. padding-top: 0.5rem !important;
  11582. }
  11583. .pt-xxl-3 {
  11584. padding-top: 1rem !important;
  11585. }
  11586. .pt-xxl-4 {
  11587. padding-top: 1.5rem !important;
  11588. }
  11589. .pt-xxl-5 {
  11590. padding-top: 3rem !important;
  11591. }
  11592. .pe-xxl-0 {
  11593. padding-left: 0 !important;
  11594. }
  11595. .pe-xxl-1 {
  11596. padding-left: 0.25rem !important;
  11597. }
  11598. .pe-xxl-2 {
  11599. padding-left: 0.5rem !important;
  11600. }
  11601. .pe-xxl-3 {
  11602. padding-left: 1rem !important;
  11603. }
  11604. .pe-xxl-4 {
  11605. padding-left: 1.5rem !important;
  11606. }
  11607. .pe-xxl-5 {
  11608. padding-left: 3rem !important;
  11609. }
  11610. .pb-xxl-0 {
  11611. padding-bottom: 0 !important;
  11612. }
  11613. .pb-xxl-1 {
  11614. padding-bottom: 0.25rem !important;
  11615. }
  11616. .pb-xxl-2 {
  11617. padding-bottom: 0.5rem !important;
  11618. }
  11619. .pb-xxl-3 {
  11620. padding-bottom: 1rem !important;
  11621. }
  11622. .pb-xxl-4 {
  11623. padding-bottom: 1.5rem !important;
  11624. }
  11625. .pb-xxl-5 {
  11626. padding-bottom: 3rem !important;
  11627. }
  11628. .ps-xxl-0 {
  11629. padding-right: 0 !important;
  11630. }
  11631. .ps-xxl-1 {
  11632. padding-right: 0.25rem !important;
  11633. }
  11634. .ps-xxl-2 {
  11635. padding-right: 0.5rem !important;
  11636. }
  11637. .ps-xxl-3 {
  11638. padding-right: 1rem !important;
  11639. }
  11640. .ps-xxl-4 {
  11641. padding-right: 1.5rem !important;
  11642. }
  11643. .ps-xxl-5 {
  11644. padding-right: 3rem !important;
  11645. }
  11646. .gap-xxl-0 {
  11647. gap: 0 !important;
  11648. }
  11649. .gap-xxl-1 {
  11650. gap: 0.25rem !important;
  11651. }
  11652. .gap-xxl-2 {
  11653. gap: 0.5rem !important;
  11654. }
  11655. .gap-xxl-3 {
  11656. gap: 1rem !important;
  11657. }
  11658. .gap-xxl-4 {
  11659. gap: 1.5rem !important;
  11660. }
  11661. .gap-xxl-5 {
  11662. gap: 3rem !important;
  11663. }
  11664. .row-gap-xxl-0 {
  11665. row-gap: 0 !important;
  11666. }
  11667. .row-gap-xxl-1 {
  11668. row-gap: 0.25rem !important;
  11669. }
  11670. .row-gap-xxl-2 {
  11671. row-gap: 0.5rem !important;
  11672. }
  11673. .row-gap-xxl-3 {
  11674. row-gap: 1rem !important;
  11675. }
  11676. .row-gap-xxl-4 {
  11677. row-gap: 1.5rem !important;
  11678. }
  11679. .row-gap-xxl-5 {
  11680. row-gap: 3rem !important;
  11681. }
  11682. .column-gap-xxl-0 {
  11683. -moz-column-gap: 0 !important;
  11684. column-gap: 0 !important;
  11685. }
  11686. .column-gap-xxl-1 {
  11687. -moz-column-gap: 0.25rem !important;
  11688. column-gap: 0.25rem !important;
  11689. }
  11690. .column-gap-xxl-2 {
  11691. -moz-column-gap: 0.5rem !important;
  11692. column-gap: 0.5rem !important;
  11693. }
  11694. .column-gap-xxl-3 {
  11695. -moz-column-gap: 1rem !important;
  11696. column-gap: 1rem !important;
  11697. }
  11698. .column-gap-xxl-4 {
  11699. -moz-column-gap: 1.5rem !important;
  11700. column-gap: 1.5rem !important;
  11701. }
  11702. .column-gap-xxl-5 {
  11703. -moz-column-gap: 3rem !important;
  11704. column-gap: 3rem !important;
  11705. }
  11706. .text-xxl-start {
  11707. text-align: right !important;
  11708. }
  11709. .text-xxl-end {
  11710. text-align: left !important;
  11711. }
  11712. .text-xxl-center {
  11713. text-align: center !important;
  11714. }
  11715. }
  11716. @media (min-width: 1200px) {
  11717. .fs-1 {
  11718. font-size: 2.5rem !important;
  11719. }
  11720. .fs-2 {
  11721. font-size: 2rem !important;
  11722. }
  11723. .fs-3 {
  11724. font-size: 1.75rem !important;
  11725. }
  11726. .fs-4 {
  11727. font-size: 1.5rem !important;
  11728. }
  11729. }
  11730. @media print {
  11731. .d-print-inline {
  11732. display: inline !important;
  11733. }
  11734. .d-print-inline-block {
  11735. display: inline-block !important;
  11736. }
  11737. .d-print-block {
  11738. display: block !important;
  11739. }
  11740. .d-print-grid {
  11741. display: grid !important;
  11742. }
  11743. .d-print-inline-grid {
  11744. display: inline-grid !important;
  11745. }
  11746. .d-print-table {
  11747. display: table !important;
  11748. }
  11749. .d-print-table-row {
  11750. display: table-row !important;
  11751. }
  11752. .d-print-table-cell {
  11753. display: table-cell !important;
  11754. }
  11755. .d-print-flex {
  11756. display: flex !important;
  11757. }
  11758. .d-print-inline-flex {
  11759. display: inline-flex !important;
  11760. }
  11761. .d-print-none {
  11762. display: none !important;
  11763. }
  11764. }
  11765. @keyframes flipInX {
  11766. 0% {
  11767. opacity: 0;
  11768. transition-timing-function: ease-in;
  11769. transform: perspective(400px) rotate3d(-1, 0, 0, -90deg);
  11770. }
  11771. 40% {
  11772. transition-timing-function: ease-in;
  11773. transform: perspective(400px) rotate3d(-1, 0, 0, 20deg);
  11774. }
  11775. 60% {
  11776. opacity: 1;
  11777. transform: perspective(400px) rotate3d(-1, 0, 0, -10deg);
  11778. }
  11779. 80% {
  11780. transform: perspective(400px) rotate3d(-1, 0, 0, 5deg);
  11781. }
  11782. 100% {
  11783. transform: perspective(400px);
  11784. }
  11785. }
  11786. @keyframes fadeIn {
  11787. from {
  11788. opacity: 0;
  11789. }
  11790. to {
  11791. opacity: 1;
  11792. }
  11793. }
  11794. @keyframes fadeOut {
  11795. from {
  11796. opacity: 1;
  11797. }
  11798. to {
  11799. opacity: 0;
  11800. }
  11801. }
  11802. @keyframes shake {
  11803. 0% {
  11804. transform: translate(-2px, 1px) rotate(0deg);
  11805. }
  11806. 10% {
  11807. transform: translate(1px, -2px) rotate(2deg);
  11808. }
  11809. 20% {
  11810. transform: translate(3px, 0) rotate(-3deg);
  11811. }
  11812. 30% {
  11813. transform: translate(0, 2px) rotate(0deg);
  11814. }
  11815. 40% {
  11816. transform: translate(-1px, -1px) rotate(-1deg);
  11817. }
  11818. 50% {
  11819. transform: translate(1px, 2px) rotate(1deg);
  11820. }
  11821. 60% {
  11822. transform: translate(3px, 1px) rotate(0deg);
  11823. }
  11824. 70% {
  11825. transform: translate(-2px, 1px) rotate(2deg);
  11826. }
  11827. 80% {
  11828. transform: translate(1px, -1px) rotate(-4deg);
  11829. }
  11830. 90% {
  11831. transform: translate(-2px, 2px) rotate(0deg);
  11832. }
  11833. 100% {
  11834. transform: translate(-1px, -2px) rotate(1deg);
  11835. }
  11836. }
  11837. @keyframes wobble {
  11838. 0% {
  11839. transform: none;
  11840. }
  11841. 15% {
  11842. transform: translate3d(25%, 0, 0) rotate3d(0, 0, 1, 5deg);
  11843. }
  11844. 30% {
  11845. transform: translate3d(-20%, 0, 0) rotate3d(0, 0, 1, -3deg);
  11846. }
  11847. 45% {
  11848. transform: translate3d(15%, 0, 0) rotate3d(0, 0, 1, 3deg);
  11849. }
  11850. 60% {
  11851. transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -2deg);
  11852. }
  11853. 75% {
  11854. transform: translate3d(5%, 0, 0) rotate3d(0, 0, 1, 1deg);
  11855. }
  11856. 100% {
  11857. transform: none;
  11858. }
  11859. }
  11860. :root,
  11861. [data-bs-theme=light] {
  11862. --lte-sidebar-width: 250px;
  11863. }
  11864. .app-wrapper {
  11865. position: relative;
  11866. display: grid;
  11867. grid-template-areas: "lte-app-sidebar lte-app-header" "lte-app-sidebar lte-app-main" "lte-app-sidebar lte-app-footer";
  11868. grid-template-rows: min-content 1fr min-content;
  11869. grid-template-columns: auto 1fr;
  11870. grid-gap: 0;
  11871. align-content: stretch;
  11872. align-items: stretch;
  11873. max-width: 100vw;
  11874. min-height: 100vh;
  11875. }
  11876. .app-wrapper > * {
  11877. min-width: 0;
  11878. }
  11879. .app-content {
  11880. padding: 0 0.5rem;
  11881. }
  11882. .app-header {
  11883. z-index: 1034;
  11884. grid-area: lte-app-header;
  11885. max-width: 100vw;
  11886. border-bottom: 1px solid var(--bs-border-color);
  11887. transition: 0.3s ease-in-out;
  11888. }
  11889. @media (prefers-reduced-motion: reduce) {
  11890. .app-header {
  11891. transition: none;
  11892. }
  11893. }
  11894. .app-header .nav-link {
  11895. position: relative;
  11896. height: 2.5rem;
  11897. }
  11898. .navbar-badge {
  11899. position: absolute;
  11900. top: 9px;
  11901. left: 5px;
  11902. padding: 2px 4px;
  11903. font-size: 0.6rem;
  11904. font-weight: 400;
  11905. }
  11906. .fixed-header .app-header {
  11907. position: sticky;
  11908. top: 0;
  11909. z-index: 1030;
  11910. }
  11911. .app-sidebar {
  11912. --lte-sidebar-hover-bg: rgba(0, 0, 0, 0.1);
  11913. --lte-sidebar-color: #343a40;
  11914. --lte-sidebar-hover-color: #212529;
  11915. --lte-sidebar-active-color: #000;
  11916. --lte-sidebar-menu-active-bg: rgba(0, 0, 0, 0.1);
  11917. --lte-sidebar-menu-active-color: #000;
  11918. --lte-sidebar-submenu-bg: transparent;
  11919. --lte-sidebar-submenu-color: #777;
  11920. --lte-sidebar-submenu-hover-color: #000;
  11921. --lte-sidebar-submenu-hover-bg: rgba(0, 0, 0, 0.1);
  11922. --lte-sidebar-submenu-active-color: #212529;
  11923. --lte-sidebar-submenu-active-bg: rgba(0, 0, 0, 0.1);
  11924. --lte-sidebar-header-color: rgb(49.4, 55.1, 60.8);
  11925. z-index: 1038;
  11926. grid-area: lte-app-sidebar;
  11927. min-width: var(--lte-sidebar-width);
  11928. max-width: var(--lte-sidebar-width);
  11929. transition: min-width 0.3s ease-in-out, max-width 0.3s ease-in-out, margin-right 0.3s ease-in-out, margin-left 0.3s ease-in-out;
  11930. }
  11931. @media (prefers-reduced-motion: reduce) {
  11932. .app-sidebar {
  11933. transition: none;
  11934. }
  11935. }
  11936. .sidebar-brand {
  11937. display: flex;
  11938. align-items: center;
  11939. justify-content: center;
  11940. height: 3.5rem;
  11941. padding: 0.8125rem 0.5rem;
  11942. overflow: hidden;
  11943. font-size: 1.25rem;
  11944. white-space: nowrap;
  11945. border-bottom: 1px solid var(--bs-border-color);
  11946. transition: width 0.3s ease-in-out;
  11947. }
  11948. @media (prefers-reduced-motion: reduce) {
  11949. .sidebar-brand {
  11950. transition: none;
  11951. }
  11952. }
  11953. .sidebar-brand .brand-link {
  11954. display: flex;
  11955. align-items: center;
  11956. text-decoration: none;
  11957. }
  11958. .sidebar-brand .brand-link .brand-image {
  11959. float: right;
  11960. width: auto;
  11961. max-height: 33px;
  11962. line-height: 0.8;
  11963. }
  11964. .sidebar-brand .brand-link .brand-image-xs {
  11965. float: right;
  11966. width: auto;
  11967. max-height: 33px;
  11968. margin-top: -0.1rem;
  11969. line-height: 0.8;
  11970. }
  11971. .sidebar-brand .brand-link .brand-image-xl {
  11972. width: auto;
  11973. max-height: 40px;
  11974. line-height: 0.8;
  11975. }
  11976. .sidebar-brand .brand-link .brand-image-xl.single {
  11977. margin-top: -0.3rem;
  11978. }
  11979. .sidebar-brand .brand-text {
  11980. margin-right: 0.5rem;
  11981. color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  11982. transition: flex 0.3s ease-in-out, width 0.3s ease-in-out;
  11983. }
  11984. @media (prefers-reduced-motion: reduce) {
  11985. .sidebar-brand .brand-text {
  11986. transition: none;
  11987. }
  11988. }
  11989. .sidebar-brand .brand-text:hover {
  11990. color: var(--bs-emphasis-color);
  11991. }
  11992. .sidebar-wrapper {
  11993. padding-top: 0.5rem;
  11994. padding-left: 0.5rem;
  11995. padding-bottom: 0.5rem;
  11996. padding-right: 0.5rem;
  11997. overscroll-behavior: contain;
  11998. scrollbar-color: var(--bs-secondary-bg) transparent;
  11999. }
  12000. .sidebar-wrapper::-webkit-scrollbar-thumb {
  12001. background-color: var(--bs-secondary-bg);
  12002. }
  12003. .sidebar-wrapper::-webkit-scrollbar-track {
  12004. background-color: transparent;
  12005. }
  12006. .sidebar-wrapper::-webkit-scrollbar-corner {
  12007. background-color: transparent;
  12008. }
  12009. .sidebar-wrapper {
  12010. scrollbar-width: thin;
  12011. }
  12012. .sidebar-wrapper::-webkit-scrollbar {
  12013. width: 0.5rem;
  12014. height: 0.5rem;
  12015. }
  12016. .sidebar-wrapper .nav-item {
  12017. max-width: 100%;
  12018. }
  12019. .sidebar-wrapper .nav-link {
  12020. display: flex;
  12021. justify-content: flex-start;
  12022. }
  12023. .sidebar-wrapper .nav-link p {
  12024. overflow: hidden;
  12025. text-overflow: ellipsis;
  12026. white-space: nowrap;
  12027. }
  12028. .sidebar-wrapper .nav-icon {
  12029. display: flex;
  12030. align-items: center;
  12031. justify-content: center;
  12032. min-width: 1.5rem;
  12033. max-width: 1.5rem;
  12034. }
  12035. .sidebar-wrapper .sidebar-menu > .nav-item.menu-open .nav-link.active:not(:hover) {
  12036. --lte-sidebar-menu-active-bg: transparent;
  12037. }
  12038. .sidebar-wrapper .sidebar-menu > .nav-item > .nav-link:active, .sidebar-wrapper .sidebar-menu > .nav-item > .nav-link:focus {
  12039. color: var(--lte-sidebar-color);
  12040. }
  12041. .sidebar-wrapper .sidebar-menu > .nav-item > .nav-link.active:not(:hover) {
  12042. color: var(--lte-sidebar-menu-active-color);
  12043. background-color: var(--lte-sidebar-menu-active-bg);
  12044. }
  12045. .sidebar-wrapper .sidebar-menu > .nav-item.menu-open > .nav-link, .sidebar-wrapper .sidebar-menu > .nav-item:hover > .nav-link,
  12046. .sidebar-wrapper .sidebar-menu > .nav-item > .nav-link:focus {
  12047. color: var(--lte-sidebar-hover-color);
  12048. background-color: var(--lte-sidebar-hover-bg);
  12049. }
  12050. .sidebar-wrapper .sidebar-menu > .nav-item > .nav-treeview {
  12051. background-color: var(--lte-sidebar-submenu-bg);
  12052. }
  12053. .sidebar-wrapper .nav-header {
  12054. display: inline;
  12055. overflow: hidden;
  12056. color: var(--lte-sidebar-header-color);
  12057. text-overflow: ellipsis;
  12058. background-color: inherit;
  12059. }
  12060. .sidebar-wrapper a {
  12061. color: var(--lte-sidebar-color);
  12062. }
  12063. .sidebar-wrapper .nav-treeview > .nav-item > .nav-link {
  12064. color: var(--lte-sidebar-submenu-color);
  12065. }
  12066. .sidebar-wrapper .nav-treeview > .nav-item > .nav-link:hover, .sidebar-wrapper .nav-treeview > .nav-item > .nav-link:focus {
  12067. color: var(--lte-sidebar-submenu-hover-color);
  12068. }
  12069. .sidebar-wrapper .nav-treeview > .nav-item > .nav-link.active, .sidebar-wrapper .nav-treeview > .nav-item > .nav-link.active:hover, .sidebar-wrapper .nav-treeview > .nav-item > .nav-link.active:focus {
  12070. color: var(--lte-sidebar-submenu-active-color);
  12071. background-color: var(--lte-sidebar-submenu-active-bg);
  12072. }
  12073. .sidebar-wrapper .nav-treeview > .nav-item > .nav-link:hover {
  12074. background-color: var(--lte-sidebar-submenu-hover-bg);
  12075. }
  12076. .sidebar-menu .nav-item > .nav-link {
  12077. margin-bottom: 0.2rem;
  12078. }
  12079. .sidebar-menu .nav-item > .nav-link .nav-arrow {
  12080. transition: transform ease-in-out 0.3s;
  12081. }
  12082. @media (prefers-reduced-motion: reduce) {
  12083. .sidebar-menu .nav-item > .nav-link .nav-arrow {
  12084. transition: none;
  12085. }
  12086. }
  12087. .sidebar-menu .nav-item > .nav-link .nav-arrow {
  12088. transform: translateY(-50%) rotate(180deg);
  12089. animation-name: fadeIn;
  12090. animation-duration: 0.3s;
  12091. animation-fill-mode: both;
  12092. }
  12093. .sidebar-menu .nav-link > .nav-badge,
  12094. .sidebar-menu .nav-link > p > .nav-badge {
  12095. position: absolute;
  12096. top: 50%;
  12097. left: 1rem;
  12098. transform: translateY(-50%);
  12099. }
  12100. .sidebar-menu .nav-link > .nav-arrow,
  12101. .sidebar-menu .nav-link > p > .nav-arrow {
  12102. position: absolute;
  12103. top: 50%;
  12104. left: 1rem;
  12105. }
  12106. .sidebar-menu .nav-link {
  12107. position: relative;
  12108. width: 100%;
  12109. transition: width ease-in-out 0.3s;
  12110. }
  12111. @media (prefers-reduced-motion: reduce) {
  12112. .sidebar-menu .nav-link {
  12113. transition: none;
  12114. }
  12115. }
  12116. .sidebar-menu .nav-link {
  12117. border-radius: 0.375rem;
  12118. }
  12119. .sidebar-menu .nav-link p {
  12120. display: inline;
  12121. padding-right: 0.5rem;
  12122. margin: 0;
  12123. }
  12124. .sidebar-menu .nav-header {
  12125. position: relative;
  12126. width: 100%;
  12127. padding: 0.5rem 0.75rem;
  12128. font-size: 0.9rem;
  12129. transition: width ease-in-out 0.3s;
  12130. }
  12131. @media (prefers-reduced-motion: reduce) {
  12132. .sidebar-menu .nav-header {
  12133. transition: none;
  12134. }
  12135. }
  12136. .sidebar-menu .nav-treeview {
  12137. display: none;
  12138. padding: 0;
  12139. list-style: none;
  12140. }
  12141. .nav-indent .sidebar-menu .nav-treeview {
  12142. padding-right: 0.5rem;
  12143. }
  12144. .sidebar-menu .menu-open > .nav-treeview {
  12145. display: block;
  12146. }
  12147. .sidebar-menu .menu-open > .nav-link .nav-arrow {
  12148. transform: translateY(-50%) rotate(90deg) ;
  12149. }
  12150. .sidebar-menu .nav-link > .nav-badge,
  12151. .sidebar-menu .nav-link > p > .nav-badge,
  12152. .sidebar-menu .nav-link > .nav-arrow,
  12153. .sidebar-menu .nav-link > p > .nav-arrow {
  12154. left: 1rem !important;
  12155. right: auto !important;
  12156. }
  12157. .nav-compact.nav-indent .nav-treeview {
  12158. padding-right: 0;
  12159. }
  12160. .nav-compact.nav-indent .nav-treeview .nav-item {
  12161. padding-right: 0.5rem;
  12162. }
  12163. .sidebar-mini.sidebar-collapse.nav-indent .app-sidebar:hover .nav-treeview {
  12164. padding-right: 0;
  12165. }
  12166. .sidebar-mini.sidebar-collapse.nav-indent .app-sidebar:hover .nav-treeview .nav-item {
  12167. padding-right: 0.5rem;
  12168. }
  12169. .sidebar-collapse.nav-compact.nav-indent .nav-treeview .nav-item {
  12170. padding-right: 0;
  12171. }
  12172. .nav-compact .nav-link {
  12173. border-radius: 0;
  12174. margin-bottom: 0 !important;
  12175. }
  12176. .sidebar-menu,
  12177. .sidebar-menu > .nav-header,
  12178. .sidebar-menu .nav-link {
  12179. white-space: nowrap;
  12180. }
  12181. .logo-xs,
  12182. .logo-xl {
  12183. position: absolute;
  12184. visibility: visible;
  12185. opacity: 1;
  12186. }
  12187. .logo-xs.brand-image-xs,
  12188. .logo-xl.brand-image-xs {
  12189. top: 12px;
  12190. right: 18px;
  12191. }
  12192. .logo-xs.brand-image-xl,
  12193. .logo-xl.brand-image-xl {
  12194. top: 6px;
  12195. right: 12px;
  12196. }
  12197. .logo-xs {
  12198. visibility: hidden;
  12199. opacity: 0;
  12200. }
  12201. .logo-xs.brand-image-xl {
  12202. top: 8px;
  12203. right: 16px;
  12204. }
  12205. .brand-link.logo-switch::before {
  12206. content: " ";
  12207. }
  12208. .sidebar-mini.sidebar-collapse .app-sidebar {
  12209. min-width: 4.6rem;
  12210. max-width: 4.6rem;
  12211. }
  12212. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-header {
  12213. display: none;
  12214. }
  12215. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-link {
  12216. width: 3.6rem;
  12217. }
  12218. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-link p {
  12219. display: inline-block;
  12220. width: 0;
  12221. white-space: nowrap;
  12222. }
  12223. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-badge,
  12224. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-arrow {
  12225. display: none;
  12226. animation-name: fadeOut;
  12227. animation-duration: 0.3s;
  12228. animation-fill-mode: both;
  12229. }
  12230. .sidebar-mini.sidebar-collapse .brand-text {
  12231. display: inline-block;
  12232. max-width: 0;
  12233. overflow: hidden;
  12234. }
  12235. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-link p,
  12236. .sidebar-mini.sidebar-collapse .brand-text,
  12237. .sidebar-mini.sidebar-collapse .logo-xl,
  12238. .sidebar-mini.sidebar-collapse .nav-arrow {
  12239. visibility: hidden;
  12240. animation-name: fadeOut;
  12241. animation-duration: 0.3s;
  12242. animation-fill-mode: both;
  12243. }
  12244. .sidebar-mini.sidebar-collapse .logo-xs {
  12245. display: inline-block;
  12246. visibility: visible;
  12247. animation-name: fadeIn;
  12248. animation-duration: 0.3s;
  12249. animation-fill-mode: both;
  12250. }
  12251. .sidebar-mini.sidebar-collapse:not(.sidebar-without-hover) .app-sidebar:hover {
  12252. min-width: var(--lte-sidebar-width);
  12253. max-width: var(--lte-sidebar-width);
  12254. }
  12255. .sidebar-mini.sidebar-collapse:not(.sidebar-without-hover) .app-sidebar:hover .sidebar-menu .nav-header {
  12256. display: inline;
  12257. }
  12258. .sidebar-mini.sidebar-collapse:not(.sidebar-without-hover) .app-sidebar:hover .sidebar-menu .nav-link {
  12259. width: auto;
  12260. }
  12261. .sidebar-mini.sidebar-collapse:not(.sidebar-without-hover) .app-sidebar:hover .sidebar-menu .nav-link p,
  12262. .sidebar-mini.sidebar-collapse:not(.sidebar-without-hover) .app-sidebar:hover .brand-text,
  12263. .sidebar-mini.sidebar-collapse:not(.sidebar-without-hover) .app-sidebar:hover .logo-xl {
  12264. width: auto;
  12265. margin-right: 0;
  12266. visibility: visible;
  12267. animation-name: fadeIn;
  12268. animation-duration: 0.3s;
  12269. animation-fill-mode: both;
  12270. }
  12271. .sidebar-mini.sidebar-collapse:not(.sidebar-without-hover) .app-sidebar:hover .brand-text {
  12272. display: inline;
  12273. max-width: inherit;
  12274. margin-right: 0.5rem;
  12275. animation-name: fadeIn;
  12276. animation-duration: 0.3s;
  12277. animation-fill-mode: both;
  12278. }
  12279. .sidebar-mini.sidebar-collapse:not(.sidebar-without-hover) .app-sidebar:hover .nav-badge,
  12280. .sidebar-mini.sidebar-collapse:not(.sidebar-without-hover) .app-sidebar:hover .nav-arrow {
  12281. display: inline-block;
  12282. visibility: visible;
  12283. animation-name: fadeIn;
  12284. animation-duration: 0.3s;
  12285. animation-fill-mode: both;
  12286. animation-delay: 0.3s;
  12287. }
  12288. .sidebar-mini.sidebar-collapse:not(.sidebar-without-hover) .app-sidebar:hover .nav-link p {
  12289. padding-right: 0.5rem;
  12290. }
  12291. .sidebar-mini.sidebar-collapse:not(.sidebar-without-hover) .app-sidebar:hover .logo-xs {
  12292. visibility: hidden;
  12293. animation-name: fadeOut;
  12294. animation-duration: 0.3s;
  12295. animation-fill-mode: both;
  12296. }
  12297. .sidebar-collapse:not(.sidebar-mini) .app-sidebar {
  12298. margin-right: calc(var(--lte-sidebar-width) * -1);
  12299. }
  12300. .sidebar-expand {
  12301. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12302. }
  12303. @media (min-width: 576px) {
  12304. .sidebar-expand-sm.layout-fixed .app-main-wrapper {
  12305. display: flex;
  12306. flex-direction: column;
  12307. min-height: 100vh;
  12308. }
  12309. .sidebar-expand-sm.layout-fixed .app-sidebar-wrapper {
  12310. position: relative;
  12311. }
  12312. .sidebar-expand-sm.layout-fixed .app-main {
  12313. flex: 1 1 auto;
  12314. overflow: auto;
  12315. }
  12316. .sidebar-expand-sm.layout-fixed .app-sidebar {
  12317. position: sticky;
  12318. top: 0;
  12319. bottom: 0;
  12320. max-height: 100vh;
  12321. }
  12322. .sidebar-expand-sm.layout-fixed .app-sidebar .sidebar-wrapper {
  12323. height: calc(100vh - (calc(3.5rem + 1px)));
  12324. overflow-x: hidden;
  12325. overflow-y: auto;
  12326. }
  12327. .sidebar-expand-sm.sidebar-open .nav-link > .nav-badge,
  12328. .sidebar-expand-sm.sidebar-open .nav-link > p > .nav-badge {
  12329. animation-name: fadeIn;
  12330. animation-duration: 0.3s;
  12331. animation-fill-mode: both;
  12332. animation-delay: 0.3s;
  12333. }
  12334. .sidebar-expand-sm.sidebar-open .nav-link > .nav-arrow,
  12335. .sidebar-expand-sm.sidebar-open .nav-link > p > .nav-arrow {
  12336. animation-name: fadeIn;
  12337. animation-duration: 0.3s;
  12338. animation-fill-mode: both;
  12339. animation-delay: 0.3s;
  12340. }
  12341. }
  12342. @media (max-width: 575.98px) {
  12343. .sidebar-expand-sm::before {
  12344. display: none;
  12345. content: "575.98px";
  12346. }
  12347. .sidebar-expand-sm .app-sidebar {
  12348. position: fixed;
  12349. top: 0;
  12350. bottom: 0;
  12351. max-height: 100vh;
  12352. margin-right: calc(var(--lte-sidebar-width) * -1);
  12353. }
  12354. .sidebar-expand-sm .app-sidebar .sidebar-wrapper {
  12355. height: calc(100vh - (calc(3.5rem + 1px)));
  12356. overflow-x: hidden;
  12357. overflow-y: auto;
  12358. }
  12359. .sidebar-expand-sm.sidebar-open .app-sidebar {
  12360. margin-right: 0;
  12361. }
  12362. .sidebar-expand-sm.sidebar-open .sidebar-overlay {
  12363. position: absolute;
  12364. inset: 0;
  12365. z-index: 1037;
  12366. width: 100%;
  12367. height: 100%;
  12368. cursor: pointer;
  12369. visibility: visible;
  12370. background-color: rgba(0, 0, 0, 0.2);
  12371. animation-name: fadeIn;
  12372. animation-fill-mode: both;
  12373. }
  12374. }
  12375. .sidebar-expand {
  12376. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12377. }
  12378. @media (min-width: 768px) {
  12379. .sidebar-expand-md.layout-fixed .app-main-wrapper {
  12380. display: flex;
  12381. flex-direction: column;
  12382. min-height: 100vh;
  12383. }
  12384. .sidebar-expand-md.layout-fixed .app-sidebar-wrapper {
  12385. position: relative;
  12386. }
  12387. .sidebar-expand-md.layout-fixed .app-main {
  12388. flex: 1 1 auto;
  12389. overflow: auto;
  12390. }
  12391. .sidebar-expand-md.layout-fixed .app-sidebar {
  12392. position: sticky;
  12393. top: 0;
  12394. bottom: 0;
  12395. max-height: 100vh;
  12396. }
  12397. .sidebar-expand-md.layout-fixed .app-sidebar .sidebar-wrapper {
  12398. height: calc(100vh - (calc(3.5rem + 1px)));
  12399. overflow-x: hidden;
  12400. overflow-y: auto;
  12401. }
  12402. .sidebar-expand-md.sidebar-open .nav-link > .nav-badge,
  12403. .sidebar-expand-md.sidebar-open .nav-link > p > .nav-badge {
  12404. animation-name: fadeIn;
  12405. animation-duration: 0.3s;
  12406. animation-fill-mode: both;
  12407. animation-delay: 0.3s;
  12408. }
  12409. .sidebar-expand-md.sidebar-open .nav-link > .nav-arrow,
  12410. .sidebar-expand-md.sidebar-open .nav-link > p > .nav-arrow {
  12411. animation-name: fadeIn;
  12412. animation-duration: 0.3s;
  12413. animation-fill-mode: both;
  12414. animation-delay: 0.3s;
  12415. }
  12416. }
  12417. @media (max-width: 767.98px) {
  12418. .sidebar-expand-md::before {
  12419. display: none;
  12420. content: "767.98px";
  12421. }
  12422. .sidebar-expand-md .app-sidebar {
  12423. position: fixed;
  12424. top: 0;
  12425. bottom: 0;
  12426. max-height: 100vh;
  12427. margin-right: calc(var(--lte-sidebar-width) * -1);
  12428. }
  12429. .sidebar-expand-md .app-sidebar .sidebar-wrapper {
  12430. height: calc(100vh - (calc(3.5rem + 1px)));
  12431. overflow-x: hidden;
  12432. overflow-y: auto;
  12433. }
  12434. .sidebar-expand-md.sidebar-open .app-sidebar {
  12435. margin-right: 0;
  12436. }
  12437. .sidebar-expand-md.sidebar-open .sidebar-overlay {
  12438. position: absolute;
  12439. inset: 0;
  12440. z-index: 1037;
  12441. width: 100%;
  12442. height: 100%;
  12443. cursor: pointer;
  12444. visibility: visible;
  12445. background-color: rgba(0, 0, 0, 0.2);
  12446. animation-name: fadeIn;
  12447. animation-fill-mode: both;
  12448. }
  12449. }
  12450. .sidebar-expand {
  12451. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12452. }
  12453. @media (min-width: 992px) {
  12454. .sidebar-expand-lg.layout-fixed .app-main-wrapper {
  12455. display: flex;
  12456. flex-direction: column;
  12457. min-height: 100vh;
  12458. }
  12459. .sidebar-expand-lg.layout-fixed .app-sidebar-wrapper {
  12460. position: relative;
  12461. }
  12462. .sidebar-expand-lg.layout-fixed .app-main {
  12463. flex: 1 1 auto;
  12464. overflow: auto;
  12465. }
  12466. .sidebar-expand-lg.layout-fixed .app-sidebar {
  12467. position: sticky;
  12468. top: 0;
  12469. bottom: 0;
  12470. max-height: 100vh;
  12471. }
  12472. .sidebar-expand-lg.layout-fixed .app-sidebar .sidebar-wrapper {
  12473. height: calc(100vh - (calc(3.5rem + 1px)));
  12474. overflow-x: hidden;
  12475. overflow-y: auto;
  12476. }
  12477. .sidebar-expand-lg.sidebar-open .nav-link > .nav-badge,
  12478. .sidebar-expand-lg.sidebar-open .nav-link > p > .nav-badge {
  12479. animation-name: fadeIn;
  12480. animation-duration: 0.3s;
  12481. animation-fill-mode: both;
  12482. animation-delay: 0.3s;
  12483. }
  12484. .sidebar-expand-lg.sidebar-open .nav-link > .nav-arrow,
  12485. .sidebar-expand-lg.sidebar-open .nav-link > p > .nav-arrow {
  12486. animation-name: fadeIn;
  12487. animation-duration: 0.3s;
  12488. animation-fill-mode: both;
  12489. animation-delay: 0.3s;
  12490. }
  12491. }
  12492. @media (max-width: 991.98px) {
  12493. .sidebar-expand-lg::before {
  12494. display: none;
  12495. content: "991.98px";
  12496. }
  12497. .sidebar-expand-lg .app-sidebar {
  12498. position: fixed;
  12499. top: 0;
  12500. bottom: 0;
  12501. max-height: 100vh;
  12502. margin-right: calc(var(--lte-sidebar-width) * -1);
  12503. }
  12504. .sidebar-expand-lg .app-sidebar .sidebar-wrapper {
  12505. height: calc(100vh - (calc(3.5rem + 1px)));
  12506. overflow-x: hidden;
  12507. overflow-y: auto;
  12508. }
  12509. .sidebar-expand-lg.sidebar-open .app-sidebar {
  12510. margin-right: 0;
  12511. }
  12512. .sidebar-expand-lg.sidebar-open .sidebar-overlay {
  12513. position: absolute;
  12514. inset: 0;
  12515. z-index: 1037;
  12516. width: 100%;
  12517. height: 100%;
  12518. cursor: pointer;
  12519. visibility: visible;
  12520. background-color: rgba(0, 0, 0, 0.2);
  12521. animation-name: fadeIn;
  12522. animation-fill-mode: both;
  12523. }
  12524. }
  12525. .sidebar-expand {
  12526. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12527. }
  12528. @media (min-width: 1200px) {
  12529. .sidebar-expand-xl.layout-fixed .app-main-wrapper {
  12530. display: flex;
  12531. flex-direction: column;
  12532. min-height: 100vh;
  12533. }
  12534. .sidebar-expand-xl.layout-fixed .app-sidebar-wrapper {
  12535. position: relative;
  12536. }
  12537. .sidebar-expand-xl.layout-fixed .app-main {
  12538. flex: 1 1 auto;
  12539. overflow: auto;
  12540. }
  12541. .sidebar-expand-xl.layout-fixed .app-sidebar {
  12542. position: sticky;
  12543. top: 0;
  12544. bottom: 0;
  12545. max-height: 100vh;
  12546. }
  12547. .sidebar-expand-xl.layout-fixed .app-sidebar .sidebar-wrapper {
  12548. height: calc(100vh - (calc(3.5rem + 1px)));
  12549. overflow-x: hidden;
  12550. overflow-y: auto;
  12551. }
  12552. .sidebar-expand-xl.sidebar-open .nav-link > .nav-badge,
  12553. .sidebar-expand-xl.sidebar-open .nav-link > p > .nav-badge {
  12554. animation-name: fadeIn;
  12555. animation-duration: 0.3s;
  12556. animation-fill-mode: both;
  12557. animation-delay: 0.3s;
  12558. }
  12559. .sidebar-expand-xl.sidebar-open .nav-link > .nav-arrow,
  12560. .sidebar-expand-xl.sidebar-open .nav-link > p > .nav-arrow {
  12561. animation-name: fadeIn;
  12562. animation-duration: 0.3s;
  12563. animation-fill-mode: both;
  12564. animation-delay: 0.3s;
  12565. }
  12566. }
  12567. @media (max-width: 1199.98px) {
  12568. .sidebar-expand-xl::before {
  12569. display: none;
  12570. content: "1199.98px";
  12571. }
  12572. .sidebar-expand-xl .app-sidebar {
  12573. position: fixed;
  12574. top: 0;
  12575. bottom: 0;
  12576. max-height: 100vh;
  12577. margin-right: calc(var(--lte-sidebar-width) * -1);
  12578. }
  12579. .sidebar-expand-xl .app-sidebar .sidebar-wrapper {
  12580. height: calc(100vh - (calc(3.5rem + 1px)));
  12581. overflow-x: hidden;
  12582. overflow-y: auto;
  12583. }
  12584. .sidebar-expand-xl.sidebar-open .app-sidebar {
  12585. margin-right: 0;
  12586. }
  12587. .sidebar-expand-xl.sidebar-open .sidebar-overlay {
  12588. position: absolute;
  12589. inset: 0;
  12590. z-index: 1037;
  12591. width: 100%;
  12592. height: 100%;
  12593. cursor: pointer;
  12594. visibility: visible;
  12595. background-color: rgba(0, 0, 0, 0.2);
  12596. animation-name: fadeIn;
  12597. animation-fill-mode: both;
  12598. }
  12599. }
  12600. .sidebar-expand {
  12601. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12602. }
  12603. @media (min-width: 1400px) {
  12604. .sidebar-expand-xxl.layout-fixed .app-main-wrapper {
  12605. display: flex;
  12606. flex-direction: column;
  12607. min-height: 100vh;
  12608. }
  12609. .sidebar-expand-xxl.layout-fixed .app-sidebar-wrapper {
  12610. position: relative;
  12611. }
  12612. .sidebar-expand-xxl.layout-fixed .app-main {
  12613. flex: 1 1 auto;
  12614. overflow: auto;
  12615. }
  12616. .sidebar-expand-xxl.layout-fixed .app-sidebar {
  12617. position: sticky;
  12618. top: 0;
  12619. bottom: 0;
  12620. max-height: 100vh;
  12621. }
  12622. .sidebar-expand-xxl.layout-fixed .app-sidebar .sidebar-wrapper {
  12623. height: calc(100vh - (calc(3.5rem + 1px)));
  12624. overflow-x: hidden;
  12625. overflow-y: auto;
  12626. }
  12627. .sidebar-expand-xxl.sidebar-open .nav-link > .nav-badge,
  12628. .sidebar-expand-xxl.sidebar-open .nav-link > p > .nav-badge {
  12629. animation-name: fadeIn;
  12630. animation-duration: 0.3s;
  12631. animation-fill-mode: both;
  12632. animation-delay: 0.3s;
  12633. }
  12634. .sidebar-expand-xxl.sidebar-open .nav-link > .nav-arrow,
  12635. .sidebar-expand-xxl.sidebar-open .nav-link > p > .nav-arrow {
  12636. animation-name: fadeIn;
  12637. animation-duration: 0.3s;
  12638. animation-fill-mode: both;
  12639. animation-delay: 0.3s;
  12640. }
  12641. }
  12642. @media (max-width: 1399.98px) {
  12643. .sidebar-expand-xxl::before {
  12644. display: none;
  12645. content: "1399.98px";
  12646. }
  12647. .sidebar-expand-xxl .app-sidebar {
  12648. position: fixed;
  12649. top: 0;
  12650. bottom: 0;
  12651. max-height: 100vh;
  12652. margin-right: calc(var(--lte-sidebar-width) * -1);
  12653. }
  12654. .sidebar-expand-xxl .app-sidebar .sidebar-wrapper {
  12655. height: calc(100vh - (calc(3.5rem + 1px)));
  12656. overflow-x: hidden;
  12657. overflow-y: auto;
  12658. }
  12659. .sidebar-expand-xxl.sidebar-open .app-sidebar {
  12660. margin-right: 0;
  12661. }
  12662. .sidebar-expand-xxl.sidebar-open .sidebar-overlay {
  12663. position: absolute;
  12664. inset: 0;
  12665. z-index: 1037;
  12666. width: 100%;
  12667. height: 100%;
  12668. cursor: pointer;
  12669. visibility: visible;
  12670. background-color: rgba(0, 0, 0, 0.2);
  12671. animation-name: fadeIn;
  12672. animation-fill-mode: both;
  12673. }
  12674. }
  12675. .sidebar-expand {
  12676. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12677. }
  12678. .sidebar-expand.layout-fixed .app-main-wrapper {
  12679. display: flex;
  12680. flex-direction: column;
  12681. min-height: 100vh;
  12682. }
  12683. .sidebar-expand.layout-fixed .app-sidebar-wrapper {
  12684. position: relative;
  12685. }
  12686. .sidebar-expand.layout-fixed .app-main {
  12687. flex: 1 1 auto;
  12688. overflow: auto;
  12689. }
  12690. .sidebar-expand.layout-fixed .app-sidebar {
  12691. position: sticky;
  12692. top: 0;
  12693. bottom: 0;
  12694. max-height: 100vh;
  12695. }
  12696. .sidebar-expand.layout-fixed .app-sidebar .sidebar-wrapper {
  12697. height: calc(100vh - (calc(3.5rem + 1px)));
  12698. overflow-x: hidden;
  12699. overflow-y: auto;
  12700. }
  12701. .sidebar-expand.sidebar-open .nav-link > .nav-badge,
  12702. .sidebar-expand.sidebar-open .nav-link > p > .nav-badge {
  12703. animation-name: fadeIn;
  12704. animation-duration: 0.3s;
  12705. animation-fill-mode: both;
  12706. animation-delay: 0.3s;
  12707. }
  12708. .sidebar-expand.sidebar-open .nav-link > .nav-arrow,
  12709. .sidebar-expand.sidebar-open .nav-link > p > .nav-arrow {
  12710. animation-name: fadeIn;
  12711. animation-duration: 0.3s;
  12712. animation-fill-mode: both;
  12713. animation-delay: 0.3s;
  12714. }
  12715. .sidebar-expand::before {
  12716. display: none;
  12717. content: "";
  12718. }
  12719. .sidebar-expand .app-sidebar {
  12720. position: fixed;
  12721. top: 0;
  12722. bottom: 0;
  12723. max-height: 100vh;
  12724. margin-right: calc(var(--lte-sidebar-width) * -1);
  12725. }
  12726. .sidebar-expand .app-sidebar .sidebar-wrapper {
  12727. height: calc(100vh - (calc(3.5rem + 1px)));
  12728. overflow-x: hidden;
  12729. overflow-y: auto;
  12730. }
  12731. .sidebar-expand.sidebar-open .app-sidebar {
  12732. margin-right: 0;
  12733. }
  12734. .sidebar-expand.sidebar-open .sidebar-overlay {
  12735. position: absolute;
  12736. inset: 0;
  12737. z-index: 1037;
  12738. width: 100%;
  12739. height: 100%;
  12740. cursor: pointer;
  12741. visibility: visible;
  12742. background-color: rgba(0, 0, 0, 0.2);
  12743. animation-name: fadeIn;
  12744. animation-fill-mode: both;
  12745. }
  12746. .sidebar-menu .nav-link p,
  12747. .app-sidebar .brand-text,
  12748. .app-sidebar .logo-xs,
  12749. .app-sidebar .logo-xl {
  12750. transition: margin-right 0.3s linear, opacity 0.3s ease, visibility 0.3s ease;
  12751. }
  12752. @media (prefers-reduced-motion: reduce) {
  12753. .sidebar-menu .nav-link p,
  12754. .app-sidebar .brand-text,
  12755. .app-sidebar .logo-xs,
  12756. .app-sidebar .logo-xl {
  12757. transition: none;
  12758. }
  12759. }
  12760. .app-loaded.sidebar-mini.sidebar-collapse .sidebar-menu .nav-link p,
  12761. .app-loaded.sidebar-mini.sidebar-collapse .brand-text {
  12762. animation-duration: 0.3s;
  12763. }
  12764. body:not(.app-loaded) .app-header,
  12765. body:not(.app-loaded) .app-sidebar,
  12766. body:not(.app-loaded) .app-main,
  12767. body:not(.app-loaded) .app-footer {
  12768. transition: none !important;
  12769. }
  12770. @media (prefers-reduced-motion: reduce) {
  12771. body:not(.app-loaded) .app-header,
  12772. body:not(.app-loaded) .app-sidebar,
  12773. body:not(.app-loaded) .app-main,
  12774. body:not(.app-loaded) .app-footer {
  12775. transition: none;
  12776. }
  12777. }
  12778. body:not(.app-loaded) .app-header,
  12779. body:not(.app-loaded) .app-sidebar,
  12780. body:not(.app-loaded) .app-main,
  12781. body:not(.app-loaded) .app-footer {
  12782. animation-duration: 0s !important;
  12783. }
  12784. .hold-transition .app-header,
  12785. .hold-transition .app-sidebar,
  12786. .hold-transition .app-main,
  12787. .hold-transition .app-footer,
  12788. .hold-transition .nav-arrow,
  12789. .hold-transition .nav-badge {
  12790. transition: none !important;
  12791. }
  12792. @media (prefers-reduced-motion: reduce) {
  12793. .hold-transition .app-header,
  12794. .hold-transition .app-sidebar,
  12795. .hold-transition .app-main,
  12796. .hold-transition .app-footer,
  12797. .hold-transition .nav-arrow,
  12798. .hold-transition .nav-badge {
  12799. transition: none;
  12800. }
  12801. }
  12802. .hold-transition .app-header,
  12803. .hold-transition .app-sidebar,
  12804. .hold-transition .app-main,
  12805. .hold-transition .app-footer,
  12806. .hold-transition .nav-arrow,
  12807. .hold-transition .nav-badge {
  12808. animation-duration: 0s !important;
  12809. }
  12810. [data-bs-theme=dark].app-sidebar,
  12811. [data-bs-theme=dark] .app-sidebar {
  12812. --lte-sidebar-hover-bg: rgba(255, 255, 255, 0.1);
  12813. --lte-sidebar-color: #c2c7d0;
  12814. --lte-sidebar-hover-color: #fff;
  12815. --lte-sidebar-active-color: #fff;
  12816. --lte-sidebar-menu-active-bg: rgba(255, 255, 255, 0.1);
  12817. --lte-sidebar-menu-active-color: #fff;
  12818. --lte-sidebar-submenu-bg: transparent;
  12819. --lte-sidebar-submenu-color: #c2c7d0;
  12820. --lte-sidebar-submenu-hover-color: #fff;
  12821. --lte-sidebar-submenu-hover-bg: rgba(255, 255, 255, 0.1);
  12822. --lte-sidebar-submenu-active-color: #fff;
  12823. --lte-sidebar-submenu-active-bg: rgba(255, 255, 255, 0.1);
  12824. --lte-sidebar-header-color: rgb(197.05, 201.8, 210.35);
  12825. }
  12826. .app-main {
  12827. position: relative;
  12828. display: flex;
  12829. flex-direction: column;
  12830. grid-area: lte-app-main;
  12831. max-width: 100vw;
  12832. padding-bottom: 0.75rem;
  12833. transition: 0.3s ease-in-out;
  12834. }
  12835. @media (prefers-reduced-motion: reduce) {
  12836. .app-main {
  12837. transition: none;
  12838. }
  12839. }
  12840. .app-main .app-content-header {
  12841. padding: 1rem 0.5rem;
  12842. }
  12843. .app-main .app-content-header .breadcrumb {
  12844. padding: 0;
  12845. margin-bottom: 0;
  12846. line-height: 2.5rem;
  12847. }
  12848. .app-main .app-content-header .breadcrumb a {
  12849. text-decoration: none;
  12850. }
  12851. .app-main .app-content-top-area,
  12852. .app-main .app-content-bottom-area {
  12853. color: var(--bs-secondary-color);
  12854. background-color: var(--bs-body-bg);
  12855. }
  12856. .app-main .app-content-top-area {
  12857. padding: 1rem 0;
  12858. border-bottom: 1px solid var(--bs-border-color);
  12859. }
  12860. .app-main .app-content-bottom-area {
  12861. padding: 1rem 0;
  12862. margin-top: auto;
  12863. margin-bottom: -0.75rem;
  12864. border-top: 1px solid var(--bs-border-color);
  12865. }
  12866. .app-footer {
  12867. grid-area: lte-app-footer;
  12868. width: inherit;
  12869. max-width: 100vw;
  12870. min-height: 3rem;
  12871. padding: 1rem;
  12872. color: var(--bs-secondary-color);
  12873. background-color: var(--bs-body-bg);
  12874. border-top: 1px solid var(--bs-border-color);
  12875. transition: 0.3s ease-in-out;
  12876. }
  12877. @media (prefers-reduced-motion: reduce) {
  12878. .app-footer {
  12879. transition: none;
  12880. }
  12881. }
  12882. .fixed-footer .app-footer {
  12883. position: sticky;
  12884. bottom: 0;
  12885. z-index: 1030;
  12886. }
  12887. .fixed-footer.layout-fixed .app-main {
  12888. min-height: 0;
  12889. }
  12890. .dropdown-menu {
  12891. overflow: hidden;
  12892. }
  12893. .fs-7 .dropdown-menu {
  12894. font-size: 0.875rem !important;
  12895. }
  12896. .fs-7 .dropdown-toggle::after {
  12897. vertical-align: 0.2rem;
  12898. }
  12899. .dropdown-item-title {
  12900. margin: 0;
  12901. font-size: 1rem;
  12902. }
  12903. .dropdown-icon::after {
  12904. margin-right: 0;
  12905. }
  12906. .dropdown-menu-lg {
  12907. min-width: 280px;
  12908. max-width: 300px;
  12909. padding: 0;
  12910. }
  12911. .dropdown-menu-lg .dropdown-divider {
  12912. margin: 0;
  12913. }
  12914. .dropdown-menu-lg .dropdown-item {
  12915. padding: 0.5rem 1rem;
  12916. }
  12917. .dropdown-menu-lg p {
  12918. margin: 0;
  12919. word-wrap: break-word;
  12920. white-space: normal;
  12921. }
  12922. .dropdown-submenu {
  12923. position: relative;
  12924. }
  12925. .dropdown-submenu > a::after {
  12926. border-top: 0.3em solid transparent;
  12927. border-left: 0;
  12928. border-bottom: 0.3em solid transparent;
  12929. border-right: 0.3em solid;
  12930. float: left;
  12931. margin-top: 0.5rem;
  12932. margin-right: 0.5rem;
  12933. }
  12934. .dropdown-submenu > .dropdown-menu {
  12935. top: 0;
  12936. right: 100%;
  12937. margin-top: 0;
  12938. margin-right: 0;
  12939. }
  12940. .dropdown-hover:hover > .dropdown-menu, .dropdown-hover.nav-item.dropdown:hover > .dropdown-menu,
  12941. .dropdown-hover .dropdown-submenu:hover > .dropdown-menu, .dropdown-hover.dropdown-submenu:hover > .dropdown-menu {
  12942. display: block;
  12943. }
  12944. .dropdown-menu-xl {
  12945. min-width: 360px;
  12946. max-width: 420px;
  12947. padding: 0;
  12948. }
  12949. .dropdown-menu-xl .dropdown-divider {
  12950. margin: 0;
  12951. }
  12952. .dropdown-menu-xl .dropdown-item {
  12953. padding: 0.5rem 1rem;
  12954. }
  12955. .dropdown-menu-xl p {
  12956. margin: 0;
  12957. word-wrap: break-word;
  12958. white-space: normal;
  12959. }
  12960. .dropdown-footer,
  12961. .dropdown-header {
  12962. display: block;
  12963. padding: 0.5rem 1rem;
  12964. font-size: 0.875rem;
  12965. text-align: center;
  12966. }
  12967. .open:not(.dropup) > .animated-dropdown-menu {
  12968. animation: flipInX 0.7s both;
  12969. backface-visibility: visible !important;
  12970. }
  12971. .navbar-custom-menu > .navbar-nav > li {
  12972. position: relative;
  12973. }
  12974. .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  12975. position: absolute;
  12976. left: 0;
  12977. right: auto;
  12978. }
  12979. @media (max-width: 575.98px) {
  12980. .navbar-custom-menu > .navbar-nav {
  12981. float: left;
  12982. }
  12983. .navbar-custom-menu > .navbar-nav > li {
  12984. position: static;
  12985. }
  12986. .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  12987. position: absolute;
  12988. left: 5%;
  12989. right: auto;
  12990. background-color: var(--bs-body-bg);
  12991. border: 1px solid var(--bs-border-color);
  12992. }
  12993. }
  12994. .navbar-nav > .user-menu > .nav-link::after {
  12995. content: none;
  12996. }
  12997. .navbar-nav > .user-menu > .dropdown-menu {
  12998. width: 280px;
  12999. padding: 0;
  13000. }
  13001. .navbar-nav > .user-menu > .dropdown-menu > li.user-header {
  13002. min-height: 175px;
  13003. padding: 10px;
  13004. text-align: center;
  13005. }
  13006. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
  13007. z-index: 5;
  13008. width: 90px;
  13009. height: 90px;
  13010. border: 3px solid;
  13011. border-color: transparent;
  13012. border-color: var(--bs-border-color-translucent);
  13013. }
  13014. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
  13015. z-index: 5;
  13016. margin-top: 10px;
  13017. font-size: 17px;
  13018. word-wrap: break-word;
  13019. }
  13020. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small, .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > .small {
  13021. display: block;
  13022. font-size: 12px;
  13023. }
  13024. .navbar-nav > .user-menu > .dropdown-menu > .user-body::after {
  13025. display: block;
  13026. clear: both;
  13027. content: "";
  13028. }
  13029. .navbar-nav > .user-menu > .dropdown-menu > .user-body {
  13030. padding: 15px;
  13031. border-top: 1px solid var(--bs-border-color);
  13032. border-bottom: 1px solid var(--bs-border-color-translucent);
  13033. }
  13034. .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
  13035. text-decoration: none;
  13036. }
  13037. .navbar-nav > .user-menu > .dropdown-menu > .user-footer::after {
  13038. display: block;
  13039. clear: both;
  13040. content: "";
  13041. }
  13042. .navbar-nav > .user-menu > .dropdown-menu > .user-footer {
  13043. padding: 10px;
  13044. background-color: var(--bs-light-bg);
  13045. }
  13046. @media (min-width: 576px) {
  13047. .navbar-nav > .user-menu .user-image {
  13048. float: none;
  13049. margin-top: -8px;
  13050. margin-left: 0.4rem;
  13051. line-height: 10px;
  13052. }
  13053. }
  13054. .navbar-nav > .user-menu .user-image {
  13055. float: right;
  13056. width: 2rem;
  13057. height: 2rem;
  13058. margin-top: -2px;
  13059. border-radius: 50%;
  13060. }
  13061. .callout {
  13062. --bs-link-color-rgb: var(--lte-callout-link);
  13063. --bs-code-color: var(--lte-callout-code-color);
  13064. padding: 1.25rem;
  13065. color: var(--lte-callout-color, inherit);
  13066. background-color: var(--lte-callout-bg, var(--bs-gray-100));
  13067. border-right: 0.25rem solid var(--lte-callout-border, var(--bs-gray-300));
  13068. }
  13069. .callout .callout-link {
  13070. font-weight: 700;
  13071. color: var(--bs-callout-link-color);
  13072. }
  13073. .callout h4, .callout .h4 {
  13074. margin-bottom: 0.25rem;
  13075. }
  13076. .callout > :last-child {
  13077. margin-bottom: 0;
  13078. }
  13079. .callout + .callout {
  13080. margin-top: -0.25rem;
  13081. }
  13082. .callout-primary {
  13083. --lte-callout-color: var(--bs-primary-text-emphasis);
  13084. --lte-callout-bg: var(--bs-primary-bg-subtle);
  13085. --lte-callout-border: var(--bs-primary-border-subtle);
  13086. --bs-callout-link-color: var(--bs-primary-text-emphasis);
  13087. }
  13088. .callout-secondary {
  13089. --lte-callout-color: var(--bs-secondary-text-emphasis);
  13090. --lte-callout-bg: var(--bs-secondary-bg-subtle);
  13091. --lte-callout-border: var(--bs-secondary-border-subtle);
  13092. --bs-callout-link-color: var(--bs-secondary-text-emphasis);
  13093. }
  13094. .callout-success {
  13095. --lte-callout-color: var(--bs-success-text-emphasis);
  13096. --lte-callout-bg: var(--bs-success-bg-subtle);
  13097. --lte-callout-border: var(--bs-success-border-subtle);
  13098. --bs-callout-link-color: var(--bs-success-text-emphasis);
  13099. }
  13100. .callout-info {
  13101. --lte-callout-color: var(--bs-info-text-emphasis);
  13102. --lte-callout-bg: var(--bs-info-bg-subtle);
  13103. --lte-callout-border: var(--bs-info-border-subtle);
  13104. --bs-callout-link-color: var(--bs-info-text-emphasis);
  13105. }
  13106. .callout-warning {
  13107. --lte-callout-color: var(--bs-warning-text-emphasis);
  13108. --lte-callout-bg: var(--bs-warning-bg-subtle);
  13109. --lte-callout-border: var(--bs-warning-border-subtle);
  13110. --bs-callout-link-color: var(--bs-warning-text-emphasis);
  13111. }
  13112. .callout-danger {
  13113. --lte-callout-color: var(--bs-danger-text-emphasis);
  13114. --lte-callout-bg: var(--bs-danger-bg-subtle);
  13115. --lte-callout-border: var(--bs-danger-border-subtle);
  13116. --bs-callout-link-color: var(--bs-danger-text-emphasis);
  13117. }
  13118. .callout-light {
  13119. --lte-callout-color: var(--bs-light-text-emphasis);
  13120. --lte-callout-bg: var(--bs-light-bg-subtle);
  13121. --lte-callout-border: var(--bs-light-border-subtle);
  13122. --bs-callout-link-color: var(--bs-light-text-emphasis);
  13123. }
  13124. .callout-dark {
  13125. --lte-callout-color: var(--bs-dark-text-emphasis);
  13126. --lte-callout-bg: var(--bs-dark-bg-subtle);
  13127. --lte-callout-border: var(--bs-dark-border-subtle);
  13128. --bs-callout-link-color: var(--bs-dark-text-emphasis);
  13129. }
  13130. .compact-mode .app-header {
  13131. max-height: 2.75rem;
  13132. }
  13133. .compact-mode .app-header .nav-link {
  13134. max-height: 1.75rem;
  13135. }
  13136. .compact-mode .nav-link {
  13137. --bs-nav-link-padding-y: .25rem;
  13138. --bs-nav-link-padding-x: .5rem;
  13139. }
  13140. .compact-mode.sidebar-mini.sidebar-collapse .app-sidebar:not(:hover) {
  13141. min-width: 3.1rem;
  13142. max-width: 3.1rem;
  13143. }
  13144. .compact-mode.sidebar-mini.sidebar-collapse .app-sidebar:not(:hover) .sidebar-menu .nav-link {
  13145. width: 2.1rem !important;
  13146. }
  13147. .compact-mode .logo-xs,
  13148. .compact-mode .logo-xl {
  13149. max-height: 2.75rem;
  13150. }
  13151. .compact-mode .brand-image {
  13152. width: 1.75rem;
  13153. height: 1.75rem;
  13154. }
  13155. .compact-mode .sidebar-brand {
  13156. height: 2.75rem;
  13157. }
  13158. .compact-mode .app-footer {
  13159. padding: 0.5rem;
  13160. }
  13161. .compact-mode .sidebar-wrapper .nav-icon {
  13162. min-width: 1.1rem;
  13163. max-width: 1.1rem;
  13164. }
  13165. .astro-code {
  13166. padding: 0.75rem;
  13167. border-radius: 0.375rem;
  13168. }
  13169. .progress {
  13170. border-radius: 1px;
  13171. }
  13172. .progress.vertical {
  13173. position: relative;
  13174. display: inline-block;
  13175. width: 30px;
  13176. height: 200px;
  13177. margin-left: 10px;
  13178. }
  13179. .progress.vertical > .progress-bar {
  13180. position: absolute;
  13181. bottom: 0;
  13182. width: 100%;
  13183. }
  13184. .progress.vertical.sm, .progress.vertical.progress-sm {
  13185. width: 20px;
  13186. }
  13187. .progress.vertical.xs, .progress.vertical.progress-xs {
  13188. width: 10px;
  13189. }
  13190. .progress.vertical.xxs, .progress.vertical.progress-xxs {
  13191. width: 3px;
  13192. }
  13193. .progress-group {
  13194. margin-bottom: 0.5rem;
  13195. }
  13196. .progress-sm {
  13197. height: 10px;
  13198. }
  13199. .progress-xs {
  13200. height: 7px;
  13201. }
  13202. .progress-xxs {
  13203. height: 3px;
  13204. }
  13205. .table tr > td .progress {
  13206. margin: 0;
  13207. }
  13208. .card {
  13209. box-shadow: 0 0 1px rgba(var(--bs-body-color-rgb), 0.125), 0 1px 3px rgba(var(--bs-body-color-rgb), 0.2);
  13210. }
  13211. .card[class*=card-]:not(.card-outline) > .card-header, .card[class*=text-bg-]:not(.card-outline) > .card-header {
  13212. color: var(--lte-card-variant-color);
  13213. background-color: var(--lte-card-variant-bg);
  13214. }
  13215. .card[class*=card-]:not(.card-outline) > .card-header .btn-tool, .card[class*=text-bg-]:not(.card-outline) > .card-header .btn-tool {
  13216. --bs-btn-color: rgba(var(--lte-card-variant-color-rgb), .8);
  13217. --bs-btn-hover-color: var(--lte-card-variant-color);
  13218. }
  13219. .card.card-outline {
  13220. border-top: 3px solid var(--lte-card-variant-bg);
  13221. }
  13222. .card.maximized-card {
  13223. position: fixed;
  13224. top: 0;
  13225. right: 0;
  13226. z-index: 1050;
  13227. width: 100% !important;
  13228. max-width: 100% !important;
  13229. height: 100% !important;
  13230. max-height: 100% !important;
  13231. }
  13232. .card.maximized-card.was-collapsed .card-body {
  13233. display: block !important;
  13234. }
  13235. .card.maximized-card .card-body {
  13236. overflow: auto;
  13237. }
  13238. .card.maximized-card [data-lte-toggle=card-collapse] {
  13239. display: none;
  13240. }
  13241. .card.maximized-card [data-lte-icon=maximize] {
  13242. display: none;
  13243. }
  13244. .card.maximized-card .card-header,
  13245. .card.maximized-card .card-footer {
  13246. border-radius: 0 !important;
  13247. }
  13248. .card:not(.maximized-card) [data-lte-icon=minimize] {
  13249. display: none;
  13250. }
  13251. .card.collapsed-card > .card-header [data-lte-icon=collapse] {
  13252. display: none;
  13253. }
  13254. .card.collapsed-card > .card-body,
  13255. .card.collapsed-card > .card-footer {
  13256. display: none;
  13257. }
  13258. .card:not(.collapsed-card) > .card-header [data-lte-icon=expand] {
  13259. display: none;
  13260. }
  13261. .card .nav.flex-column > li {
  13262. margin: 0;
  13263. border-bottom: 1px solid var(--bs-border-color-translucent);
  13264. }
  13265. .card .nav.flex-column > li:last-of-type {
  13266. border-bottom: 0;
  13267. }
  13268. .card.height-control .card-body {
  13269. max-height: 300px;
  13270. overflow: auto;
  13271. }
  13272. .card .border-end {
  13273. border-left: 1px solid var(--bs-border-color-translucent);
  13274. }
  13275. .card .border-start {
  13276. border-right: 1px solid var(--bs-border-color-translucent);
  13277. }
  13278. .card.card-tabs:not(.card-outline) > .card-header {
  13279. border-bottom: 0;
  13280. }
  13281. .card.card-tabs:not(.card-outline) > .card-header .nav-item:first-child .nav-link {
  13282. border-right-color: transparent;
  13283. }
  13284. .card.card-tabs.card-outline .nav-item {
  13285. border-bottom: 0;
  13286. }
  13287. .card.card-tabs.card-outline .nav-item:first-child .nav-link {
  13288. margin-right: 0;
  13289. border-right: 0;
  13290. }
  13291. .card.card-tabs .card-tools {
  13292. margin: 0.3rem 0.5rem;
  13293. }
  13294. .card.card-tabs:not(.expanding-card).collapsed-card .card-header {
  13295. border-bottom: 0;
  13296. }
  13297. .card.card-tabs:not(.expanding-card).collapsed-card .card-header .nav-tabs {
  13298. border-bottom: 0;
  13299. }
  13300. .card.card-tabs:not(.expanding-card).collapsed-card .card-header .nav-tabs .nav-item {
  13301. margin-bottom: 0;
  13302. }
  13303. .card.card-tabs.expanding-card .card-header .nav-tabs .nav-item {
  13304. margin-bottom: -1px;
  13305. }
  13306. .card.card-outline-tabs {
  13307. border-top: 0;
  13308. }
  13309. .card.card-outline-tabs .card-header .nav-item:first-child .nav-link {
  13310. margin-right: 0;
  13311. border-right: 0;
  13312. }
  13313. .card.card-outline-tabs .card-header a {
  13314. text-decoration: none;
  13315. border-top: 3px solid transparent;
  13316. }
  13317. .card.card-outline-tabs .card-header a:hover {
  13318. border-top: 3px solid var(--bs-border-color);
  13319. }
  13320. .card.card-outline-tabs .card-header a.active:hover {
  13321. margin-top: 0;
  13322. }
  13323. .card.card-outline-tabs .card-tools {
  13324. margin: 0.5rem 0.5rem 0.3rem;
  13325. }
  13326. .card.card-outline-tabs:not(.expanding-card).collapsed-card .card-header {
  13327. border-bottom: 0;
  13328. }
  13329. .card.card-outline-tabs:not(.expanding-card).collapsed-card .card-header .nav-tabs {
  13330. border-bottom: 0;
  13331. }
  13332. .card.card-outline-tabs:not(.expanding-card).collapsed-card .card-header .nav-tabs .nav-item {
  13333. margin-bottom: 0;
  13334. }
  13335. .card.card-outline-tabs.expanding-card .card-header .nav-tabs .nav-item {
  13336. margin-bottom: -1px;
  13337. }
  13338. html.maximized-card {
  13339. overflow: hidden;
  13340. }
  13341. .card-header::after,
  13342. .card-body::after,
  13343. .card-footer::after {
  13344. display: block;
  13345. clear: both;
  13346. content: "";
  13347. }
  13348. .card-header {
  13349. position: relative;
  13350. padding: 1rem 1rem;
  13351. background-color: transparent;
  13352. border-bottom: 1px solid var(--bs-border-color-translucent);
  13353. border-top-right-radius: 0.375rem;
  13354. border-top-left-radius: 0.375rem;
  13355. }
  13356. .collapsed-card .card-header {
  13357. border-bottom: 0;
  13358. }
  13359. .card-header > .card-tools {
  13360. float: left;
  13361. margin-left: -0.5rem;
  13362. }
  13363. .card-header > .card-tools .input-group,
  13364. .card-header > .card-tools .nav,
  13365. .card-header > .card-tools .pagination {
  13366. margin-top: -0.4rem;
  13367. margin-bottom: -0.4rem;
  13368. }
  13369. .card-header > .card-tools [data-bs-toggle=tooltip] {
  13370. position: relative;
  13371. }
  13372. .card-title {
  13373. float: right;
  13374. margin: 0;
  13375. font-size: 1.1rem;
  13376. font-weight: 400;
  13377. }
  13378. .btn-tool {
  13379. --bs-btn-padding-x: .5rem;
  13380. --bs-btn-padding-y: .25rem;
  13381. }
  13382. .btn-tool:not(.btn-tool-custom) {
  13383. --bs-btn-color: var(--bs-tertiary-color);
  13384. --bs-btn-bg: transparent;
  13385. --bs-btn-box-shadow: none;
  13386. --bs-btn-hover-color: var(--bs-secondary-color);
  13387. --bs-btn-active-border-color: transparent;
  13388. }
  13389. .btn-tool {
  13390. margin: -1rem 0;
  13391. font-size: 0.875rem;
  13392. }
  13393. .card-primary,
  13394. .bg-primary,
  13395. .text-bg-primary {
  13396. --lte-card-variant-bg: #0d6efd;
  13397. --lte-card-variant-bg-rgb: 13, 110, 253;
  13398. --lte-card-variant-color: #fff;
  13399. --lte-card-variant-color-rgb: 255, 255, 255;
  13400. }
  13401. .card-secondary,
  13402. .bg-secondary,
  13403. .text-bg-secondary {
  13404. --lte-card-variant-bg: #6c757d;
  13405. --lte-card-variant-bg-rgb: 108, 117, 125;
  13406. --lte-card-variant-color: #fff;
  13407. --lte-card-variant-color-rgb: 255, 255, 255;
  13408. }
  13409. .card-success,
  13410. .bg-success,
  13411. .text-bg-success {
  13412. --lte-card-variant-bg: #198754;
  13413. --lte-card-variant-bg-rgb: 25, 135, 84;
  13414. --lte-card-variant-color: #fff;
  13415. --lte-card-variant-color-rgb: 255, 255, 255;
  13416. }
  13417. .card-info,
  13418. .bg-info,
  13419. .text-bg-info {
  13420. --lte-card-variant-bg: #0dcaf0;
  13421. --lte-card-variant-bg-rgb: 13, 202, 240;
  13422. --lte-card-variant-color: #000;
  13423. --lte-card-variant-color-rgb: 0, 0, 0;
  13424. }
  13425. .card-warning,
  13426. .bg-warning,
  13427. .text-bg-warning {
  13428. --lte-card-variant-bg: #ffc107;
  13429. --lte-card-variant-bg-rgb: 255, 193, 7;
  13430. --lte-card-variant-color: #000;
  13431. --lte-card-variant-color-rgb: 0, 0, 0;
  13432. }
  13433. .card-danger,
  13434. .bg-danger,
  13435. .text-bg-danger {
  13436. --lte-card-variant-bg: #dc3545;
  13437. --lte-card-variant-bg-rgb: 220, 53, 69;
  13438. --lte-card-variant-color: #fff;
  13439. --lte-card-variant-color-rgb: 255, 255, 255;
  13440. }
  13441. .card-light,
  13442. .bg-light,
  13443. .text-bg-light {
  13444. --lte-card-variant-bg: #f8f9fa;
  13445. --lte-card-variant-bg-rgb: 248, 249, 250;
  13446. --lte-card-variant-color: #000;
  13447. --lte-card-variant-color-rgb: 0, 0, 0;
  13448. }
  13449. .card-dark,
  13450. .bg-dark,
  13451. .text-bg-dark {
  13452. --lte-card-variant-bg: #212529;
  13453. --lte-card-variant-bg-rgb: 33, 37, 41;
  13454. --lte-card-variant-color: #fff;
  13455. --lte-card-variant-color-rgb: 255, 255, 255;
  13456. }
  13457. .card-body > .table {
  13458. margin-bottom: 0;
  13459. }
  13460. .card-body > .table > thead > tr > th,
  13461. .card-body > .table > thead > tr > td {
  13462. border-top-width: 0;
  13463. }
  13464. .table:not(.table-dark) {
  13465. color: inherit;
  13466. }
  13467. .table.table-head-fixed thead tr:nth-child(1) th {
  13468. position: sticky;
  13469. top: 0;
  13470. z-index: 10;
  13471. background-color: #fff;
  13472. border-bottom: 0;
  13473. box-shadow: inset 0 1px 0 var(--bs-border-color), inset 0 -1px 0 var(--bs-border-color);
  13474. }
  13475. .table.no-border,
  13476. .table.no-border td,
  13477. .table.no-border th {
  13478. border: 0;
  13479. }
  13480. .table.text-center,
  13481. .table.text-center td,
  13482. .table.text-center th {
  13483. text-align: center;
  13484. }
  13485. .table.table-valign-middle thead > tr > th,
  13486. .table.table-valign-middle thead > tr > td,
  13487. .table.table-valign-middle tbody > tr > th,
  13488. .table.table-valign-middle tbody > tr > td {
  13489. vertical-align: middle;
  13490. }
  13491. .card-body.p-0 .table thead > tr > th:first-of-type,
  13492. .card-body.p-0 .table thead > tr > td:first-of-type,
  13493. .card-body.p-0 .table tfoot > tr > th:first-of-type,
  13494. .card-body.p-0 .table tfoot > tr > td:first-of-type,
  13495. .card-body.p-0 .table tbody > tr > th:first-of-type,
  13496. .card-body.p-0 .table tbody > tr > td:first-of-type {
  13497. padding-right: 1.5rem;
  13498. }
  13499. .card-body.p-0 .table thead > tr > th:last-of-type,
  13500. .card-body.p-0 .table thead > tr > td:last-of-type,
  13501. .card-body.p-0 .table tfoot > tr > th:last-of-type,
  13502. .card-body.p-0 .table tfoot > tr > td:last-of-type,
  13503. .card-body.p-0 .table tbody > tr > th:last-of-type,
  13504. .card-body.p-0 .table tbody > tr > td:last-of-type {
  13505. padding-left: 1.5rem;
  13506. }
  13507. .small-box {
  13508. border-radius: 0.375rem;
  13509. box-shadow: 0 0 1px rgba(var(--bs-body-color-rgb), 0.125), 0 1px 3px rgba(var(--bs-body-color-rgb), 0.2);
  13510. position: relative;
  13511. display: block;
  13512. margin-bottom: 1.25rem;
  13513. --bs-link-color-rgb: none;
  13514. --bs-link-hover-color-rgb: none;
  13515. --bs-heading-color: none;
  13516. }
  13517. .small-box > .inner {
  13518. padding: 10px;
  13519. }
  13520. .small-box > .small-box-footer {
  13521. position: relative;
  13522. z-index: 10;
  13523. display: block;
  13524. padding: 3px 0;
  13525. text-align: center;
  13526. background-color: rgba(0, 0, 0, 0.07);
  13527. }
  13528. .small-box > .small-box-footer:hover {
  13529. background-color: rgba(0, 0, 0, 0.1);
  13530. }
  13531. .small-box h3, .small-box .h3 {
  13532. font-size: calc(1.345rem + 1.14vw);
  13533. }
  13534. @media (min-width: 1200px) {
  13535. .small-box h3, .small-box .h3 {
  13536. font-size: 2.2rem;
  13537. }
  13538. }
  13539. .small-box h3, .small-box .h3 {
  13540. padding: 0;
  13541. margin: 0 0 10px;
  13542. font-weight: 700;
  13543. white-space: nowrap;
  13544. }
  13545. @media (min-width: 992px) {
  13546. .col-xl-2 .small-box h3, .col-xl-2 .small-box .h3, .col-lg-2 .small-box h3, .col-lg-2 .small-box .h3, .col-md-2 .small-box h3, .col-md-2 .small-box .h3 {
  13547. font-size: calc(1.285rem + 0.42vw);
  13548. }
  13549. }
  13550. @media (min-width: 992px) and (min-width: 1200px) {
  13551. .col-xl-2 .small-box h3, .col-xl-2 .small-box .h3, .col-lg-2 .small-box h3, .col-lg-2 .small-box .h3, .col-md-2 .small-box h3, .col-md-2 .small-box .h3 {
  13552. font-size: 1.6rem;
  13553. }
  13554. }
  13555. @media (min-width: 992px) {
  13556. .col-xl-3 .small-box h3, .col-xl-3 .small-box .h3, .col-lg-3 .small-box h3, .col-lg-3 .small-box .h3, .col-md-3 .small-box h3, .col-md-3 .small-box .h3 {
  13557. font-size: calc(1.285rem + 0.42vw);
  13558. }
  13559. }
  13560. @media (min-width: 992px) and (min-width: 1200px) {
  13561. .col-xl-3 .small-box h3, .col-xl-3 .small-box .h3, .col-lg-3 .small-box h3, .col-lg-3 .small-box .h3, .col-md-3 .small-box h3, .col-md-3 .small-box .h3 {
  13562. font-size: 1.6rem;
  13563. }
  13564. }
  13565. @media (min-width: 1200px) {
  13566. .col-xl-2 .small-box h3, .col-xl-2 .small-box .h3, .col-lg-2 .small-box h3, .col-lg-2 .small-box .h3, .col-md-2 .small-box h3, .col-md-2 .small-box .h3 {
  13567. font-size: calc(1.345rem + 1.14vw);
  13568. }
  13569. }
  13570. @media (min-width: 1200px) and (min-width: 1200px) {
  13571. .col-xl-2 .small-box h3, .col-xl-2 .small-box .h3, .col-lg-2 .small-box h3, .col-lg-2 .small-box .h3, .col-md-2 .small-box h3, .col-md-2 .small-box .h3 {
  13572. font-size: 2.2rem;
  13573. }
  13574. }
  13575. @media (min-width: 1200px) {
  13576. .col-xl-3 .small-box h3, .col-xl-3 .small-box .h3, .col-lg-3 .small-box h3, .col-lg-3 .small-box .h3, .col-md-3 .small-box h3, .col-md-3 .small-box .h3 {
  13577. font-size: calc(1.345rem + 1.14vw);
  13578. }
  13579. }
  13580. @media (min-width: 1200px) and (min-width: 1200px) {
  13581. .col-xl-3 .small-box h3, .col-xl-3 .small-box .h3, .col-lg-3 .small-box h3, .col-lg-3 .small-box .h3, .col-md-3 .small-box h3, .col-md-3 .small-box .h3 {
  13582. font-size: 2.2rem;
  13583. }
  13584. }
  13585. .small-box p {
  13586. font-size: 1rem;
  13587. }
  13588. .small-box p > small, .small-box p > .small {
  13589. display: block;
  13590. margin-top: 5px;
  13591. font-size: 0.9rem;
  13592. color: #f8f9fa;
  13593. }
  13594. .small-box h3, .small-box .h3,
  13595. .small-box p {
  13596. z-index: 5;
  13597. }
  13598. .small-box .small-box-icon {
  13599. position: absolute;
  13600. top: 15px;
  13601. left: 15px;
  13602. z-index: 0;
  13603. height: 70px;
  13604. font-size: 70px;
  13605. color: rgba(0, 0, 0, 0.15);
  13606. transition: transform 0.3s linear;
  13607. }
  13608. @media (prefers-reduced-motion: reduce) {
  13609. .small-box .small-box-icon {
  13610. transition: none;
  13611. }
  13612. }
  13613. .small-box:hover .small-box-icon {
  13614. transform: scale(1.1);
  13615. }
  13616. @media (max-width: 575.98px) {
  13617. .small-box {
  13618. text-align: center;
  13619. }
  13620. .small-box .small-box-icon {
  13621. display: none;
  13622. }
  13623. .small-box p {
  13624. font-size: 12px;
  13625. }
  13626. }
  13627. .info-box {
  13628. box-shadow: 0 0 1px rgba(var(--bs-body-color-rgb), 0.125), 0 1px 3px rgba(var(--bs-body-color-rgb), 0.2);
  13629. border-radius: 0.375rem;
  13630. position: relative;
  13631. display: flex;
  13632. width: 100%;
  13633. min-height: 80px;
  13634. padding: 0.5rem;
  13635. margin-bottom: 1rem;
  13636. color: var(--bs-body-color);
  13637. background-color: var(--bs-body-bg);
  13638. }
  13639. .info-box .progress {
  13640. height: 2px;
  13641. margin: 5px 0;
  13642. background-color: rgba(var(--lte-card-variant-color-rgb), 0.125);
  13643. }
  13644. .info-box .progress .progress-bar {
  13645. background-color: var(--lte-card-variant-color);
  13646. }
  13647. .info-box .info-box-icon {
  13648. display: flex;
  13649. align-items: center;
  13650. justify-content: center;
  13651. width: 70px;
  13652. font-size: 1.875rem;
  13653. text-align: center;
  13654. border-radius: 0.375rem;
  13655. }
  13656. .info-box .info-box-icon > img {
  13657. max-width: 100%;
  13658. }
  13659. .info-box .info-box-content {
  13660. display: flex;
  13661. flex: 1;
  13662. flex-direction: column;
  13663. justify-content: center;
  13664. padding: 0 10px;
  13665. line-height: 1.8;
  13666. }
  13667. .info-box .info-box-number {
  13668. display: block;
  13669. margin-top: 0.25rem;
  13670. font-weight: 700;
  13671. }
  13672. .info-box .progress-description,
  13673. .info-box .info-box-text {
  13674. display: block;
  13675. overflow: hidden;
  13676. text-overflow: ellipsis;
  13677. white-space: nowrap;
  13678. }
  13679. .info-box .info-box-more {
  13680. display: block;
  13681. }
  13682. .info-box .progress-description {
  13683. margin: 0;
  13684. }
  13685. @media (min-width: 768px) {
  13686. .col-xl-2 .info-box .progress-description, .col-lg-2 .info-box .progress-description, .col-md-2 .info-box .progress-description {
  13687. display: none;
  13688. }
  13689. .col-xl-3 .info-box .progress-description, .col-lg-3 .info-box .progress-description, .col-md-3 .info-box .progress-description {
  13690. display: none;
  13691. }
  13692. }
  13693. @media (min-width: 992px) {
  13694. .col-xl-2 .info-box .progress-description, .col-lg-2 .info-box .progress-description, .col-md-2 .info-box .progress-description {
  13695. font-size: 0.75rem;
  13696. display: block;
  13697. }
  13698. .col-xl-3 .info-box .progress-description, .col-lg-3 .info-box .progress-description, .col-md-3 .info-box .progress-description {
  13699. font-size: 0.75rem;
  13700. display: block;
  13701. }
  13702. }
  13703. @media (min-width: 1200px) {
  13704. .col-xl-2 .info-box .progress-description, .col-lg-2 .info-box .progress-description, .col-md-2 .info-box .progress-description {
  13705. font-size: 1rem;
  13706. display: block;
  13707. }
  13708. .col-xl-3 .info-box .progress-description, .col-lg-3 .info-box .progress-description, .col-md-3 .info-box .progress-description {
  13709. font-size: 1rem;
  13710. display: block;
  13711. }
  13712. }
  13713. .timeline {
  13714. position: relative;
  13715. padding: 0;
  13716. margin: 0 0 45px;
  13717. }
  13718. .timeline::before {
  13719. border-radius: 0.375rem;
  13720. position: absolute;
  13721. top: 0;
  13722. bottom: 0;
  13723. right: 31px;
  13724. width: 4px;
  13725. margin: 0;
  13726. content: "";
  13727. background-color: var(--bs-border-color);
  13728. }
  13729. .timeline > div::before, .timeline > div::after {
  13730. display: table;
  13731. content: "";
  13732. }
  13733. .timeline > div {
  13734. position: relative;
  13735. margin-left: 10px;
  13736. margin-bottom: 15px;
  13737. }
  13738. .timeline > div > .timeline-item {
  13739. box-shadow: 0 0 1px rgba(var(--bs-body-color-rgb), 0.125), 0 1px 3px rgba(var(--bs-body-color-rgb), 0.2);
  13740. border-radius: 0.375rem;
  13741. position: relative;
  13742. padding: 0;
  13743. margin-top: 0;
  13744. margin-left: 15px;
  13745. margin-right: 60px;
  13746. color: var(--bs-body-color);
  13747. background-color: var(--bs-body-bg);
  13748. }
  13749. .timeline > div > .timeline-item > .time {
  13750. float: left;
  13751. padding: 10px;
  13752. font-size: 12px;
  13753. color: var(--bs-secondary-color);
  13754. }
  13755. .timeline > div > .timeline-item > .timeline-header {
  13756. padding: 10px;
  13757. margin: 0;
  13758. font-size: 16px;
  13759. line-height: 1.1;
  13760. color: var(--bs-secondary-color);
  13761. border-bottom: 1px solid var(--bs-border-color);
  13762. }
  13763. .timeline > div > .timeline-item > .timeline-header > a {
  13764. font-weight: 600;
  13765. text-decoration: none;
  13766. }
  13767. .timeline > div > .timeline-item > .timeline-body,
  13768. .timeline > div > .timeline-item > .timeline-footer {
  13769. padding: 10px;
  13770. }
  13771. .timeline > div > .timeline-item > .timeline-body > img {
  13772. margin: 10px;
  13773. }
  13774. .timeline > div > .timeline-item > .timeline-body > dl,
  13775. .timeline > div > .timeline-item > .timeline-body ol,
  13776. .timeline > div > .timeline-item > .timeline-body ul {
  13777. margin: 0;
  13778. }
  13779. .timeline > div .timeline-icon {
  13780. position: absolute;
  13781. top: 0;
  13782. right: 18px;
  13783. width: 30px;
  13784. height: 30px;
  13785. font-size: 16px;
  13786. line-height: 30px;
  13787. text-align: center;
  13788. background-color: var(--bs-secondary-bg);
  13789. border-radius: 50%;
  13790. }
  13791. .timeline > .time-label > span {
  13792. border-radius: 4px;
  13793. display: inline-block;
  13794. padding: 5px;
  13795. font-weight: 600;
  13796. background-color: var(--bs-body-bg);
  13797. }
  13798. .timeline-inverse > div > .timeline-item {
  13799. box-shadow: none;
  13800. background-color: var(--bs-tertiary-bg);
  13801. border: 1px solid var(--bs-border-color);
  13802. }
  13803. .timeline-inverse > div > .timeline-item > .timeline-header {
  13804. border-bottom-color: var(--bs-border-color);
  13805. }
  13806. .direct-chat .card-body {
  13807. position: relative;
  13808. padding: 0;
  13809. overflow-x: hidden;
  13810. }
  13811. .direct-chat.chat-pane-open .direct-chat-contacts {
  13812. transform: translate(0, 0);
  13813. }
  13814. .direct-chat.timestamp-light .direct-chat-timestamp {
  13815. color: rgba(var(--bs-body-color-rgb), 0.65);
  13816. }
  13817. .direct-chat.timestamp-dark .direct-chat-timestamp {
  13818. color: rgba(var(--bs-body-color-rgb), 0.9);
  13819. }
  13820. .direct-chat-messages {
  13821. height: 250px;
  13822. padding: 10px;
  13823. overflow: auto;
  13824. transform: translate(0, 0);
  13825. }
  13826. .direct-chat-msg,
  13827. .direct-chat-text {
  13828. display: block;
  13829. }
  13830. .direct-chat-msg::after {
  13831. display: block;
  13832. clear: both;
  13833. content: "";
  13834. }
  13835. .direct-chat-msg {
  13836. margin-bottom: 10px;
  13837. }
  13838. .direct-chat-messages,
  13839. .direct-chat-contacts {
  13840. transition: transform 0.5s ease-in-out;
  13841. }
  13842. @media (prefers-reduced-motion: reduce) {
  13843. .direct-chat-messages,
  13844. .direct-chat-contacts {
  13845. transition: none;
  13846. }
  13847. }
  13848. .direct-chat-text {
  13849. border-radius: 0.5rem;
  13850. position: relative;
  13851. padding: 5px 10px;
  13852. margin: 5px 50px 0 0;
  13853. color: var(--bs-emphasis-color);
  13854. background-color: var(--bs-secondary-bg);
  13855. border: 1px solid var(--bs-border-color);
  13856. }
  13857. .direct-chat-text::after, .direct-chat-text::before {
  13858. position: absolute;
  13859. top: 15px;
  13860. left: 100%;
  13861. width: 0;
  13862. height: 0;
  13863. pointer-events: none;
  13864. content: " ";
  13865. border: solid transparent;
  13866. border-left-color: var(--bs-border-color);
  13867. }
  13868. .direct-chat-text::after {
  13869. margin-top: -5px;
  13870. border-width: 5px;
  13871. }
  13872. .direct-chat-text::before {
  13873. margin-top: -6px;
  13874. border-width: 6px;
  13875. }
  13876. .end .direct-chat-text {
  13877. margin-left: 50px;
  13878. margin-right: 0;
  13879. }
  13880. .end .direct-chat-text::after, .end .direct-chat-text::before {
  13881. left: auto;
  13882. right: 100%;
  13883. border-left-color: transparent;
  13884. border-right-color: var(--bs-border-color);
  13885. }
  13886. .direct-chat-img {
  13887. border-radius: 50%;
  13888. float: right;
  13889. width: 40px;
  13890. height: 40px;
  13891. }
  13892. .end .direct-chat-img {
  13893. float: left;
  13894. }
  13895. .direct-chat-infos {
  13896. display: block;
  13897. margin-bottom: 2px;
  13898. font-size: 0.875rem;
  13899. }
  13900. .direct-chat-name {
  13901. font-weight: 600;
  13902. }
  13903. .direct-chat-timestamp {
  13904. color: rgba(var(--bs-body-color-rgb), 0.75);
  13905. }
  13906. .direct-chat-contacts-open .direct-chat-contacts {
  13907. transform: translate(0, 0);
  13908. }
  13909. .direct-chat-contacts {
  13910. position: absolute;
  13911. top: 0;
  13912. bottom: 0;
  13913. width: 100%;
  13914. height: 250px;
  13915. overflow: auto;
  13916. color: var(--bs-body-bg);
  13917. background-color: var(--bs-body-color);
  13918. transform: translate(-101%, 0);
  13919. }
  13920. .direct-chat-contacts-light {
  13921. background-color: var(--bs-light-bg-subtle);
  13922. }
  13923. .direct-chat-contacts-light .contacts-list-name {
  13924. color: var(--bs-body-color);
  13925. }
  13926. .direct-chat-contacts-light .contacts-list-date {
  13927. color: var(--bs-secondary-color);
  13928. }
  13929. .direct-chat-contacts-light .contacts-list-msg {
  13930. color: var(--bs-secondary-color);
  13931. }
  13932. .contacts-list {
  13933. padding-right: 0;
  13934. list-style: none;
  13935. }
  13936. .contacts-list > li::after {
  13937. display: block;
  13938. clear: both;
  13939. content: "";
  13940. }
  13941. .contacts-list > li {
  13942. padding: 10px;
  13943. margin: 0;
  13944. text-decoration: none;
  13945. border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  13946. }
  13947. .contacts-list > li:last-of-type {
  13948. border-bottom: 0;
  13949. }
  13950. .contacts-list > li a {
  13951. text-decoration: none;
  13952. }
  13953. .contacts-list-img {
  13954. border-radius: 50%;
  13955. float: right;
  13956. width: 40px;
  13957. }
  13958. .contacts-list-info {
  13959. margin-right: 45px;
  13960. color: var(--bs-body-bg);
  13961. }
  13962. .contacts-list-name,
  13963. .contacts-list-status {
  13964. display: block;
  13965. }
  13966. .contacts-list-name {
  13967. font-weight: 600;
  13968. }
  13969. .contacts-list-status {
  13970. font-size: 0.875rem;
  13971. }
  13972. .contacts-list-date {
  13973. font-weight: 400;
  13974. color: var(--bs-secondary-bg);
  13975. }
  13976. .contacts-list-msg {
  13977. color: var(--bs-secondary-bg);
  13978. }
  13979. .end > .direct-chat-text {
  13980. color: var(--lte-direct-chat-color);
  13981. background-color: var(--lte-direct-chat-bg);
  13982. border-color: var(--lte-direct-chat-bg);
  13983. }
  13984. .end > .direct-chat-text::after, .end > .direct-chat-text::before {
  13985. border-right-color: var(--lte-direct-chat-bg);
  13986. }
  13987. .direct-chat-primary {
  13988. --lte-direct-chat-color: #fff;
  13989. --lte-direct-chat-bg: #0d6efd;
  13990. }
  13991. .direct-chat-secondary {
  13992. --lte-direct-chat-color: #fff;
  13993. --lte-direct-chat-bg: #6c757d;
  13994. }
  13995. .direct-chat-success {
  13996. --lte-direct-chat-color: #fff;
  13997. --lte-direct-chat-bg: #198754;
  13998. }
  13999. .direct-chat-info {
  14000. --lte-direct-chat-color: #000;
  14001. --lte-direct-chat-bg: #0dcaf0;
  14002. }
  14003. .direct-chat-warning {
  14004. --lte-direct-chat-color: #000;
  14005. --lte-direct-chat-bg: #ffc107;
  14006. }
  14007. .direct-chat-danger {
  14008. --lte-direct-chat-color: #fff;
  14009. --lte-direct-chat-bg: #dc3545;
  14010. }
  14011. .direct-chat-light {
  14012. --lte-direct-chat-color: #000;
  14013. --lte-direct-chat-bg: #f8f9fa;
  14014. }
  14015. .direct-chat-dark {
  14016. --lte-direct-chat-color: #fff;
  14017. --lte-direct-chat-bg: #212529;
  14018. }
  14019. .toast-primary {
  14020. --bs-toast-header-color: #fff;
  14021. --bs-toast-header-bg: #0d6efd;
  14022. --bs-toast-header-border-color: #0d6efd;
  14023. --bs-toast-border-color: #0d6efd;
  14024. --bs-toast-bg: var(--bs-primary-bg-subtle);
  14025. }
  14026. .toast-primary .btn-close {
  14027. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  14028. }
  14029. .toast-secondary {
  14030. --bs-toast-header-color: #fff;
  14031. --bs-toast-header-bg: #6c757d;
  14032. --bs-toast-header-border-color: #6c757d;
  14033. --bs-toast-border-color: #6c757d;
  14034. --bs-toast-bg: var(--bs-secondary-bg-subtle);
  14035. }
  14036. .toast-secondary .btn-close {
  14037. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  14038. }
  14039. .toast-success {
  14040. --bs-toast-header-color: #fff;
  14041. --bs-toast-header-bg: #198754;
  14042. --bs-toast-header-border-color: #198754;
  14043. --bs-toast-border-color: #198754;
  14044. --bs-toast-bg: var(--bs-success-bg-subtle);
  14045. }
  14046. .toast-success .btn-close {
  14047. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  14048. }
  14049. .toast-info {
  14050. --bs-toast-header-color: #000;
  14051. --bs-toast-header-bg: #0dcaf0;
  14052. --bs-toast-header-border-color: #0dcaf0;
  14053. --bs-toast-border-color: #0dcaf0;
  14054. --bs-toast-bg: var(--bs-info-bg-subtle);
  14055. }
  14056. .toast-warning {
  14057. --bs-toast-header-color: #000;
  14058. --bs-toast-header-bg: #ffc107;
  14059. --bs-toast-header-border-color: #ffc107;
  14060. --bs-toast-border-color: #ffc107;
  14061. --bs-toast-bg: var(--bs-warning-bg-subtle);
  14062. }
  14063. .toast-danger {
  14064. --bs-toast-header-color: #fff;
  14065. --bs-toast-header-bg: #dc3545;
  14066. --bs-toast-header-border-color: #dc3545;
  14067. --bs-toast-border-color: #dc3545;
  14068. --bs-toast-bg: var(--bs-danger-bg-subtle);
  14069. }
  14070. .toast-danger .btn-close {
  14071. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  14072. }
  14073. .toast-light {
  14074. --bs-toast-header-color: #000;
  14075. --bs-toast-header-bg: #f8f9fa;
  14076. --bs-toast-header-border-color: #f8f9fa;
  14077. --bs-toast-border-color: #f8f9fa;
  14078. --bs-toast-bg: var(--bs-light-bg-subtle);
  14079. }
  14080. .toast-dark {
  14081. --bs-toast-header-color: #fff;
  14082. --bs-toast-header-bg: #212529;
  14083. --bs-toast-header-border-color: #212529;
  14084. --bs-toast-border-color: #212529;
  14085. --bs-toast-bg: var(--bs-dark-bg-subtle);
  14086. }
  14087. .toast-dark .btn-close {
  14088. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  14089. }
  14090. [data-bs-theme=dark] .toast-info .btn-close {
  14091. --bs-btn-close-white-filter: none;
  14092. }
  14093. [data-bs-theme=dark] .toast-warning .btn-close {
  14094. --bs-btn-close-white-filter: none;
  14095. }
  14096. [data-bs-theme=dark] .toast-light .btn-close {
  14097. --bs-btn-close-white-filter: none;
  14098. }
  14099. .login-logo,
  14100. .register-logo {
  14101. margin-bottom: 0.9rem;
  14102. font-size: 2.1rem;
  14103. font-weight: 300;
  14104. text-align: center;
  14105. }
  14106. .login-logo a,
  14107. .register-logo a {
  14108. color: var(--bs-secondary-color);
  14109. text-decoration: none;
  14110. }
  14111. .login-page,
  14112. .register-page {
  14113. display: flex;
  14114. flex-direction: column;
  14115. align-items: center;
  14116. justify-content: center;
  14117. min-height: 100vh;
  14118. }
  14119. .login-box,
  14120. .register-box {
  14121. width: 400px;
  14122. }
  14123. @media (max-width: 576px) {
  14124. .login-box,
  14125. .register-box {
  14126. width: 90%;
  14127. margin-top: 0.5rem;
  14128. }
  14129. }
  14130. .login-box .card,
  14131. .register-box .card {
  14132. margin-bottom: 0;
  14133. }
  14134. .login-card-body,
  14135. .register-card-body {
  14136. padding: 20px;
  14137. color: var(--bs-secondary-color);
  14138. background-color: var(--bs-body-bg);
  14139. border-top: 0;
  14140. }
  14141. .login-card-body .input-group .form-control:focus,
  14142. .register-card-body .input-group .form-control:focus {
  14143. box-shadow: none;
  14144. }
  14145. .login-card-body .input-group .form-control:focus ~ .input-group-prepend .input-group-text,
  14146. .login-card-body .input-group .form-control:focus ~ .input-group-append .input-group-text,
  14147. .register-card-body .input-group .form-control:focus ~ .input-group-prepend .input-group-text,
  14148. .register-card-body .input-group .form-control:focus ~ .input-group-append .input-group-text {
  14149. border-color: rgb(134, 182.5, 254);
  14150. }
  14151. .login-card-body .input-group .form-control.is-valid:focus,
  14152. .register-card-body .input-group .form-control.is-valid:focus {
  14153. box-shadow: none;
  14154. }
  14155. .login-card-body .input-group .form-control.is-valid ~ .input-group-prepend .input-group-text,
  14156. .login-card-body .input-group .form-control.is-valid ~ .input-group-append .input-group-text,
  14157. .register-card-body .input-group .form-control.is-valid ~ .input-group-prepend .input-group-text,
  14158. .register-card-body .input-group .form-control.is-valid ~ .input-group-append .input-group-text {
  14159. border-color: #198754;
  14160. }
  14161. .login-card-body .input-group .form-control.is-invalid:focus,
  14162. .register-card-body .input-group .form-control.is-invalid:focus {
  14163. box-shadow: none;
  14164. }
  14165. .login-card-body .input-group .form-control.is-invalid ~ .input-group-append .input-group-text,
  14166. .register-card-body .input-group .form-control.is-invalid ~ .input-group-append .input-group-text {
  14167. border-color: #dc3545;
  14168. }
  14169. .login-card-body .input-group .input-group-text,
  14170. .register-card-body .input-group .input-group-text {
  14171. color: var(--bs-secondary-color);
  14172. background-color: transparent;
  14173. border-top-left-radius: 0.375rem;
  14174. border-bottom-left-radius: 0.375rem;
  14175. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  14176. }
  14177. @media (prefers-reduced-motion: reduce) {
  14178. .login-card-body .input-group .input-group-text,
  14179. .register-card-body .input-group .input-group-text {
  14180. transition: none;
  14181. }
  14182. }
  14183. .login-box-msg,
  14184. .register-box-msg {
  14185. padding: 0 20px 20px;
  14186. margin: 0;
  14187. text-align: center;
  14188. }
  14189. .social-auth-links {
  14190. margin: 10px 0;
  14191. }
  14192. .lockscreen .lockscreen-name {
  14193. font-weight: 600;
  14194. text-align: center;
  14195. }
  14196. .lockscreen .lockscreen-logo {
  14197. margin-bottom: 25px;
  14198. font-size: 35px;
  14199. font-weight: 300;
  14200. text-align: center;
  14201. }
  14202. .lockscreen .lockscreen-logo a {
  14203. color: var(--bs-emphasis-color);
  14204. text-decoration: none;
  14205. }
  14206. .lockscreen .lockscreen-wrapper {
  14207. max-width: 400px;
  14208. margin: 0 auto;
  14209. margin-top: 10%;
  14210. }
  14211. .lockscreen .lockscreen-item {
  14212. position: relative;
  14213. width: 290px;
  14214. padding: 0;
  14215. margin: 10px auto 30px;
  14216. background-color: var(--bs-body-bg);
  14217. border-radius: 4px;
  14218. }
  14219. .lockscreen .lockscreen-image {
  14220. position: absolute;
  14221. top: -25px;
  14222. right: -10px;
  14223. z-index: 10;
  14224. padding: 5px;
  14225. background-color: var(--bs-body-bg);
  14226. border-radius: 50%;
  14227. }
  14228. .lockscreen .lockscreen-image > img {
  14229. border-radius: 50%;
  14230. width: 70px;
  14231. height: 70px;
  14232. }
  14233. .lockscreen .lockscreen-credentials {
  14234. margin-right: 70px;
  14235. }
  14236. .lockscreen .lockscreen-credentials .form-control {
  14237. border: 0;
  14238. }
  14239. .lockscreen .lockscreen-credentials .btn {
  14240. padding: 0 10px;
  14241. border: 0;
  14242. }
  14243. .lockscreen .lockscreen-footer {
  14244. margin-top: 10px;
  14245. }
  14246. .img-size-64,
  14247. .img-size-50,
  14248. .img-size-32 {
  14249. height: auto;
  14250. }
  14251. .img-size-64 {
  14252. width: 64px;
  14253. }
  14254. .img-size-50 {
  14255. width: 50px;
  14256. }
  14257. .img-size-32 {
  14258. width: 32px;
  14259. }
  14260. /* ==========================================================================
  14261. AdminLTE Accessibility Styles - WCAG 2.1 AA Compliance
  14262. ========================================================================== */
  14263. /* Skip Links - WCAG 2.4.1: Bypass Blocks */
  14264. .skip-link {
  14265. position: absolute;
  14266. top: -40px;
  14267. right: 6px;
  14268. z-index: 999999;
  14269. padding: 8px 16px;
  14270. font-weight: 600;
  14271. color: var(--bs-white);
  14272. text-decoration: none;
  14273. background: var(--bs-primary);
  14274. }
  14275. .skip-link:focus {
  14276. top: 0;
  14277. outline: 3px solid var(--bs-warning);
  14278. outline-offset: 2px;
  14279. }
  14280. .skip-link:hover {
  14281. color: var(--bs-white);
  14282. text-decoration: none;
  14283. background: var(--bs-primary-emphasis);
  14284. }
  14285. /* Enhanced Focus Indicators - WCAG 2.4.7: Focus Visible */
  14286. .focus-enhanced:focus {
  14287. outline: 3px solid var(--bs-focus-ring-color, #0d6efd);
  14288. outline-offset: 2px;
  14289. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  14290. }
  14291. /* High Contrast Mode Support */
  14292. @media (prefers-contrast: high) {
  14293. .card {
  14294. border: 2px solid;
  14295. }
  14296. .btn {
  14297. border-width: 2px;
  14298. }
  14299. .nav-link {
  14300. border: 1px solid transparent;
  14301. }
  14302. .nav-link:hover, .nav-link:focus {
  14303. border-color: currentcolor;
  14304. }
  14305. }
  14306. /* Reduced Motion Support - WCAG 2.3.3: Animation from Interactions */
  14307. @media (prefers-reduced-motion: reduce) {
  14308. *,
  14309. *::before,
  14310. *::after {
  14311. transition-duration: 0.01ms !important;
  14312. animation-duration: 0.01ms !important;
  14313. animation-iteration-count: 1 !important;
  14314. scroll-behavior: auto !important;
  14315. }
  14316. .fade {
  14317. opacity: 1 !important;
  14318. /* stylelint-disable-next-line property-disallowed-list */
  14319. transition: none !important;
  14320. }
  14321. .collapse {
  14322. /* stylelint-disable-next-line property-disallowed-list */
  14323. transition: none !important;
  14324. }
  14325. .modal.fade .modal-dialog {
  14326. transform: none !important;
  14327. }
  14328. }
  14329. /* Screen Reader Only Content */
  14330. .sr-only {
  14331. position: absolute !important;
  14332. width: 1px !important;
  14333. height: 1px !important;
  14334. padding: 0 !important;
  14335. margin: -1px !important;
  14336. overflow: hidden !important;
  14337. clip: rect(0, 0, 0, 0) !important;
  14338. white-space: nowrap !important;
  14339. border: 0 !important;
  14340. }
  14341. .sr-only-focusable:focus {
  14342. position: static !important;
  14343. width: auto !important;
  14344. height: auto !important;
  14345. padding: inherit !important;
  14346. margin: inherit !important;
  14347. overflow: visible !important;
  14348. clip: auto !important;
  14349. white-space: normal !important;
  14350. }
  14351. /* Focus Trap Utilities */
  14352. .focus-trap:focus {
  14353. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  14354. }
  14355. /* Accessible Color Combinations - WCAG 1.4.3: Contrast (Minimum) */
  14356. .text-accessible-primary {
  14357. color: #003d82; /* 4.5:1 contrast on white */
  14358. }
  14359. .text-accessible-success {
  14360. color: #0f5132; /* 4.5:1 contrast on white */
  14361. }
  14362. .text-accessible-danger {
  14363. color: #842029; /* 4.5:1 contrast on white */
  14364. }
  14365. .text-accessible-warning {
  14366. color: #664d03; /* 4.5:1 contrast on white */
  14367. }
  14368. /* ARIA Live Regions */
  14369. .live-region {
  14370. position: absolute;
  14371. right: -10000px;
  14372. width: 1px;
  14373. height: 1px;
  14374. overflow: hidden;
  14375. }
  14376. .live-region.live-region-visible {
  14377. position: static;
  14378. right: auto;
  14379. width: auto;
  14380. height: auto;
  14381. overflow: visible;
  14382. }
  14383. /* Enhanced Error States - WCAG 3.3.1: Error Identification */
  14384. .form-control.is-invalid {
  14385. border-color: var(--bs-danger);
  14386. }
  14387. .form-control.is-invalid:focus {
  14388. border-color: var(--bs-danger);
  14389. box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  14390. }
  14391. .invalid-feedback[role=alert] {
  14392. font-weight: 600;
  14393. }
  14394. /* Target Size - WCAG 2.5.8: Target Size (Minimum) */
  14395. .touch-target {
  14396. min-width: 44px;
  14397. min-height: 44px;
  14398. }
  14399. .touch-target.touch-target-small {
  14400. min-width: 24px;
  14401. min-height: 24px;
  14402. }
  14403. /* Table Accessibility */
  14404. .table-accessible th {
  14405. font-weight: 600;
  14406. background-color: var(--bs-secondary-bg);
  14407. }
  14408. .table-accessible th[scope=col] {
  14409. border-bottom: 2px solid var(--bs-border-color);
  14410. }
  14411. .table-accessible th[scope=row] {
  14412. border-left: 2px solid var(--bs-border-color);
  14413. }
  14414. .table-accessible caption {
  14415. padding: 0.75rem;
  14416. font-weight: 600;
  14417. color: var(--bs-secondary);
  14418. text-align: right;
  14419. caption-side: top;
  14420. }
  14421. /* Navigation Landmarks */
  14422. nav[role=navigation]:not([aria-label]):not([aria-labelledby])::before {
  14423. position: absolute;
  14424. right: -10000px;
  14425. content: "Navigation";
  14426. }
  14427. /* Form Fieldset Styling */
  14428. fieldset {
  14429. padding: 1rem;
  14430. margin-bottom: 1rem;
  14431. border: 1px solid var(--bs-border-color);
  14432. }
  14433. fieldset legend {
  14434. padding: 0 0.5rem;
  14435. margin-bottom: 0.5rem;
  14436. font-size: 1.1em;
  14437. font-weight: 600;
  14438. }
  14439. /* Loading States */
  14440. .loading[aria-busy=true] {
  14441. position: relative;
  14442. pointer-events: none;
  14443. }
  14444. .loading[aria-busy=true]::after {
  14445. position: absolute;
  14446. top: 50%;
  14447. right: 50%;
  14448. width: 20px;
  14449. height: 20px;
  14450. margin-top: -10px;
  14451. margin-right: -10px;
  14452. content: "";
  14453. border: 2px solid var(--bs-primary);
  14454. border-top-color: transparent;
  14455. animation: spin 1s linear infinite;
  14456. }
  14457. @media (prefers-reduced-motion: reduce) {
  14458. .loading[aria-busy=true]::after {
  14459. border-top-color: var(--bs-primary);
  14460. animation: none;
  14461. }
  14462. }
  14463. @keyframes spin {
  14464. to {
  14465. transform: rotate(-360deg);
  14466. }
  14467. }
  14468. /* Dark Mode Accessibility */
  14469. [data-bs-theme=dark] .text-accessible-primary {
  14470. color: #6ea8fe;
  14471. }
  14472. [data-bs-theme=dark] .text-accessible-success {
  14473. color: #75b798;
  14474. }
  14475. [data-bs-theme=dark] .text-accessible-danger {
  14476. color: #f1aeb5;
  14477. }
  14478. [data-bs-theme=dark] .text-accessible-warning {
  14479. color: #ffda6a;
  14480. }
  14481. /* Print Accessibility */
  14482. @media print {
  14483. .skip-link,
  14484. .btn,
  14485. .nav-link {
  14486. color: #000 !important;
  14487. background: transparent !important;
  14488. border: 1px solid #000 !important;
  14489. }
  14490. a[href^=http]::after {
  14491. font-size: 0.8em;
  14492. content: " (" attr(href) ")";
  14493. }
  14494. /* Print Layout Fix - Ensure sidebar and main content are both visible */
  14495. .app-wrapper {
  14496. display: grid !important;
  14497. grid-template-rows: auto 1fr auto !important;
  14498. grid-template-columns: auto 1fr !important;
  14499. }
  14500. .sidebar-overlay {
  14501. display: none !important;
  14502. }
  14503. .app-sidebar {
  14504. position: static !important;
  14505. display: block !important;
  14506. min-width: 200px !important;
  14507. max-width: 200px !important;
  14508. max-height: none !important;
  14509. margin-right: 0 !important;
  14510. overflow: visible !important;
  14511. }
  14512. .sidebar-wrapper {
  14513. height: auto !important;
  14514. overflow: visible !important;
  14515. }
  14516. .app-header {
  14517. position: static !important;
  14518. }
  14519. .app-main {
  14520. width: auto !important;
  14521. max-width: 100% !important;
  14522. overflow: visible !important;
  14523. }
  14524. .app-content {
  14525. overflow: visible !important;
  14526. }
  14527. .app-footer {
  14528. position: static !important;
  14529. }
  14530. }
  14531. /*# sourceMappingURL=adminlte.rtl.css.map */