adminlte.rtl.css 353 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286142871428814289142901429114292142931429414295142961429714298142991430014301143021430314304143051430614307143081430914310143111431214313143141431514316143171431814319143201432114322143231432414325143261432714328143291433014331143321433314334143351433614337143381433914340143411434214343143441434514346143471434814349143501435114352143531435414355143561435714358143591436014361143621436314364143651436614367143681436914370143711437214373143741437514376143771437814379143801438114382143831438414385143861438714388143891439014391143921439314394143951439614397143981439914400144011440214403144041440514406144071440814409144101441114412144131441414415144161441714418144191442014421144221442314424144251442614427144281442914430144311443214433144341443514436144371443814439144401444114442144431444414445144461444714448144491445014451144521445314454144551445614457144581445914460144611446214463144641446514466144671446814469144701447114472144731447414475144761447714478144791448014481144821448314484144851448614487144881448914490144911449214493144941449514496144971449814499145001450114502145031450414505145061450714508145091451014511145121451314514145151451614517145181451914520145211452214523145241452514526145271452814529145301453114532145331453414535145361453714538145391454014541145421454314544145451454614547145481454914550145511455214553145541455514556145571455814559145601456114562145631456414565145661456714568145691457014571145721457314574145751457614577145781457914580145811458214583145841458514586145871458814589145901459114592145931459414595145961459714598145991460014601146021460314604146051460614607146081460914610146111461214613146141461514616146171461814619146201462114622146231462414625146261462714628146291463014631146321463314634146351463614637146381463914640146411464214643146441464514646146471464814649146501465114652146531465414655146561465714658146591466014661146621466314664146651466614667146681466914670146711467214673146741467514676146771467814679146801468114682146831468414685146861468714688146891469014691146921469314694146951469614697146981469914700147011470214703147041470514706147071470814709147101471114712147131471414715147161471714718147191472014721147221472314724147251472614727147281472914730147311473214733147341473514736147371473814739147401474114742147431474414745147461474714748147491475014751147521475314754147551475614757147581475914760147611476214763147641476514766147671476814769147701477114772147731477414775147761477714778147791478014781147821478314784147851478614787147881478914790147911479214793147941479514796147971479814799148001480114802148031480414805148061480714808148091481014811148121481314814148151481614817148181481914820148211482214823148241482514826148271482814829148301483114832148331483414835148361483714838148391484014841148421484314844148451484614847148481484914850148511485214853148541485514856148571485814859148601486114862148631486414865148661486714868148691487014871148721487314874148751487614877148781487914880148811488214883148841488514886148871488814889148901489114892148931489414895148961489714898148991490014901149021490314904149051490614907149081490914910149111491214913149141491514916149171491814919149201492114922149231492414925149261492714928149291493014931149321493314934149351493614937149381493914940149411494214943149441494514946149471494814949149501495114952149531495414955149561495714958149591496014961149621496314964149651496614967149681496914970149711497214973149741497514976149771497814979149801498114982149831498414985149861498714988149891499014991149921499314994149951499614997149981499915000150011500215003150041500515006150071500815009150101501115012150131501415015150161501715018150191502015021150221502315024150251502615027150281502915030150311503215033150341503515036150371503815039150401504115042150431504415045150461504715048150491505015051150521505315054150551505615057150581505915060150611506215063150641506515066150671506815069150701507115072150731507415075150761507715078150791508015081150821508315084150851508615087150881508915090150911509215093150941509515096150971509815099151001510115102151031510415105151061510715108151091511015111151121511315114151151511615117151181511915120151211512215123151241512515126151271512815129151301513115132151331513415135151361513715138151391514015141151421514315144151451514615147151481514915150151511515215153151541515515156151571515815159151601516115162151631516415165151661516715168151691517015171151721517315174151751517615177151781517915180151811518215183151841518515186151871518815189151901519115192151931519415195151961519715198151991520015201152021520315204152051520615207152081520915210152111521215213152141521515216152171521815219152201522115222152231522415225152261522715228152291523015231152321523315234152351523615237152381523915240152411524215243152441524515246152471524815249152501525115252152531525415255152561525715258152591526015261152621526315264152651526615267152681526915270152711527215273152741527515276152771527815279152801528115282152831528415285152861528715288152891529015291152921529315294152951529615297152981529915300153011530215303153041530515306153071530815309153101531115312153131531415315153161531715318153191532015321153221532315324153251532615327153281532915330153311533215333153341533515336153371533815339153401534115342153431534415345153461534715348153491535015351153521535315354153551535615357153581535915360153611536215363153641536515366153671536815369153701537115372153731537415375153761537715378153791538015381153821538315384153851538615387153881538915390153911539215393153941539515396153971539815399154001540115402154031540415405154061540715408154091541015411154121541315414154151541615417154181541915420154211542215423154241542515426154271542815429154301543115432154331543415435154361543715438154391544015441154421544315444154451544615447154481544915450154511545215453154541545515456154571545815459154601546115462154631546415465154661546715468154691547015471154721547315474154751547615477154781547915480154811548215483154841548515486154871548815489154901549115492154931549415495154961549715498154991550015501155021550315504155051550615507155081550915510155111551215513155141551515516155171551815519155201552115522155231552415525155261552715528155291553015531155321553315534155351553615537155381553915540155411554215543155441554515546155471554815549155501555115552155531555415555155561555715558155591556015561155621556315564155651556615567155681556915570155711557215573155741557515576155771557815579155801558115582155831558415585155861558715588155891559015591155921559315594155951559615597
  1. @charset "UTF-8";
  2. /*!
  3. * AdminLTE v4.0.0-rc5
  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. scrollbar-color: var(--bs-secondary-bg) transparent;
  11998. }
  11999. .sidebar-wrapper::-webkit-scrollbar-thumb {
  12000. background-color: var(--bs-secondary-bg);
  12001. }
  12002. .sidebar-wrapper::-webkit-scrollbar-track {
  12003. background-color: transparent;
  12004. }
  12005. .sidebar-wrapper::-webkit-scrollbar-corner {
  12006. background-color: transparent;
  12007. }
  12008. .sidebar-wrapper {
  12009. scrollbar-width: thin;
  12010. }
  12011. .sidebar-wrapper::-webkit-scrollbar {
  12012. width: 0.5rem;
  12013. height: 0.5rem;
  12014. }
  12015. .sidebar-wrapper .nav-item {
  12016. max-width: 100%;
  12017. }
  12018. .sidebar-wrapper .nav-link {
  12019. display: flex;
  12020. justify-content: flex-start;
  12021. }
  12022. .sidebar-wrapper .nav-link p {
  12023. overflow: hidden;
  12024. text-overflow: ellipsis;
  12025. white-space: nowrap;
  12026. }
  12027. .sidebar-wrapper .nav-icon {
  12028. display: flex;
  12029. align-items: center;
  12030. justify-content: center;
  12031. min-width: 1.5rem;
  12032. max-width: 1.5rem;
  12033. }
  12034. .sidebar-wrapper .sidebar-menu > .nav-item.menu-open .nav-link.active:not(:hover) {
  12035. --lte-sidebar-menu-active-bg: transparent;
  12036. }
  12037. .sidebar-wrapper .sidebar-menu > .nav-item > .nav-link:active, .sidebar-wrapper .sidebar-menu > .nav-item > .nav-link:focus {
  12038. color: var(--lte-sidebar-color);
  12039. }
  12040. .sidebar-wrapper .sidebar-menu > .nav-item > .nav-link.active:not(:hover) {
  12041. color: var(--lte-sidebar-menu-active-color);
  12042. background-color: var(--lte-sidebar-menu-active-bg);
  12043. }
  12044. .sidebar-wrapper .sidebar-menu > .nav-item.menu-open > .nav-link, .sidebar-wrapper .sidebar-menu > .nav-item:hover > .nav-link,
  12045. .sidebar-wrapper .sidebar-menu > .nav-item > .nav-link:focus {
  12046. color: var(--lte-sidebar-hover-color);
  12047. background-color: var(--lte-sidebar-hover-bg);
  12048. }
  12049. .sidebar-wrapper .sidebar-menu > .nav-item > .nav-treeview {
  12050. background-color: var(--lte-sidebar-submenu-bg);
  12051. }
  12052. .sidebar-wrapper .nav-header {
  12053. display: inline;
  12054. overflow: hidden;
  12055. color: var(--lte-sidebar-header-color);
  12056. text-overflow: ellipsis;
  12057. background-color: inherit;
  12058. }
  12059. .sidebar-wrapper a {
  12060. color: var(--lte-sidebar-color);
  12061. }
  12062. .sidebar-wrapper .nav-treeview > .nav-item > .nav-link {
  12063. color: var(--lte-sidebar-submenu-color);
  12064. }
  12065. .sidebar-wrapper .nav-treeview > .nav-item > .nav-link:hover, .sidebar-wrapper .nav-treeview > .nav-item > .nav-link:focus {
  12066. color: var(--lte-sidebar-submenu-hover-color);
  12067. }
  12068. .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 {
  12069. color: var(--lte-sidebar-submenu-active-color);
  12070. background-color: var(--lte-sidebar-submenu-active-bg);
  12071. }
  12072. .sidebar-wrapper .nav-treeview > .nav-item > .nav-link:hover {
  12073. background-color: var(--lte-sidebar-submenu-hover-bg);
  12074. }
  12075. .sidebar-menu .nav-item > .nav-link {
  12076. margin-bottom: 0.2rem;
  12077. }
  12078. .sidebar-menu .nav-item > .nav-link .nav-arrow {
  12079. transition: transform ease-in-out 0.3s;
  12080. }
  12081. @media (prefers-reduced-motion: reduce) {
  12082. .sidebar-menu .nav-item > .nav-link .nav-arrow {
  12083. transition: none;
  12084. }
  12085. }
  12086. .sidebar-menu .nav-item > .nav-link .nav-arrow {
  12087. transform: translateY(-50%) rotate(180deg);
  12088. animation-name: fadeIn;
  12089. animation-duration: 0.3s;
  12090. animation-fill-mode: both;
  12091. }
  12092. .sidebar-menu .nav-link > .nav-badge,
  12093. .sidebar-menu .nav-link > p > .nav-badge {
  12094. position: absolute;
  12095. top: 50%;
  12096. left: 1rem;
  12097. transform: translateY(-50%);
  12098. }
  12099. .sidebar-menu .nav-link > .nav-arrow,
  12100. .sidebar-menu .nav-link > p > .nav-arrow {
  12101. position: absolute;
  12102. top: 50%;
  12103. left: 1rem;
  12104. }
  12105. .sidebar-menu .nav-link {
  12106. position: relative;
  12107. width: 100%;
  12108. transition: width ease-in-out 0.3s;
  12109. }
  12110. @media (prefers-reduced-motion: reduce) {
  12111. .sidebar-menu .nav-link {
  12112. transition: none;
  12113. }
  12114. }
  12115. .sidebar-menu .nav-link {
  12116. border-radius: 0.375rem;
  12117. }
  12118. .sidebar-menu .nav-link p {
  12119. display: inline;
  12120. padding-right: 0.5rem;
  12121. margin: 0;
  12122. }
  12123. .sidebar-menu .nav-header {
  12124. position: relative;
  12125. width: 100%;
  12126. padding: 0.5rem 0.75rem;
  12127. font-size: 0.9rem;
  12128. transition: width ease-in-out 0.3s;
  12129. }
  12130. @media (prefers-reduced-motion: reduce) {
  12131. .sidebar-menu .nav-header {
  12132. transition: none;
  12133. }
  12134. }
  12135. .sidebar-menu .nav-treeview {
  12136. display: none;
  12137. padding: 0;
  12138. list-style: none;
  12139. }
  12140. .nav-indent .sidebar-menu .nav-treeview {
  12141. padding-right: 0.5rem;
  12142. }
  12143. .sidebar-menu .menu-open > .nav-treeview {
  12144. display: block;
  12145. }
  12146. .sidebar-menu .menu-open > .nav-link .nav-arrow {
  12147. transform: translateY(-50%) rotate(90deg) ;
  12148. }
  12149. .sidebar-menu .nav-link > .nav-badge,
  12150. .sidebar-menu .nav-link > p > .nav-badge,
  12151. .sidebar-menu .nav-link > .nav-arrow,
  12152. .sidebar-menu .nav-link > p > .nav-arrow {
  12153. left: 1rem !important;
  12154. right: auto !important;
  12155. }
  12156. .nav-compact.nav-indent .nav-treeview {
  12157. padding-right: 0;
  12158. }
  12159. .nav-compact.nav-indent .nav-treeview .nav-item {
  12160. padding-right: 0.5rem;
  12161. }
  12162. .sidebar-mini.sidebar-collapse.nav-indent .app-sidebar:hover .nav-treeview {
  12163. padding-right: 0;
  12164. }
  12165. .sidebar-mini.sidebar-collapse.nav-indent .app-sidebar:hover .nav-treeview .nav-item {
  12166. padding-right: 0.5rem;
  12167. }
  12168. .sidebar-collapse.nav-compact.nav-indent .nav-treeview .nav-item {
  12169. padding-right: 0;
  12170. }
  12171. .nav-compact .nav-link {
  12172. border-radius: 0;
  12173. margin-bottom: 0 !important;
  12174. }
  12175. .sidebar-menu,
  12176. .sidebar-menu > .nav-header,
  12177. .sidebar-menu .nav-link {
  12178. white-space: nowrap;
  12179. }
  12180. .logo-xs,
  12181. .logo-xl {
  12182. position: absolute;
  12183. visibility: visible;
  12184. opacity: 1;
  12185. }
  12186. .logo-xs.brand-image-xs,
  12187. .logo-xl.brand-image-xs {
  12188. top: 12px;
  12189. right: 18px;
  12190. }
  12191. .logo-xs.brand-image-xl,
  12192. .logo-xl.brand-image-xl {
  12193. top: 6px;
  12194. right: 12px;
  12195. }
  12196. .logo-xs {
  12197. visibility: hidden;
  12198. opacity: 0;
  12199. }
  12200. .logo-xs.brand-image-xl {
  12201. top: 8px;
  12202. right: 16px;
  12203. }
  12204. .brand-link.logo-switch::before {
  12205. content: " ";
  12206. }
  12207. .sidebar-mini.sidebar-collapse .app-sidebar {
  12208. min-width: 4.6rem;
  12209. max-width: 4.6rem;
  12210. }
  12211. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-header {
  12212. display: none;
  12213. }
  12214. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-link {
  12215. width: 3.6rem;
  12216. }
  12217. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-link p {
  12218. display: inline-block;
  12219. width: 0;
  12220. white-space: nowrap;
  12221. }
  12222. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-badge,
  12223. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-arrow {
  12224. display: none;
  12225. animation-name: fadeOut;
  12226. animation-duration: 0.3s;
  12227. animation-fill-mode: both;
  12228. }
  12229. .sidebar-mini.sidebar-collapse .brand-text {
  12230. display: inline-block;
  12231. max-width: 0;
  12232. overflow: hidden;
  12233. }
  12234. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-link p,
  12235. .sidebar-mini.sidebar-collapse .brand-text,
  12236. .sidebar-mini.sidebar-collapse .logo-xl,
  12237. .sidebar-mini.sidebar-collapse .nav-arrow {
  12238. visibility: hidden;
  12239. animation-name: fadeOut;
  12240. animation-duration: 0.3s;
  12241. animation-fill-mode: both;
  12242. }
  12243. .sidebar-mini.sidebar-collapse .logo-xs {
  12244. display: inline-block;
  12245. visibility: visible;
  12246. animation-name: fadeIn;
  12247. animation-duration: 0.3s;
  12248. animation-fill-mode: both;
  12249. }
  12250. .sidebar-mini.sidebar-collapse .app-sidebar:hover {
  12251. min-width: var(--lte-sidebar-width);
  12252. max-width: var(--lte-sidebar-width);
  12253. }
  12254. .sidebar-mini.sidebar-collapse .app-sidebar:hover .sidebar-menu .nav-header {
  12255. display: inline;
  12256. }
  12257. .sidebar-mini.sidebar-collapse .app-sidebar:hover .sidebar-menu .nav-link {
  12258. width: auto;
  12259. }
  12260. .sidebar-mini.sidebar-collapse .app-sidebar:hover .sidebar-menu .nav-link p,
  12261. .sidebar-mini.sidebar-collapse .app-sidebar:hover .brand-text,
  12262. .sidebar-mini.sidebar-collapse .app-sidebar:hover .logo-xl {
  12263. width: auto;
  12264. margin-right: 0;
  12265. visibility: visible;
  12266. animation-name: fadeIn;
  12267. animation-duration: 0.3s;
  12268. animation-fill-mode: both;
  12269. }
  12270. .sidebar-mini.sidebar-collapse .app-sidebar:hover .brand-text {
  12271. display: inline;
  12272. max-width: inherit;
  12273. margin-right: 0.5rem;
  12274. animation-name: fadeIn;
  12275. animation-duration: 0.3s;
  12276. animation-fill-mode: both;
  12277. }
  12278. .sidebar-mini.sidebar-collapse .app-sidebar:hover .nav-badge,
  12279. .sidebar-mini.sidebar-collapse .app-sidebar:hover .nav-arrow {
  12280. display: inline-block;
  12281. visibility: visible;
  12282. animation-name: fadeIn;
  12283. animation-duration: 0.3s;
  12284. animation-fill-mode: both;
  12285. animation-delay: 0.3s;
  12286. }
  12287. .sidebar-mini.sidebar-collapse .app-sidebar:hover .nav-link p {
  12288. padding-right: 0.5rem;
  12289. }
  12290. .sidebar-mini.sidebar-collapse .app-sidebar:hover .logo-xs {
  12291. visibility: hidden;
  12292. animation-name: fadeOut;
  12293. animation-duration: 0.3s;
  12294. animation-fill-mode: both;
  12295. }
  12296. .sidebar-collapse:not(.sidebar-mini) .app-sidebar {
  12297. margin-right: calc(var(--lte-sidebar-width) * -1);
  12298. }
  12299. .sidebar-expand {
  12300. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12301. }
  12302. @media (min-width: 576px) {
  12303. .sidebar-expand-sm.layout-fixed .app-main-wrapper {
  12304. display: flex;
  12305. flex-direction: column;
  12306. min-height: 100vh;
  12307. }
  12308. .sidebar-expand-sm.layout-fixed .app-sidebar-wrapper {
  12309. position: relative;
  12310. }
  12311. .sidebar-expand-sm.layout-fixed .app-main {
  12312. flex: 1 1 auto;
  12313. overflow: auto;
  12314. }
  12315. .sidebar-expand-sm.layout-fixed .app-sidebar {
  12316. position: sticky;
  12317. top: 0;
  12318. bottom: 0;
  12319. max-height: 100vh;
  12320. }
  12321. .sidebar-expand-sm.layout-fixed .app-sidebar .sidebar-wrapper {
  12322. height: calc(100vh - (calc(3.5rem + 1px)));
  12323. overflow-x: hidden;
  12324. overflow-y: auto;
  12325. }
  12326. .sidebar-expand-sm.sidebar-open .nav-link > .nav-badge,
  12327. .sidebar-expand-sm.sidebar-open .nav-link > p > .nav-badge {
  12328. animation-name: fadeIn;
  12329. animation-duration: 0.3s;
  12330. animation-fill-mode: both;
  12331. animation-delay: 0.3s;
  12332. }
  12333. .sidebar-expand-sm.sidebar-open .nav-link > .nav-arrow,
  12334. .sidebar-expand-sm.sidebar-open .nav-link > p > .nav-arrow {
  12335. animation-name: fadeIn;
  12336. animation-duration: 0.3s;
  12337. animation-fill-mode: both;
  12338. animation-delay: 0.3s;
  12339. }
  12340. }
  12341. @media (max-width: 575.98px) {
  12342. .sidebar-expand-sm::before {
  12343. display: none;
  12344. content: "575.98px";
  12345. }
  12346. .sidebar-expand-sm .app-sidebar {
  12347. position: fixed;
  12348. top: 0;
  12349. bottom: 0;
  12350. max-height: 100vh;
  12351. margin-right: calc(var(--lte-sidebar-width) * -1);
  12352. }
  12353. .sidebar-expand-sm .app-sidebar .sidebar-wrapper {
  12354. height: calc(100vh - (calc(3.5rem + 1px)));
  12355. overflow-x: hidden;
  12356. overflow-y: auto;
  12357. }
  12358. .sidebar-expand-sm.sidebar-open .app-sidebar {
  12359. margin-right: 0;
  12360. }
  12361. .sidebar-expand-sm.sidebar-open .sidebar-overlay {
  12362. position: absolute;
  12363. inset: 0;
  12364. z-index: 1037;
  12365. width: 100%;
  12366. height: 100%;
  12367. cursor: pointer;
  12368. visibility: visible;
  12369. background-color: rgba(0, 0, 0, 0.2);
  12370. animation-name: fadeIn;
  12371. animation-fill-mode: both;
  12372. }
  12373. }
  12374. .sidebar-expand {
  12375. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12376. }
  12377. @media (min-width: 768px) {
  12378. .sidebar-expand-md.layout-fixed .app-main-wrapper {
  12379. display: flex;
  12380. flex-direction: column;
  12381. min-height: 100vh;
  12382. }
  12383. .sidebar-expand-md.layout-fixed .app-sidebar-wrapper {
  12384. position: relative;
  12385. }
  12386. .sidebar-expand-md.layout-fixed .app-main {
  12387. flex: 1 1 auto;
  12388. overflow: auto;
  12389. }
  12390. .sidebar-expand-md.layout-fixed .app-sidebar {
  12391. position: sticky;
  12392. top: 0;
  12393. bottom: 0;
  12394. max-height: 100vh;
  12395. }
  12396. .sidebar-expand-md.layout-fixed .app-sidebar .sidebar-wrapper {
  12397. height: calc(100vh - (calc(3.5rem + 1px)));
  12398. overflow-x: hidden;
  12399. overflow-y: auto;
  12400. }
  12401. .sidebar-expand-md.sidebar-open .nav-link > .nav-badge,
  12402. .sidebar-expand-md.sidebar-open .nav-link > p > .nav-badge {
  12403. animation-name: fadeIn;
  12404. animation-duration: 0.3s;
  12405. animation-fill-mode: both;
  12406. animation-delay: 0.3s;
  12407. }
  12408. .sidebar-expand-md.sidebar-open .nav-link > .nav-arrow,
  12409. .sidebar-expand-md.sidebar-open .nav-link > p > .nav-arrow {
  12410. animation-name: fadeIn;
  12411. animation-duration: 0.3s;
  12412. animation-fill-mode: both;
  12413. animation-delay: 0.3s;
  12414. }
  12415. }
  12416. @media (max-width: 767.98px) {
  12417. .sidebar-expand-md::before {
  12418. display: none;
  12419. content: "767.98px";
  12420. }
  12421. .sidebar-expand-md .app-sidebar {
  12422. position: fixed;
  12423. top: 0;
  12424. bottom: 0;
  12425. max-height: 100vh;
  12426. margin-right: calc(var(--lte-sidebar-width) * -1);
  12427. }
  12428. .sidebar-expand-md .app-sidebar .sidebar-wrapper {
  12429. height: calc(100vh - (calc(3.5rem + 1px)));
  12430. overflow-x: hidden;
  12431. overflow-y: auto;
  12432. }
  12433. .sidebar-expand-md.sidebar-open .app-sidebar {
  12434. margin-right: 0;
  12435. }
  12436. .sidebar-expand-md.sidebar-open .sidebar-overlay {
  12437. position: absolute;
  12438. inset: 0;
  12439. z-index: 1037;
  12440. width: 100%;
  12441. height: 100%;
  12442. cursor: pointer;
  12443. visibility: visible;
  12444. background-color: rgba(0, 0, 0, 0.2);
  12445. animation-name: fadeIn;
  12446. animation-fill-mode: both;
  12447. }
  12448. }
  12449. .sidebar-expand {
  12450. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12451. }
  12452. @media (min-width: 992px) {
  12453. .sidebar-expand-lg.layout-fixed .app-main-wrapper {
  12454. display: flex;
  12455. flex-direction: column;
  12456. min-height: 100vh;
  12457. }
  12458. .sidebar-expand-lg.layout-fixed .app-sidebar-wrapper {
  12459. position: relative;
  12460. }
  12461. .sidebar-expand-lg.layout-fixed .app-main {
  12462. flex: 1 1 auto;
  12463. overflow: auto;
  12464. }
  12465. .sidebar-expand-lg.layout-fixed .app-sidebar {
  12466. position: sticky;
  12467. top: 0;
  12468. bottom: 0;
  12469. max-height: 100vh;
  12470. }
  12471. .sidebar-expand-lg.layout-fixed .app-sidebar .sidebar-wrapper {
  12472. height: calc(100vh - (calc(3.5rem + 1px)));
  12473. overflow-x: hidden;
  12474. overflow-y: auto;
  12475. }
  12476. .sidebar-expand-lg.sidebar-open .nav-link > .nav-badge,
  12477. .sidebar-expand-lg.sidebar-open .nav-link > p > .nav-badge {
  12478. animation-name: fadeIn;
  12479. animation-duration: 0.3s;
  12480. animation-fill-mode: both;
  12481. animation-delay: 0.3s;
  12482. }
  12483. .sidebar-expand-lg.sidebar-open .nav-link > .nav-arrow,
  12484. .sidebar-expand-lg.sidebar-open .nav-link > p > .nav-arrow {
  12485. animation-name: fadeIn;
  12486. animation-duration: 0.3s;
  12487. animation-fill-mode: both;
  12488. animation-delay: 0.3s;
  12489. }
  12490. }
  12491. @media (max-width: 991.98px) {
  12492. .sidebar-expand-lg::before {
  12493. display: none;
  12494. content: "991.98px";
  12495. }
  12496. .sidebar-expand-lg .app-sidebar {
  12497. position: fixed;
  12498. top: 0;
  12499. bottom: 0;
  12500. max-height: 100vh;
  12501. margin-right: calc(var(--lte-sidebar-width) * -1);
  12502. }
  12503. .sidebar-expand-lg .app-sidebar .sidebar-wrapper {
  12504. height: calc(100vh - (calc(3.5rem + 1px)));
  12505. overflow-x: hidden;
  12506. overflow-y: auto;
  12507. }
  12508. .sidebar-expand-lg.sidebar-open .app-sidebar {
  12509. margin-right: 0;
  12510. }
  12511. .sidebar-expand-lg.sidebar-open .sidebar-overlay {
  12512. position: absolute;
  12513. inset: 0;
  12514. z-index: 1037;
  12515. width: 100%;
  12516. height: 100%;
  12517. cursor: pointer;
  12518. visibility: visible;
  12519. background-color: rgba(0, 0, 0, 0.2);
  12520. animation-name: fadeIn;
  12521. animation-fill-mode: both;
  12522. }
  12523. }
  12524. .sidebar-expand {
  12525. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12526. }
  12527. @media (min-width: 1200px) {
  12528. .sidebar-expand-xl.layout-fixed .app-main-wrapper {
  12529. display: flex;
  12530. flex-direction: column;
  12531. min-height: 100vh;
  12532. }
  12533. .sidebar-expand-xl.layout-fixed .app-sidebar-wrapper {
  12534. position: relative;
  12535. }
  12536. .sidebar-expand-xl.layout-fixed .app-main {
  12537. flex: 1 1 auto;
  12538. overflow: auto;
  12539. }
  12540. .sidebar-expand-xl.layout-fixed .app-sidebar {
  12541. position: sticky;
  12542. top: 0;
  12543. bottom: 0;
  12544. max-height: 100vh;
  12545. }
  12546. .sidebar-expand-xl.layout-fixed .app-sidebar .sidebar-wrapper {
  12547. height: calc(100vh - (calc(3.5rem + 1px)));
  12548. overflow-x: hidden;
  12549. overflow-y: auto;
  12550. }
  12551. .sidebar-expand-xl.sidebar-open .nav-link > .nav-badge,
  12552. .sidebar-expand-xl.sidebar-open .nav-link > p > .nav-badge {
  12553. animation-name: fadeIn;
  12554. animation-duration: 0.3s;
  12555. animation-fill-mode: both;
  12556. animation-delay: 0.3s;
  12557. }
  12558. .sidebar-expand-xl.sidebar-open .nav-link > .nav-arrow,
  12559. .sidebar-expand-xl.sidebar-open .nav-link > p > .nav-arrow {
  12560. animation-name: fadeIn;
  12561. animation-duration: 0.3s;
  12562. animation-fill-mode: both;
  12563. animation-delay: 0.3s;
  12564. }
  12565. }
  12566. @media (max-width: 1199.98px) {
  12567. .sidebar-expand-xl::before {
  12568. display: none;
  12569. content: "1199.98px";
  12570. }
  12571. .sidebar-expand-xl .app-sidebar {
  12572. position: fixed;
  12573. top: 0;
  12574. bottom: 0;
  12575. max-height: 100vh;
  12576. margin-right: calc(var(--lte-sidebar-width) * -1);
  12577. }
  12578. .sidebar-expand-xl .app-sidebar .sidebar-wrapper {
  12579. height: calc(100vh - (calc(3.5rem + 1px)));
  12580. overflow-x: hidden;
  12581. overflow-y: auto;
  12582. }
  12583. .sidebar-expand-xl.sidebar-open .app-sidebar {
  12584. margin-right: 0;
  12585. }
  12586. .sidebar-expand-xl.sidebar-open .sidebar-overlay {
  12587. position: absolute;
  12588. inset: 0;
  12589. z-index: 1037;
  12590. width: 100%;
  12591. height: 100%;
  12592. cursor: pointer;
  12593. visibility: visible;
  12594. background-color: rgba(0, 0, 0, 0.2);
  12595. animation-name: fadeIn;
  12596. animation-fill-mode: both;
  12597. }
  12598. }
  12599. .sidebar-expand {
  12600. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12601. }
  12602. @media (min-width: 1400px) {
  12603. .sidebar-expand-xxl.layout-fixed .app-main-wrapper {
  12604. display: flex;
  12605. flex-direction: column;
  12606. min-height: 100vh;
  12607. }
  12608. .sidebar-expand-xxl.layout-fixed .app-sidebar-wrapper {
  12609. position: relative;
  12610. }
  12611. .sidebar-expand-xxl.layout-fixed .app-main {
  12612. flex: 1 1 auto;
  12613. overflow: auto;
  12614. }
  12615. .sidebar-expand-xxl.layout-fixed .app-sidebar {
  12616. position: sticky;
  12617. top: 0;
  12618. bottom: 0;
  12619. max-height: 100vh;
  12620. }
  12621. .sidebar-expand-xxl.layout-fixed .app-sidebar .sidebar-wrapper {
  12622. height: calc(100vh - (calc(3.5rem + 1px)));
  12623. overflow-x: hidden;
  12624. overflow-y: auto;
  12625. }
  12626. .sidebar-expand-xxl.sidebar-open .nav-link > .nav-badge,
  12627. .sidebar-expand-xxl.sidebar-open .nav-link > p > .nav-badge {
  12628. animation-name: fadeIn;
  12629. animation-duration: 0.3s;
  12630. animation-fill-mode: both;
  12631. animation-delay: 0.3s;
  12632. }
  12633. .sidebar-expand-xxl.sidebar-open .nav-link > .nav-arrow,
  12634. .sidebar-expand-xxl.sidebar-open .nav-link > p > .nav-arrow {
  12635. animation-name: fadeIn;
  12636. animation-duration: 0.3s;
  12637. animation-fill-mode: both;
  12638. animation-delay: 0.3s;
  12639. }
  12640. }
  12641. @media (max-width: 1399.98px) {
  12642. .sidebar-expand-xxl::before {
  12643. display: none;
  12644. content: "1399.98px";
  12645. }
  12646. .sidebar-expand-xxl .app-sidebar {
  12647. position: fixed;
  12648. top: 0;
  12649. bottom: 0;
  12650. max-height: 100vh;
  12651. margin-right: calc(var(--lte-sidebar-width) * -1);
  12652. }
  12653. .sidebar-expand-xxl .app-sidebar .sidebar-wrapper {
  12654. height: calc(100vh - (calc(3.5rem + 1px)));
  12655. overflow-x: hidden;
  12656. overflow-y: auto;
  12657. }
  12658. .sidebar-expand-xxl.sidebar-open .app-sidebar {
  12659. margin-right: 0;
  12660. }
  12661. .sidebar-expand-xxl.sidebar-open .sidebar-overlay {
  12662. position: absolute;
  12663. inset: 0;
  12664. z-index: 1037;
  12665. width: 100%;
  12666. height: 100%;
  12667. cursor: pointer;
  12668. visibility: visible;
  12669. background-color: rgba(0, 0, 0, 0.2);
  12670. animation-name: fadeIn;
  12671. animation-fill-mode: both;
  12672. }
  12673. }
  12674. .sidebar-expand {
  12675. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12676. }
  12677. .sidebar-expand.layout-fixed .app-main-wrapper {
  12678. display: flex;
  12679. flex-direction: column;
  12680. min-height: 100vh;
  12681. }
  12682. .sidebar-expand.layout-fixed .app-sidebar-wrapper {
  12683. position: relative;
  12684. }
  12685. .sidebar-expand.layout-fixed .app-main {
  12686. flex: 1 1 auto;
  12687. overflow: auto;
  12688. }
  12689. .sidebar-expand.layout-fixed .app-sidebar {
  12690. position: sticky;
  12691. top: 0;
  12692. bottom: 0;
  12693. max-height: 100vh;
  12694. }
  12695. .sidebar-expand.layout-fixed .app-sidebar .sidebar-wrapper {
  12696. height: calc(100vh - (calc(3.5rem + 1px)));
  12697. overflow-x: hidden;
  12698. overflow-y: auto;
  12699. }
  12700. .sidebar-expand.sidebar-open .nav-link > .nav-badge,
  12701. .sidebar-expand.sidebar-open .nav-link > p > .nav-badge {
  12702. animation-name: fadeIn;
  12703. animation-duration: 0.3s;
  12704. animation-fill-mode: both;
  12705. animation-delay: 0.3s;
  12706. }
  12707. .sidebar-expand.sidebar-open .nav-link > .nav-arrow,
  12708. .sidebar-expand.sidebar-open .nav-link > p > .nav-arrow {
  12709. animation-name: fadeIn;
  12710. animation-duration: 0.3s;
  12711. animation-fill-mode: both;
  12712. animation-delay: 0.3s;
  12713. }
  12714. .sidebar-expand::before {
  12715. display: none;
  12716. content: "";
  12717. }
  12718. .sidebar-expand .app-sidebar {
  12719. position: fixed;
  12720. top: 0;
  12721. bottom: 0;
  12722. max-height: 100vh;
  12723. margin-right: calc(var(--lte-sidebar-width) * -1);
  12724. }
  12725. .sidebar-expand .app-sidebar .sidebar-wrapper {
  12726. height: calc(100vh - (calc(3.5rem + 1px)));
  12727. overflow-x: hidden;
  12728. overflow-y: auto;
  12729. }
  12730. .sidebar-expand.sidebar-open .app-sidebar {
  12731. margin-right: 0;
  12732. }
  12733. .sidebar-expand.sidebar-open .sidebar-overlay {
  12734. position: absolute;
  12735. inset: 0;
  12736. z-index: 1037;
  12737. width: 100%;
  12738. height: 100%;
  12739. cursor: pointer;
  12740. visibility: visible;
  12741. background-color: rgba(0, 0, 0, 0.2);
  12742. animation-name: fadeIn;
  12743. animation-fill-mode: both;
  12744. }
  12745. .sidebar-menu .nav-link p,
  12746. .app-sidebar .brand-text,
  12747. .app-sidebar .logo-xs,
  12748. .app-sidebar .logo-xl {
  12749. transition: margin-right 0.3s linear, opacity 0.3s ease, visibility 0.3s ease;
  12750. }
  12751. @media (prefers-reduced-motion: reduce) {
  12752. .sidebar-menu .nav-link p,
  12753. .app-sidebar .brand-text,
  12754. .app-sidebar .logo-xs,
  12755. .app-sidebar .logo-xl {
  12756. transition: none;
  12757. }
  12758. }
  12759. .app-loaded.sidebar-mini.sidebar-collapse .sidebar-menu .nav-link p,
  12760. .app-loaded.sidebar-mini.sidebar-collapse .brand-text {
  12761. animation-duration: 0.3s;
  12762. }
  12763. body:not(.app-loaded) .app-header,
  12764. body:not(.app-loaded) .app-sidebar,
  12765. body:not(.app-loaded) .app-main,
  12766. body:not(.app-loaded) .app-footer {
  12767. transition: none !important;
  12768. }
  12769. @media (prefers-reduced-motion: reduce) {
  12770. body:not(.app-loaded) .app-header,
  12771. body:not(.app-loaded) .app-sidebar,
  12772. body:not(.app-loaded) .app-main,
  12773. body:not(.app-loaded) .app-footer {
  12774. transition: none;
  12775. }
  12776. }
  12777. body:not(.app-loaded) .app-header,
  12778. body:not(.app-loaded) .app-sidebar,
  12779. body:not(.app-loaded) .app-main,
  12780. body:not(.app-loaded) .app-footer {
  12781. animation-duration: 0s !important;
  12782. }
  12783. .hold-transition .app-header,
  12784. .hold-transition .app-sidebar,
  12785. .hold-transition .app-main,
  12786. .hold-transition .app-footer,
  12787. .hold-transition .nav-arrow,
  12788. .hold-transition .nav-badge {
  12789. transition: none !important;
  12790. }
  12791. @media (prefers-reduced-motion: reduce) {
  12792. .hold-transition .app-header,
  12793. .hold-transition .app-sidebar,
  12794. .hold-transition .app-main,
  12795. .hold-transition .app-footer,
  12796. .hold-transition .nav-arrow,
  12797. .hold-transition .nav-badge {
  12798. transition: none;
  12799. }
  12800. }
  12801. .hold-transition .app-header,
  12802. .hold-transition .app-sidebar,
  12803. .hold-transition .app-main,
  12804. .hold-transition .app-footer,
  12805. .hold-transition .nav-arrow,
  12806. .hold-transition .nav-badge {
  12807. animation-duration: 0s !important;
  12808. }
  12809. [data-bs-theme=dark].app-sidebar,
  12810. [data-bs-theme=dark] .app-sidebar {
  12811. --lte-sidebar-hover-bg: rgba(255, 255, 255, 0.1);
  12812. --lte-sidebar-color: #c2c7d0;
  12813. --lte-sidebar-hover-color: #fff;
  12814. --lte-sidebar-active-color: #fff;
  12815. --lte-sidebar-menu-active-bg: rgba(255, 255, 255, 0.1);
  12816. --lte-sidebar-menu-active-color: #fff;
  12817. --lte-sidebar-submenu-bg: transparent;
  12818. --lte-sidebar-submenu-color: #c2c7d0;
  12819. --lte-sidebar-submenu-hover-color: #fff;
  12820. --lte-sidebar-submenu-hover-bg: rgba(255, 255, 255, 0.1);
  12821. --lte-sidebar-submenu-active-color: #fff;
  12822. --lte-sidebar-submenu-active-bg: rgba(255, 255, 255, 0.1);
  12823. --lte-sidebar-header-color: rgb(197.05, 201.8, 210.35);
  12824. }
  12825. .app-main {
  12826. position: relative;
  12827. display: flex;
  12828. flex-direction: column;
  12829. grid-area: lte-app-main;
  12830. max-width: 100vw;
  12831. padding-bottom: 0.75rem;
  12832. transition: 0.3s ease-in-out;
  12833. }
  12834. @media (prefers-reduced-motion: reduce) {
  12835. .app-main {
  12836. transition: none;
  12837. }
  12838. }
  12839. .app-main .app-content-header {
  12840. padding: 1rem 0.5rem;
  12841. }
  12842. .app-main .app-content-header .breadcrumb {
  12843. padding: 0;
  12844. margin-bottom: 0;
  12845. line-height: 2.5rem;
  12846. }
  12847. .app-main .app-content-header .breadcrumb a {
  12848. text-decoration: none;
  12849. }
  12850. .app-main .app-content-top-area,
  12851. .app-main .app-content-bottom-area {
  12852. color: var(--bs-secondary-color);
  12853. background-color: var(--bs-body-bg);
  12854. }
  12855. .app-main .app-content-top-area {
  12856. padding: 1rem 0;
  12857. border-bottom: 1px solid var(--bs-border-color);
  12858. }
  12859. .app-main .app-content-bottom-area {
  12860. padding: 1rem 0;
  12861. margin-top: auto;
  12862. margin-bottom: -0.75rem;
  12863. border-top: 1px solid var(--bs-border-color);
  12864. }
  12865. .app-footer {
  12866. grid-area: lte-app-footer;
  12867. width: inherit;
  12868. max-width: 100vw;
  12869. min-height: 3rem;
  12870. padding: 1rem;
  12871. color: var(--bs-secondary-color);
  12872. background-color: var(--bs-body-bg);
  12873. border-top: 1px solid var(--bs-border-color);
  12874. transition: 0.3s ease-in-out;
  12875. }
  12876. @media (prefers-reduced-motion: reduce) {
  12877. .app-footer {
  12878. transition: none;
  12879. }
  12880. }
  12881. .fixed-footer .app-footer {
  12882. position: sticky;
  12883. bottom: 0;
  12884. z-index: 1030;
  12885. }
  12886. .dropdown-menu {
  12887. overflow: hidden;
  12888. }
  12889. .fs-7 .dropdown-menu {
  12890. font-size: 0.875rem !important;
  12891. }
  12892. .fs-7 .dropdown-toggle::after {
  12893. vertical-align: 0.2rem;
  12894. }
  12895. .dropdown-item-title {
  12896. margin: 0;
  12897. font-size: 1rem;
  12898. }
  12899. .dropdown-icon::after {
  12900. margin-right: 0;
  12901. }
  12902. .dropdown-menu-lg {
  12903. min-width: 280px;
  12904. max-width: 300px;
  12905. padding: 0;
  12906. }
  12907. .dropdown-menu-lg .dropdown-divider {
  12908. margin: 0;
  12909. }
  12910. .dropdown-menu-lg .dropdown-item {
  12911. padding: 0.5rem 1rem;
  12912. }
  12913. .dropdown-menu-lg p {
  12914. margin: 0;
  12915. word-wrap: break-word;
  12916. white-space: normal;
  12917. }
  12918. .dropdown-submenu {
  12919. position: relative;
  12920. }
  12921. .dropdown-submenu > a::after {
  12922. border-top: 0.3em solid transparent;
  12923. border-left: 0;
  12924. border-bottom: 0.3em solid transparent;
  12925. border-right: 0.3em solid;
  12926. float: left;
  12927. margin-top: 0.5rem;
  12928. margin-right: 0.5rem;
  12929. }
  12930. .dropdown-submenu > .dropdown-menu {
  12931. top: 0;
  12932. right: 100%;
  12933. margin-top: 0;
  12934. margin-right: 0;
  12935. }
  12936. .dropdown-hover:hover > .dropdown-menu, .dropdown-hover.nav-item.dropdown:hover > .dropdown-menu,
  12937. .dropdown-hover .dropdown-submenu:hover > .dropdown-menu, .dropdown-hover.dropdown-submenu:hover > .dropdown-menu {
  12938. display: block;
  12939. }
  12940. .dropdown-menu-xl {
  12941. min-width: 360px;
  12942. max-width: 420px;
  12943. padding: 0;
  12944. }
  12945. .dropdown-menu-xl .dropdown-divider {
  12946. margin: 0;
  12947. }
  12948. .dropdown-menu-xl .dropdown-item {
  12949. padding: 0.5rem 1rem;
  12950. }
  12951. .dropdown-menu-xl p {
  12952. margin: 0;
  12953. word-wrap: break-word;
  12954. white-space: normal;
  12955. }
  12956. .dropdown-footer,
  12957. .dropdown-header {
  12958. display: block;
  12959. padding: 0.5rem 1rem;
  12960. font-size: 0.875rem;
  12961. text-align: center;
  12962. }
  12963. .open:not(.dropup) > .animated-dropdown-menu {
  12964. animation: flipInX 0.7s both;
  12965. backface-visibility: visible !important;
  12966. }
  12967. .navbar-custom-menu > .navbar-nav > li {
  12968. position: relative;
  12969. }
  12970. .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  12971. position: absolute;
  12972. left: 0;
  12973. right: auto;
  12974. }
  12975. @media (max-width: 575.98px) {
  12976. .navbar-custom-menu > .navbar-nav {
  12977. float: left;
  12978. }
  12979. .navbar-custom-menu > .navbar-nav > li {
  12980. position: static;
  12981. }
  12982. .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  12983. position: absolute;
  12984. left: 5%;
  12985. right: auto;
  12986. background-color: var(--bs-body-bg);
  12987. border: 1px solid var(--bs-border-color);
  12988. }
  12989. }
  12990. .navbar-nav > .user-menu > .nav-link::after {
  12991. content: none;
  12992. }
  12993. .navbar-nav > .user-menu > .dropdown-menu {
  12994. width: 280px;
  12995. padding: 0;
  12996. }
  12997. .navbar-nav > .user-menu > .dropdown-menu > li.user-header {
  12998. min-height: 175px;
  12999. padding: 10px;
  13000. text-align: center;
  13001. }
  13002. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
  13003. z-index: 5;
  13004. width: 90px;
  13005. height: 90px;
  13006. border: 3px solid;
  13007. border-color: transparent;
  13008. border-color: var(--bs-border-color-translucent);
  13009. }
  13010. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
  13011. z-index: 5;
  13012. margin-top: 10px;
  13013. font-size: 17px;
  13014. word-wrap: break-word;
  13015. }
  13016. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small, .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > .small {
  13017. display: block;
  13018. font-size: 12px;
  13019. }
  13020. .navbar-nav > .user-menu > .dropdown-menu > .user-body::after {
  13021. display: block;
  13022. clear: both;
  13023. content: "";
  13024. }
  13025. .navbar-nav > .user-menu > .dropdown-menu > .user-body {
  13026. padding: 15px;
  13027. border-top: 1px solid var(--bs-border-color);
  13028. border-bottom: 1px solid var(--bs-border-color-translucent);
  13029. }
  13030. .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
  13031. text-decoration: none;
  13032. }
  13033. .navbar-nav > .user-menu > .dropdown-menu > .user-footer::after {
  13034. display: block;
  13035. clear: both;
  13036. content: "";
  13037. }
  13038. .navbar-nav > .user-menu > .dropdown-menu > .user-footer {
  13039. padding: 10px;
  13040. background-color: var(--bs-light-bg);
  13041. }
  13042. @media (min-width: 576px) {
  13043. .navbar-nav > .user-menu .user-image {
  13044. float: none;
  13045. margin-top: -8px;
  13046. margin-left: 0.4rem;
  13047. line-height: 10px;
  13048. }
  13049. }
  13050. .navbar-nav > .user-menu .user-image {
  13051. float: right;
  13052. width: 2rem;
  13053. height: 2rem;
  13054. margin-top: -2px;
  13055. border-radius: 50%;
  13056. }
  13057. .callout {
  13058. --bs-link-color-rgb: var(--lte-callout-link);
  13059. --bs-code-color: var(--lte-callout-code-color);
  13060. padding: 1.25rem;
  13061. color: var(--lte-callout-color, inherit);
  13062. background-color: var(--lte-callout-bg, var(--bs-gray-100));
  13063. border-right: 0.25rem solid var(--lte-callout-border, var(--bs-gray-300));
  13064. }
  13065. .callout .callout-link {
  13066. font-weight: 700;
  13067. color: var(--bs-callout-link-color);
  13068. }
  13069. .callout h4, .callout .h4 {
  13070. margin-bottom: 0.25rem;
  13071. }
  13072. .callout > :last-child {
  13073. margin-bottom: 0;
  13074. }
  13075. .callout + .callout {
  13076. margin-top: -0.25rem;
  13077. }
  13078. .callout-primary {
  13079. --lte-callout-color: var(--bs-primary-text-emphasis);
  13080. --lte-callout-bg: var(--bs-primary-bg-subtle);
  13081. --lte-callout-border: var(--bs-primary-border-subtle);
  13082. --bs-callout-link-color: var(--bs-primary-text-emphasis);
  13083. }
  13084. .callout-secondary {
  13085. --lte-callout-color: var(--bs-secondary-text-emphasis);
  13086. --lte-callout-bg: var(--bs-secondary-bg-subtle);
  13087. --lte-callout-border: var(--bs-secondary-border-subtle);
  13088. --bs-callout-link-color: var(--bs-secondary-text-emphasis);
  13089. }
  13090. .callout-success {
  13091. --lte-callout-color: var(--bs-success-text-emphasis);
  13092. --lte-callout-bg: var(--bs-success-bg-subtle);
  13093. --lte-callout-border: var(--bs-success-border-subtle);
  13094. --bs-callout-link-color: var(--bs-success-text-emphasis);
  13095. }
  13096. .callout-info {
  13097. --lte-callout-color: var(--bs-info-text-emphasis);
  13098. --lte-callout-bg: var(--bs-info-bg-subtle);
  13099. --lte-callout-border: var(--bs-info-border-subtle);
  13100. --bs-callout-link-color: var(--bs-info-text-emphasis);
  13101. }
  13102. .callout-warning {
  13103. --lte-callout-color: var(--bs-warning-text-emphasis);
  13104. --lte-callout-bg: var(--bs-warning-bg-subtle);
  13105. --lte-callout-border: var(--bs-warning-border-subtle);
  13106. --bs-callout-link-color: var(--bs-warning-text-emphasis);
  13107. }
  13108. .callout-danger {
  13109. --lte-callout-color: var(--bs-danger-text-emphasis);
  13110. --lte-callout-bg: var(--bs-danger-bg-subtle);
  13111. --lte-callout-border: var(--bs-danger-border-subtle);
  13112. --bs-callout-link-color: var(--bs-danger-text-emphasis);
  13113. }
  13114. .callout-light {
  13115. --lte-callout-color: var(--bs-light-text-emphasis);
  13116. --lte-callout-bg: var(--bs-light-bg-subtle);
  13117. --lte-callout-border: var(--bs-light-border-subtle);
  13118. --bs-callout-link-color: var(--bs-light-text-emphasis);
  13119. }
  13120. .callout-dark {
  13121. --lte-callout-color: var(--bs-dark-text-emphasis);
  13122. --lte-callout-bg: var(--bs-dark-bg-subtle);
  13123. --lte-callout-border: var(--bs-dark-border-subtle);
  13124. --bs-callout-link-color: var(--bs-dark-text-emphasis);
  13125. }
  13126. .compact-mode .app-header {
  13127. max-height: 2.75rem;
  13128. }
  13129. .compact-mode .app-header .nav-link {
  13130. max-height: 1.75rem;
  13131. }
  13132. .compact-mode .nav-link {
  13133. --bs-nav-link-padding-y: .25rem;
  13134. --bs-nav-link-padding-x: .5rem;
  13135. }
  13136. .compact-mode.sidebar-mini.sidebar-collapse .app-sidebar:not(:hover) {
  13137. min-width: 3.1rem;
  13138. max-width: 3.1rem;
  13139. }
  13140. .compact-mode.sidebar-mini.sidebar-collapse .app-sidebar:not(:hover) .sidebar-menu .nav-link {
  13141. width: 2.1rem !important;
  13142. }
  13143. .compact-mode .logo-xs,
  13144. .compact-mode .logo-xl {
  13145. max-height: 2.75rem;
  13146. }
  13147. .compact-mode .brand-image {
  13148. width: 1.75rem;
  13149. height: 1.75rem;
  13150. }
  13151. .compact-mode .sidebar-brand {
  13152. height: 2.75rem;
  13153. }
  13154. .compact-mode .app-footer {
  13155. padding: 0.5rem;
  13156. }
  13157. .compact-mode .sidebar-wrapper .nav-icon {
  13158. min-width: 1.1rem;
  13159. max-width: 1.1rem;
  13160. }
  13161. .astro-code {
  13162. padding: 0.75rem;
  13163. border-radius: 0.375rem;
  13164. }
  13165. .progress {
  13166. border-radius: 1px;
  13167. }
  13168. .progress.vertical {
  13169. position: relative;
  13170. display: inline-block;
  13171. width: 30px;
  13172. height: 200px;
  13173. margin-left: 10px;
  13174. }
  13175. .progress.vertical > .progress-bar {
  13176. position: absolute;
  13177. bottom: 0;
  13178. width: 100%;
  13179. }
  13180. .progress.vertical.sm, .progress.vertical.progress-sm {
  13181. width: 20px;
  13182. }
  13183. .progress.vertical.xs, .progress.vertical.progress-xs {
  13184. width: 10px;
  13185. }
  13186. .progress.vertical.xxs, .progress.vertical.progress-xxs {
  13187. width: 3px;
  13188. }
  13189. .progress-group {
  13190. margin-bottom: 0.5rem;
  13191. }
  13192. .progress-sm {
  13193. height: 10px;
  13194. }
  13195. .progress-xs {
  13196. height: 7px;
  13197. }
  13198. .progress-xxs {
  13199. height: 3px;
  13200. }
  13201. .table tr > td .progress {
  13202. margin: 0;
  13203. }
  13204. .card {
  13205. box-shadow: 0 0 1px rgba(var(--bs-body-color-rgb), 0.125), 0 1px 3px rgba(var(--bs-body-color-rgb), 0.2);
  13206. }
  13207. .card[class*=card-]:not(.card-outline) > .card-header, .card[class*=text-bg-]:not(.card-outline) > .card-header {
  13208. color: var(--lte-card-variant-color);
  13209. background-color: var(--lte-card-variant-bg);
  13210. }
  13211. .card[class*=card-]:not(.card-outline) > .card-header .btn-tool, .card[class*=text-bg-]:not(.card-outline) > .card-header .btn-tool {
  13212. --bs-btn-color: rgba(var(--lte-card-variant-color-rgb), .8);
  13213. --bs-btn-hover-color: var(--lte-card-variant-color);
  13214. }
  13215. .card.card-outline {
  13216. border-top: 3px solid var(--lte-card-variant-bg);
  13217. }
  13218. .card.maximized-card {
  13219. position: fixed;
  13220. top: 0;
  13221. right: 0;
  13222. z-index: 1050;
  13223. width: 100% !important;
  13224. max-width: 100% !important;
  13225. height: 100% !important;
  13226. max-height: 100% !important;
  13227. }
  13228. .card.maximized-card.was-collapsed .card-body {
  13229. display: block !important;
  13230. }
  13231. .card.maximized-card .card-body {
  13232. overflow: auto;
  13233. }
  13234. .card.maximized-card [data-lte-toggle=card-collapse] {
  13235. display: none;
  13236. }
  13237. .card.maximized-card [data-lte-icon=maximize] {
  13238. display: none;
  13239. }
  13240. .card.maximized-card .card-header,
  13241. .card.maximized-card .card-footer {
  13242. border-radius: 0 !important;
  13243. }
  13244. .card:not(.maximized-card) [data-lte-icon=minimize] {
  13245. display: none;
  13246. }
  13247. .card.collapsed-card > .card-header [data-lte-icon=collapse] {
  13248. display: none;
  13249. }
  13250. .card.collapsed-card > .card-body,
  13251. .card.collapsed-card > .card-footer {
  13252. display: none;
  13253. }
  13254. .card:not(.collapsed-card) > .card-header [data-lte-icon=expand] {
  13255. display: none;
  13256. }
  13257. .card .nav.flex-column > li {
  13258. margin: 0;
  13259. border-bottom: 1px solid var(--bs-border-color-translucent);
  13260. }
  13261. .card .nav.flex-column > li:last-of-type {
  13262. border-bottom: 0;
  13263. }
  13264. .card.height-control .card-body {
  13265. max-height: 300px;
  13266. overflow: auto;
  13267. }
  13268. .card .border-end {
  13269. border-left: 1px solid var(--bs-border-color-translucent);
  13270. }
  13271. .card .border-start {
  13272. border-right: 1px solid var(--bs-border-color-translucent);
  13273. }
  13274. .card.card-tabs:not(.card-outline) > .card-header {
  13275. border-bottom: 0;
  13276. }
  13277. .card.card-tabs:not(.card-outline) > .card-header .nav-item:first-child .nav-link {
  13278. border-right-color: transparent;
  13279. }
  13280. .card.card-tabs.card-outline .nav-item {
  13281. border-bottom: 0;
  13282. }
  13283. .card.card-tabs.card-outline .nav-item:first-child .nav-link {
  13284. margin-right: 0;
  13285. border-right: 0;
  13286. }
  13287. .card.card-tabs .card-tools {
  13288. margin: 0.3rem 0.5rem;
  13289. }
  13290. .card.card-tabs:not(.expanding-card).collapsed-card .card-header {
  13291. border-bottom: 0;
  13292. }
  13293. .card.card-tabs:not(.expanding-card).collapsed-card .card-header .nav-tabs {
  13294. border-bottom: 0;
  13295. }
  13296. .card.card-tabs:not(.expanding-card).collapsed-card .card-header .nav-tabs .nav-item {
  13297. margin-bottom: 0;
  13298. }
  13299. .card.card-tabs.expanding-card .card-header .nav-tabs .nav-item {
  13300. margin-bottom: -1px;
  13301. }
  13302. .card.card-outline-tabs {
  13303. border-top: 0;
  13304. }
  13305. .card.card-outline-tabs .card-header .nav-item:first-child .nav-link {
  13306. margin-right: 0;
  13307. border-right: 0;
  13308. }
  13309. .card.card-outline-tabs .card-header a {
  13310. text-decoration: none;
  13311. border-top: 3px solid transparent;
  13312. }
  13313. .card.card-outline-tabs .card-header a:hover {
  13314. border-top: 3px solid var(--bs-border-color);
  13315. }
  13316. .card.card-outline-tabs .card-header a.active:hover {
  13317. margin-top: 0;
  13318. }
  13319. .card.card-outline-tabs .card-tools {
  13320. margin: 0.5rem 0.5rem 0.3rem;
  13321. }
  13322. .card.card-outline-tabs:not(.expanding-card).collapsed-card .card-header {
  13323. border-bottom: 0;
  13324. }
  13325. .card.card-outline-tabs:not(.expanding-card).collapsed-card .card-header .nav-tabs {
  13326. border-bottom: 0;
  13327. }
  13328. .card.card-outline-tabs:not(.expanding-card).collapsed-card .card-header .nav-tabs .nav-item {
  13329. margin-bottom: 0;
  13330. }
  13331. .card.card-outline-tabs.expanding-card .card-header .nav-tabs .nav-item {
  13332. margin-bottom: -1px;
  13333. }
  13334. html.maximized-card {
  13335. overflow: hidden;
  13336. }
  13337. .card-header::after,
  13338. .card-body::after,
  13339. .card-footer::after {
  13340. display: block;
  13341. clear: both;
  13342. content: "";
  13343. }
  13344. .card-header {
  13345. position: relative;
  13346. padding: 1rem 1rem;
  13347. background-color: transparent;
  13348. border-bottom: 1px solid var(--bs-border-color-translucent);
  13349. border-top-right-radius: 0.375rem;
  13350. border-top-left-radius: 0.375rem;
  13351. }
  13352. .collapsed-card .card-header {
  13353. border-bottom: 0;
  13354. }
  13355. .card-header > .card-tools {
  13356. float: left;
  13357. margin-left: -0.5rem;
  13358. }
  13359. .card-header > .card-tools .input-group,
  13360. .card-header > .card-tools .nav,
  13361. .card-header > .card-tools .pagination {
  13362. margin-top: -0.4rem;
  13363. margin-bottom: -0.4rem;
  13364. }
  13365. .card-header > .card-tools [data-bs-toggle=tooltip] {
  13366. position: relative;
  13367. }
  13368. .card-title {
  13369. float: right;
  13370. margin: 0;
  13371. font-size: 1.1rem;
  13372. font-weight: 400;
  13373. }
  13374. .btn-tool {
  13375. --bs-btn-padding-x: .5rem;
  13376. --bs-btn-padding-y: .25rem;
  13377. }
  13378. .btn-tool:not(.btn-tool-custom) {
  13379. --bs-btn-color: var(--bs-tertiary-color);
  13380. --bs-btn-bg: transparent;
  13381. --bs-btn-box-shadow: none;
  13382. --bs-btn-hover-color: var(--bs-secondary-color);
  13383. --bs-btn-active-border-color: transparent;
  13384. }
  13385. .btn-tool {
  13386. margin: -1rem 0;
  13387. font-size: 0.875rem;
  13388. }
  13389. .card-primary,
  13390. .bg-primary,
  13391. .text-bg-primary {
  13392. --lte-card-variant-bg: #0d6efd;
  13393. --lte-card-variant-bg-rgb: 13, 110, 253;
  13394. --lte-card-variant-color: #fff;
  13395. --lte-card-variant-color-rgb: 255, 255, 255;
  13396. }
  13397. .card-secondary,
  13398. .bg-secondary,
  13399. .text-bg-secondary {
  13400. --lte-card-variant-bg: #6c757d;
  13401. --lte-card-variant-bg-rgb: 108, 117, 125;
  13402. --lte-card-variant-color: #fff;
  13403. --lte-card-variant-color-rgb: 255, 255, 255;
  13404. }
  13405. .card-success,
  13406. .bg-success,
  13407. .text-bg-success {
  13408. --lte-card-variant-bg: #198754;
  13409. --lte-card-variant-bg-rgb: 25, 135, 84;
  13410. --lte-card-variant-color: #fff;
  13411. --lte-card-variant-color-rgb: 255, 255, 255;
  13412. }
  13413. .card-info,
  13414. .bg-info,
  13415. .text-bg-info {
  13416. --lte-card-variant-bg: #0dcaf0;
  13417. --lte-card-variant-bg-rgb: 13, 202, 240;
  13418. --lte-card-variant-color: #000;
  13419. --lte-card-variant-color-rgb: 0, 0, 0;
  13420. }
  13421. .card-warning,
  13422. .bg-warning,
  13423. .text-bg-warning {
  13424. --lte-card-variant-bg: #ffc107;
  13425. --lte-card-variant-bg-rgb: 255, 193, 7;
  13426. --lte-card-variant-color: #000;
  13427. --lte-card-variant-color-rgb: 0, 0, 0;
  13428. }
  13429. .card-danger,
  13430. .bg-danger,
  13431. .text-bg-danger {
  13432. --lte-card-variant-bg: #dc3545;
  13433. --lte-card-variant-bg-rgb: 220, 53, 69;
  13434. --lte-card-variant-color: #fff;
  13435. --lte-card-variant-color-rgb: 255, 255, 255;
  13436. }
  13437. .card-light,
  13438. .bg-light,
  13439. .text-bg-light {
  13440. --lte-card-variant-bg: #f8f9fa;
  13441. --lte-card-variant-bg-rgb: 248, 249, 250;
  13442. --lte-card-variant-color: #000;
  13443. --lte-card-variant-color-rgb: 0, 0, 0;
  13444. }
  13445. .card-dark,
  13446. .bg-dark,
  13447. .text-bg-dark {
  13448. --lte-card-variant-bg: #212529;
  13449. --lte-card-variant-bg-rgb: 33, 37, 41;
  13450. --lte-card-variant-color: #fff;
  13451. --lte-card-variant-color-rgb: 255, 255, 255;
  13452. }
  13453. .card-body > .table {
  13454. margin-bottom: 0;
  13455. }
  13456. .card-body > .table > thead > tr > th,
  13457. .card-body > .table > thead > tr > td {
  13458. border-top-width: 0;
  13459. }
  13460. .table:not(.table-dark) {
  13461. color: inherit;
  13462. }
  13463. .table.table-head-fixed thead tr:nth-child(1) th {
  13464. position: sticky;
  13465. top: 0;
  13466. z-index: 10;
  13467. background-color: #fff;
  13468. border-bottom: 0;
  13469. box-shadow: inset 0 1px 0 var(--bs-border-color), inset 0 -1px 0 var(--bs-border-color);
  13470. }
  13471. .table.no-border,
  13472. .table.no-border td,
  13473. .table.no-border th {
  13474. border: 0;
  13475. }
  13476. .table.text-center,
  13477. .table.text-center td,
  13478. .table.text-center th {
  13479. text-align: center;
  13480. }
  13481. .table.table-valign-middle thead > tr > th,
  13482. .table.table-valign-middle thead > tr > td,
  13483. .table.table-valign-middle tbody > tr > th,
  13484. .table.table-valign-middle tbody > tr > td {
  13485. vertical-align: middle;
  13486. }
  13487. .card-body.p-0 .table thead > tr > th:first-of-type,
  13488. .card-body.p-0 .table thead > tr > td:first-of-type,
  13489. .card-body.p-0 .table tfoot > tr > th:first-of-type,
  13490. .card-body.p-0 .table tfoot > tr > td:first-of-type,
  13491. .card-body.p-0 .table tbody > tr > th:first-of-type,
  13492. .card-body.p-0 .table tbody > tr > td:first-of-type {
  13493. padding-right: 1.5rem;
  13494. }
  13495. .card-body.p-0 .table thead > tr > th:last-of-type,
  13496. .card-body.p-0 .table thead > tr > td:last-of-type,
  13497. .card-body.p-0 .table tfoot > tr > th:last-of-type,
  13498. .card-body.p-0 .table tfoot > tr > td:last-of-type,
  13499. .card-body.p-0 .table tbody > tr > th:last-of-type,
  13500. .card-body.p-0 .table tbody > tr > td:last-of-type {
  13501. padding-left: 1.5rem;
  13502. }
  13503. .small-box {
  13504. border-radius: 0.375rem;
  13505. box-shadow: 0 0 1px rgba(var(--bs-body-color-rgb), 0.125), 0 1px 3px rgba(var(--bs-body-color-rgb), 0.2);
  13506. position: relative;
  13507. display: block;
  13508. margin-bottom: 1.25rem;
  13509. --bs-link-color-rgb: none;
  13510. --bs-link-hover-color-rgb: none;
  13511. --bs-heading-color: none;
  13512. }
  13513. .small-box > .inner {
  13514. padding: 10px;
  13515. }
  13516. .small-box > .small-box-footer {
  13517. position: relative;
  13518. z-index: 10;
  13519. display: block;
  13520. padding: 3px 0;
  13521. text-align: center;
  13522. background-color: rgba(0, 0, 0, 0.07);
  13523. }
  13524. .small-box > .small-box-footer:hover {
  13525. background-color: rgba(0, 0, 0, 0.1);
  13526. }
  13527. .small-box h3, .small-box .h3 {
  13528. font-size: calc(1.345rem + 1.14vw);
  13529. }
  13530. @media (min-width: 1200px) {
  13531. .small-box h3, .small-box .h3 {
  13532. font-size: 2.2rem;
  13533. }
  13534. }
  13535. .small-box h3, .small-box .h3 {
  13536. padding: 0;
  13537. margin: 0 0 10px;
  13538. font-weight: 700;
  13539. white-space: nowrap;
  13540. }
  13541. @media (min-width: 992px) {
  13542. .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 {
  13543. font-size: calc(1.285rem + 0.42vw);
  13544. }
  13545. }
  13546. @media (min-width: 992px) and (min-width: 1200px) {
  13547. .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 {
  13548. font-size: 1.6rem;
  13549. }
  13550. }
  13551. @media (min-width: 992px) {
  13552. .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 {
  13553. font-size: calc(1.285rem + 0.42vw);
  13554. }
  13555. }
  13556. @media (min-width: 992px) and (min-width: 1200px) {
  13557. .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 {
  13558. font-size: 1.6rem;
  13559. }
  13560. }
  13561. @media (min-width: 1200px) {
  13562. .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 {
  13563. font-size: calc(1.345rem + 1.14vw);
  13564. }
  13565. }
  13566. @media (min-width: 1200px) and (min-width: 1200px) {
  13567. .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 {
  13568. font-size: 2.2rem;
  13569. }
  13570. }
  13571. @media (min-width: 1200px) {
  13572. .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 {
  13573. font-size: calc(1.345rem + 1.14vw);
  13574. }
  13575. }
  13576. @media (min-width: 1200px) and (min-width: 1200px) {
  13577. .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 {
  13578. font-size: 2.2rem;
  13579. }
  13580. }
  13581. .small-box p {
  13582. font-size: 1rem;
  13583. }
  13584. .small-box p > small, .small-box p > .small {
  13585. display: block;
  13586. margin-top: 5px;
  13587. font-size: 0.9rem;
  13588. color: #f8f9fa;
  13589. }
  13590. .small-box h3, .small-box .h3,
  13591. .small-box p {
  13592. z-index: 5;
  13593. }
  13594. .small-box .small-box-icon {
  13595. position: absolute;
  13596. top: 15px;
  13597. left: 15px;
  13598. z-index: 0;
  13599. height: 70px;
  13600. font-size: 70px;
  13601. color: rgba(0, 0, 0, 0.15);
  13602. transition: transform 0.3s linear;
  13603. }
  13604. @media (prefers-reduced-motion: reduce) {
  13605. .small-box .small-box-icon {
  13606. transition: none;
  13607. }
  13608. }
  13609. .small-box:hover .small-box-icon {
  13610. transform: scale(1.1);
  13611. }
  13612. @media (max-width: 575.98px) {
  13613. .small-box {
  13614. text-align: center;
  13615. }
  13616. .small-box .small-box-icon {
  13617. display: none;
  13618. }
  13619. .small-box p {
  13620. font-size: 12px;
  13621. }
  13622. }
  13623. .info-box {
  13624. box-shadow: 0 0 1px rgba(var(--bs-body-color-rgb), 0.125), 0 1px 3px rgba(var(--bs-body-color-rgb), 0.2);
  13625. border-radius: 0.375rem;
  13626. position: relative;
  13627. display: flex;
  13628. width: 100%;
  13629. min-height: 80px;
  13630. padding: 0.5rem;
  13631. margin-bottom: 1rem;
  13632. color: var(--bs-body-color);
  13633. background-color: var(--bs-body-bg);
  13634. }
  13635. .info-box .progress {
  13636. height: 2px;
  13637. margin: 5px 0;
  13638. background-color: rgba(var(--lte-card-variant-color-rgb), 0.125);
  13639. }
  13640. .info-box .progress .progress-bar {
  13641. background-color: var(--lte-card-variant-color);
  13642. }
  13643. .info-box .info-box-icon {
  13644. display: flex;
  13645. align-items: center;
  13646. justify-content: center;
  13647. width: 70px;
  13648. font-size: 1.875rem;
  13649. text-align: center;
  13650. border-radius: 0.375rem;
  13651. }
  13652. .info-box .info-box-icon > img {
  13653. max-width: 100%;
  13654. }
  13655. .info-box .info-box-content {
  13656. display: flex;
  13657. flex: 1;
  13658. flex-direction: column;
  13659. justify-content: center;
  13660. padding: 0 10px;
  13661. line-height: 1.8;
  13662. }
  13663. .info-box .info-box-number {
  13664. display: block;
  13665. margin-top: 0.25rem;
  13666. font-weight: 700;
  13667. }
  13668. .info-box .progress-description,
  13669. .info-box .info-box-text {
  13670. display: block;
  13671. overflow: hidden;
  13672. text-overflow: ellipsis;
  13673. white-space: nowrap;
  13674. }
  13675. .info-box .info-box-more {
  13676. display: block;
  13677. }
  13678. .info-box .progress-description {
  13679. margin: 0;
  13680. }
  13681. @media (min-width: 768px) {
  13682. .col-xl-2 .info-box .progress-description, .col-lg-2 .info-box .progress-description, .col-md-2 .info-box .progress-description {
  13683. display: none;
  13684. }
  13685. .col-xl-3 .info-box .progress-description, .col-lg-3 .info-box .progress-description, .col-md-3 .info-box .progress-description {
  13686. display: none;
  13687. }
  13688. }
  13689. @media (min-width: 992px) {
  13690. .col-xl-2 .info-box .progress-description, .col-lg-2 .info-box .progress-description, .col-md-2 .info-box .progress-description {
  13691. font-size: 0.75rem;
  13692. display: block;
  13693. }
  13694. .col-xl-3 .info-box .progress-description, .col-lg-3 .info-box .progress-description, .col-md-3 .info-box .progress-description {
  13695. font-size: 0.75rem;
  13696. display: block;
  13697. }
  13698. }
  13699. @media (min-width: 1200px) {
  13700. .col-xl-2 .info-box .progress-description, .col-lg-2 .info-box .progress-description, .col-md-2 .info-box .progress-description {
  13701. font-size: 1rem;
  13702. display: block;
  13703. }
  13704. .col-xl-3 .info-box .progress-description, .col-lg-3 .info-box .progress-description, .col-md-3 .info-box .progress-description {
  13705. font-size: 1rem;
  13706. display: block;
  13707. }
  13708. }
  13709. .timeline {
  13710. position: relative;
  13711. padding: 0;
  13712. margin: 0 0 45px;
  13713. }
  13714. .timeline::before {
  13715. border-radius: 0.375rem;
  13716. position: absolute;
  13717. top: 0;
  13718. bottom: 0;
  13719. right: 31px;
  13720. width: 4px;
  13721. margin: 0;
  13722. content: "";
  13723. background-color: var(--bs-border-color);
  13724. }
  13725. .timeline > div::before, .timeline > div::after {
  13726. display: table;
  13727. content: "";
  13728. }
  13729. .timeline > div {
  13730. position: relative;
  13731. margin-left: 10px;
  13732. margin-bottom: 15px;
  13733. }
  13734. .timeline > div > .timeline-item {
  13735. box-shadow: 0 0 1px rgba(var(--bs-body-color-rgb), 0.125), 0 1px 3px rgba(var(--bs-body-color-rgb), 0.2);
  13736. border-radius: 0.375rem;
  13737. position: relative;
  13738. padding: 0;
  13739. margin-top: 0;
  13740. margin-left: 15px;
  13741. margin-right: 60px;
  13742. color: var(--bs-body-color);
  13743. background-color: var(--bs-body-bg);
  13744. }
  13745. .timeline > div > .timeline-item > .time {
  13746. float: left;
  13747. padding: 10px;
  13748. font-size: 12px;
  13749. color: var(--bs-secondary-color);
  13750. }
  13751. .timeline > div > .timeline-item > .timeline-header {
  13752. padding: 10px;
  13753. margin: 0;
  13754. font-size: 16px;
  13755. line-height: 1.1;
  13756. color: var(--bs-secondary-color);
  13757. border-bottom: 1px solid var(--bs-border-color);
  13758. }
  13759. .timeline > div > .timeline-item > .timeline-header > a {
  13760. font-weight: 600;
  13761. text-decoration: none;
  13762. }
  13763. .timeline > div > .timeline-item > .timeline-body,
  13764. .timeline > div > .timeline-item > .timeline-footer {
  13765. padding: 10px;
  13766. }
  13767. .timeline > div > .timeline-item > .timeline-body > img {
  13768. margin: 10px;
  13769. }
  13770. .timeline > div > .timeline-item > .timeline-body > dl,
  13771. .timeline > div > .timeline-item > .timeline-body ol,
  13772. .timeline > div > .timeline-item > .timeline-body ul {
  13773. margin: 0;
  13774. }
  13775. .timeline > div .timeline-icon {
  13776. position: absolute;
  13777. top: 0;
  13778. right: 18px;
  13779. width: 30px;
  13780. height: 30px;
  13781. font-size: 16px;
  13782. line-height: 30px;
  13783. text-align: center;
  13784. background-color: var(--bs-secondary-bg);
  13785. border-radius: 50%;
  13786. }
  13787. .timeline > .time-label > span {
  13788. border-radius: 4px;
  13789. display: inline-block;
  13790. padding: 5px;
  13791. font-weight: 600;
  13792. background-color: var(--bs-body-bg);
  13793. }
  13794. .timeline-inverse > div > .timeline-item {
  13795. box-shadow: none;
  13796. background-color: var(--bs-tertiary-bg);
  13797. border: 1px solid var(--bs-border-color);
  13798. }
  13799. .timeline-inverse > div > .timeline-item > .timeline-header {
  13800. border-bottom-color: var(--bs-border-color);
  13801. }
  13802. .direct-chat .card-body {
  13803. position: relative;
  13804. padding: 0;
  13805. overflow-x: hidden;
  13806. }
  13807. .direct-chat.chat-pane-open .direct-chat-contacts {
  13808. transform: translate(0, 0);
  13809. }
  13810. .direct-chat.timestamp-light .direct-chat-timestamp {
  13811. color: rgba(var(--bs-body-color-rgb), 0.65);
  13812. }
  13813. .direct-chat.timestamp-dark .direct-chat-timestamp {
  13814. color: rgba(var(--bs-body-color-rgb), 0.9);
  13815. }
  13816. .direct-chat-messages {
  13817. height: 250px;
  13818. padding: 10px;
  13819. overflow: auto;
  13820. transform: translate(0, 0);
  13821. }
  13822. .direct-chat-msg,
  13823. .direct-chat-text {
  13824. display: block;
  13825. }
  13826. .direct-chat-msg::after {
  13827. display: block;
  13828. clear: both;
  13829. content: "";
  13830. }
  13831. .direct-chat-msg {
  13832. margin-bottom: 10px;
  13833. }
  13834. .direct-chat-messages,
  13835. .direct-chat-contacts {
  13836. transition: transform 0.5s ease-in-out;
  13837. }
  13838. @media (prefers-reduced-motion: reduce) {
  13839. .direct-chat-messages,
  13840. .direct-chat-contacts {
  13841. transition: none;
  13842. }
  13843. }
  13844. .direct-chat-text {
  13845. border-radius: 0.5rem;
  13846. position: relative;
  13847. padding: 5px 10px;
  13848. margin: 5px 50px 0 0;
  13849. color: var(--bs-emphasis-color);
  13850. background-color: var(--bs-secondary-bg);
  13851. border: 1px solid var(--bs-border-color);
  13852. }
  13853. .direct-chat-text::after, .direct-chat-text::before {
  13854. position: absolute;
  13855. top: 15px;
  13856. left: 100%;
  13857. width: 0;
  13858. height: 0;
  13859. pointer-events: none;
  13860. content: " ";
  13861. border: solid transparent;
  13862. border-left-color: var(--bs-border-color);
  13863. }
  13864. .direct-chat-text::after {
  13865. margin-top: -5px;
  13866. border-width: 5px;
  13867. }
  13868. .direct-chat-text::before {
  13869. margin-top: -6px;
  13870. border-width: 6px;
  13871. }
  13872. .end .direct-chat-text {
  13873. margin-left: 50px;
  13874. margin-right: 0;
  13875. }
  13876. .end .direct-chat-text::after, .end .direct-chat-text::before {
  13877. left: auto;
  13878. right: 100%;
  13879. border-left-color: transparent;
  13880. border-right-color: var(--bs-border-color);
  13881. }
  13882. .direct-chat-img {
  13883. border-radius: 50%;
  13884. float: right;
  13885. width: 40px;
  13886. height: 40px;
  13887. }
  13888. .end .direct-chat-img {
  13889. float: left;
  13890. }
  13891. .direct-chat-infos {
  13892. display: block;
  13893. margin-bottom: 2px;
  13894. font-size: 0.875rem;
  13895. }
  13896. .direct-chat-name {
  13897. font-weight: 600;
  13898. }
  13899. .direct-chat-timestamp {
  13900. color: rgba(var(--bs-body-color-rgb), 0.75);
  13901. }
  13902. .direct-chat-contacts-open .direct-chat-contacts {
  13903. transform: translate(0, 0);
  13904. }
  13905. .direct-chat-contacts {
  13906. position: absolute;
  13907. top: 0;
  13908. bottom: 0;
  13909. width: 100%;
  13910. height: 250px;
  13911. overflow: auto;
  13912. color: var(--bs-body-bg);
  13913. background-color: var(--bs-body-color);
  13914. transform: translate(-101%, 0);
  13915. }
  13916. .direct-chat-contacts-light {
  13917. background-color: var(--bs-light-bg-subtle);
  13918. }
  13919. .direct-chat-contacts-light .contacts-list-name {
  13920. color: var(--bs-body-color);
  13921. }
  13922. .direct-chat-contacts-light .contacts-list-date {
  13923. color: var(--bs-secondary-color);
  13924. }
  13925. .direct-chat-contacts-light .contacts-list-msg {
  13926. color: var(--bs-secondary-color);
  13927. }
  13928. .contacts-list {
  13929. padding-right: 0;
  13930. list-style: none;
  13931. }
  13932. .contacts-list > li::after {
  13933. display: block;
  13934. clear: both;
  13935. content: "";
  13936. }
  13937. .contacts-list > li {
  13938. padding: 10px;
  13939. margin: 0;
  13940. text-decoration: none;
  13941. border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  13942. }
  13943. .contacts-list > li:last-of-type {
  13944. border-bottom: 0;
  13945. }
  13946. .contacts-list > li a {
  13947. text-decoration: none;
  13948. }
  13949. .contacts-list-img {
  13950. border-radius: 50%;
  13951. float: right;
  13952. width: 40px;
  13953. }
  13954. .contacts-list-info {
  13955. margin-right: 45px;
  13956. color: var(--bs-body-bg);
  13957. }
  13958. .contacts-list-name,
  13959. .contacts-list-status {
  13960. display: block;
  13961. }
  13962. .contacts-list-name {
  13963. font-weight: 600;
  13964. }
  13965. .contacts-list-status {
  13966. font-size: 0.875rem;
  13967. }
  13968. .contacts-list-date {
  13969. font-weight: 400;
  13970. color: var(--bs-secondary-bg);
  13971. }
  13972. .contacts-list-msg {
  13973. color: var(--bs-secondary-bg);
  13974. }
  13975. .end > .direct-chat-text {
  13976. color: var(--lte-direct-chat-color);
  13977. background-color: var(--lte-direct-chat-bg);
  13978. border-color: var(--lte-direct-chat-bg);
  13979. }
  13980. .end > .direct-chat-text::after, .end > .direct-chat-text::before {
  13981. border-right-color: var(--lte-direct-chat-bg);
  13982. }
  13983. .direct-chat-primary {
  13984. --lte-direct-chat-color: #fff;
  13985. --lte-direct-chat-bg: #0d6efd;
  13986. }
  13987. .direct-chat-secondary {
  13988. --lte-direct-chat-color: #fff;
  13989. --lte-direct-chat-bg: #6c757d;
  13990. }
  13991. .direct-chat-success {
  13992. --lte-direct-chat-color: #fff;
  13993. --lte-direct-chat-bg: #198754;
  13994. }
  13995. .direct-chat-info {
  13996. --lte-direct-chat-color: #000;
  13997. --lte-direct-chat-bg: #0dcaf0;
  13998. }
  13999. .direct-chat-warning {
  14000. --lte-direct-chat-color: #000;
  14001. --lte-direct-chat-bg: #ffc107;
  14002. }
  14003. .direct-chat-danger {
  14004. --lte-direct-chat-color: #fff;
  14005. --lte-direct-chat-bg: #dc3545;
  14006. }
  14007. .direct-chat-light {
  14008. --lte-direct-chat-color: #000;
  14009. --lte-direct-chat-bg: #f8f9fa;
  14010. }
  14011. .direct-chat-dark {
  14012. --lte-direct-chat-color: #fff;
  14013. --lte-direct-chat-bg: #212529;
  14014. }
  14015. .toast-primary {
  14016. --bs-toast-header-color: #fff;
  14017. --bs-toast-header-bg: #0d6efd;
  14018. --bs-toast-header-border-color: #0d6efd;
  14019. --bs-toast-border-color: #0d6efd;
  14020. --bs-toast-bg: var(--bs-primary-bg-subtle);
  14021. }
  14022. .toast-primary .btn-close {
  14023. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  14024. }
  14025. .toast-secondary {
  14026. --bs-toast-header-color: #fff;
  14027. --bs-toast-header-bg: #6c757d;
  14028. --bs-toast-header-border-color: #6c757d;
  14029. --bs-toast-border-color: #6c757d;
  14030. --bs-toast-bg: var(--bs-secondary-bg-subtle);
  14031. }
  14032. .toast-secondary .btn-close {
  14033. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  14034. }
  14035. .toast-success {
  14036. --bs-toast-header-color: #fff;
  14037. --bs-toast-header-bg: #198754;
  14038. --bs-toast-header-border-color: #198754;
  14039. --bs-toast-border-color: #198754;
  14040. --bs-toast-bg: var(--bs-success-bg-subtle);
  14041. }
  14042. .toast-success .btn-close {
  14043. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  14044. }
  14045. .toast-info {
  14046. --bs-toast-header-color: #000;
  14047. --bs-toast-header-bg: #0dcaf0;
  14048. --bs-toast-header-border-color: #0dcaf0;
  14049. --bs-toast-border-color: #0dcaf0;
  14050. --bs-toast-bg: var(--bs-info-bg-subtle);
  14051. }
  14052. .toast-warning {
  14053. --bs-toast-header-color: #000;
  14054. --bs-toast-header-bg: #ffc107;
  14055. --bs-toast-header-border-color: #ffc107;
  14056. --bs-toast-border-color: #ffc107;
  14057. --bs-toast-bg: var(--bs-warning-bg-subtle);
  14058. }
  14059. .toast-danger {
  14060. --bs-toast-header-color: #fff;
  14061. --bs-toast-header-bg: #dc3545;
  14062. --bs-toast-header-border-color: #dc3545;
  14063. --bs-toast-border-color: #dc3545;
  14064. --bs-toast-bg: var(--bs-danger-bg-subtle);
  14065. }
  14066. .toast-danger .btn-close {
  14067. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  14068. }
  14069. .toast-light {
  14070. --bs-toast-header-color: #000;
  14071. --bs-toast-header-bg: #f8f9fa;
  14072. --bs-toast-header-border-color: #f8f9fa;
  14073. --bs-toast-border-color: #f8f9fa;
  14074. --bs-toast-bg: var(--bs-light-bg-subtle);
  14075. }
  14076. .toast-dark {
  14077. --bs-toast-header-color: #fff;
  14078. --bs-toast-header-bg: #212529;
  14079. --bs-toast-header-border-color: #212529;
  14080. --bs-toast-border-color: #212529;
  14081. --bs-toast-bg: var(--bs-dark-bg-subtle);
  14082. }
  14083. .toast-dark .btn-close {
  14084. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  14085. }
  14086. [data-bs-theme=dark] .toast-info .btn-close {
  14087. --bs-btn-close-white-filter: none;
  14088. }
  14089. [data-bs-theme=dark] .toast-warning .btn-close {
  14090. --bs-btn-close-white-filter: none;
  14091. }
  14092. [data-bs-theme=dark] .toast-light .btn-close {
  14093. --bs-btn-close-white-filter: none;
  14094. }
  14095. .login-logo,
  14096. .register-logo {
  14097. margin-bottom: 0.9rem;
  14098. font-size: 2.1rem;
  14099. font-weight: 300;
  14100. text-align: center;
  14101. }
  14102. .login-logo a,
  14103. .register-logo a {
  14104. color: var(--bs-secondary-color);
  14105. text-decoration: none;
  14106. }
  14107. .login-page,
  14108. .register-page {
  14109. display: flex;
  14110. flex-direction: column;
  14111. align-items: center;
  14112. justify-content: center;
  14113. min-height: 100vh;
  14114. }
  14115. .login-box,
  14116. .register-box {
  14117. width: 400px;
  14118. }
  14119. @media (max-width: 576px) {
  14120. .login-box,
  14121. .register-box {
  14122. width: 90%;
  14123. margin-top: 0.5rem;
  14124. }
  14125. }
  14126. .login-box .card,
  14127. .register-box .card {
  14128. margin-bottom: 0;
  14129. }
  14130. .login-card-body,
  14131. .register-card-body {
  14132. padding: 20px;
  14133. color: var(--bs-secondary-color);
  14134. background-color: var(--bs-body-bg);
  14135. border-top: 0;
  14136. }
  14137. .login-card-body .input-group .form-control:focus,
  14138. .register-card-body .input-group .form-control:focus {
  14139. box-shadow: none;
  14140. }
  14141. .login-card-body .input-group .form-control:focus ~ .input-group-prepend .input-group-text,
  14142. .login-card-body .input-group .form-control:focus ~ .input-group-append .input-group-text,
  14143. .register-card-body .input-group .form-control:focus ~ .input-group-prepend .input-group-text,
  14144. .register-card-body .input-group .form-control:focus ~ .input-group-append .input-group-text {
  14145. border-color: rgb(134, 182.5, 254);
  14146. }
  14147. .login-card-body .input-group .form-control.is-valid:focus,
  14148. .register-card-body .input-group .form-control.is-valid:focus {
  14149. box-shadow: none;
  14150. }
  14151. .login-card-body .input-group .form-control.is-valid ~ .input-group-prepend .input-group-text,
  14152. .login-card-body .input-group .form-control.is-valid ~ .input-group-append .input-group-text,
  14153. .register-card-body .input-group .form-control.is-valid ~ .input-group-prepend .input-group-text,
  14154. .register-card-body .input-group .form-control.is-valid ~ .input-group-append .input-group-text {
  14155. border-color: #198754;
  14156. }
  14157. .login-card-body .input-group .form-control.is-invalid:focus,
  14158. .register-card-body .input-group .form-control.is-invalid:focus {
  14159. box-shadow: none;
  14160. }
  14161. .login-card-body .input-group .form-control.is-invalid ~ .input-group-append .input-group-text,
  14162. .register-card-body .input-group .form-control.is-invalid ~ .input-group-append .input-group-text {
  14163. border-color: #dc3545;
  14164. }
  14165. .login-card-body .input-group .input-group-text,
  14166. .register-card-body .input-group .input-group-text {
  14167. color: var(--bs-secondary-color);
  14168. background-color: transparent;
  14169. border-top-left-radius: 0.375rem;
  14170. border-bottom-left-radius: 0.375rem;
  14171. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  14172. }
  14173. @media (prefers-reduced-motion: reduce) {
  14174. .login-card-body .input-group .input-group-text,
  14175. .register-card-body .input-group .input-group-text {
  14176. transition: none;
  14177. }
  14178. }
  14179. .login-box-msg,
  14180. .register-box-msg {
  14181. padding: 0 20px 20px;
  14182. margin: 0;
  14183. text-align: center;
  14184. }
  14185. .social-auth-links {
  14186. margin: 10px 0;
  14187. }
  14188. .lockscreen .lockscreen-name {
  14189. font-weight: 600;
  14190. text-align: center;
  14191. }
  14192. .lockscreen .lockscreen-logo {
  14193. margin-bottom: 25px;
  14194. font-size: 35px;
  14195. font-weight: 300;
  14196. text-align: center;
  14197. }
  14198. .lockscreen .lockscreen-logo a {
  14199. color: var(--bs-emphasis-color);
  14200. text-decoration: none;
  14201. }
  14202. .lockscreen .lockscreen-wrapper {
  14203. max-width: 400px;
  14204. margin: 0 auto;
  14205. margin-top: 10%;
  14206. }
  14207. .lockscreen .lockscreen-item {
  14208. position: relative;
  14209. width: 290px;
  14210. padding: 0;
  14211. margin: 10px auto 30px;
  14212. background-color: var(--bs-body-bg);
  14213. border-radius: 4px;
  14214. }
  14215. .lockscreen .lockscreen-image {
  14216. position: absolute;
  14217. top: -25px;
  14218. right: -10px;
  14219. z-index: 10;
  14220. padding: 5px;
  14221. background-color: var(--bs-body-bg);
  14222. border-radius: 50%;
  14223. }
  14224. .lockscreen .lockscreen-image > img {
  14225. border-radius: 50%;
  14226. width: 70px;
  14227. height: 70px;
  14228. }
  14229. .lockscreen .lockscreen-credentials {
  14230. margin-right: 70px;
  14231. }
  14232. .lockscreen .lockscreen-credentials .form-control {
  14233. border: 0;
  14234. }
  14235. .lockscreen .lockscreen-credentials .btn {
  14236. padding: 0 10px;
  14237. border: 0;
  14238. }
  14239. .lockscreen .lockscreen-footer {
  14240. margin-top: 10px;
  14241. }
  14242. .img-size-64,
  14243. .img-size-50,
  14244. .img-size-32 {
  14245. height: auto;
  14246. }
  14247. .img-size-64 {
  14248. width: 64px;
  14249. }
  14250. .img-size-50 {
  14251. width: 50px;
  14252. }
  14253. .img-size-32 {
  14254. width: 32px;
  14255. }
  14256. /* ==========================================================================
  14257. AdminLTE Accessibility Styles - WCAG 2.1 AA Compliance
  14258. ========================================================================== */
  14259. /* Skip Links - WCAG 2.4.1: Bypass Blocks */
  14260. .skip-link {
  14261. position: absolute;
  14262. top: -40px;
  14263. right: 6px;
  14264. z-index: 999999;
  14265. padding: 8px 16px;
  14266. font-weight: 600;
  14267. color: var(--bs-white);
  14268. text-decoration: none;
  14269. background: var(--bs-primary);
  14270. }
  14271. .skip-link:focus {
  14272. top: 0;
  14273. outline: 3px solid var(--bs-warning);
  14274. outline-offset: 2px;
  14275. }
  14276. .skip-link:hover {
  14277. color: var(--bs-white);
  14278. text-decoration: none;
  14279. background: var(--bs-primary-emphasis);
  14280. }
  14281. /* Enhanced Focus Indicators - WCAG 2.4.7: Focus Visible */
  14282. .focus-enhanced:focus {
  14283. outline: 3px solid var(--bs-focus-ring-color, #0d6efd);
  14284. outline-offset: 2px;
  14285. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  14286. }
  14287. /* High Contrast Mode Support */
  14288. @media (prefers-contrast: high) {
  14289. .card {
  14290. border: 2px solid;
  14291. }
  14292. .btn {
  14293. border-width: 2px;
  14294. }
  14295. .nav-link {
  14296. border: 1px solid transparent;
  14297. }
  14298. .nav-link:hover, .nav-link:focus {
  14299. border-color: currentcolor;
  14300. }
  14301. }
  14302. /* Reduced Motion Support - WCAG 2.3.3: Animation from Interactions */
  14303. @media (prefers-reduced-motion: reduce) {
  14304. *,
  14305. *::before,
  14306. *::after {
  14307. transition-duration: 0.01ms !important;
  14308. animation-duration: 0.01ms !important;
  14309. animation-iteration-count: 1 !important;
  14310. scroll-behavior: auto !important;
  14311. }
  14312. .fade {
  14313. opacity: 1 !important;
  14314. /* stylelint-disable-next-line property-disallowed-list */
  14315. transition: none !important;
  14316. }
  14317. .collapse {
  14318. /* stylelint-disable-next-line property-disallowed-list */
  14319. transition: none !important;
  14320. }
  14321. .modal.fade .modal-dialog {
  14322. transform: none !important;
  14323. }
  14324. }
  14325. /* Screen Reader Only Content */
  14326. .sr-only {
  14327. position: absolute !important;
  14328. width: 1px !important;
  14329. height: 1px !important;
  14330. padding: 0 !important;
  14331. margin: -1px !important;
  14332. overflow: hidden !important;
  14333. clip: rect(0, 0, 0, 0) !important;
  14334. white-space: nowrap !important;
  14335. border: 0 !important;
  14336. }
  14337. .sr-only-focusable:focus {
  14338. position: static !important;
  14339. width: auto !important;
  14340. height: auto !important;
  14341. padding: inherit !important;
  14342. margin: inherit !important;
  14343. overflow: visible !important;
  14344. clip: auto !important;
  14345. white-space: normal !important;
  14346. }
  14347. /* Focus Trap Utilities */
  14348. .focus-trap:focus {
  14349. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  14350. }
  14351. /* Accessible Color Combinations - WCAG 1.4.3: Contrast (Minimum) */
  14352. .text-accessible-primary {
  14353. color: #003d82; /* 4.5:1 contrast on white */
  14354. }
  14355. .text-accessible-success {
  14356. color: #0f5132; /* 4.5:1 contrast on white */
  14357. }
  14358. .text-accessible-danger {
  14359. color: #842029; /* 4.5:1 contrast on white */
  14360. }
  14361. .text-accessible-warning {
  14362. color: #664d03; /* 4.5:1 contrast on white */
  14363. }
  14364. /* ARIA Live Regions */
  14365. .live-region {
  14366. position: absolute;
  14367. right: -10000px;
  14368. width: 1px;
  14369. height: 1px;
  14370. overflow: hidden;
  14371. }
  14372. .live-region.live-region-visible {
  14373. position: static;
  14374. right: auto;
  14375. width: auto;
  14376. height: auto;
  14377. overflow: visible;
  14378. }
  14379. /* Enhanced Error States - WCAG 3.3.1: Error Identification */
  14380. .form-control.is-invalid {
  14381. border-color: var(--bs-danger);
  14382. }
  14383. .form-control.is-invalid:focus {
  14384. border-color: var(--bs-danger);
  14385. box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  14386. }
  14387. .invalid-feedback[role=alert] {
  14388. font-weight: 600;
  14389. }
  14390. /* Target Size - WCAG 2.5.8: Target Size (Minimum) */
  14391. .touch-target {
  14392. min-width: 44px;
  14393. min-height: 44px;
  14394. }
  14395. .touch-target.touch-target-small {
  14396. min-width: 24px;
  14397. min-height: 24px;
  14398. }
  14399. /* Table Accessibility */
  14400. .table-accessible th {
  14401. font-weight: 600;
  14402. background-color: var(--bs-secondary-bg);
  14403. }
  14404. .table-accessible th[scope=col] {
  14405. border-bottom: 2px solid var(--bs-border-color);
  14406. }
  14407. .table-accessible th[scope=row] {
  14408. border-left: 2px solid var(--bs-border-color);
  14409. }
  14410. .table-accessible caption {
  14411. padding: 0.75rem;
  14412. font-weight: 600;
  14413. color: var(--bs-secondary);
  14414. text-align: right;
  14415. caption-side: top;
  14416. }
  14417. /* Navigation Landmarks */
  14418. nav[role=navigation]:not([aria-label]):not([aria-labelledby])::before {
  14419. position: absolute;
  14420. right: -10000px;
  14421. content: "Navigation";
  14422. }
  14423. /* Form Fieldset Styling */
  14424. fieldset {
  14425. padding: 1rem;
  14426. margin-bottom: 1rem;
  14427. border: 1px solid var(--bs-border-color);
  14428. }
  14429. fieldset legend {
  14430. padding: 0 0.5rem;
  14431. margin-bottom: 0.5rem;
  14432. font-size: 1.1em;
  14433. font-weight: 600;
  14434. }
  14435. /* Loading States */
  14436. .loading[aria-busy=true] {
  14437. position: relative;
  14438. pointer-events: none;
  14439. }
  14440. .loading[aria-busy=true]::after {
  14441. position: absolute;
  14442. top: 50%;
  14443. right: 50%;
  14444. width: 20px;
  14445. height: 20px;
  14446. margin-top: -10px;
  14447. margin-right: -10px;
  14448. content: "";
  14449. border: 2px solid var(--bs-primary);
  14450. border-top-color: transparent;
  14451. animation: spin 1s linear infinite;
  14452. }
  14453. @media (prefers-reduced-motion: reduce) {
  14454. .loading[aria-busy=true]::after {
  14455. border-top-color: var(--bs-primary);
  14456. animation: none;
  14457. }
  14458. }
  14459. @keyframes spin {
  14460. to {
  14461. transform: rotate(-360deg);
  14462. }
  14463. }
  14464. /* Dark Mode Accessibility */
  14465. [data-bs-theme=dark] .text-accessible-primary {
  14466. color: #6ea8fe;
  14467. }
  14468. [data-bs-theme=dark] .text-accessible-success {
  14469. color: #75b798;
  14470. }
  14471. [data-bs-theme=dark] .text-accessible-danger {
  14472. color: #f1aeb5;
  14473. }
  14474. [data-bs-theme=dark] .text-accessible-warning {
  14475. color: #ffda6a;
  14476. }
  14477. /* Print Accessibility */
  14478. @media print {
  14479. .skip-link,
  14480. .btn,
  14481. .nav-link {
  14482. color: #000 !important;
  14483. background: transparent !important;
  14484. border: 1px solid #000 !important;
  14485. }
  14486. a[href^=http]::after {
  14487. font-size: 0.8em;
  14488. content: " (" attr(href) ")";
  14489. }
  14490. /* Print Layout Fix - Ensure sidebar and main content are both visible */
  14491. .app-wrapper {
  14492. display: grid !important;
  14493. grid-template-rows: auto 1fr auto !important;
  14494. grid-template-columns: auto 1fr !important;
  14495. }
  14496. .sidebar-overlay {
  14497. display: none !important;
  14498. }
  14499. .app-sidebar {
  14500. position: static !important;
  14501. display: block !important;
  14502. min-width: 200px !important;
  14503. max-width: 200px !important;
  14504. max-height: none !important;
  14505. margin-right: 0 !important;
  14506. overflow: visible !important;
  14507. }
  14508. .sidebar-wrapper {
  14509. height: auto !important;
  14510. overflow: visible !important;
  14511. }
  14512. .app-header {
  14513. position: static !important;
  14514. }
  14515. .app-main {
  14516. width: auto !important;
  14517. max-width: 100% !important;
  14518. overflow: visible !important;
  14519. }
  14520. .app-content {
  14521. overflow: visible !important;
  14522. }
  14523. .app-footer {
  14524. position: static !important;
  14525. }
  14526. }
  14527. /*# sourceMappingURL=adminlte.rtl.css.map */