adminlte.rtl.css 354 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016140171401814019140201402114022140231402414025140261402714028140291403014031140321403314034140351403614037140381403914040140411404214043140441404514046140471404814049140501405114052140531405414055140561405714058140591406014061140621406314064140651406614067140681406914070140711407214073140741407514076140771407814079140801408114082140831408414085140861408714088140891409014091140921409314094140951409614097140981409914100141011410214103141041410514106141071410814109141101411114112141131411414115141161411714118141191412014121141221412314124141251412614127141281412914130141311413214133141341413514136141371413814139141401414114142141431414414145141461414714148141491415014151141521415314154141551415614157141581415914160141611416214163141641416514166141671416814169141701417114172141731417414175141761417714178141791418014181141821418314184141851418614187141881418914190141911419214193141941419514196141971419814199142001420114202142031420414205142061420714208142091421014211142121421314214142151421614217142181421914220142211422214223142241422514226142271422814229142301423114232142331423414235142361423714238142391424014241142421424314244142451424614247142481424914250142511425214253142541425514256142571425814259142601426114262142631426414265142661426714268142691427014271142721427314274142751427614277142781427914280142811428214283142841428514286142871428814289142901429114292142931429414295142961429714298142991430014301143021430314304143051430614307143081430914310143111431214313143141431514316143171431814319143201432114322143231432414325143261432714328143291433014331143321433314334143351433614337143381433914340143411434214343143441434514346143471434814349143501435114352143531435414355143561435714358143591436014361143621436314364143651436614367143681436914370143711437214373143741437514376143771437814379143801438114382143831438414385143861438714388143891439014391143921439314394143951439614397143981439914400144011440214403144041440514406144071440814409144101441114412144131441414415144161441714418144191442014421144221442314424144251442614427144281442914430144311443214433144341443514436144371443814439144401444114442144431444414445144461444714448144491445014451144521445314454144551445614457144581445914460144611446214463144641446514466144671446814469144701447114472144731447414475144761447714478144791448014481144821448314484144851448614487144881448914490144911449214493144941449514496144971449814499145001450114502145031450414505145061450714508145091451014511145121451314514145151451614517145181451914520145211452214523145241452514526145271452814529145301453114532145331453414535145361453714538145391454014541145421454314544145451454614547145481454914550145511455214553145541455514556145571455814559145601456114562145631456414565145661456714568145691457014571145721457314574145751457614577145781457914580145811458214583145841458514586145871458814589145901459114592145931459414595145961459714598145991460014601146021460314604146051460614607146081460914610146111461214613146141461514616146171461814619146201462114622146231462414625146261462714628146291463014631146321463314634146351463614637146381463914640146411464214643146441464514646146471464814649146501465114652146531465414655146561465714658146591466014661146621466314664146651466614667146681466914670146711467214673146741467514676146771467814679146801468114682146831468414685146861468714688146891469014691146921469314694146951469614697146981469914700147011470214703147041470514706147071470814709147101471114712147131471414715147161471714718147191472014721147221472314724147251472614727147281472914730147311473214733147341473514736147371473814739147401474114742147431474414745147461474714748147491475014751147521475314754147551475614757147581475914760147611476214763147641476514766147671476814769147701477114772147731477414775147761477714778147791478014781147821478314784147851478614787147881478914790147911479214793147941479514796147971479814799148001480114802148031480414805148061480714808148091481014811148121481314814148151481614817148181481914820148211482214823148241482514826148271482814829148301483114832148331483414835148361483714838148391484014841148421484314844148451484614847148481484914850148511485214853148541485514856148571485814859148601486114862148631486414865148661486714868148691487014871148721487314874148751487614877148781487914880148811488214883148841488514886148871488814889148901489114892148931489414895148961489714898148991490014901149021490314904149051490614907149081490914910149111491214913149141491514916149171491814919149201492114922149231492414925149261492714928149291493014931149321493314934149351493614937149381493914940149411494214943149441494514946149471494814949149501495114952149531495414955149561495714958149591496014961149621496314964149651496614967149681496914970149711497214973149741497514976149771497814979149801498114982149831498414985149861498714988149891499014991149921499314994149951499614997149981499915000150011500215003150041500515006150071500815009150101501115012150131501415015150161501715018150191502015021150221502315024150251502615027150281502915030150311503215033150341503515036150371503815039150401504115042150431504415045150461504715048150491505015051150521505315054150551505615057150581505915060150611506215063150641506515066150671506815069150701507115072150731507415075150761507715078150791508015081150821508315084150851508615087150881508915090150911509215093150941509515096150971509815099151001510115102151031510415105151061510715108151091511015111151121511315114151151511615117151181511915120151211512215123151241512515126151271512815129151301513115132151331513415135151361513715138151391514015141151421514315144151451514615147151481514915150151511515215153151541515515156151571515815159151601516115162151631516415165151661516715168151691517015171151721517315174151751517615177151781517915180151811518215183151841518515186151871518815189151901519115192151931519415195151961519715198151991520015201152021520315204152051520615207152081520915210152111521215213152141521515216152171521815219152201522115222152231522415225152261522715228152291523015231152321523315234152351523615237152381523915240152411524215243152441524515246152471524815249152501525115252152531525415255152561525715258152591526015261152621526315264152651526615267152681526915270152711527215273152741527515276152771527815279152801528115282152831528415285152861528715288152891529015291152921529315294152951529615297152981529915300153011530215303153041530515306153071530815309153101531115312153131531415315153161531715318153191532015321153221532315324153251532615327153281532915330153311533215333153341533515336153371533815339153401534115342153431534415345153461534715348153491535015351153521535315354153551535615357153581535915360153611536215363153641536515366153671536815369153701537115372153731537415375153761537715378153791538015381153821538315384153851538615387153881538915390153911539215393153941539515396153971539815399154001540115402154031540415405154061540715408154091541015411154121541315414154151541615417154181541915420154211542215423154241542515426154271542815429154301543115432154331543415435154361543715438154391544015441154421544315444154451544615447154481544915450154511545215453154541545515456154571545815459154601546115462154631546415465154661546715468154691547015471154721547315474154751547615477154781547915480154811548215483154841548515486154871548815489154901549115492154931549415495154961549715498154991550015501155021550315504155051550615507155081550915510155111551215513155141551515516155171551815519155201552115522155231552415525155261552715528155291553015531155321553315534155351553615537155381553915540155411554215543155441554515546155471554815549155501555115552155531555415555155561555715558155591556015561155621556315564155651556615567155681556915570155711557215573155741557515576155771557815579155801558115582155831558415585155861558715588155891559015591155921559315594155951559615597155981559915600156011560215603
  1. @charset "UTF-8";
  2. /*!
  3. * AdminLTE v4.0.0-rc3
  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. -moz-appearance: none;
  1971. appearance: none;
  1972. background-color: var(--bs-body-bg);
  1973. background-clip: padding-box;
  1974. border: var(--bs-border-width) solid var(--bs-border-color);
  1975. border-radius: var(--bs-border-radius);
  1976. box-shadow: var(--bs-box-shadow-inset);
  1977. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  1978. }
  1979. @media (prefers-reduced-motion: reduce) {
  1980. .form-control {
  1981. transition: none;
  1982. }
  1983. }
  1984. .form-control[type=file] {
  1985. overflow: hidden;
  1986. }
  1987. .form-control[type=file]:not(:disabled):not([readonly]) {
  1988. cursor: pointer;
  1989. }
  1990. .form-control:focus {
  1991. color: var(--bs-body-color);
  1992. background-color: var(--bs-body-bg);
  1993. border-color: rgb(134, 182.5, 254);
  1994. outline: 0;
  1995. box-shadow: var(--bs-box-shadow-inset), 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  1996. }
  1997. .form-control::-webkit-date-and-time-value {
  1998. min-width: 85px;
  1999. height: 1.5em;
  2000. margin: 0;
  2001. }
  2002. .form-control::-webkit-datetime-edit {
  2003. display: block;
  2004. padding: 0;
  2005. }
  2006. .form-control::-moz-placeholder {
  2007. color: var(--bs-secondary-color);
  2008. opacity: 1;
  2009. }
  2010. .form-control::placeholder {
  2011. color: var(--bs-secondary-color);
  2012. opacity: 1;
  2013. }
  2014. .form-control:disabled {
  2015. background-color: var(--bs-secondary-bg);
  2016. opacity: 1;
  2017. }
  2018. .form-control::file-selector-button {
  2019. padding: 0.375rem 0.75rem;
  2020. margin: -0.375rem -0.75rem;
  2021. margin-inline-end: 0.75rem;
  2022. color: var(--bs-body-color);
  2023. background-color: var(--bs-tertiary-bg);
  2024. pointer-events: none;
  2025. border-color: inherit;
  2026. border-style: solid;
  2027. border-width: 0;
  2028. border-inline-end-width: var(--bs-border-width);
  2029. border-radius: 0;
  2030. 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;
  2031. }
  2032. @media (prefers-reduced-motion: reduce) {
  2033. .form-control::file-selector-button {
  2034. transition: none;
  2035. }
  2036. }
  2037. .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  2038. background-color: var(--bs-secondary-bg);
  2039. }
  2040. .form-control-plaintext {
  2041. display: block;
  2042. width: 100%;
  2043. padding: 0.375rem 0;
  2044. margin-bottom: 0;
  2045. line-height: 1.5;
  2046. color: var(--bs-body-color);
  2047. background-color: transparent;
  2048. border: solid transparent;
  2049. border-width: var(--bs-border-width) 0;
  2050. }
  2051. .form-control-plaintext:focus {
  2052. outline: 0;
  2053. }
  2054. .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  2055. padding-left: 0;
  2056. padding-right: 0;
  2057. }
  2058. .form-control-sm {
  2059. min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  2060. padding: 0.25rem 0.5rem;
  2061. font-size: 0.875rem;
  2062. border-radius: var(--bs-border-radius-sm);
  2063. }
  2064. .form-control-sm::file-selector-button {
  2065. padding: 0.25rem 0.5rem;
  2066. margin: -0.25rem -0.5rem;
  2067. margin-inline-end: 0.5rem;
  2068. }
  2069. .form-control-lg {
  2070. min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  2071. padding: 0.5rem 1rem;
  2072. font-size: 1.25rem;
  2073. border-radius: var(--bs-border-radius-lg);
  2074. }
  2075. .form-control-lg::file-selector-button {
  2076. padding: 0.5rem 1rem;
  2077. margin: -0.5rem -1rem;
  2078. margin-inline-end: 1rem;
  2079. }
  2080. textarea.form-control {
  2081. min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  2082. }
  2083. textarea.form-control-sm {
  2084. min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  2085. }
  2086. textarea.form-control-lg {
  2087. min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  2088. }
  2089. .form-control-color {
  2090. width: 3rem;
  2091. height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  2092. padding: 0.375rem;
  2093. }
  2094. .form-control-color:not(:disabled):not([readonly]) {
  2095. cursor: pointer;
  2096. }
  2097. .form-control-color::-moz-color-swatch {
  2098. border: 0 !important;
  2099. border-radius: var(--bs-border-radius);
  2100. }
  2101. .form-control-color::-webkit-color-swatch {
  2102. border: 0 !important;
  2103. border-radius: var(--bs-border-radius);
  2104. }
  2105. .form-control-color.form-control-sm {
  2106. height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  2107. }
  2108. .form-control-color.form-control-lg {
  2109. height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  2110. }
  2111. .form-select {
  2112. --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");
  2113. display: block;
  2114. width: 100%;
  2115. padding: 0.375rem 0.75rem 0.375rem 2.25rem;
  2116. font-size: 1rem;
  2117. font-weight: 400;
  2118. line-height: 1.5;
  2119. color: var(--bs-body-color);
  2120. -webkit-appearance: none;
  2121. -moz-appearance: none;
  2122. appearance: none;
  2123. background-color: var(--bs-body-bg);
  2124. background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  2125. background-repeat: no-repeat;
  2126. background-position: left 0.75rem center;
  2127. background-size: 16px 12px;
  2128. border: var(--bs-border-width) solid var(--bs-border-color);
  2129. border-radius: var(--bs-border-radius);
  2130. box-shadow: var(--bs-box-shadow-inset);
  2131. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2132. }
  2133. @media (prefers-reduced-motion: reduce) {
  2134. .form-select {
  2135. transition: none;
  2136. }
  2137. }
  2138. .form-select:focus {
  2139. border-color: rgb(134, 182.5, 254);
  2140. outline: 0;
  2141. box-shadow: var(--bs-box-shadow-inset), 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2142. }
  2143. .form-select[multiple], .form-select[size]:not([size="1"]) {
  2144. padding-left: 0.75rem;
  2145. background-image: none;
  2146. }
  2147. .form-select:disabled {
  2148. background-color: var(--bs-secondary-bg);
  2149. }
  2150. .form-select:-moz-focusring {
  2151. color: transparent;
  2152. text-shadow: 0 0 0 var(--bs-body-color);
  2153. }
  2154. .form-select-sm {
  2155. padding-top: 0.25rem;
  2156. padding-bottom: 0.25rem;
  2157. padding-right: 0.5rem;
  2158. font-size: 0.875rem;
  2159. border-radius: var(--bs-border-radius-sm);
  2160. }
  2161. .form-select-lg {
  2162. padding-top: 0.5rem;
  2163. padding-bottom: 0.5rem;
  2164. padding-right: 1rem;
  2165. font-size: 1.25rem;
  2166. border-radius: var(--bs-border-radius-lg);
  2167. }
  2168. [data-bs-theme=dark] .form-select {
  2169. --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");
  2170. }
  2171. .form-check {
  2172. display: block;
  2173. min-height: 1.5rem;
  2174. padding-right: 1.5em;
  2175. margin-bottom: 0.125rem;
  2176. }
  2177. .form-check .form-check-input {
  2178. float: right;
  2179. margin-right: -1.5em;
  2180. }
  2181. .form-check-reverse {
  2182. padding-left: 1.5em;
  2183. padding-right: 0;
  2184. text-align: left;
  2185. }
  2186. .form-check-reverse .form-check-input {
  2187. float: left;
  2188. margin-left: -1.5em;
  2189. margin-right: 0;
  2190. }
  2191. .form-check-input {
  2192. --bs-form-check-bg: var(--bs-body-bg);
  2193. flex-shrink: 0;
  2194. width: 1em;
  2195. height: 1em;
  2196. margin-top: 0.25em;
  2197. vertical-align: top;
  2198. -webkit-appearance: none;
  2199. -moz-appearance: none;
  2200. appearance: none;
  2201. background-color: var(--bs-form-check-bg);
  2202. background-image: var(--bs-form-check-bg-image);
  2203. background-repeat: no-repeat;
  2204. background-position: center;
  2205. background-size: contain;
  2206. border: var(--bs-border-width) solid var(--bs-border-color);
  2207. -webkit-print-color-adjust: exact;
  2208. print-color-adjust: exact;
  2209. }
  2210. .form-check-input[type=checkbox] {
  2211. border-radius: 0.25em;
  2212. }
  2213. .form-check-input[type=radio] {
  2214. border-radius: 50%;
  2215. }
  2216. .form-check-input:active {
  2217. filter: brightness(90%);
  2218. }
  2219. .form-check-input:focus {
  2220. border-color: rgb(134, 182.5, 254);
  2221. outline: 0;
  2222. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2223. }
  2224. .form-check-input:checked {
  2225. background-color: #0d6efd;
  2226. border-color: #0d6efd;
  2227. }
  2228. .form-check-input:checked[type=checkbox] {
  2229. --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");
  2230. }
  2231. .form-check-input:checked[type=radio] {
  2232. --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");
  2233. }
  2234. .form-check-input[type=checkbox]:indeterminate {
  2235. background-color: #0d6efd;
  2236. border-color: #0d6efd;
  2237. --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");
  2238. }
  2239. .form-check-input:disabled {
  2240. pointer-events: none;
  2241. filter: none;
  2242. opacity: 0.5;
  2243. }
  2244. .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  2245. cursor: default;
  2246. opacity: 0.5;
  2247. }
  2248. .form-switch {
  2249. padding-right: 2.5em;
  2250. }
  2251. .form-switch .form-check-input {
  2252. --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");
  2253. width: 2em;
  2254. margin-right: -2.5em;
  2255. background-image: var(--bs-form-switch-bg);
  2256. background-position: right center;
  2257. border-radius: 2em;
  2258. transition: background-position 0.15s ease-in-out;
  2259. }
  2260. @media (prefers-reduced-motion: reduce) {
  2261. .form-switch .form-check-input {
  2262. transition: none;
  2263. }
  2264. }
  2265. .form-switch .form-check-input:focus {
  2266. --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");
  2267. }
  2268. .form-switch .form-check-input:checked {
  2269. background-position: left center;
  2270. --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");
  2271. }
  2272. .form-switch.form-check-reverse {
  2273. padding-left: 2.5em;
  2274. padding-right: 0;
  2275. }
  2276. .form-switch.form-check-reverse .form-check-input {
  2277. margin-left: -2.5em;
  2278. margin-right: 0;
  2279. }
  2280. .form-check-inline {
  2281. display: inline-block;
  2282. margin-left: 1rem;
  2283. }
  2284. .btn-check {
  2285. position: absolute;
  2286. clip: rect(0, 0, 0, 0);
  2287. pointer-events: none;
  2288. }
  2289. .btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  2290. pointer-events: none;
  2291. filter: none;
  2292. opacity: 0.65;
  2293. }
  2294. [data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  2295. --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");
  2296. }
  2297. .form-range {
  2298. width: 100%;
  2299. height: 1.5rem;
  2300. padding: 0;
  2301. -webkit-appearance: none;
  2302. -moz-appearance: none;
  2303. appearance: none;
  2304. background-color: transparent;
  2305. }
  2306. .form-range:focus {
  2307. outline: 0;
  2308. }
  2309. .form-range:focus::-webkit-slider-thumb {
  2310. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2311. }
  2312. .form-range:focus::-moz-range-thumb {
  2313. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2314. }
  2315. .form-range::-moz-focus-outer {
  2316. border: 0;
  2317. }
  2318. .form-range::-webkit-slider-thumb {
  2319. width: 1rem;
  2320. height: 1rem;
  2321. margin-top: -0.25rem;
  2322. -webkit-appearance: none;
  2323. appearance: none;
  2324. background-color: #0d6efd;
  2325. border: 0;
  2326. border-radius: 1rem;
  2327. box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  2328. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2329. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2330. }
  2331. @media (prefers-reduced-motion: reduce) {
  2332. .form-range::-webkit-slider-thumb {
  2333. -webkit-transition: none;
  2334. transition: none;
  2335. }
  2336. }
  2337. .form-range::-webkit-slider-thumb:active {
  2338. background-color: rgb(182.4, 211.5, 254.4);
  2339. }
  2340. .form-range::-webkit-slider-runnable-track {
  2341. width: 100%;
  2342. height: 0.5rem;
  2343. color: transparent;
  2344. cursor: pointer;
  2345. background-color: var(--bs-secondary-bg);
  2346. border-color: transparent;
  2347. border-radius: 1rem;
  2348. box-shadow: var(--bs-box-shadow-inset);
  2349. }
  2350. .form-range::-moz-range-thumb {
  2351. width: 1rem;
  2352. height: 1rem;
  2353. -moz-appearance: none;
  2354. appearance: none;
  2355. background-color: #0d6efd;
  2356. border: 0;
  2357. border-radius: 1rem;
  2358. box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  2359. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2360. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2361. }
  2362. @media (prefers-reduced-motion: reduce) {
  2363. .form-range::-moz-range-thumb {
  2364. -moz-transition: none;
  2365. transition: none;
  2366. }
  2367. }
  2368. .form-range::-moz-range-thumb:active {
  2369. background-color: rgb(182.4, 211.5, 254.4);
  2370. }
  2371. .form-range::-moz-range-track {
  2372. width: 100%;
  2373. height: 0.5rem;
  2374. color: transparent;
  2375. cursor: pointer;
  2376. background-color: var(--bs-secondary-bg);
  2377. border-color: transparent;
  2378. border-radius: 1rem;
  2379. box-shadow: var(--bs-box-shadow-inset);
  2380. }
  2381. .form-range:disabled {
  2382. pointer-events: none;
  2383. }
  2384. .form-range:disabled::-webkit-slider-thumb {
  2385. background-color: var(--bs-secondary-color);
  2386. }
  2387. .form-range:disabled::-moz-range-thumb {
  2388. background-color: var(--bs-secondary-color);
  2389. }
  2390. .form-floating {
  2391. position: relative;
  2392. }
  2393. .form-floating > .form-control,
  2394. .form-floating > .form-control-plaintext,
  2395. .form-floating > .form-select {
  2396. height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  2397. min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  2398. line-height: 1.25;
  2399. }
  2400. .form-floating > label {
  2401. position: absolute;
  2402. top: 0;
  2403. right: 0;
  2404. z-index: 2;
  2405. max-width: 100%;
  2406. height: 100%;
  2407. padding: 1rem 0.75rem;
  2408. overflow: hidden;
  2409. color: rgba(var(--bs-body-color-rgb), 0.65);
  2410. text-align: start;
  2411. text-overflow: ellipsis;
  2412. white-space: nowrap;
  2413. pointer-events: none;
  2414. border: var(--bs-border-width) solid transparent;
  2415. transform-origin: 100% 0;
  2416. transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  2417. }
  2418. @media (prefers-reduced-motion: reduce) {
  2419. .form-floating > label {
  2420. transition: none;
  2421. }
  2422. }
  2423. .form-floating > .form-control,
  2424. .form-floating > .form-control-plaintext {
  2425. padding: 1rem 0.75rem;
  2426. }
  2427. .form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  2428. color: transparent;
  2429. }
  2430. .form-floating > .form-control::placeholder,
  2431. .form-floating > .form-control-plaintext::placeholder {
  2432. color: transparent;
  2433. }
  2434. .form-floating > .form-control:not(:-moz-placeholder), .form-floating > .form-control-plaintext:not(:-moz-placeholder) {
  2435. padding-top: 1.625rem;
  2436. padding-bottom: 0.625rem;
  2437. }
  2438. .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
  2439. .form-floating > .form-control-plaintext:focus,
  2440. .form-floating > .form-control-plaintext:not(:placeholder-shown) {
  2441. padding-top: 1.625rem;
  2442. padding-bottom: 0.625rem;
  2443. }
  2444. .form-floating > .form-control:-webkit-autofill,
  2445. .form-floating > .form-control-plaintext:-webkit-autofill {
  2446. padding-top: 1.625rem;
  2447. padding-bottom: 0.625rem;
  2448. }
  2449. .form-floating > .form-select {
  2450. padding-top: 1.625rem;
  2451. padding-bottom: 0.625rem;
  2452. padding-right: 0.75rem;
  2453. }
  2454. .form-floating > .form-control:not(:-moz-placeholder) ~ label {
  2455. transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
  2456. }
  2457. .form-floating > .form-control:focus ~ label,
  2458. .form-floating > .form-control:not(:placeholder-shown) ~ label,
  2459. .form-floating > .form-control-plaintext ~ label,
  2460. .form-floating > .form-select ~ label {
  2461. transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
  2462. }
  2463. .form-floating > .form-control:-webkit-autofill ~ label {
  2464. transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
  2465. }
  2466. .form-floating > textarea:not(:-moz-placeholder) ~ label::after {
  2467. position: absolute;
  2468. inset: 1rem 0.375rem;
  2469. z-index: -1;
  2470. height: 1.5em;
  2471. content: "";
  2472. background-color: var(--bs-body-bg);
  2473. border-radius: var(--bs-border-radius);
  2474. }
  2475. .form-floating > textarea:focus ~ label::after,
  2476. .form-floating > textarea:not(:placeholder-shown) ~ label::after {
  2477. position: absolute;
  2478. inset: 1rem 0.375rem;
  2479. z-index: -1;
  2480. height: 1.5em;
  2481. content: "";
  2482. background-color: var(--bs-body-bg);
  2483. border-radius: var(--bs-border-radius);
  2484. }
  2485. .form-floating > textarea:disabled ~ label::after {
  2486. background-color: var(--bs-secondary-bg);
  2487. }
  2488. .form-floating > .form-control-plaintext ~ label {
  2489. border-width: var(--bs-border-width) 0;
  2490. }
  2491. .form-floating > :disabled ~ label,
  2492. .form-floating > .form-control:disabled ~ label {
  2493. color: #6c757d;
  2494. }
  2495. .input-group {
  2496. position: relative;
  2497. display: flex;
  2498. flex-wrap: wrap;
  2499. align-items: stretch;
  2500. width: 100%;
  2501. }
  2502. .input-group > .form-control,
  2503. .input-group > .form-select,
  2504. .input-group > .form-floating {
  2505. position: relative;
  2506. flex: 1 1 auto;
  2507. width: 1%;
  2508. min-width: 0;
  2509. }
  2510. .input-group > .form-control:focus,
  2511. .input-group > .form-select:focus,
  2512. .input-group > .form-floating:focus-within {
  2513. z-index: 5;
  2514. }
  2515. .input-group .btn {
  2516. position: relative;
  2517. z-index: 2;
  2518. }
  2519. .input-group .btn:focus {
  2520. z-index: 5;
  2521. }
  2522. .input-group-text {
  2523. display: flex;
  2524. align-items: center;
  2525. padding: 0.375rem 0.75rem;
  2526. font-size: 1rem;
  2527. font-weight: 400;
  2528. line-height: 1.5;
  2529. color: var(--bs-body-color);
  2530. text-align: center;
  2531. white-space: nowrap;
  2532. background-color: var(--bs-tertiary-bg);
  2533. border: var(--bs-border-width) solid var(--bs-border-color);
  2534. border-radius: var(--bs-border-radius);
  2535. }
  2536. .input-group-lg > .form-control,
  2537. .input-group-lg > .form-select,
  2538. .input-group-lg > .input-group-text,
  2539. .input-group-lg > .btn {
  2540. padding: 0.5rem 1rem;
  2541. font-size: 1.25rem;
  2542. border-radius: var(--bs-border-radius-lg);
  2543. }
  2544. .input-group-sm > .form-control,
  2545. .input-group-sm > .form-select,
  2546. .input-group-sm > .input-group-text,
  2547. .input-group-sm > .btn {
  2548. padding: 0.25rem 0.5rem;
  2549. font-size: 0.875rem;
  2550. border-radius: var(--bs-border-radius-sm);
  2551. }
  2552. .input-group-lg > .form-select,
  2553. .input-group-sm > .form-select {
  2554. padding-left: 3rem;
  2555. }
  2556. .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2557. .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
  2558. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
  2559. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  2560. border-top-left-radius: 0;
  2561. border-bottom-left-radius: 0;
  2562. }
  2563. .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2564. .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
  2565. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
  2566. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  2567. border-top-left-radius: 0;
  2568. border-bottom-left-radius: 0;
  2569. }
  2570. .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  2571. margin-right: calc(-1 * var(--bs-border-width));
  2572. border-top-right-radius: 0;
  2573. border-bottom-right-radius: 0;
  2574. }
  2575. .input-group > .form-floating:not(:first-child) > .form-control,
  2576. .input-group > .form-floating:not(:first-child) > .form-select {
  2577. border-top-right-radius: 0;
  2578. border-bottom-right-radius: 0;
  2579. }
  2580. .valid-feedback {
  2581. display: none;
  2582. width: 100%;
  2583. margin-top: 0.25rem;
  2584. font-size: 0.875em;
  2585. color: var(--bs-form-valid-color);
  2586. }
  2587. .valid-tooltip {
  2588. position: absolute;
  2589. top: 100%;
  2590. z-index: 5;
  2591. display: none;
  2592. max-width: 100%;
  2593. padding: 0.25rem 0.5rem;
  2594. margin-top: 0.1rem;
  2595. font-size: 0.875rem;
  2596. color: #fff;
  2597. background-color: var(--bs-success);
  2598. border-radius: var(--bs-border-radius);
  2599. }
  2600. .was-validated :valid ~ .valid-feedback,
  2601. .was-validated :valid ~ .valid-tooltip,
  2602. .is-valid ~ .valid-feedback,
  2603. .is-valid ~ .valid-tooltip {
  2604. display: block;
  2605. }
  2606. .was-validated .form-control:valid, .form-control.is-valid {
  2607. border-color: var(--bs-form-valid-border-color);
  2608. padding-left: calc(1.5em + 0.75rem);
  2609. 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");
  2610. background-repeat: no-repeat;
  2611. background-position: left calc(0.375em + 0.1875rem) center;
  2612. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2613. }
  2614. .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  2615. border-color: var(--bs-form-valid-border-color);
  2616. box-shadow: var(--bs-box-shadow-inset), 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  2617. }
  2618. .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  2619. padding-left: calc(1.5em + 0.75rem);
  2620. background-position: top calc(0.375em + 0.1875rem) left calc(0.375em + 0.1875rem);
  2621. }
  2622. .was-validated .form-select:valid, .form-select.is-valid {
  2623. border-color: var(--bs-form-valid-border-color);
  2624. }
  2625. .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"] {
  2626. --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");
  2627. padding-left: 4.125rem;
  2628. background-position: left 0.75rem center, center left 2.25rem;
  2629. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2630. }
  2631. .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  2632. border-color: var(--bs-form-valid-border-color);
  2633. box-shadow: var(--bs-box-shadow-inset), 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  2634. }
  2635. .was-validated .form-control-color:valid, .form-control-color.is-valid {
  2636. width: calc(3rem + calc(1.5em + 0.75rem));
  2637. }
  2638. .was-validated .form-check-input:valid, .form-check-input.is-valid {
  2639. border-color: var(--bs-form-valid-border-color);
  2640. }
  2641. .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  2642. background-color: var(--bs-form-valid-color);
  2643. }
  2644. .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  2645. box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  2646. }
  2647. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  2648. color: var(--bs-form-valid-color);
  2649. }
  2650. .form-check-inline .form-check-input ~ .valid-feedback {
  2651. margin-right: 0.5em;
  2652. }
  2653. .was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
  2654. .was-validated .input-group > .form-select:not(:focus):valid,
  2655. .input-group > .form-select:not(:focus).is-valid,
  2656. .was-validated .input-group > .form-floating:not(:focus-within):valid,
  2657. .input-group > .form-floating:not(:focus-within).is-valid {
  2658. z-index: 3;
  2659. }
  2660. .invalid-feedback {
  2661. display: none;
  2662. width: 100%;
  2663. margin-top: 0.25rem;
  2664. font-size: 0.875em;
  2665. color: var(--bs-form-invalid-color);
  2666. }
  2667. .invalid-tooltip {
  2668. position: absolute;
  2669. top: 100%;
  2670. z-index: 5;
  2671. display: none;
  2672. max-width: 100%;
  2673. padding: 0.25rem 0.5rem;
  2674. margin-top: 0.1rem;
  2675. font-size: 0.875rem;
  2676. color: #fff;
  2677. background-color: var(--bs-danger);
  2678. border-radius: var(--bs-border-radius);
  2679. }
  2680. .was-validated :invalid ~ .invalid-feedback,
  2681. .was-validated :invalid ~ .invalid-tooltip,
  2682. .is-invalid ~ .invalid-feedback,
  2683. .is-invalid ~ .invalid-tooltip {
  2684. display: block;
  2685. }
  2686. .was-validated .form-control:invalid, .form-control.is-invalid {
  2687. border-color: var(--bs-form-invalid-border-color);
  2688. padding-left: calc(1.5em + 0.75rem);
  2689. 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");
  2690. background-repeat: no-repeat;
  2691. background-position: left calc(0.375em + 0.1875rem) center;
  2692. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2693. }
  2694. .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  2695. border-color: var(--bs-form-invalid-border-color);
  2696. box-shadow: var(--bs-box-shadow-inset), 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  2697. }
  2698. .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  2699. padding-left: calc(1.5em + 0.75rem);
  2700. background-position: top calc(0.375em + 0.1875rem) left calc(0.375em + 0.1875rem);
  2701. }
  2702. .was-validated .form-select:invalid, .form-select.is-invalid {
  2703. border-color: var(--bs-form-invalid-border-color);
  2704. }
  2705. .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"] {
  2706. --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");
  2707. padding-left: 4.125rem;
  2708. background-position: left 0.75rem center, center left 2.25rem;
  2709. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2710. }
  2711. .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  2712. border-color: var(--bs-form-invalid-border-color);
  2713. box-shadow: var(--bs-box-shadow-inset), 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  2714. }
  2715. .was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  2716. width: calc(3rem + calc(1.5em + 0.75rem));
  2717. }
  2718. .was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  2719. border-color: var(--bs-form-invalid-border-color);
  2720. }
  2721. .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  2722. background-color: var(--bs-form-invalid-color);
  2723. }
  2724. .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  2725. box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  2726. }
  2727. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  2728. color: var(--bs-form-invalid-color);
  2729. }
  2730. .form-check-inline .form-check-input ~ .invalid-feedback {
  2731. margin-right: 0.5em;
  2732. }
  2733. .was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
  2734. .was-validated .input-group > .form-select:not(:focus):invalid,
  2735. .input-group > .form-select:not(:focus).is-invalid,
  2736. .was-validated .input-group > .form-floating:not(:focus-within):invalid,
  2737. .input-group > .form-floating:not(:focus-within).is-invalid {
  2738. z-index: 4;
  2739. }
  2740. .btn {
  2741. --bs-btn-padding-x: 0.75rem;
  2742. --bs-btn-padding-y: 0.375rem;
  2743. --bs-btn-font-family: ;
  2744. --bs-btn-font-size: 1rem;
  2745. --bs-btn-font-weight: 400;
  2746. --bs-btn-line-height: 1.5;
  2747. --bs-btn-color: var(--bs-body-color);
  2748. --bs-btn-bg: transparent;
  2749. --bs-btn-border-width: var(--bs-border-width);
  2750. --bs-btn-border-color: transparent;
  2751. --bs-btn-border-radius: var(--bs-border-radius);
  2752. --bs-btn-hover-border-color: transparent;
  2753. --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  2754. --bs-btn-disabled-opacity: 0.65;
  2755. --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  2756. display: inline-block;
  2757. padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  2758. font-family: var(--bs-btn-font-family);
  2759. font-size: var(--bs-btn-font-size);
  2760. font-weight: var(--bs-btn-font-weight);
  2761. line-height: var(--bs-btn-line-height);
  2762. color: var(--bs-btn-color);
  2763. text-align: center;
  2764. text-decoration: none;
  2765. vertical-align: middle;
  2766. cursor: pointer;
  2767. -webkit-user-select: none;
  2768. -moz-user-select: none;
  2769. user-select: none;
  2770. border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  2771. border-radius: var(--bs-btn-border-radius);
  2772. background-color: var(--bs-btn-bg);
  2773. box-shadow: var(--bs-btn-box-shadow);
  2774. 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;
  2775. }
  2776. @media (prefers-reduced-motion: reduce) {
  2777. .btn {
  2778. transition: none;
  2779. }
  2780. }
  2781. .btn:hover {
  2782. color: var(--bs-btn-hover-color);
  2783. background-color: var(--bs-btn-hover-bg);
  2784. border-color: var(--bs-btn-hover-border-color);
  2785. }
  2786. .btn-check + .btn:hover {
  2787. color: var(--bs-btn-color);
  2788. background-color: var(--bs-btn-bg);
  2789. border-color: var(--bs-btn-border-color);
  2790. }
  2791. .btn:focus-visible {
  2792. color: var(--bs-btn-hover-color);
  2793. background-color: var(--bs-btn-hover-bg);
  2794. border-color: var(--bs-btn-hover-border-color);
  2795. outline: 0;
  2796. box-shadow: var(--bs-btn-box-shadow), var(--bs-btn-focus-box-shadow);
  2797. }
  2798. .btn-check:focus-visible + .btn {
  2799. border-color: var(--bs-btn-hover-border-color);
  2800. outline: 0;
  2801. box-shadow: var(--bs-btn-box-shadow), var(--bs-btn-focus-box-shadow);
  2802. }
  2803. .btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  2804. color: var(--bs-btn-active-color);
  2805. background-color: var(--bs-btn-active-bg);
  2806. border-color: var(--bs-btn-active-border-color);
  2807. box-shadow: var(--bs-btn-active-shadow);
  2808. }
  2809. .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 {
  2810. box-shadow: var(--bs-btn-active-shadow), var(--bs-btn-focus-box-shadow);
  2811. }
  2812. .btn-check:checked:focus-visible + .btn {
  2813. box-shadow: var(--bs-btn-active-shadow), var(--bs-btn-focus-box-shadow);
  2814. }
  2815. .btn:disabled, .btn.disabled, fieldset:disabled .btn {
  2816. color: var(--bs-btn-disabled-color);
  2817. pointer-events: none;
  2818. background-color: var(--bs-btn-disabled-bg);
  2819. border-color: var(--bs-btn-disabled-border-color);
  2820. opacity: var(--bs-btn-disabled-opacity);
  2821. box-shadow: none;
  2822. }
  2823. .btn-primary {
  2824. --bs-btn-color: #fff;
  2825. --bs-btn-bg: #0d6efd;
  2826. --bs-btn-border-color: #0d6efd;
  2827. --bs-btn-hover-color: #fff;
  2828. --bs-btn-hover-bg: rgb(11.05, 93.5, 215.05);
  2829. --bs-btn-hover-border-color: rgb(10.4, 88, 202.4);
  2830. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  2831. --bs-btn-active-color: #fff;
  2832. --bs-btn-active-bg: rgb(10.4, 88, 202.4);
  2833. --bs-btn-active-border-color: rgb(9.75, 82.5, 189.75);
  2834. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2835. --bs-btn-disabled-color: #fff;
  2836. --bs-btn-disabled-bg: #0d6efd;
  2837. --bs-btn-disabled-border-color: #0d6efd;
  2838. }
  2839. .btn-secondary {
  2840. --bs-btn-color: #fff;
  2841. --bs-btn-bg: #6c757d;
  2842. --bs-btn-border-color: #6c757d;
  2843. --bs-btn-hover-color: #fff;
  2844. --bs-btn-hover-bg: rgb(91.8, 99.45, 106.25);
  2845. --bs-btn-hover-border-color: rgb(86.4, 93.6, 100);
  2846. --bs-btn-focus-shadow-rgb: 130, 138, 145;
  2847. --bs-btn-active-color: #fff;
  2848. --bs-btn-active-bg: rgb(86.4, 93.6, 100);
  2849. --bs-btn-active-border-color: rgb(81, 87.75, 93.75);
  2850. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2851. --bs-btn-disabled-color: #fff;
  2852. --bs-btn-disabled-bg: #6c757d;
  2853. --bs-btn-disabled-border-color: #6c757d;
  2854. }
  2855. .btn-success {
  2856. --bs-btn-color: #fff;
  2857. --bs-btn-bg: #198754;
  2858. --bs-btn-border-color: #198754;
  2859. --bs-btn-hover-color: #fff;
  2860. --bs-btn-hover-bg: rgb(21.25, 114.75, 71.4);
  2861. --bs-btn-hover-border-color: rgb(20, 108, 67.2);
  2862. --bs-btn-focus-shadow-rgb: 60, 153, 110;
  2863. --bs-btn-active-color: #fff;
  2864. --bs-btn-active-bg: rgb(20, 108, 67.2);
  2865. --bs-btn-active-border-color: rgb(18.75, 101.25, 63);
  2866. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2867. --bs-btn-disabled-color: #fff;
  2868. --bs-btn-disabled-bg: #198754;
  2869. --bs-btn-disabled-border-color: #198754;
  2870. }
  2871. .btn-info {
  2872. --bs-btn-color: #000;
  2873. --bs-btn-bg: #0dcaf0;
  2874. --bs-btn-border-color: #0dcaf0;
  2875. --bs-btn-hover-color: #000;
  2876. --bs-btn-hover-bg: rgb(49.3, 209.95, 242.25);
  2877. --bs-btn-hover-border-color: rgb(37.2, 207.3, 241.5);
  2878. --bs-btn-focus-shadow-rgb: 11, 172, 204;
  2879. --bs-btn-active-color: #000;
  2880. --bs-btn-active-bg: rgb(61.4, 212.6, 243);
  2881. --bs-btn-active-border-color: rgb(37.2, 207.3, 241.5);
  2882. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2883. --bs-btn-disabled-color: #000;
  2884. --bs-btn-disabled-bg: #0dcaf0;
  2885. --bs-btn-disabled-border-color: #0dcaf0;
  2886. }
  2887. .btn-warning {
  2888. --bs-btn-color: #000;
  2889. --bs-btn-bg: #ffc107;
  2890. --bs-btn-border-color: #ffc107;
  2891. --bs-btn-hover-color: #000;
  2892. --bs-btn-hover-bg: rgb(255, 202.3, 44.2);
  2893. --bs-btn-hover-border-color: rgb(255, 199.2, 31.8);
  2894. --bs-btn-focus-shadow-rgb: 217, 164, 6;
  2895. --bs-btn-active-color: #000;
  2896. --bs-btn-active-bg: rgb(255, 205.4, 56.6);
  2897. --bs-btn-active-border-color: rgb(255, 199.2, 31.8);
  2898. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2899. --bs-btn-disabled-color: #000;
  2900. --bs-btn-disabled-bg: #ffc107;
  2901. --bs-btn-disabled-border-color: #ffc107;
  2902. }
  2903. .btn-danger {
  2904. --bs-btn-color: #fff;
  2905. --bs-btn-bg: #dc3545;
  2906. --bs-btn-border-color: #dc3545;
  2907. --bs-btn-hover-color: #fff;
  2908. --bs-btn-hover-bg: rgb(187, 45.05, 58.65);
  2909. --bs-btn-hover-border-color: rgb(176, 42.4, 55.2);
  2910. --bs-btn-focus-shadow-rgb: 225, 83, 97;
  2911. --bs-btn-active-color: #fff;
  2912. --bs-btn-active-bg: rgb(176, 42.4, 55.2);
  2913. --bs-btn-active-border-color: rgb(165, 39.75, 51.75);
  2914. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2915. --bs-btn-disabled-color: #fff;
  2916. --bs-btn-disabled-bg: #dc3545;
  2917. --bs-btn-disabled-border-color: #dc3545;
  2918. }
  2919. .btn-light {
  2920. --bs-btn-color: #000;
  2921. --bs-btn-bg: #f8f9fa;
  2922. --bs-btn-border-color: #f8f9fa;
  2923. --bs-btn-hover-color: #000;
  2924. --bs-btn-hover-bg: rgb(210.8, 211.65, 212.5);
  2925. --bs-btn-hover-border-color: rgb(198.4, 199.2, 200);
  2926. --bs-btn-focus-shadow-rgb: 211, 212, 213;
  2927. --bs-btn-active-color: #000;
  2928. --bs-btn-active-bg: rgb(198.4, 199.2, 200);
  2929. --bs-btn-active-border-color: rgb(186, 186.75, 187.5);
  2930. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2931. --bs-btn-disabled-color: #000;
  2932. --bs-btn-disabled-bg: #f8f9fa;
  2933. --bs-btn-disabled-border-color: #f8f9fa;
  2934. }
  2935. .btn-dark {
  2936. --bs-btn-color: #fff;
  2937. --bs-btn-bg: #212529;
  2938. --bs-btn-border-color: #212529;
  2939. --bs-btn-hover-color: #fff;
  2940. --bs-btn-hover-bg: rgb(66.3, 69.7, 73.1);
  2941. --bs-btn-hover-border-color: rgb(55.2, 58.8, 62.4);
  2942. --bs-btn-focus-shadow-rgb: 66, 70, 73;
  2943. --bs-btn-active-color: #fff;
  2944. --bs-btn-active-bg: rgb(77.4, 80.6, 83.8);
  2945. --bs-btn-active-border-color: rgb(55.2, 58.8, 62.4);
  2946. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2947. --bs-btn-disabled-color: #fff;
  2948. --bs-btn-disabled-bg: #212529;
  2949. --bs-btn-disabled-border-color: #212529;
  2950. }
  2951. .btn-outline-primary {
  2952. --bs-btn-color: #0d6efd;
  2953. --bs-btn-border-color: #0d6efd;
  2954. --bs-btn-hover-color: #fff;
  2955. --bs-btn-hover-bg: #0d6efd;
  2956. --bs-btn-hover-border-color: #0d6efd;
  2957. --bs-btn-focus-shadow-rgb: 13, 110, 253;
  2958. --bs-btn-active-color: #fff;
  2959. --bs-btn-active-bg: #0d6efd;
  2960. --bs-btn-active-border-color: #0d6efd;
  2961. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2962. --bs-btn-disabled-color: #0d6efd;
  2963. --bs-btn-disabled-bg: transparent;
  2964. --bs-btn-disabled-border-color: #0d6efd;
  2965. --bs-gradient: none;
  2966. }
  2967. .btn-outline-secondary {
  2968. --bs-btn-color: #6c757d;
  2969. --bs-btn-border-color: #6c757d;
  2970. --bs-btn-hover-color: #fff;
  2971. --bs-btn-hover-bg: #6c757d;
  2972. --bs-btn-hover-border-color: #6c757d;
  2973. --bs-btn-focus-shadow-rgb: 108, 117, 125;
  2974. --bs-btn-active-color: #fff;
  2975. --bs-btn-active-bg: #6c757d;
  2976. --bs-btn-active-border-color: #6c757d;
  2977. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2978. --bs-btn-disabled-color: #6c757d;
  2979. --bs-btn-disabled-bg: transparent;
  2980. --bs-btn-disabled-border-color: #6c757d;
  2981. --bs-gradient: none;
  2982. }
  2983. .btn-outline-success {
  2984. --bs-btn-color: #198754;
  2985. --bs-btn-border-color: #198754;
  2986. --bs-btn-hover-color: #fff;
  2987. --bs-btn-hover-bg: #198754;
  2988. --bs-btn-hover-border-color: #198754;
  2989. --bs-btn-focus-shadow-rgb: 25, 135, 84;
  2990. --bs-btn-active-color: #fff;
  2991. --bs-btn-active-bg: #198754;
  2992. --bs-btn-active-border-color: #198754;
  2993. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2994. --bs-btn-disabled-color: #198754;
  2995. --bs-btn-disabled-bg: transparent;
  2996. --bs-btn-disabled-border-color: #198754;
  2997. --bs-gradient: none;
  2998. }
  2999. .btn-outline-info {
  3000. --bs-btn-color: #0dcaf0;
  3001. --bs-btn-border-color: #0dcaf0;
  3002. --bs-btn-hover-color: #000;
  3003. --bs-btn-hover-bg: #0dcaf0;
  3004. --bs-btn-hover-border-color: #0dcaf0;
  3005. --bs-btn-focus-shadow-rgb: 13, 202, 240;
  3006. --bs-btn-active-color: #000;
  3007. --bs-btn-active-bg: #0dcaf0;
  3008. --bs-btn-active-border-color: #0dcaf0;
  3009. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3010. --bs-btn-disabled-color: #0dcaf0;
  3011. --bs-btn-disabled-bg: transparent;
  3012. --bs-btn-disabled-border-color: #0dcaf0;
  3013. --bs-gradient: none;
  3014. }
  3015. .btn-outline-warning {
  3016. --bs-btn-color: #ffc107;
  3017. --bs-btn-border-color: #ffc107;
  3018. --bs-btn-hover-color: #000;
  3019. --bs-btn-hover-bg: #ffc107;
  3020. --bs-btn-hover-border-color: #ffc107;
  3021. --bs-btn-focus-shadow-rgb: 255, 193, 7;
  3022. --bs-btn-active-color: #000;
  3023. --bs-btn-active-bg: #ffc107;
  3024. --bs-btn-active-border-color: #ffc107;
  3025. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3026. --bs-btn-disabled-color: #ffc107;
  3027. --bs-btn-disabled-bg: transparent;
  3028. --bs-btn-disabled-border-color: #ffc107;
  3029. --bs-gradient: none;
  3030. }
  3031. .btn-outline-danger {
  3032. --bs-btn-color: #dc3545;
  3033. --bs-btn-border-color: #dc3545;
  3034. --bs-btn-hover-color: #fff;
  3035. --bs-btn-hover-bg: #dc3545;
  3036. --bs-btn-hover-border-color: #dc3545;
  3037. --bs-btn-focus-shadow-rgb: 220, 53, 69;
  3038. --bs-btn-active-color: #fff;
  3039. --bs-btn-active-bg: #dc3545;
  3040. --bs-btn-active-border-color: #dc3545;
  3041. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3042. --bs-btn-disabled-color: #dc3545;
  3043. --bs-btn-disabled-bg: transparent;
  3044. --bs-btn-disabled-border-color: #dc3545;
  3045. --bs-gradient: none;
  3046. }
  3047. .btn-outline-light {
  3048. --bs-btn-color: #f8f9fa;
  3049. --bs-btn-border-color: #f8f9fa;
  3050. --bs-btn-hover-color: #000;
  3051. --bs-btn-hover-bg: #f8f9fa;
  3052. --bs-btn-hover-border-color: #f8f9fa;
  3053. --bs-btn-focus-shadow-rgb: 248, 249, 250;
  3054. --bs-btn-active-color: #000;
  3055. --bs-btn-active-bg: #f8f9fa;
  3056. --bs-btn-active-border-color: #f8f9fa;
  3057. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3058. --bs-btn-disabled-color: #f8f9fa;
  3059. --bs-btn-disabled-bg: transparent;
  3060. --bs-btn-disabled-border-color: #f8f9fa;
  3061. --bs-gradient: none;
  3062. }
  3063. .btn-outline-dark {
  3064. --bs-btn-color: #212529;
  3065. --bs-btn-border-color: #212529;
  3066. --bs-btn-hover-color: #fff;
  3067. --bs-btn-hover-bg: #212529;
  3068. --bs-btn-hover-border-color: #212529;
  3069. --bs-btn-focus-shadow-rgb: 33, 37, 41;
  3070. --bs-btn-active-color: #fff;
  3071. --bs-btn-active-bg: #212529;
  3072. --bs-btn-active-border-color: #212529;
  3073. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3074. --bs-btn-disabled-color: #212529;
  3075. --bs-btn-disabled-bg: transparent;
  3076. --bs-btn-disabled-border-color: #212529;
  3077. --bs-gradient: none;
  3078. }
  3079. .btn-link {
  3080. --bs-btn-font-weight: 400;
  3081. --bs-btn-color: var(--bs-link-color);
  3082. --bs-btn-bg: transparent;
  3083. --bs-btn-border-color: transparent;
  3084. --bs-btn-hover-color: var(--bs-link-hover-color);
  3085. --bs-btn-hover-border-color: transparent;
  3086. --bs-btn-active-color: var(--bs-link-hover-color);
  3087. --bs-btn-active-border-color: transparent;
  3088. --bs-btn-disabled-color: #6c757d;
  3089. --bs-btn-disabled-border-color: transparent;
  3090. --bs-btn-box-shadow: 0 0 0 #000;
  3091. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  3092. text-decoration: underline;
  3093. }
  3094. .btn-link:focus-visible {
  3095. color: var(--bs-btn-color);
  3096. }
  3097. .btn-link:hover {
  3098. color: var(--bs-btn-hover-color);
  3099. }
  3100. .btn-lg, .btn-group-lg > .btn {
  3101. --bs-btn-padding-y: 0.5rem;
  3102. --bs-btn-padding-x: 1rem;
  3103. --bs-btn-font-size: 1.25rem;
  3104. --bs-btn-border-radius: var(--bs-border-radius-lg);
  3105. }
  3106. .btn-sm, .btn-group-sm > .btn {
  3107. --bs-btn-padding-y: 0.25rem;
  3108. --bs-btn-padding-x: 0.5rem;
  3109. --bs-btn-font-size: 0.875rem;
  3110. --bs-btn-border-radius: var(--bs-border-radius-sm);
  3111. }
  3112. .fade {
  3113. transition: opacity 0.15s linear;
  3114. }
  3115. @media (prefers-reduced-motion: reduce) {
  3116. .fade {
  3117. transition: none;
  3118. }
  3119. }
  3120. .fade:not(.show) {
  3121. opacity: 0;
  3122. }
  3123. .collapse:not(.show) {
  3124. display: none;
  3125. }
  3126. .collapsing {
  3127. height: 0;
  3128. overflow: hidden;
  3129. transition: height 0.35s ease;
  3130. }
  3131. @media (prefers-reduced-motion: reduce) {
  3132. .collapsing {
  3133. transition: none;
  3134. }
  3135. }
  3136. .collapsing.collapse-horizontal {
  3137. width: 0;
  3138. height: auto;
  3139. transition: width 0.35s ease;
  3140. }
  3141. @media (prefers-reduced-motion: reduce) {
  3142. .collapsing.collapse-horizontal {
  3143. transition: none;
  3144. }
  3145. }
  3146. .dropup,
  3147. .dropend,
  3148. .dropdown,
  3149. .dropstart,
  3150. .dropup-center,
  3151. .dropdown-center {
  3152. position: relative;
  3153. }
  3154. .dropdown-toggle {
  3155. white-space: nowrap;
  3156. }
  3157. .dropdown-toggle::after {
  3158. display: inline-block;
  3159. margin-right: 0.255em;
  3160. vertical-align: 0.255em;
  3161. content: "";
  3162. border-top: 0.3em solid;
  3163. border-left: 0.3em solid transparent;
  3164. border-bottom: 0;
  3165. border-right: 0.3em solid transparent;
  3166. }
  3167. .dropdown-toggle:empty::after {
  3168. margin-right: 0;
  3169. }
  3170. .dropdown-menu {
  3171. --bs-dropdown-zindex: 1000;
  3172. --bs-dropdown-min-width: 10rem;
  3173. --bs-dropdown-padding-x: 0;
  3174. --bs-dropdown-padding-y: 0.5rem;
  3175. --bs-dropdown-spacer: 0.125rem;
  3176. --bs-dropdown-font-size: 1rem;
  3177. --bs-dropdown-color: var(--bs-body-color);
  3178. --bs-dropdown-bg: var(--bs-body-bg);
  3179. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3180. --bs-dropdown-border-radius: var(--bs-border-radius);
  3181. --bs-dropdown-border-width: var(--bs-border-width);
  3182. --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  3183. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3184. --bs-dropdown-divider-margin-y: 0.5rem;
  3185. --bs-dropdown-box-shadow: var(--bs-box-shadow);
  3186. --bs-dropdown-link-color: var(--bs-body-color);
  3187. --bs-dropdown-link-hover-color: var(--bs-body-color);
  3188. --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  3189. --bs-dropdown-link-active-color: #fff;
  3190. --bs-dropdown-link-active-bg: #0d6efd;
  3191. --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  3192. --bs-dropdown-item-padding-x: 1rem;
  3193. --bs-dropdown-item-padding-y: 0.25rem;
  3194. --bs-dropdown-header-color: #6c757d;
  3195. --bs-dropdown-header-padding-x: 1rem;
  3196. --bs-dropdown-header-padding-y: 0.5rem;
  3197. position: absolute;
  3198. z-index: var(--bs-dropdown-zindex);
  3199. display: none;
  3200. min-width: var(--bs-dropdown-min-width);
  3201. padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  3202. margin: 0;
  3203. font-size: var(--bs-dropdown-font-size);
  3204. color: var(--bs-dropdown-color);
  3205. text-align: right;
  3206. list-style: none;
  3207. background-color: var(--bs-dropdown-bg);
  3208. background-clip: padding-box;
  3209. border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  3210. border-radius: var(--bs-dropdown-border-radius);
  3211. box-shadow: var(--bs-dropdown-box-shadow);
  3212. }
  3213. .dropdown-menu[data-bs-popper] {
  3214. top: 100%;
  3215. right: 0;
  3216. margin-top: var(--bs-dropdown-spacer);
  3217. }
  3218. .dropdown-menu-start {
  3219. --bs-position: start;
  3220. }
  3221. .dropdown-menu-start[data-bs-popper] {
  3222. left: auto;
  3223. right: 0;
  3224. }
  3225. .dropdown-menu-end {
  3226. --bs-position: end;
  3227. }
  3228. .dropdown-menu-end[data-bs-popper] {
  3229. left: 0;
  3230. right: auto;
  3231. }
  3232. @media (min-width: 576px) {
  3233. .dropdown-menu-sm-start {
  3234. --bs-position: start;
  3235. }
  3236. .dropdown-menu-sm-start[data-bs-popper] {
  3237. left: auto;
  3238. right: 0;
  3239. }
  3240. .dropdown-menu-sm-end {
  3241. --bs-position: end;
  3242. }
  3243. .dropdown-menu-sm-end[data-bs-popper] {
  3244. left: 0;
  3245. right: auto;
  3246. }
  3247. }
  3248. @media (min-width: 768px) {
  3249. .dropdown-menu-md-start {
  3250. --bs-position: start;
  3251. }
  3252. .dropdown-menu-md-start[data-bs-popper] {
  3253. left: auto;
  3254. right: 0;
  3255. }
  3256. .dropdown-menu-md-end {
  3257. --bs-position: end;
  3258. }
  3259. .dropdown-menu-md-end[data-bs-popper] {
  3260. left: 0;
  3261. right: auto;
  3262. }
  3263. }
  3264. @media (min-width: 992px) {
  3265. .dropdown-menu-lg-start {
  3266. --bs-position: start;
  3267. }
  3268. .dropdown-menu-lg-start[data-bs-popper] {
  3269. left: auto;
  3270. right: 0;
  3271. }
  3272. .dropdown-menu-lg-end {
  3273. --bs-position: end;
  3274. }
  3275. .dropdown-menu-lg-end[data-bs-popper] {
  3276. left: 0;
  3277. right: auto;
  3278. }
  3279. }
  3280. @media (min-width: 1200px) {
  3281. .dropdown-menu-xl-start {
  3282. --bs-position: start;
  3283. }
  3284. .dropdown-menu-xl-start[data-bs-popper] {
  3285. left: auto;
  3286. right: 0;
  3287. }
  3288. .dropdown-menu-xl-end {
  3289. --bs-position: end;
  3290. }
  3291. .dropdown-menu-xl-end[data-bs-popper] {
  3292. left: 0;
  3293. right: auto;
  3294. }
  3295. }
  3296. @media (min-width: 1400px) {
  3297. .dropdown-menu-xxl-start {
  3298. --bs-position: start;
  3299. }
  3300. .dropdown-menu-xxl-start[data-bs-popper] {
  3301. left: auto;
  3302. right: 0;
  3303. }
  3304. .dropdown-menu-xxl-end {
  3305. --bs-position: end;
  3306. }
  3307. .dropdown-menu-xxl-end[data-bs-popper] {
  3308. left: 0;
  3309. right: auto;
  3310. }
  3311. }
  3312. .dropup .dropdown-menu[data-bs-popper] {
  3313. top: auto;
  3314. bottom: 100%;
  3315. margin-top: 0;
  3316. margin-bottom: var(--bs-dropdown-spacer);
  3317. }
  3318. .dropup .dropdown-toggle::after {
  3319. display: inline-block;
  3320. margin-right: 0.255em;
  3321. vertical-align: 0.255em;
  3322. content: "";
  3323. border-top: 0;
  3324. border-left: 0.3em solid transparent;
  3325. border-bottom: 0.3em solid;
  3326. border-right: 0.3em solid transparent;
  3327. }
  3328. .dropup .dropdown-toggle:empty::after {
  3329. margin-right: 0;
  3330. }
  3331. .dropend .dropdown-menu[data-bs-popper] {
  3332. top: 0;
  3333. left: auto;
  3334. right: 100%;
  3335. margin-top: 0;
  3336. margin-right: var(--bs-dropdown-spacer);
  3337. }
  3338. .dropend .dropdown-toggle::after {
  3339. display: inline-block;
  3340. margin-right: 0.255em;
  3341. vertical-align: 0.255em;
  3342. content: "";
  3343. border-top: 0.3em solid transparent;
  3344. border-left: 0;
  3345. border-bottom: 0.3em solid transparent;
  3346. border-right: 0.3em solid;
  3347. }
  3348. .dropend .dropdown-toggle:empty::after {
  3349. margin-right: 0;
  3350. }
  3351. .dropend .dropdown-toggle::after {
  3352. vertical-align: 0;
  3353. }
  3354. .dropstart .dropdown-menu[data-bs-popper] {
  3355. top: 0;
  3356. left: 100%;
  3357. right: auto;
  3358. margin-top: 0;
  3359. margin-left: var(--bs-dropdown-spacer);
  3360. }
  3361. .dropstart .dropdown-toggle::after {
  3362. display: inline-block;
  3363. margin-right: 0.255em;
  3364. vertical-align: 0.255em;
  3365. content: "";
  3366. }
  3367. .dropstart .dropdown-toggle::after {
  3368. display: none;
  3369. }
  3370. .dropstart .dropdown-toggle::before {
  3371. display: inline-block;
  3372. margin-left: 0.255em;
  3373. vertical-align: 0.255em;
  3374. content: "";
  3375. border-top: 0.3em solid transparent;
  3376. border-left: 0.3em solid;
  3377. border-bottom: 0.3em solid transparent;
  3378. }
  3379. .dropstart .dropdown-toggle:empty::after {
  3380. margin-right: 0;
  3381. }
  3382. .dropstart .dropdown-toggle::before {
  3383. vertical-align: 0;
  3384. }
  3385. .dropdown-divider {
  3386. height: 0;
  3387. margin: var(--bs-dropdown-divider-margin-y) 0;
  3388. overflow: hidden;
  3389. border-top: 1px solid var(--bs-dropdown-divider-bg);
  3390. opacity: 1;
  3391. }
  3392. .dropdown-item {
  3393. display: block;
  3394. width: 100%;
  3395. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3396. clear: both;
  3397. font-weight: 400;
  3398. color: var(--bs-dropdown-link-color);
  3399. text-align: inherit;
  3400. text-decoration: none;
  3401. white-space: nowrap;
  3402. background-color: transparent;
  3403. border: 0;
  3404. border-radius: var(--bs-dropdown-item-border-radius, 0);
  3405. }
  3406. .dropdown-item:hover, .dropdown-item:focus {
  3407. color: var(--bs-dropdown-link-hover-color);
  3408. background-color: var(--bs-dropdown-link-hover-bg);
  3409. }
  3410. .dropdown-item.active, .dropdown-item:active {
  3411. color: var(--bs-dropdown-link-active-color);
  3412. text-decoration: none;
  3413. background-color: var(--bs-dropdown-link-active-bg);
  3414. }
  3415. .dropdown-item.disabled, .dropdown-item:disabled {
  3416. color: var(--bs-dropdown-link-disabled-color);
  3417. pointer-events: none;
  3418. background-color: transparent;
  3419. }
  3420. .dropdown-menu.show {
  3421. display: block;
  3422. }
  3423. .dropdown-header {
  3424. display: block;
  3425. padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  3426. margin-bottom: 0;
  3427. font-size: 0.875rem;
  3428. color: var(--bs-dropdown-header-color);
  3429. white-space: nowrap;
  3430. }
  3431. .dropdown-item-text {
  3432. display: block;
  3433. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3434. color: var(--bs-dropdown-link-color);
  3435. }
  3436. .dropdown-menu-dark {
  3437. --bs-dropdown-color: #dee2e6;
  3438. --bs-dropdown-bg: #343a40;
  3439. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3440. --bs-dropdown-box-shadow: ;
  3441. --bs-dropdown-link-color: #dee2e6;
  3442. --bs-dropdown-link-hover-color: #fff;
  3443. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3444. --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  3445. --bs-dropdown-link-active-color: #fff;
  3446. --bs-dropdown-link-active-bg: #0d6efd;
  3447. --bs-dropdown-link-disabled-color: #adb5bd;
  3448. --bs-dropdown-header-color: #adb5bd;
  3449. }
  3450. .btn-group,
  3451. .btn-group-vertical {
  3452. position: relative;
  3453. display: inline-flex;
  3454. vertical-align: middle;
  3455. }
  3456. .btn-group > .btn,
  3457. .btn-group-vertical > .btn {
  3458. position: relative;
  3459. flex: 1 1 auto;
  3460. }
  3461. .btn-group > .btn-check:checked + .btn,
  3462. .btn-group > .btn-check:focus + .btn,
  3463. .btn-group > .btn:hover,
  3464. .btn-group > .btn:focus,
  3465. .btn-group > .btn:active,
  3466. .btn-group > .btn.active,
  3467. .btn-group-vertical > .btn-check:checked + .btn,
  3468. .btn-group-vertical > .btn-check:focus + .btn,
  3469. .btn-group-vertical > .btn:hover,
  3470. .btn-group-vertical > .btn:focus,
  3471. .btn-group-vertical > .btn:active,
  3472. .btn-group-vertical > .btn.active {
  3473. z-index: 1;
  3474. }
  3475. .btn-toolbar {
  3476. display: flex;
  3477. flex-wrap: wrap;
  3478. justify-content: flex-start;
  3479. }
  3480. .btn-toolbar .input-group {
  3481. width: auto;
  3482. }
  3483. .btn-group {
  3484. border-radius: var(--bs-border-radius);
  3485. }
  3486. .btn-group > :not(.btn-check:first-child) + .btn,
  3487. .btn-group > .btn-group:not(:first-child) {
  3488. margin-right: calc(-1 * var(--bs-border-width));
  3489. }
  3490. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  3491. .btn-group > .btn.dropdown-toggle-split:first-child,
  3492. .btn-group > .btn-group:not(:last-child) > .btn {
  3493. border-top-left-radius: 0;
  3494. border-bottom-left-radius: 0;
  3495. }
  3496. .btn-group > .btn:nth-child(n+3),
  3497. .btn-group > :not(.btn-check) + .btn,
  3498. .btn-group > .btn-group:not(:first-child) > .btn {
  3499. border-top-right-radius: 0;
  3500. border-bottom-right-radius: 0;
  3501. }
  3502. .dropdown-toggle-split {
  3503. padding-left: 0.5625rem;
  3504. padding-right: 0.5625rem;
  3505. }
  3506. .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  3507. margin-right: 0;
  3508. }
  3509. .dropstart .dropdown-toggle-split::before {
  3510. margin-left: 0;
  3511. }
  3512. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  3513. padding-left: 0.375rem;
  3514. padding-right: 0.375rem;
  3515. }
  3516. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  3517. padding-left: 0.75rem;
  3518. padding-right: 0.75rem;
  3519. }
  3520. .btn-group.show .dropdown-toggle {
  3521. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3522. }
  3523. .btn-group.show .dropdown-toggle.btn-link {
  3524. box-shadow: none;
  3525. }
  3526. .btn-group-vertical {
  3527. flex-direction: column;
  3528. align-items: flex-start;
  3529. justify-content: center;
  3530. }
  3531. .btn-group-vertical > .btn,
  3532. .btn-group-vertical > .btn-group {
  3533. width: 100%;
  3534. }
  3535. .btn-group-vertical > .btn:not(:first-child),
  3536. .btn-group-vertical > .btn-group:not(:first-child) {
  3537. margin-top: calc(-1 * var(--bs-border-width));
  3538. }
  3539. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  3540. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  3541. border-bottom-left-radius: 0;
  3542. border-bottom-right-radius: 0;
  3543. }
  3544. .btn-group-vertical > .btn:nth-child(n+3),
  3545. .btn-group-vertical > :not(.btn-check) + .btn,
  3546. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  3547. border-top-right-radius: 0;
  3548. border-top-left-radius: 0;
  3549. }
  3550. .nav {
  3551. --bs-nav-link-padding-x: 1rem;
  3552. --bs-nav-link-padding-y: 0.5rem;
  3553. --bs-nav-link-font-weight: ;
  3554. --bs-nav-link-color: var(--bs-link-color);
  3555. --bs-nav-link-hover-color: var(--bs-link-hover-color);
  3556. --bs-nav-link-disabled-color: var(--bs-secondary-color);
  3557. display: flex;
  3558. flex-wrap: wrap;
  3559. padding-right: 0;
  3560. margin-bottom: 0;
  3561. list-style: none;
  3562. }
  3563. .nav-link {
  3564. display: block;
  3565. padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  3566. font-size: var(--bs-nav-link-font-size);
  3567. font-weight: var(--bs-nav-link-font-weight);
  3568. color: var(--bs-nav-link-color);
  3569. text-decoration: none;
  3570. background: none;
  3571. border: 0;
  3572. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  3573. }
  3574. @media (prefers-reduced-motion: reduce) {
  3575. .nav-link {
  3576. transition: none;
  3577. }
  3578. }
  3579. .nav-link:hover, .nav-link:focus {
  3580. color: var(--bs-nav-link-hover-color);
  3581. }
  3582. .nav-link:focus-visible {
  3583. outline: 0;
  3584. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  3585. }
  3586. .nav-link.disabled, .nav-link:disabled {
  3587. color: var(--bs-nav-link-disabled-color);
  3588. pointer-events: none;
  3589. cursor: default;
  3590. }
  3591. .nav-tabs {
  3592. --bs-nav-tabs-border-width: var(--bs-border-width);
  3593. --bs-nav-tabs-border-color: var(--bs-border-color);
  3594. --bs-nav-tabs-border-radius: var(--bs-border-radius);
  3595. --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  3596. --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  3597. --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  3598. --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  3599. border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
  3600. }
  3601. .nav-tabs .nav-link {
  3602. margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  3603. border: var(--bs-nav-tabs-border-width) solid transparent;
  3604. border-top-right-radius: var(--bs-nav-tabs-border-radius);
  3605. border-top-left-radius: var(--bs-nav-tabs-border-radius);
  3606. }
  3607. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  3608. isolation: isolate;
  3609. border-color: var(--bs-nav-tabs-link-hover-border-color);
  3610. }
  3611. .nav-tabs .nav-link.active,
  3612. .nav-tabs .nav-item.show .nav-link {
  3613. color: var(--bs-nav-tabs-link-active-color);
  3614. background-color: var(--bs-nav-tabs-link-active-bg);
  3615. border-color: var(--bs-nav-tabs-link-active-border-color);
  3616. }
  3617. .nav-tabs .dropdown-menu {
  3618. margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  3619. border-top-right-radius: 0;
  3620. border-top-left-radius: 0;
  3621. }
  3622. .nav-pills {
  3623. --bs-nav-pills-border-radius: var(--bs-border-radius);
  3624. --bs-nav-pills-link-active-color: #fff;
  3625. --bs-nav-pills-link-active-bg: #0d6efd;
  3626. }
  3627. .nav-pills .nav-link {
  3628. border-radius: var(--bs-nav-pills-border-radius);
  3629. }
  3630. .nav-pills .nav-link.active,
  3631. .nav-pills .show > .nav-link {
  3632. color: var(--bs-nav-pills-link-active-color);
  3633. background-color: var(--bs-nav-pills-link-active-bg);
  3634. }
  3635. .nav-underline {
  3636. --bs-nav-underline-gap: 1rem;
  3637. --bs-nav-underline-border-width: 0.125rem;
  3638. --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  3639. gap: var(--bs-nav-underline-gap);
  3640. }
  3641. .nav-underline .nav-link {
  3642. padding-left: 0;
  3643. padding-right: 0;
  3644. border-bottom: var(--bs-nav-underline-border-width) solid transparent;
  3645. }
  3646. .nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  3647. border-bottom-color: currentcolor;
  3648. }
  3649. .nav-underline .nav-link.active,
  3650. .nav-underline .show > .nav-link {
  3651. font-weight: 700;
  3652. color: var(--bs-nav-underline-link-active-color);
  3653. border-bottom-color: currentcolor;
  3654. }
  3655. .nav-fill > .nav-link,
  3656. .nav-fill .nav-item {
  3657. flex: 1 1 auto;
  3658. text-align: center;
  3659. }
  3660. .nav-justified > .nav-link,
  3661. .nav-justified .nav-item {
  3662. flex-grow: 1;
  3663. flex-basis: 0;
  3664. text-align: center;
  3665. }
  3666. .nav-fill .nav-item .nav-link,
  3667. .nav-justified .nav-item .nav-link {
  3668. width: 100%;
  3669. }
  3670. .tab-content > .tab-pane {
  3671. display: none;
  3672. }
  3673. .tab-content > .active {
  3674. display: block;
  3675. }
  3676. .navbar {
  3677. --bs-navbar-padding-x: 0;
  3678. --bs-navbar-padding-y: 0.5rem;
  3679. --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  3680. --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  3681. --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  3682. --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3683. --bs-navbar-brand-padding-y: 0.3125rem;
  3684. --bs-navbar-brand-margin-end: 1rem;
  3685. --bs-navbar-brand-font-size: 1.25rem;
  3686. --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3687. --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3688. --bs-navbar-nav-link-padding-x: 1rem;
  3689. --bs-navbar-toggler-padding-y: 0.25rem;
  3690. --bs-navbar-toggler-padding-x: 0.75rem;
  3691. --bs-navbar-toggler-font-size: 1.25rem;
  3692. --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");
  3693. --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  3694. --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  3695. --bs-navbar-toggler-focus-width: 0.25rem;
  3696. --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  3697. position: relative;
  3698. display: flex;
  3699. flex-wrap: wrap;
  3700. align-items: center;
  3701. justify-content: space-between;
  3702. padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
  3703. }
  3704. .navbar > .container,
  3705. .navbar > .container-fluid,
  3706. .navbar > .container-sm,
  3707. .navbar > .container-md,
  3708. .navbar > .container-lg,
  3709. .navbar > .container-xl,
  3710. .navbar > .container-xxl {
  3711. display: flex;
  3712. flex-wrap: inherit;
  3713. align-items: center;
  3714. justify-content: space-between;
  3715. }
  3716. .navbar-brand {
  3717. padding-top: var(--bs-navbar-brand-padding-y);
  3718. padding-bottom: var(--bs-navbar-brand-padding-y);
  3719. margin-left: var(--bs-navbar-brand-margin-end);
  3720. font-size: var(--bs-navbar-brand-font-size);
  3721. color: var(--bs-navbar-brand-color);
  3722. text-decoration: none;
  3723. white-space: nowrap;
  3724. }
  3725. .navbar-brand:hover, .navbar-brand:focus {
  3726. color: var(--bs-navbar-brand-hover-color);
  3727. }
  3728. .navbar-nav {
  3729. --bs-nav-link-padding-x: 0;
  3730. --bs-nav-link-padding-y: 0.5rem;
  3731. --bs-nav-link-font-weight: ;
  3732. --bs-nav-link-color: var(--bs-navbar-color);
  3733. --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  3734. --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  3735. display: flex;
  3736. flex-direction: column;
  3737. padding-right: 0;
  3738. margin-bottom: 0;
  3739. list-style: none;
  3740. }
  3741. .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  3742. color: var(--bs-navbar-active-color);
  3743. }
  3744. .navbar-nav .dropdown-menu {
  3745. position: static;
  3746. }
  3747. .navbar-text {
  3748. padding-top: 0.5rem;
  3749. padding-bottom: 0.5rem;
  3750. color: var(--bs-navbar-color);
  3751. }
  3752. .navbar-text a,
  3753. .navbar-text a:hover,
  3754. .navbar-text a:focus {
  3755. color: var(--bs-navbar-active-color);
  3756. }
  3757. .navbar-collapse {
  3758. flex-grow: 1;
  3759. flex-basis: 100%;
  3760. align-items: center;
  3761. }
  3762. .navbar-toggler {
  3763. padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  3764. font-size: var(--bs-navbar-toggler-font-size);
  3765. line-height: 1;
  3766. color: var(--bs-navbar-color);
  3767. background-color: transparent;
  3768. border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  3769. border-radius: var(--bs-navbar-toggler-border-radius);
  3770. transition: var(--bs-navbar-toggler-transition);
  3771. }
  3772. @media (prefers-reduced-motion: reduce) {
  3773. .navbar-toggler {
  3774. transition: none;
  3775. }
  3776. }
  3777. .navbar-toggler:hover {
  3778. text-decoration: none;
  3779. }
  3780. .navbar-toggler:focus {
  3781. text-decoration: none;
  3782. outline: 0;
  3783. box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
  3784. }
  3785. .navbar-toggler-icon {
  3786. display: inline-block;
  3787. width: 1.5em;
  3788. height: 1.5em;
  3789. vertical-align: middle;
  3790. background-image: var(--bs-navbar-toggler-icon-bg);
  3791. background-repeat: no-repeat;
  3792. background-position: center;
  3793. background-size: 100%;
  3794. }
  3795. .navbar-nav-scroll {
  3796. max-height: var(--bs-scroll-height, 75vh);
  3797. overflow-y: auto;
  3798. }
  3799. @media (min-width: 576px) {
  3800. .navbar-expand-sm {
  3801. flex-wrap: nowrap;
  3802. justify-content: flex-start;
  3803. }
  3804. .navbar-expand-sm .navbar-nav {
  3805. flex-direction: row;
  3806. }
  3807. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3808. position: absolute;
  3809. }
  3810. .navbar-expand-sm .navbar-nav .nav-link {
  3811. padding-left: var(--bs-navbar-nav-link-padding-x);
  3812. padding-right: var(--bs-navbar-nav-link-padding-x);
  3813. }
  3814. .navbar-expand-sm .navbar-nav-scroll {
  3815. overflow: visible;
  3816. }
  3817. .navbar-expand-sm .navbar-collapse {
  3818. display: flex !important;
  3819. flex-basis: auto;
  3820. }
  3821. .navbar-expand-sm .navbar-toggler {
  3822. display: none;
  3823. }
  3824. .navbar-expand-sm .offcanvas {
  3825. position: static;
  3826. z-index: auto;
  3827. flex-grow: 1;
  3828. width: auto !important;
  3829. height: auto !important;
  3830. visibility: visible !important;
  3831. background-color: transparent !important;
  3832. border: 0 !important;
  3833. transform: none !important;
  3834. box-shadow: none;
  3835. transition: none;
  3836. }
  3837. .navbar-expand-sm .offcanvas .offcanvas-header {
  3838. display: none;
  3839. }
  3840. .navbar-expand-sm .offcanvas .offcanvas-body {
  3841. display: flex;
  3842. flex-grow: 0;
  3843. padding: 0;
  3844. overflow-y: visible;
  3845. }
  3846. }
  3847. @media (min-width: 768px) {
  3848. .navbar-expand-md {
  3849. flex-wrap: nowrap;
  3850. justify-content: flex-start;
  3851. }
  3852. .navbar-expand-md .navbar-nav {
  3853. flex-direction: row;
  3854. }
  3855. .navbar-expand-md .navbar-nav .dropdown-menu {
  3856. position: absolute;
  3857. }
  3858. .navbar-expand-md .navbar-nav .nav-link {
  3859. padding-left: var(--bs-navbar-nav-link-padding-x);
  3860. padding-right: var(--bs-navbar-nav-link-padding-x);
  3861. }
  3862. .navbar-expand-md .navbar-nav-scroll {
  3863. overflow: visible;
  3864. }
  3865. .navbar-expand-md .navbar-collapse {
  3866. display: flex !important;
  3867. flex-basis: auto;
  3868. }
  3869. .navbar-expand-md .navbar-toggler {
  3870. display: none;
  3871. }
  3872. .navbar-expand-md .offcanvas {
  3873. position: static;
  3874. z-index: auto;
  3875. flex-grow: 1;
  3876. width: auto !important;
  3877. height: auto !important;
  3878. visibility: visible !important;
  3879. background-color: transparent !important;
  3880. border: 0 !important;
  3881. transform: none !important;
  3882. box-shadow: none;
  3883. transition: none;
  3884. }
  3885. .navbar-expand-md .offcanvas .offcanvas-header {
  3886. display: none;
  3887. }
  3888. .navbar-expand-md .offcanvas .offcanvas-body {
  3889. display: flex;
  3890. flex-grow: 0;
  3891. padding: 0;
  3892. overflow-y: visible;
  3893. }
  3894. }
  3895. @media (min-width: 992px) {
  3896. .navbar-expand-lg {
  3897. flex-wrap: nowrap;
  3898. justify-content: flex-start;
  3899. }
  3900. .navbar-expand-lg .navbar-nav {
  3901. flex-direction: row;
  3902. }
  3903. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3904. position: absolute;
  3905. }
  3906. .navbar-expand-lg .navbar-nav .nav-link {
  3907. padding-left: var(--bs-navbar-nav-link-padding-x);
  3908. padding-right: var(--bs-navbar-nav-link-padding-x);
  3909. }
  3910. .navbar-expand-lg .navbar-nav-scroll {
  3911. overflow: visible;
  3912. }
  3913. .navbar-expand-lg .navbar-collapse {
  3914. display: flex !important;
  3915. flex-basis: auto;
  3916. }
  3917. .navbar-expand-lg .navbar-toggler {
  3918. display: none;
  3919. }
  3920. .navbar-expand-lg .offcanvas {
  3921. position: static;
  3922. z-index: auto;
  3923. flex-grow: 1;
  3924. width: auto !important;
  3925. height: auto !important;
  3926. visibility: visible !important;
  3927. background-color: transparent !important;
  3928. border: 0 !important;
  3929. transform: none !important;
  3930. box-shadow: none;
  3931. transition: none;
  3932. }
  3933. .navbar-expand-lg .offcanvas .offcanvas-header {
  3934. display: none;
  3935. }
  3936. .navbar-expand-lg .offcanvas .offcanvas-body {
  3937. display: flex;
  3938. flex-grow: 0;
  3939. padding: 0;
  3940. overflow-y: visible;
  3941. }
  3942. }
  3943. @media (min-width: 1200px) {
  3944. .navbar-expand-xl {
  3945. flex-wrap: nowrap;
  3946. justify-content: flex-start;
  3947. }
  3948. .navbar-expand-xl .navbar-nav {
  3949. flex-direction: row;
  3950. }
  3951. .navbar-expand-xl .navbar-nav .dropdown-menu {
  3952. position: absolute;
  3953. }
  3954. .navbar-expand-xl .navbar-nav .nav-link {
  3955. padding-left: var(--bs-navbar-nav-link-padding-x);
  3956. padding-right: var(--bs-navbar-nav-link-padding-x);
  3957. }
  3958. .navbar-expand-xl .navbar-nav-scroll {
  3959. overflow: visible;
  3960. }
  3961. .navbar-expand-xl .navbar-collapse {
  3962. display: flex !important;
  3963. flex-basis: auto;
  3964. }
  3965. .navbar-expand-xl .navbar-toggler {
  3966. display: none;
  3967. }
  3968. .navbar-expand-xl .offcanvas {
  3969. position: static;
  3970. z-index: auto;
  3971. flex-grow: 1;
  3972. width: auto !important;
  3973. height: auto !important;
  3974. visibility: visible !important;
  3975. background-color: transparent !important;
  3976. border: 0 !important;
  3977. transform: none !important;
  3978. box-shadow: none;
  3979. transition: none;
  3980. }
  3981. .navbar-expand-xl .offcanvas .offcanvas-header {
  3982. display: none;
  3983. }
  3984. .navbar-expand-xl .offcanvas .offcanvas-body {
  3985. display: flex;
  3986. flex-grow: 0;
  3987. padding: 0;
  3988. overflow-y: visible;
  3989. }
  3990. }
  3991. @media (min-width: 1400px) {
  3992. .navbar-expand-xxl {
  3993. flex-wrap: nowrap;
  3994. justify-content: flex-start;
  3995. }
  3996. .navbar-expand-xxl .navbar-nav {
  3997. flex-direction: row;
  3998. }
  3999. .navbar-expand-xxl .navbar-nav .dropdown-menu {
  4000. position: absolute;
  4001. }
  4002. .navbar-expand-xxl .navbar-nav .nav-link {
  4003. padding-left: var(--bs-navbar-nav-link-padding-x);
  4004. padding-right: var(--bs-navbar-nav-link-padding-x);
  4005. }
  4006. .navbar-expand-xxl .navbar-nav-scroll {
  4007. overflow: visible;
  4008. }
  4009. .navbar-expand-xxl .navbar-collapse {
  4010. display: flex !important;
  4011. flex-basis: auto;
  4012. }
  4013. .navbar-expand-xxl .navbar-toggler {
  4014. display: none;
  4015. }
  4016. .navbar-expand-xxl .offcanvas {
  4017. position: static;
  4018. z-index: auto;
  4019. flex-grow: 1;
  4020. width: auto !important;
  4021. height: auto !important;
  4022. visibility: visible !important;
  4023. background-color: transparent !important;
  4024. border: 0 !important;
  4025. transform: none !important;
  4026. box-shadow: none;
  4027. transition: none;
  4028. }
  4029. .navbar-expand-xxl .offcanvas .offcanvas-header {
  4030. display: none;
  4031. }
  4032. .navbar-expand-xxl .offcanvas .offcanvas-body {
  4033. display: flex;
  4034. flex-grow: 0;
  4035. padding: 0;
  4036. overflow-y: visible;
  4037. }
  4038. }
  4039. .navbar-expand {
  4040. flex-wrap: nowrap;
  4041. justify-content: flex-start;
  4042. }
  4043. .navbar-expand .navbar-nav {
  4044. flex-direction: row;
  4045. }
  4046. .navbar-expand .navbar-nav .dropdown-menu {
  4047. position: absolute;
  4048. }
  4049. .navbar-expand .navbar-nav .nav-link {
  4050. padding-left: var(--bs-navbar-nav-link-padding-x);
  4051. padding-right: var(--bs-navbar-nav-link-padding-x);
  4052. }
  4053. .navbar-expand .navbar-nav-scroll {
  4054. overflow: visible;
  4055. }
  4056. .navbar-expand .navbar-collapse {
  4057. display: flex !important;
  4058. flex-basis: auto;
  4059. }
  4060. .navbar-expand .navbar-toggler {
  4061. display: none;
  4062. }
  4063. .navbar-expand .offcanvas {
  4064. position: static;
  4065. z-index: auto;
  4066. flex-grow: 1;
  4067. width: auto !important;
  4068. height: auto !important;
  4069. visibility: visible !important;
  4070. background-color: transparent !important;
  4071. border: 0 !important;
  4072. transform: none !important;
  4073. box-shadow: none;
  4074. transition: none;
  4075. }
  4076. .navbar-expand .offcanvas .offcanvas-header {
  4077. display: none;
  4078. }
  4079. .navbar-expand .offcanvas .offcanvas-body {
  4080. display: flex;
  4081. flex-grow: 0;
  4082. padding: 0;
  4083. overflow-y: visible;
  4084. }
  4085. .navbar-dark,
  4086. .navbar[data-bs-theme=dark] {
  4087. --bs-navbar-color: rgba(255, 255, 255, 0.55);
  4088. --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  4089. --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  4090. --bs-navbar-active-color: #fff;
  4091. --bs-navbar-brand-color: #fff;
  4092. --bs-navbar-brand-hover-color: #fff;
  4093. --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  4094. --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  4095. }
  4096. [data-bs-theme=dark] .navbar-toggler-icon {
  4097. --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");
  4098. }
  4099. .card {
  4100. --bs-card-spacer-y: 1rem;
  4101. --bs-card-spacer-x: 1rem;
  4102. --bs-card-title-spacer-y: 0.5rem;
  4103. --bs-card-title-color: ;
  4104. --bs-card-subtitle-color: ;
  4105. --bs-card-border-width: var(--bs-border-width);
  4106. --bs-card-border-color: var(--bs-border-color-translucent);
  4107. --bs-card-border-radius: var(--bs-border-radius);
  4108. --bs-card-box-shadow: ;
  4109. --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  4110. --bs-card-cap-padding-y: 0.5rem;
  4111. --bs-card-cap-padding-x: 1rem;
  4112. --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  4113. --bs-card-cap-color: ;
  4114. --bs-card-height: ;
  4115. --bs-card-color: ;
  4116. --bs-card-bg: var(--bs-body-bg);
  4117. --bs-card-img-overlay-padding: 1rem;
  4118. --bs-card-group-margin: 0.75rem;
  4119. position: relative;
  4120. display: flex;
  4121. flex-direction: column;
  4122. min-width: 0;
  4123. height: var(--bs-card-height);
  4124. color: var(--bs-body-color);
  4125. word-wrap: break-word;
  4126. background-color: var(--bs-card-bg);
  4127. background-clip: border-box;
  4128. border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4129. border-radius: var(--bs-card-border-radius);
  4130. box-shadow: var(--bs-card-box-shadow);
  4131. }
  4132. .card > hr {
  4133. margin-left: 0;
  4134. margin-right: 0;
  4135. }
  4136. .card > .list-group {
  4137. border-top: inherit;
  4138. border-bottom: inherit;
  4139. }
  4140. .card > .list-group:first-child {
  4141. border-top-width: 0;
  4142. border-top-right-radius: var(--bs-card-inner-border-radius);
  4143. border-top-left-radius: var(--bs-card-inner-border-radius);
  4144. }
  4145. .card > .list-group:last-child {
  4146. border-bottom-width: 0;
  4147. border-bottom-left-radius: var(--bs-card-inner-border-radius);
  4148. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  4149. }
  4150. .card > .card-header + .list-group,
  4151. .card > .list-group + .card-footer {
  4152. border-top: 0;
  4153. }
  4154. .card-body {
  4155. flex: 1 1 auto;
  4156. padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  4157. color: var(--bs-card-color);
  4158. }
  4159. .card-title {
  4160. margin-bottom: var(--bs-card-title-spacer-y);
  4161. color: var(--bs-card-title-color);
  4162. }
  4163. .card-subtitle {
  4164. margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  4165. margin-bottom: 0;
  4166. color: var(--bs-card-subtitle-color);
  4167. }
  4168. .card-text:last-child {
  4169. margin-bottom: 0;
  4170. }
  4171. .card-link + .card-link {
  4172. margin-right: var(--bs-card-spacer-x);
  4173. }
  4174. .card-header {
  4175. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  4176. margin-bottom: 0;
  4177. color: var(--bs-card-cap-color);
  4178. background-color: var(--bs-card-cap-bg);
  4179. border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4180. }
  4181. .card-header:first-child {
  4182. border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
  4183. }
  4184. .card-footer {
  4185. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  4186. color: var(--bs-card-cap-color);
  4187. background-color: var(--bs-card-cap-bg);
  4188. border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4189. }
  4190. .card-footer:last-child {
  4191. border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
  4192. }
  4193. .card-header-tabs {
  4194. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4195. margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  4196. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4197. border-bottom: 0;
  4198. }
  4199. .card-header-tabs .nav-link.active {
  4200. background-color: var(--bs-card-bg);
  4201. border-bottom-color: var(--bs-card-bg);
  4202. }
  4203. .card-header-pills {
  4204. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4205. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4206. }
  4207. .card-img-overlay {
  4208. position: absolute;
  4209. top: 0;
  4210. left: 0;
  4211. bottom: 0;
  4212. right: 0;
  4213. padding: var(--bs-card-img-overlay-padding);
  4214. border-radius: var(--bs-card-inner-border-radius);
  4215. }
  4216. .card-img,
  4217. .card-img-top,
  4218. .card-img-bottom {
  4219. width: 100%;
  4220. }
  4221. .card-img,
  4222. .card-img-top {
  4223. border-top-right-radius: var(--bs-card-inner-border-radius);
  4224. border-top-left-radius: var(--bs-card-inner-border-radius);
  4225. }
  4226. .card-img,
  4227. .card-img-bottom {
  4228. border-bottom-left-radius: var(--bs-card-inner-border-radius);
  4229. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  4230. }
  4231. .card-group > .card {
  4232. margin-bottom: var(--bs-card-group-margin);
  4233. }
  4234. @media (min-width: 576px) {
  4235. .card-group {
  4236. display: flex;
  4237. flex-flow: row wrap;
  4238. }
  4239. .card-group > .card {
  4240. flex: 1 0 0;
  4241. margin-bottom: 0;
  4242. }
  4243. .card-group > .card + .card {
  4244. margin-right: 0;
  4245. border-right: 0;
  4246. }
  4247. .card-group > .card:not(:last-child) {
  4248. border-top-left-radius: 0;
  4249. border-bottom-left-radius: 0;
  4250. }
  4251. .card-group > .card:not(:last-child) > .card-img-top,
  4252. .card-group > .card:not(:last-child) > .card-header {
  4253. border-top-left-radius: 0;
  4254. }
  4255. .card-group > .card:not(:last-child) > .card-img-bottom,
  4256. .card-group > .card:not(:last-child) > .card-footer {
  4257. border-bottom-left-radius: 0;
  4258. }
  4259. .card-group > .card:not(:first-child) {
  4260. border-top-right-radius: 0;
  4261. border-bottom-right-radius: 0;
  4262. }
  4263. .card-group > .card:not(:first-child) > .card-img-top,
  4264. .card-group > .card:not(:first-child) > .card-header {
  4265. border-top-right-radius: 0;
  4266. }
  4267. .card-group > .card:not(:first-child) > .card-img-bottom,
  4268. .card-group > .card:not(:first-child) > .card-footer {
  4269. border-bottom-right-radius: 0;
  4270. }
  4271. }
  4272. .accordion {
  4273. --bs-accordion-color: var(--bs-body-color);
  4274. --bs-accordion-bg: var(--bs-body-bg);
  4275. --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;
  4276. --bs-accordion-border-color: var(--bs-border-color);
  4277. --bs-accordion-border-width: var(--bs-border-width);
  4278. --bs-accordion-border-radius: var(--bs-border-radius);
  4279. --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  4280. --bs-accordion-btn-padding-x: 1.25rem;
  4281. --bs-accordion-btn-padding-y: 1rem;
  4282. --bs-accordion-btn-color: var(--bs-body-color);
  4283. --bs-accordion-btn-bg: var(--bs-accordion-bg);
  4284. --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");
  4285. --bs-accordion-btn-icon-width: 1.25rem;
  4286. --bs-accordion-btn-icon-transform: rotate(-180deg);
  4287. --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  4288. --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");
  4289. --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4290. --bs-accordion-body-padding-x: 1.25rem;
  4291. --bs-accordion-body-padding-y: 1rem;
  4292. --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  4293. --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
  4294. }
  4295. .accordion-button {
  4296. position: relative;
  4297. display: flex;
  4298. align-items: center;
  4299. width: 100%;
  4300. padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  4301. font-size: 1rem;
  4302. color: var(--bs-accordion-btn-color);
  4303. text-align: right;
  4304. background-color: var(--bs-accordion-btn-bg);
  4305. border: 0;
  4306. border-radius: 0;
  4307. overflow-anchor: none;
  4308. transition: var(--bs-accordion-transition);
  4309. }
  4310. @media (prefers-reduced-motion: reduce) {
  4311. .accordion-button {
  4312. transition: none;
  4313. }
  4314. }
  4315. .accordion-button:not(.collapsed) {
  4316. color: var(--bs-accordion-active-color);
  4317. background-color: var(--bs-accordion-active-bg);
  4318. box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  4319. }
  4320. .accordion-button:not(.collapsed)::after {
  4321. background-image: var(--bs-accordion-btn-active-icon);
  4322. transform: var(--bs-accordion-btn-icon-transform);
  4323. }
  4324. .accordion-button::after {
  4325. flex-shrink: 0;
  4326. width: var(--bs-accordion-btn-icon-width);
  4327. height: var(--bs-accordion-btn-icon-width);
  4328. margin-right: auto;
  4329. content: "";
  4330. background-image: var(--bs-accordion-btn-icon);
  4331. background-repeat: no-repeat;
  4332. background-size: var(--bs-accordion-btn-icon-width);
  4333. transition: var(--bs-accordion-btn-icon-transition);
  4334. }
  4335. @media (prefers-reduced-motion: reduce) {
  4336. .accordion-button::after {
  4337. transition: none;
  4338. }
  4339. }
  4340. .accordion-button:hover {
  4341. z-index: 2;
  4342. }
  4343. .accordion-button:focus {
  4344. z-index: 3;
  4345. outline: 0;
  4346. box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  4347. }
  4348. .accordion-header {
  4349. margin-bottom: 0;
  4350. }
  4351. .accordion-item {
  4352. color: var(--bs-accordion-color);
  4353. background-color: var(--bs-accordion-bg);
  4354. border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
  4355. }
  4356. .accordion-item:first-of-type {
  4357. border-top-right-radius: var(--bs-accordion-border-radius);
  4358. border-top-left-radius: var(--bs-accordion-border-radius);
  4359. }
  4360. .accordion-item:first-of-type > .accordion-header .accordion-button {
  4361. border-top-right-radius: var(--bs-accordion-inner-border-radius);
  4362. border-top-left-radius: var(--bs-accordion-inner-border-radius);
  4363. }
  4364. .accordion-item:not(:first-of-type) {
  4365. border-top: 0;
  4366. }
  4367. .accordion-item:last-of-type {
  4368. border-bottom-left-radius: var(--bs-accordion-border-radius);
  4369. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4370. }
  4371. .accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  4372. border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
  4373. border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  4374. }
  4375. .accordion-item:last-of-type > .accordion-collapse {
  4376. border-bottom-left-radius: var(--bs-accordion-border-radius);
  4377. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4378. }
  4379. .accordion-body {
  4380. padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  4381. }
  4382. .accordion-flush > .accordion-item {
  4383. border-left: 0;
  4384. border-right: 0;
  4385. border-radius: 0;
  4386. }
  4387. .accordion-flush > .accordion-item:first-child {
  4388. border-top: 0;
  4389. }
  4390. .accordion-flush > .accordion-item:last-child {
  4391. border-bottom: 0;
  4392. }
  4393. .accordion-flush > .accordion-item > .accordion-collapse,
  4394. .accordion-flush > .accordion-item > .accordion-header .accordion-button,
  4395. .accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  4396. border-radius: 0;
  4397. }
  4398. [data-bs-theme=dark] .accordion-button::after {
  4399. --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");
  4400. --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");
  4401. }
  4402. .breadcrumb {
  4403. --bs-breadcrumb-padding-x: 0;
  4404. --bs-breadcrumb-padding-y: 0;
  4405. --bs-breadcrumb-margin-bottom: 1rem;
  4406. --bs-breadcrumb-bg: ;
  4407. --bs-breadcrumb-border-radius: ;
  4408. --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  4409. --bs-breadcrumb-item-padding-x: 0.5rem;
  4410. --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  4411. display: flex;
  4412. flex-wrap: wrap;
  4413. padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  4414. margin-bottom: var(--bs-breadcrumb-margin-bottom);
  4415. font-size: var(--bs-breadcrumb-font-size);
  4416. list-style: none;
  4417. background-color: var(--bs-breadcrumb-bg);
  4418. border-radius: var(--bs-breadcrumb-border-radius);
  4419. }
  4420. .breadcrumb-item + .breadcrumb-item {
  4421. padding-right: var(--bs-breadcrumb-item-padding-x);
  4422. }
  4423. .breadcrumb-item + .breadcrumb-item::before {
  4424. float: right;
  4425. padding-left: var(--bs-breadcrumb-item-padding-x);
  4426. color: var(--bs-breadcrumb-divider-color);
  4427. content: var(--bs-breadcrumb-divider, "/") ;
  4428. }
  4429. .breadcrumb-item.active {
  4430. color: var(--bs-breadcrumb-item-active-color);
  4431. }
  4432. .pagination {
  4433. --bs-pagination-padding-x: 0.75rem;
  4434. --bs-pagination-padding-y: 0.375rem;
  4435. --bs-pagination-font-size: 1rem;
  4436. --bs-pagination-color: var(--bs-link-color);
  4437. --bs-pagination-bg: var(--bs-body-bg);
  4438. --bs-pagination-border-width: var(--bs-border-width);
  4439. --bs-pagination-border-color: var(--bs-border-color);
  4440. --bs-pagination-border-radius: var(--bs-border-radius);
  4441. --bs-pagination-hover-color: var(--bs-link-hover-color);
  4442. --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  4443. --bs-pagination-hover-border-color: var(--bs-border-color);
  4444. --bs-pagination-focus-color: var(--bs-link-hover-color);
  4445. --bs-pagination-focus-bg: var(--bs-secondary-bg);
  4446. --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4447. --bs-pagination-active-color: #fff;
  4448. --bs-pagination-active-bg: #0d6efd;
  4449. --bs-pagination-active-border-color: #0d6efd;
  4450. --bs-pagination-disabled-color: var(--bs-secondary-color);
  4451. --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  4452. --bs-pagination-disabled-border-color: var(--bs-border-color);
  4453. display: flex;
  4454. padding-right: 0;
  4455. list-style: none;
  4456. }
  4457. .page-link {
  4458. position: relative;
  4459. display: block;
  4460. padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  4461. font-size: var(--bs-pagination-font-size);
  4462. color: var(--bs-pagination-color);
  4463. text-decoration: none;
  4464. background-color: var(--bs-pagination-bg);
  4465. border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  4466. 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;
  4467. }
  4468. @media (prefers-reduced-motion: reduce) {
  4469. .page-link {
  4470. transition: none;
  4471. }
  4472. }
  4473. .page-link:hover {
  4474. z-index: 2;
  4475. color: var(--bs-pagination-hover-color);
  4476. background-color: var(--bs-pagination-hover-bg);
  4477. border-color: var(--bs-pagination-hover-border-color);
  4478. }
  4479. .page-link:focus {
  4480. z-index: 3;
  4481. color: var(--bs-pagination-focus-color);
  4482. background-color: var(--bs-pagination-focus-bg);
  4483. outline: 0;
  4484. box-shadow: var(--bs-pagination-focus-box-shadow);
  4485. }
  4486. .page-link.active, .active > .page-link {
  4487. z-index: 3;
  4488. color: var(--bs-pagination-active-color);
  4489. background-color: var(--bs-pagination-active-bg);
  4490. border-color: var(--bs-pagination-active-border-color);
  4491. }
  4492. .page-link.disabled, .disabled > .page-link {
  4493. color: var(--bs-pagination-disabled-color);
  4494. pointer-events: none;
  4495. background-color: var(--bs-pagination-disabled-bg);
  4496. border-color: var(--bs-pagination-disabled-border-color);
  4497. }
  4498. .page-item:not(:first-child) .page-link {
  4499. margin-right: calc(var(--bs-border-width) * -1);
  4500. }
  4501. .page-item .page-link {
  4502. border-radius: var(--bs-pagination-border-radius);
  4503. }
  4504. .pagination-lg {
  4505. --bs-pagination-padding-x: 1.5rem;
  4506. --bs-pagination-padding-y: 0.75rem;
  4507. --bs-pagination-font-size: 1.25rem;
  4508. --bs-pagination-border-radius: var(--bs-border-radius-lg);
  4509. }
  4510. .pagination-sm {
  4511. --bs-pagination-padding-x: 0.5rem;
  4512. --bs-pagination-padding-y: 0.25rem;
  4513. --bs-pagination-font-size: 0.875rem;
  4514. --bs-pagination-border-radius: var(--bs-border-radius-sm);
  4515. }
  4516. .badge {
  4517. --bs-badge-padding-x: 0.65em;
  4518. --bs-badge-padding-y: 0.35em;
  4519. --bs-badge-font-size: 0.75em;
  4520. --bs-badge-font-weight: 700;
  4521. --bs-badge-color: #fff;
  4522. --bs-badge-border-radius: var(--bs-border-radius);
  4523. display: inline-block;
  4524. padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  4525. font-size: var(--bs-badge-font-size);
  4526. font-weight: var(--bs-badge-font-weight);
  4527. line-height: 1;
  4528. color: var(--bs-badge-color);
  4529. text-align: center;
  4530. white-space: nowrap;
  4531. vertical-align: baseline;
  4532. border-radius: var(--bs-badge-border-radius);
  4533. }
  4534. .badge:empty {
  4535. display: none;
  4536. }
  4537. .btn .badge {
  4538. position: relative;
  4539. top: -1px;
  4540. }
  4541. .alert {
  4542. --bs-alert-bg: transparent;
  4543. --bs-alert-padding-x: 1rem;
  4544. --bs-alert-padding-y: 1rem;
  4545. --bs-alert-margin-bottom: 1rem;
  4546. --bs-alert-color: inherit;
  4547. --bs-alert-border-color: transparent;
  4548. --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  4549. --bs-alert-border-radius: var(--bs-border-radius);
  4550. --bs-alert-link-color: inherit;
  4551. position: relative;
  4552. padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  4553. margin-bottom: var(--bs-alert-margin-bottom);
  4554. color: var(--bs-alert-color);
  4555. background-color: var(--bs-alert-bg);
  4556. border: var(--bs-alert-border);
  4557. border-radius: var(--bs-alert-border-radius);
  4558. }
  4559. .alert-heading {
  4560. color: inherit;
  4561. }
  4562. .alert-link {
  4563. font-weight: 700;
  4564. color: var(--bs-alert-link-color);
  4565. }
  4566. .alert-dismissible {
  4567. padding-left: 3rem;
  4568. }
  4569. .alert-dismissible .btn-close {
  4570. position: absolute;
  4571. top: 0;
  4572. left: 0;
  4573. z-index: 2;
  4574. padding: 1.25rem 1rem;
  4575. }
  4576. .alert-primary {
  4577. --bs-alert-color: var(--bs-primary-text-emphasis);
  4578. --bs-alert-bg: var(--bs-primary-bg-subtle);
  4579. --bs-alert-border-color: var(--bs-primary-border-subtle);
  4580. --bs-alert-link-color: var(--bs-primary-text-emphasis);
  4581. }
  4582. .alert-secondary {
  4583. --bs-alert-color: var(--bs-secondary-text-emphasis);
  4584. --bs-alert-bg: var(--bs-secondary-bg-subtle);
  4585. --bs-alert-border-color: var(--bs-secondary-border-subtle);
  4586. --bs-alert-link-color: var(--bs-secondary-text-emphasis);
  4587. }
  4588. .alert-success {
  4589. --bs-alert-color: var(--bs-success-text-emphasis);
  4590. --bs-alert-bg: var(--bs-success-bg-subtle);
  4591. --bs-alert-border-color: var(--bs-success-border-subtle);
  4592. --bs-alert-link-color: var(--bs-success-text-emphasis);
  4593. }
  4594. .alert-info {
  4595. --bs-alert-color: var(--bs-info-text-emphasis);
  4596. --bs-alert-bg: var(--bs-info-bg-subtle);
  4597. --bs-alert-border-color: var(--bs-info-border-subtle);
  4598. --bs-alert-link-color: var(--bs-info-text-emphasis);
  4599. }
  4600. .alert-warning {
  4601. --bs-alert-color: var(--bs-warning-text-emphasis);
  4602. --bs-alert-bg: var(--bs-warning-bg-subtle);
  4603. --bs-alert-border-color: var(--bs-warning-border-subtle);
  4604. --bs-alert-link-color: var(--bs-warning-text-emphasis);
  4605. }
  4606. .alert-danger {
  4607. --bs-alert-color: var(--bs-danger-text-emphasis);
  4608. --bs-alert-bg: var(--bs-danger-bg-subtle);
  4609. --bs-alert-border-color: var(--bs-danger-border-subtle);
  4610. --bs-alert-link-color: var(--bs-danger-text-emphasis);
  4611. }
  4612. .alert-light {
  4613. --bs-alert-color: var(--bs-light-text-emphasis);
  4614. --bs-alert-bg: var(--bs-light-bg-subtle);
  4615. --bs-alert-border-color: var(--bs-light-border-subtle);
  4616. --bs-alert-link-color: var(--bs-light-text-emphasis);
  4617. }
  4618. .alert-dark {
  4619. --bs-alert-color: var(--bs-dark-text-emphasis);
  4620. --bs-alert-bg: var(--bs-dark-bg-subtle);
  4621. --bs-alert-border-color: var(--bs-dark-border-subtle);
  4622. --bs-alert-link-color: var(--bs-dark-text-emphasis);
  4623. }
  4624. @keyframes progress-bar-stripes {
  4625. 0% {
  4626. background-position-x: var(--bs-progress-height);
  4627. }
  4628. }
  4629. .progress,
  4630. .progress-stacked {
  4631. --bs-progress-height: 1rem;
  4632. --bs-progress-font-size: 0.75rem;
  4633. --bs-progress-bg: var(--bs-secondary-bg);
  4634. --bs-progress-border-radius: var(--bs-border-radius);
  4635. --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  4636. --bs-progress-bar-color: #fff;
  4637. --bs-progress-bar-bg: #0d6efd;
  4638. --bs-progress-bar-transition: width 0.6s ease;
  4639. display: flex;
  4640. height: var(--bs-progress-height);
  4641. overflow: hidden;
  4642. font-size: var(--bs-progress-font-size);
  4643. background-color: var(--bs-progress-bg);
  4644. border-radius: var(--bs-progress-border-radius);
  4645. box-shadow: var(--bs-progress-box-shadow);
  4646. }
  4647. .progress-bar {
  4648. display: flex;
  4649. flex-direction: column;
  4650. justify-content: center;
  4651. overflow: hidden;
  4652. color: var(--bs-progress-bar-color);
  4653. text-align: center;
  4654. white-space: nowrap;
  4655. background-color: var(--bs-progress-bar-bg);
  4656. transition: var(--bs-progress-bar-transition);
  4657. }
  4658. @media (prefers-reduced-motion: reduce) {
  4659. .progress-bar {
  4660. transition: none;
  4661. }
  4662. }
  4663. .progress-bar-striped {
  4664. 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);
  4665. background-size: var(--bs-progress-height) var(--bs-progress-height);
  4666. }
  4667. .progress-stacked > .progress {
  4668. overflow: visible;
  4669. }
  4670. .progress-stacked > .progress > .progress-bar {
  4671. width: 100%;
  4672. }
  4673. .progress-bar-animated {
  4674. animation: 1s linear infinite progress-bar-stripes;
  4675. }
  4676. @media (prefers-reduced-motion: reduce) {
  4677. .progress-bar-animated {
  4678. animation: none;
  4679. }
  4680. }
  4681. .list-group {
  4682. --bs-list-group-color: var(--bs-body-color);
  4683. --bs-list-group-bg: var(--bs-body-bg);
  4684. --bs-list-group-border-color: var(--bs-border-color);
  4685. --bs-list-group-border-width: var(--bs-border-width);
  4686. --bs-list-group-border-radius: var(--bs-border-radius);
  4687. --bs-list-group-item-padding-x: 1rem;
  4688. --bs-list-group-item-padding-y: 0.5rem;
  4689. --bs-list-group-action-color: var(--bs-secondary-color);
  4690. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4691. --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  4692. --bs-list-group-action-active-color: var(--bs-body-color);
  4693. --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  4694. --bs-list-group-disabled-color: var(--bs-secondary-color);
  4695. --bs-list-group-disabled-bg: var(--bs-body-bg);
  4696. --bs-list-group-active-color: #fff;
  4697. --bs-list-group-active-bg: #0d6efd;
  4698. --bs-list-group-active-border-color: #0d6efd;
  4699. display: flex;
  4700. flex-direction: column;
  4701. padding-right: 0;
  4702. margin-bottom: 0;
  4703. border-radius: var(--bs-list-group-border-radius);
  4704. }
  4705. .list-group-numbered {
  4706. list-style-type: none;
  4707. counter-reset: section;
  4708. }
  4709. .list-group-numbered > .list-group-item::before {
  4710. content: counters(section, ".") ". ";
  4711. counter-increment: section;
  4712. }
  4713. .list-group-item {
  4714. position: relative;
  4715. display: block;
  4716. padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  4717. color: var(--bs-list-group-color);
  4718. text-decoration: none;
  4719. background-color: var(--bs-list-group-bg);
  4720. border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
  4721. }
  4722. .list-group-item:first-child {
  4723. border-top-right-radius: inherit;
  4724. border-top-left-radius: inherit;
  4725. }
  4726. .list-group-item:last-child {
  4727. border-bottom-left-radius: inherit;
  4728. border-bottom-right-radius: inherit;
  4729. }
  4730. .list-group-item.disabled, .list-group-item:disabled {
  4731. color: var(--bs-list-group-disabled-color);
  4732. pointer-events: none;
  4733. background-color: var(--bs-list-group-disabled-bg);
  4734. }
  4735. .list-group-item.active {
  4736. z-index: 2;
  4737. color: var(--bs-list-group-active-color);
  4738. background-color: var(--bs-list-group-active-bg);
  4739. border-color: var(--bs-list-group-active-border-color);
  4740. }
  4741. .list-group-item + .list-group-item {
  4742. border-top-width: 0;
  4743. }
  4744. .list-group-item + .list-group-item.active {
  4745. margin-top: calc(-1 * var(--bs-list-group-border-width));
  4746. border-top-width: var(--bs-list-group-border-width);
  4747. }
  4748. .list-group-item-action {
  4749. width: 100%;
  4750. color: var(--bs-list-group-action-color);
  4751. text-align: inherit;
  4752. }
  4753. .list-group-item-action:not(.active):hover, .list-group-item-action:not(.active):focus {
  4754. z-index: 1;
  4755. color: var(--bs-list-group-action-hover-color);
  4756. text-decoration: none;
  4757. background-color: var(--bs-list-group-action-hover-bg);
  4758. }
  4759. .list-group-item-action:not(.active):active {
  4760. color: var(--bs-list-group-action-active-color);
  4761. background-color: var(--bs-list-group-action-active-bg);
  4762. }
  4763. .list-group-horizontal {
  4764. flex-direction: row;
  4765. }
  4766. .list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  4767. border-bottom-right-radius: var(--bs-list-group-border-radius);
  4768. border-top-left-radius: 0;
  4769. }
  4770. .list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  4771. border-top-left-radius: var(--bs-list-group-border-radius);
  4772. border-bottom-right-radius: 0;
  4773. }
  4774. .list-group-horizontal > .list-group-item.active {
  4775. margin-top: 0;
  4776. }
  4777. .list-group-horizontal > .list-group-item + .list-group-item {
  4778. border-top-width: var(--bs-list-group-border-width);
  4779. border-right-width: 0;
  4780. }
  4781. .list-group-horizontal > .list-group-item + .list-group-item.active {
  4782. margin-right: calc(-1 * var(--bs-list-group-border-width));
  4783. border-right-width: var(--bs-list-group-border-width);
  4784. }
  4785. @media (min-width: 576px) {
  4786. .list-group-horizontal-sm {
  4787. flex-direction: row;
  4788. }
  4789. .list-group-horizontal-sm > .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-sm > .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-sm > .list-group-item.active {
  4798. margin-top: 0;
  4799. }
  4800. .list-group-horizontal-sm > .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-sm > .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: 768px) {
  4810. .list-group-horizontal-md {
  4811. flex-direction: row;
  4812. }
  4813. .list-group-horizontal-md > .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-md > .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-md > .list-group-item.active {
  4822. margin-top: 0;
  4823. }
  4824. .list-group-horizontal-md > .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-md > .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: 992px) {
  4834. .list-group-horizontal-lg {
  4835. flex-direction: row;
  4836. }
  4837. .list-group-horizontal-lg > .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-lg > .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-lg > .list-group-item.active {
  4846. margin-top: 0;
  4847. }
  4848. .list-group-horizontal-lg > .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-lg > .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: 1200px) {
  4858. .list-group-horizontal-xl {
  4859. flex-direction: row;
  4860. }
  4861. .list-group-horizontal-xl > .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-xl > .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-xl > .list-group-item.active {
  4870. margin-top: 0;
  4871. }
  4872. .list-group-horizontal-xl > .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-xl > .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. @media (min-width: 1400px) {
  4882. .list-group-horizontal-xxl {
  4883. flex-direction: row;
  4884. }
  4885. .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
  4886. border-bottom-right-radius: var(--bs-list-group-border-radius);
  4887. border-top-left-radius: 0;
  4888. }
  4889. .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
  4890. border-top-left-radius: var(--bs-list-group-border-radius);
  4891. border-bottom-right-radius: 0;
  4892. }
  4893. .list-group-horizontal-xxl > .list-group-item.active {
  4894. margin-top: 0;
  4895. }
  4896. .list-group-horizontal-xxl > .list-group-item + .list-group-item {
  4897. border-top-width: var(--bs-list-group-border-width);
  4898. border-right-width: 0;
  4899. }
  4900. .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
  4901. margin-right: calc(-1 * var(--bs-list-group-border-width));
  4902. border-right-width: var(--bs-list-group-border-width);
  4903. }
  4904. }
  4905. .list-group-flush {
  4906. border-radius: 0;
  4907. }
  4908. .list-group-flush > .list-group-item {
  4909. border-width: 0 0 var(--bs-list-group-border-width);
  4910. }
  4911. .list-group-flush > .list-group-item:last-child {
  4912. border-bottom-width: 0;
  4913. }
  4914. .list-group-item-primary {
  4915. --bs-list-group-color: var(--bs-primary-text-emphasis);
  4916. --bs-list-group-bg: var(--bs-primary-bg-subtle);
  4917. --bs-list-group-border-color: var(--bs-primary-border-subtle);
  4918. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4919. --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  4920. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4921. --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  4922. --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  4923. --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  4924. --bs-list-group-active-border-color: var(--bs-primary-text-emphasis);
  4925. }
  4926. .list-group-item-secondary {
  4927. --bs-list-group-color: var(--bs-secondary-text-emphasis);
  4928. --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  4929. --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  4930. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4931. --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  4932. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4933. --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  4934. --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  4935. --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  4936. --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
  4937. }
  4938. .list-group-item-success {
  4939. --bs-list-group-color: var(--bs-success-text-emphasis);
  4940. --bs-list-group-bg: var(--bs-success-bg-subtle);
  4941. --bs-list-group-border-color: var(--bs-success-border-subtle);
  4942. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4943. --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  4944. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4945. --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  4946. --bs-list-group-active-color: var(--bs-success-bg-subtle);
  4947. --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  4948. --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
  4949. }
  4950. .list-group-item-info {
  4951. --bs-list-group-color: var(--bs-info-text-emphasis);
  4952. --bs-list-group-bg: var(--bs-info-bg-subtle);
  4953. --bs-list-group-border-color: var(--bs-info-border-subtle);
  4954. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4955. --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  4956. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4957. --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  4958. --bs-list-group-active-color: var(--bs-info-bg-subtle);
  4959. --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  4960. --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
  4961. }
  4962. .list-group-item-warning {
  4963. --bs-list-group-color: var(--bs-warning-text-emphasis);
  4964. --bs-list-group-bg: var(--bs-warning-bg-subtle);
  4965. --bs-list-group-border-color: var(--bs-warning-border-subtle);
  4966. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4967. --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  4968. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4969. --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  4970. --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  4971. --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  4972. --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
  4973. }
  4974. .list-group-item-danger {
  4975. --bs-list-group-color: var(--bs-danger-text-emphasis);
  4976. --bs-list-group-bg: var(--bs-danger-bg-subtle);
  4977. --bs-list-group-border-color: var(--bs-danger-border-subtle);
  4978. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4979. --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  4980. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4981. --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  4982. --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  4983. --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  4984. --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
  4985. }
  4986. .list-group-item-light {
  4987. --bs-list-group-color: var(--bs-light-text-emphasis);
  4988. --bs-list-group-bg: var(--bs-light-bg-subtle);
  4989. --bs-list-group-border-color: var(--bs-light-border-subtle);
  4990. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4991. --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  4992. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4993. --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  4994. --bs-list-group-active-color: var(--bs-light-bg-subtle);
  4995. --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  4996. --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
  4997. }
  4998. .list-group-item-dark {
  4999. --bs-list-group-color: var(--bs-dark-text-emphasis);
  5000. --bs-list-group-bg: var(--bs-dark-bg-subtle);
  5001. --bs-list-group-border-color: var(--bs-dark-border-subtle);
  5002. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  5003. --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  5004. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  5005. --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  5006. --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  5007. --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  5008. --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
  5009. }
  5010. .btn-close {
  5011. --bs-btn-close-color: #000;
  5012. --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");
  5013. --bs-btn-close-opacity: 0.5;
  5014. --bs-btn-close-hover-opacity: 0.75;
  5015. --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  5016. --bs-btn-close-focus-opacity: 1;
  5017. --bs-btn-close-disabled-opacity: 0.25;
  5018. box-sizing: content-box;
  5019. width: 1em;
  5020. height: 1em;
  5021. padding: 0.25em 0.25em;
  5022. color: var(--bs-btn-close-color);
  5023. background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  5024. filter: var(--bs-btn-close-filter);
  5025. border: 0;
  5026. border-radius: 0.375rem;
  5027. opacity: var(--bs-btn-close-opacity);
  5028. }
  5029. .btn-close:hover {
  5030. color: var(--bs-btn-close-color);
  5031. text-decoration: none;
  5032. opacity: var(--bs-btn-close-hover-opacity);
  5033. }
  5034. .btn-close:focus {
  5035. outline: 0;
  5036. box-shadow: var(--bs-btn-close-focus-shadow);
  5037. opacity: var(--bs-btn-close-focus-opacity);
  5038. }
  5039. .btn-close:disabled, .btn-close.disabled {
  5040. pointer-events: none;
  5041. -webkit-user-select: none;
  5042. -moz-user-select: none;
  5043. user-select: none;
  5044. opacity: var(--bs-btn-close-disabled-opacity);
  5045. }
  5046. .btn-close-white {
  5047. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  5048. }
  5049. :root,
  5050. [data-bs-theme=light] {
  5051. --bs-btn-close-filter: ;
  5052. }
  5053. [data-bs-theme=dark] {
  5054. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  5055. }
  5056. .toast {
  5057. --bs-toast-zindex: 1090;
  5058. --bs-toast-padding-x: 0.75rem;
  5059. --bs-toast-padding-y: 0.5rem;
  5060. --bs-toast-spacing: 1.5rem;
  5061. --bs-toast-max-width: 350px;
  5062. --bs-toast-font-size: 0.875rem;
  5063. --bs-toast-color: ;
  5064. --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  5065. --bs-toast-border-width: var(--bs-border-width);
  5066. --bs-toast-border-color: var(--bs-border-color-translucent);
  5067. --bs-toast-border-radius: var(--bs-border-radius);
  5068. --bs-toast-box-shadow: var(--bs-box-shadow);
  5069. --bs-toast-header-color: var(--bs-secondary-color);
  5070. --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  5071. --bs-toast-header-border-color: var(--bs-border-color-translucent);
  5072. width: var(--bs-toast-max-width);
  5073. max-width: 100%;
  5074. font-size: var(--bs-toast-font-size);
  5075. color: var(--bs-toast-color);
  5076. pointer-events: auto;
  5077. background-color: var(--bs-toast-bg);
  5078. background-clip: padding-box;
  5079. border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  5080. box-shadow: var(--bs-toast-box-shadow);
  5081. border-radius: var(--bs-toast-border-radius);
  5082. }
  5083. .toast.showing {
  5084. opacity: 0;
  5085. }
  5086. .toast:not(.show) {
  5087. display: none;
  5088. }
  5089. .toast-container {
  5090. --bs-toast-zindex: 1090;
  5091. position: absolute;
  5092. z-index: var(--bs-toast-zindex);
  5093. width: -moz-max-content;
  5094. width: max-content;
  5095. max-width: 100%;
  5096. pointer-events: none;
  5097. }
  5098. .toast-container > :not(:last-child) {
  5099. margin-bottom: var(--bs-toast-spacing);
  5100. }
  5101. .toast-header {
  5102. display: flex;
  5103. align-items: center;
  5104. padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  5105. color: var(--bs-toast-header-color);
  5106. background-color: var(--bs-toast-header-bg);
  5107. background-clip: padding-box;
  5108. border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  5109. border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  5110. border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  5111. }
  5112. .toast-header .btn-close {
  5113. margin-left: calc(-0.5 * var(--bs-toast-padding-x));
  5114. margin-right: var(--bs-toast-padding-x);
  5115. }
  5116. .toast-body {
  5117. padding: var(--bs-toast-padding-x);
  5118. word-wrap: break-word;
  5119. }
  5120. .modal {
  5121. --bs-modal-zindex: 1055;
  5122. --bs-modal-width: 500px;
  5123. --bs-modal-padding: 1rem;
  5124. --bs-modal-margin: 0.5rem;
  5125. --bs-modal-color: var(--bs-body-color);
  5126. --bs-modal-bg: var(--bs-body-bg);
  5127. --bs-modal-border-color: var(--bs-border-color-translucent);
  5128. --bs-modal-border-width: var(--bs-border-width);
  5129. --bs-modal-border-radius: var(--bs-border-radius-lg);
  5130. --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  5131. --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  5132. --bs-modal-header-padding-x: 1rem;
  5133. --bs-modal-header-padding-y: 1rem;
  5134. --bs-modal-header-padding: 1rem 1rem;
  5135. --bs-modal-header-border-color: var(--bs-border-color);
  5136. --bs-modal-header-border-width: var(--bs-border-width);
  5137. --bs-modal-title-line-height: 1.5;
  5138. --bs-modal-footer-gap: 0.5rem;
  5139. --bs-modal-footer-bg: ;
  5140. --bs-modal-footer-border-color: var(--bs-border-color);
  5141. --bs-modal-footer-border-width: var(--bs-border-width);
  5142. position: fixed;
  5143. top: 0;
  5144. right: 0;
  5145. z-index: var(--bs-modal-zindex);
  5146. display: none;
  5147. width: 100%;
  5148. height: 100%;
  5149. overflow-x: hidden;
  5150. overflow-y: auto;
  5151. outline: 0;
  5152. }
  5153. .modal-dialog {
  5154. position: relative;
  5155. width: auto;
  5156. margin: var(--bs-modal-margin);
  5157. pointer-events: none;
  5158. }
  5159. .modal.fade .modal-dialog {
  5160. transform: translate(0, -50px);
  5161. transition: transform 0.3s ease-out;
  5162. }
  5163. @media (prefers-reduced-motion: reduce) {
  5164. .modal.fade .modal-dialog {
  5165. transition: none;
  5166. }
  5167. }
  5168. .modal.show .modal-dialog {
  5169. transform: none;
  5170. }
  5171. .modal.modal-static .modal-dialog {
  5172. transform: scale(1.02);
  5173. }
  5174. .modal-dialog-scrollable {
  5175. height: calc(100% - var(--bs-modal-margin) * 2);
  5176. }
  5177. .modal-dialog-scrollable .modal-content {
  5178. max-height: 100%;
  5179. overflow: hidden;
  5180. }
  5181. .modal-dialog-scrollable .modal-body {
  5182. overflow-y: auto;
  5183. }
  5184. .modal-dialog-centered {
  5185. display: flex;
  5186. align-items: center;
  5187. min-height: calc(100% - var(--bs-modal-margin) * 2);
  5188. }
  5189. .modal-content {
  5190. position: relative;
  5191. display: flex;
  5192. flex-direction: column;
  5193. width: 100%;
  5194. color: var(--bs-modal-color);
  5195. pointer-events: auto;
  5196. background-color: var(--bs-modal-bg);
  5197. background-clip: padding-box;
  5198. border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  5199. border-radius: var(--bs-modal-border-radius);
  5200. box-shadow: var(--bs-modal-box-shadow);
  5201. outline: 0;
  5202. }
  5203. .modal-backdrop {
  5204. --bs-backdrop-zindex: 1050;
  5205. --bs-backdrop-bg: #000;
  5206. --bs-backdrop-opacity: 0.5;
  5207. position: fixed;
  5208. top: 0;
  5209. right: 0;
  5210. z-index: var(--bs-backdrop-zindex);
  5211. width: 100vw;
  5212. height: 100vh;
  5213. background-color: var(--bs-backdrop-bg);
  5214. }
  5215. .modal-backdrop.fade {
  5216. opacity: 0;
  5217. }
  5218. .modal-backdrop.show {
  5219. opacity: var(--bs-backdrop-opacity);
  5220. }
  5221. .modal-header {
  5222. display: flex;
  5223. flex-shrink: 0;
  5224. align-items: center;
  5225. padding: var(--bs-modal-header-padding);
  5226. border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  5227. border-top-right-radius: var(--bs-modal-inner-border-radius);
  5228. border-top-left-radius: var(--bs-modal-inner-border-radius);
  5229. }
  5230. .modal-header .btn-close {
  5231. padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  5232. margin-top: calc(-0.5 * var(--bs-modal-header-padding-y));
  5233. margin-left: calc(-0.5 * var(--bs-modal-header-padding-x));
  5234. margin-bottom: calc(-0.5 * var(--bs-modal-header-padding-y));
  5235. margin-right: auto;
  5236. }
  5237. .modal-title {
  5238. margin-bottom: 0;
  5239. line-height: var(--bs-modal-title-line-height);
  5240. }
  5241. .modal-body {
  5242. position: relative;
  5243. flex: 1 1 auto;
  5244. padding: var(--bs-modal-padding);
  5245. }
  5246. .modal-footer {
  5247. display: flex;
  5248. flex-shrink: 0;
  5249. flex-wrap: wrap;
  5250. align-items: center;
  5251. justify-content: flex-end;
  5252. padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  5253. background-color: var(--bs-modal-footer-bg);
  5254. border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  5255. border-bottom-left-radius: var(--bs-modal-inner-border-radius);
  5256. border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  5257. }
  5258. .modal-footer > * {
  5259. margin: calc(var(--bs-modal-footer-gap) * 0.5);
  5260. }
  5261. @media (min-width: 576px) {
  5262. .modal {
  5263. --bs-modal-margin: 1.75rem;
  5264. --bs-modal-box-shadow: var(--bs-box-shadow);
  5265. }
  5266. .modal-dialog {
  5267. max-width: var(--bs-modal-width);
  5268. margin-left: auto;
  5269. margin-right: auto;
  5270. }
  5271. .modal-sm {
  5272. --bs-modal-width: 300px;
  5273. }
  5274. }
  5275. @media (min-width: 992px) {
  5276. .modal-lg,
  5277. .modal-xl {
  5278. --bs-modal-width: 800px;
  5279. }
  5280. }
  5281. @media (min-width: 1200px) {
  5282. .modal-xl {
  5283. --bs-modal-width: 1140px;
  5284. }
  5285. }
  5286. .modal-fullscreen {
  5287. width: 100vw;
  5288. max-width: none;
  5289. height: 100%;
  5290. margin: 0;
  5291. }
  5292. .modal-fullscreen .modal-content {
  5293. height: 100%;
  5294. border: 0;
  5295. border-radius: 0;
  5296. }
  5297. .modal-fullscreen .modal-header,
  5298. .modal-fullscreen .modal-footer {
  5299. border-radius: 0;
  5300. }
  5301. .modal-fullscreen .modal-body {
  5302. overflow-y: auto;
  5303. }
  5304. @media (max-width: 575.98px) {
  5305. .modal-fullscreen-sm-down {
  5306. width: 100vw;
  5307. max-width: none;
  5308. height: 100%;
  5309. margin: 0;
  5310. }
  5311. .modal-fullscreen-sm-down .modal-content {
  5312. height: 100%;
  5313. border: 0;
  5314. border-radius: 0;
  5315. }
  5316. .modal-fullscreen-sm-down .modal-header,
  5317. .modal-fullscreen-sm-down .modal-footer {
  5318. border-radius: 0;
  5319. }
  5320. .modal-fullscreen-sm-down .modal-body {
  5321. overflow-y: auto;
  5322. }
  5323. }
  5324. @media (max-width: 767.98px) {
  5325. .modal-fullscreen-md-down {
  5326. width: 100vw;
  5327. max-width: none;
  5328. height: 100%;
  5329. margin: 0;
  5330. }
  5331. .modal-fullscreen-md-down .modal-content {
  5332. height: 100%;
  5333. border: 0;
  5334. border-radius: 0;
  5335. }
  5336. .modal-fullscreen-md-down .modal-header,
  5337. .modal-fullscreen-md-down .modal-footer {
  5338. border-radius: 0;
  5339. }
  5340. .modal-fullscreen-md-down .modal-body {
  5341. overflow-y: auto;
  5342. }
  5343. }
  5344. @media (max-width: 991.98px) {
  5345. .modal-fullscreen-lg-down {
  5346. width: 100vw;
  5347. max-width: none;
  5348. height: 100%;
  5349. margin: 0;
  5350. }
  5351. .modal-fullscreen-lg-down .modal-content {
  5352. height: 100%;
  5353. border: 0;
  5354. border-radius: 0;
  5355. }
  5356. .modal-fullscreen-lg-down .modal-header,
  5357. .modal-fullscreen-lg-down .modal-footer {
  5358. border-radius: 0;
  5359. }
  5360. .modal-fullscreen-lg-down .modal-body {
  5361. overflow-y: auto;
  5362. }
  5363. }
  5364. @media (max-width: 1199.98px) {
  5365. .modal-fullscreen-xl-down {
  5366. width: 100vw;
  5367. max-width: none;
  5368. height: 100%;
  5369. margin: 0;
  5370. }
  5371. .modal-fullscreen-xl-down .modal-content {
  5372. height: 100%;
  5373. border: 0;
  5374. border-radius: 0;
  5375. }
  5376. .modal-fullscreen-xl-down .modal-header,
  5377. .modal-fullscreen-xl-down .modal-footer {
  5378. border-radius: 0;
  5379. }
  5380. .modal-fullscreen-xl-down .modal-body {
  5381. overflow-y: auto;
  5382. }
  5383. }
  5384. @media (max-width: 1399.98px) {
  5385. .modal-fullscreen-xxl-down {
  5386. width: 100vw;
  5387. max-width: none;
  5388. height: 100%;
  5389. margin: 0;
  5390. }
  5391. .modal-fullscreen-xxl-down .modal-content {
  5392. height: 100%;
  5393. border: 0;
  5394. border-radius: 0;
  5395. }
  5396. .modal-fullscreen-xxl-down .modal-header,
  5397. .modal-fullscreen-xxl-down .modal-footer {
  5398. border-radius: 0;
  5399. }
  5400. .modal-fullscreen-xxl-down .modal-body {
  5401. overflow-y: auto;
  5402. }
  5403. }
  5404. .tooltip {
  5405. --bs-tooltip-zindex: 1080;
  5406. --bs-tooltip-max-width: 200px;
  5407. --bs-tooltip-padding-x: 0.5rem;
  5408. --bs-tooltip-padding-y: 0.25rem;
  5409. --bs-tooltip-margin: ;
  5410. --bs-tooltip-font-size: 0.875rem;
  5411. --bs-tooltip-color: var(--bs-body-bg);
  5412. --bs-tooltip-bg: var(--bs-emphasis-color);
  5413. --bs-tooltip-border-radius: var(--bs-border-radius);
  5414. --bs-tooltip-opacity: 0.9;
  5415. --bs-tooltip-arrow-width: 0.8rem;
  5416. --bs-tooltip-arrow-height: 0.4rem;
  5417. z-index: var(--bs-tooltip-zindex);
  5418. display: block;
  5419. margin: var(--bs-tooltip-margin);
  5420. font-family: var(--bs-font-sans-serif);
  5421. font-style: normal;
  5422. font-weight: 400;
  5423. line-height: 1.5;
  5424. text-align: right;
  5425. text-align: start;
  5426. text-decoration: none;
  5427. text-shadow: none;
  5428. text-transform: none;
  5429. letter-spacing: normal;
  5430. word-break: normal;
  5431. white-space: normal;
  5432. word-spacing: normal;
  5433. line-break: auto;
  5434. font-size: var(--bs-tooltip-font-size);
  5435. word-wrap: break-word;
  5436. opacity: 0;
  5437. }
  5438. .tooltip.show {
  5439. opacity: var(--bs-tooltip-opacity);
  5440. }
  5441. .tooltip .tooltip-arrow {
  5442. display: block;
  5443. width: var(--bs-tooltip-arrow-width);
  5444. height: var(--bs-tooltip-arrow-height);
  5445. }
  5446. .tooltip .tooltip-arrow::before {
  5447. position: absolute;
  5448. content: "";
  5449. border-color: transparent;
  5450. border-style: solid;
  5451. }
  5452. .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  5453. bottom: calc(-1 * var(--bs-tooltip-arrow-height));
  5454. }
  5455. .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  5456. top: -1px;
  5457. border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5458. border-top-color: var(--bs-tooltip-bg);
  5459. }
  5460. .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  5461. left: calc(-1 * var(--bs-tooltip-arrow-height));
  5462. width: var(--bs-tooltip-arrow-height);
  5463. height: var(--bs-tooltip-arrow-width);
  5464. }
  5465. .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  5466. right: -1px;
  5467. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5468. border-right-color: var(--bs-tooltip-bg);
  5469. }
  5470. .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  5471. top: calc(-1 * var(--bs-tooltip-arrow-height));
  5472. }
  5473. .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  5474. bottom: -1px;
  5475. border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5476. border-bottom-color: var(--bs-tooltip-bg);
  5477. }
  5478. .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  5479. right: calc(-1 * var(--bs-tooltip-arrow-height));
  5480. width: var(--bs-tooltip-arrow-height);
  5481. height: var(--bs-tooltip-arrow-width);
  5482. }
  5483. .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  5484. left: -1px;
  5485. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5486. border-left-color: var(--bs-tooltip-bg);
  5487. }
  5488. .tooltip-inner {
  5489. max-width: var(--bs-tooltip-max-width);
  5490. padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  5491. color: var(--bs-tooltip-color);
  5492. text-align: center;
  5493. background-color: var(--bs-tooltip-bg);
  5494. border-radius: var(--bs-tooltip-border-radius);
  5495. }
  5496. .popover {
  5497. --bs-popover-zindex: 1070;
  5498. --bs-popover-max-width: 276px;
  5499. --bs-popover-font-size: 0.875rem;
  5500. --bs-popover-bg: var(--bs-body-bg);
  5501. --bs-popover-border-width: var(--bs-border-width);
  5502. --bs-popover-border-color: var(--bs-border-color-translucent);
  5503. --bs-popover-border-radius: var(--bs-border-radius-lg);
  5504. --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
  5505. --bs-popover-box-shadow: var(--bs-box-shadow);
  5506. --bs-popover-header-padding-x: 1rem;
  5507. --bs-popover-header-padding-y: 0.5rem;
  5508. --bs-popover-header-font-size: 1rem;
  5509. --bs-popover-header-color: inherit;
  5510. --bs-popover-header-bg: var(--bs-secondary-bg);
  5511. --bs-popover-body-padding-x: 1rem;
  5512. --bs-popover-body-padding-y: 1rem;
  5513. --bs-popover-body-color: var(--bs-body-color);
  5514. --bs-popover-arrow-width: 1rem;
  5515. --bs-popover-arrow-height: 0.5rem;
  5516. --bs-popover-arrow-border: var(--bs-popover-border-color);
  5517. z-index: var(--bs-popover-zindex);
  5518. display: block;
  5519. max-width: var(--bs-popover-max-width);
  5520. font-family: var(--bs-font-sans-serif);
  5521. font-style: normal;
  5522. font-weight: 400;
  5523. line-height: 1.5;
  5524. text-align: right;
  5525. text-align: start;
  5526. text-decoration: none;
  5527. text-shadow: none;
  5528. text-transform: none;
  5529. letter-spacing: normal;
  5530. word-break: normal;
  5531. white-space: normal;
  5532. word-spacing: normal;
  5533. line-break: auto;
  5534. font-size: var(--bs-popover-font-size);
  5535. word-wrap: break-word;
  5536. background-color: var(--bs-popover-bg);
  5537. background-clip: padding-box;
  5538. border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5539. border-radius: var(--bs-popover-border-radius);
  5540. box-shadow: var(--bs-popover-box-shadow);
  5541. }
  5542. .popover .popover-arrow {
  5543. display: block;
  5544. width: var(--bs-popover-arrow-width);
  5545. height: var(--bs-popover-arrow-height);
  5546. }
  5547. .popover .popover-arrow::before, .popover .popover-arrow::after {
  5548. position: absolute;
  5549. display: block;
  5550. content: "";
  5551. border-color: transparent;
  5552. border-style: solid;
  5553. border-width: 0;
  5554. }
  5555. .bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  5556. bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5557. }
  5558. .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 {
  5559. border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  5560. }
  5561. .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  5562. bottom: 0;
  5563. border-top-color: var(--bs-popover-arrow-border);
  5564. }
  5565. .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  5566. bottom: var(--bs-popover-border-width);
  5567. border-top-color: var(--bs-popover-bg);
  5568. }
  5569. .bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  5570. left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5571. width: var(--bs-popover-arrow-height);
  5572. height: var(--bs-popover-arrow-width);
  5573. }
  5574. .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 {
  5575. border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  5576. }
  5577. .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  5578. left: 0;
  5579. border-right-color: var(--bs-popover-arrow-border);
  5580. }
  5581. .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  5582. left: var(--bs-popover-border-width);
  5583. border-right-color: var(--bs-popover-bg);
  5584. }
  5585. .bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  5586. top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5587. }
  5588. .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 {
  5589. border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  5590. }
  5591. .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  5592. top: 0;
  5593. border-bottom-color: var(--bs-popover-arrow-border);
  5594. }
  5595. .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  5596. top: var(--bs-popover-border-width);
  5597. border-bottom-color: var(--bs-popover-bg);
  5598. }
  5599. .bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  5600. position: absolute;
  5601. top: 0;
  5602. right: 50%;
  5603. display: block;
  5604. width: var(--bs-popover-arrow-width);
  5605. margin-right: calc(-0.5 * var(--bs-popover-arrow-width));
  5606. content: "";
  5607. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
  5608. }
  5609. .bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  5610. right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5611. width: var(--bs-popover-arrow-height);
  5612. height: var(--bs-popover-arrow-width);
  5613. }
  5614. .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 {
  5615. border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  5616. }
  5617. .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  5618. right: 0;
  5619. border-left-color: var(--bs-popover-arrow-border);
  5620. }
  5621. .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  5622. right: var(--bs-popover-border-width);
  5623. border-left-color: var(--bs-popover-bg);
  5624. }
  5625. .popover-header {
  5626. padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  5627. margin-bottom: 0;
  5628. font-size: var(--bs-popover-header-font-size);
  5629. color: var(--bs-popover-header-color);
  5630. background-color: var(--bs-popover-header-bg);
  5631. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5632. border-top-right-radius: var(--bs-popover-inner-border-radius);
  5633. border-top-left-radius: var(--bs-popover-inner-border-radius);
  5634. }
  5635. .popover-header:empty {
  5636. display: none;
  5637. }
  5638. .popover-body {
  5639. padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  5640. color: var(--bs-popover-body-color);
  5641. }
  5642. .carousel {
  5643. position: relative;
  5644. }
  5645. .carousel.pointer-event {
  5646. touch-action: pan-y;
  5647. }
  5648. .carousel-inner {
  5649. position: relative;
  5650. width: 100%;
  5651. overflow: hidden;
  5652. }
  5653. .carousel-inner::after {
  5654. display: block;
  5655. clear: both;
  5656. content: "";
  5657. }
  5658. .carousel-item {
  5659. position: relative;
  5660. display: none;
  5661. float: right;
  5662. width: 100%;
  5663. margin-left: -100%;
  5664. backface-visibility: hidden;
  5665. transition: transform 0.6s ease-in-out;
  5666. }
  5667. @media (prefers-reduced-motion: reduce) {
  5668. .carousel-item {
  5669. transition: none;
  5670. }
  5671. }
  5672. .carousel-item.active,
  5673. .carousel-item-next,
  5674. .carousel-item-prev {
  5675. display: block;
  5676. }
  5677. .carousel-item-next:not(.carousel-item-start),
  5678. .active.carousel-item-end {
  5679. transform: translateX(-100%);
  5680. }
  5681. .carousel-item-prev:not(.carousel-item-end),
  5682. .active.carousel-item-start {
  5683. transform: translateX(100%);
  5684. }
  5685. .carousel-fade .carousel-item {
  5686. opacity: 0;
  5687. transition-property: opacity;
  5688. transform: none;
  5689. }
  5690. .carousel-fade .carousel-item.active,
  5691. .carousel-fade .carousel-item-next.carousel-item-start,
  5692. .carousel-fade .carousel-item-prev.carousel-item-end {
  5693. z-index: 1;
  5694. opacity: 1;
  5695. }
  5696. .carousel-fade .active.carousel-item-start,
  5697. .carousel-fade .active.carousel-item-end {
  5698. z-index: 0;
  5699. opacity: 0;
  5700. transition: opacity 0s 0.6s;
  5701. }
  5702. @media (prefers-reduced-motion: reduce) {
  5703. .carousel-fade .active.carousel-item-start,
  5704. .carousel-fade .active.carousel-item-end {
  5705. transition: none;
  5706. }
  5707. }
  5708. .carousel-control-prev,
  5709. .carousel-control-next {
  5710. position: absolute;
  5711. top: 0;
  5712. bottom: 0;
  5713. z-index: 1;
  5714. display: flex;
  5715. align-items: center;
  5716. justify-content: center;
  5717. width: 15%;
  5718. padding: 0;
  5719. color: #fff;
  5720. text-align: center;
  5721. background: none;
  5722. filter: var(--bs-carousel-control-icon-filter);
  5723. border: 0;
  5724. opacity: 0.5;
  5725. transition: opacity 0.15s ease;
  5726. }
  5727. @media (prefers-reduced-motion: reduce) {
  5728. .carousel-control-prev,
  5729. .carousel-control-next {
  5730. transition: none;
  5731. }
  5732. }
  5733. .carousel-control-prev:hover, .carousel-control-prev:focus,
  5734. .carousel-control-next:hover,
  5735. .carousel-control-next:focus {
  5736. color: #fff;
  5737. text-decoration: none;
  5738. outline: 0;
  5739. opacity: 0.9;
  5740. }
  5741. .carousel-control-prev {
  5742. right: 0;
  5743. }
  5744. .carousel-control-next {
  5745. left: 0;
  5746. }
  5747. .carousel-control-prev-icon,
  5748. .carousel-control-next-icon {
  5749. display: inline-block;
  5750. width: 2rem;
  5751. height: 2rem;
  5752. background-repeat: no-repeat;
  5753. background-position: 50%;
  5754. background-size: 100% 100%;
  5755. }
  5756. .carousel-control-prev-icon {
  5757. 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");
  5758. }
  5759. .carousel-control-next-icon {
  5760. 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");
  5761. }
  5762. .carousel-indicators {
  5763. position: absolute;
  5764. left: 0;
  5765. bottom: 0;
  5766. right: 0;
  5767. z-index: 2;
  5768. display: flex;
  5769. justify-content: center;
  5770. padding: 0;
  5771. margin-left: 15%;
  5772. margin-bottom: 1rem;
  5773. margin-right: 15%;
  5774. }
  5775. .carousel-indicators [data-bs-target] {
  5776. box-sizing: content-box;
  5777. flex: 0 1 auto;
  5778. width: 30px;
  5779. height: 3px;
  5780. padding: 0;
  5781. margin-left: 3px;
  5782. margin-right: 3px;
  5783. text-indent: -999px;
  5784. cursor: pointer;
  5785. background-color: var(--bs-carousel-indicator-active-bg);
  5786. background-clip: padding-box;
  5787. border: 0;
  5788. border-top: 10px solid transparent;
  5789. border-bottom: 10px solid transparent;
  5790. opacity: 0.5;
  5791. transition: opacity 0.6s ease;
  5792. }
  5793. @media (prefers-reduced-motion: reduce) {
  5794. .carousel-indicators [data-bs-target] {
  5795. transition: none;
  5796. }
  5797. }
  5798. .carousel-indicators .active {
  5799. opacity: 1;
  5800. }
  5801. .carousel-caption {
  5802. position: absolute;
  5803. left: 15%;
  5804. bottom: 1.25rem;
  5805. right: 15%;
  5806. padding-top: 1.25rem;
  5807. padding-bottom: 1.25rem;
  5808. color: var(--bs-carousel-caption-color);
  5809. text-align: center;
  5810. }
  5811. .carousel-dark {
  5812. --bs-carousel-indicator-active-bg: #000;
  5813. --bs-carousel-caption-color: #000;
  5814. --bs-carousel-control-icon-filter: invert(1) grayscale(100);
  5815. }
  5816. :root,
  5817. [data-bs-theme=light] {
  5818. --bs-carousel-indicator-active-bg: #fff;
  5819. --bs-carousel-caption-color: #fff;
  5820. --bs-carousel-control-icon-filter: ;
  5821. }
  5822. [data-bs-theme=dark] {
  5823. --bs-carousel-indicator-active-bg: #000;
  5824. --bs-carousel-caption-color: #000;
  5825. --bs-carousel-control-icon-filter: invert(1) grayscale(100);
  5826. }
  5827. .spinner-grow,
  5828. .spinner-border {
  5829. display: inline-block;
  5830. flex-shrink: 0;
  5831. width: var(--bs-spinner-width);
  5832. height: var(--bs-spinner-height);
  5833. vertical-align: var(--bs-spinner-vertical-align);
  5834. border-radius: 50%;
  5835. animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
  5836. }
  5837. @keyframes spinner-border {
  5838. to {
  5839. transform: rotate(360deg) ;
  5840. }
  5841. }
  5842. .spinner-border {
  5843. --bs-spinner-width: 2rem;
  5844. --bs-spinner-height: 2rem;
  5845. --bs-spinner-vertical-align: -0.125em;
  5846. --bs-spinner-border-width: 0.25em;
  5847. --bs-spinner-animation-speed: 0.75s;
  5848. --bs-spinner-animation-name: spinner-border;
  5849. border: var(--bs-spinner-border-width) solid currentcolor;
  5850. border-left-color: transparent;
  5851. }
  5852. .spinner-border-sm {
  5853. --bs-spinner-width: 1rem;
  5854. --bs-spinner-height: 1rem;
  5855. --bs-spinner-border-width: 0.2em;
  5856. }
  5857. @keyframes spinner-grow {
  5858. 0% {
  5859. transform: scale(0);
  5860. }
  5861. 50% {
  5862. opacity: 1;
  5863. transform: none;
  5864. }
  5865. }
  5866. .spinner-grow {
  5867. --bs-spinner-width: 2rem;
  5868. --bs-spinner-height: 2rem;
  5869. --bs-spinner-vertical-align: -0.125em;
  5870. --bs-spinner-animation-speed: 0.75s;
  5871. --bs-spinner-animation-name: spinner-grow;
  5872. background-color: currentcolor;
  5873. opacity: 0;
  5874. }
  5875. .spinner-grow-sm {
  5876. --bs-spinner-width: 1rem;
  5877. --bs-spinner-height: 1rem;
  5878. }
  5879. @media (prefers-reduced-motion: reduce) {
  5880. .spinner-border,
  5881. .spinner-grow {
  5882. --bs-spinner-animation-speed: 1.5s;
  5883. }
  5884. }
  5885. .offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  5886. --bs-offcanvas-zindex: 1045;
  5887. --bs-offcanvas-width: 400px;
  5888. --bs-offcanvas-height: 30vh;
  5889. --bs-offcanvas-padding-x: 1rem;
  5890. --bs-offcanvas-padding-y: 1rem;
  5891. --bs-offcanvas-color: var(--bs-body-color);
  5892. --bs-offcanvas-bg: var(--bs-body-bg);
  5893. --bs-offcanvas-border-width: var(--bs-border-width);
  5894. --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  5895. --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
  5896. --bs-offcanvas-transition: transform 0.3s ease-in-out;
  5897. --bs-offcanvas-title-line-height: 1.5;
  5898. }
  5899. @media (max-width: 575.98px) {
  5900. .offcanvas-sm {
  5901. position: fixed;
  5902. bottom: 0;
  5903. z-index: var(--bs-offcanvas-zindex);
  5904. display: flex;
  5905. flex-direction: column;
  5906. max-width: 100%;
  5907. color: var(--bs-offcanvas-color);
  5908. visibility: hidden;
  5909. background-color: var(--bs-offcanvas-bg);
  5910. background-clip: padding-box;
  5911. outline: 0;
  5912. box-shadow: var(--bs-offcanvas-box-shadow);
  5913. transition: var(--bs-offcanvas-transition);
  5914. }
  5915. }
  5916. @media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  5917. .offcanvas-sm {
  5918. transition: none;
  5919. }
  5920. }
  5921. @media (max-width: 575.98px) {
  5922. .offcanvas-sm.offcanvas-start {
  5923. top: 0;
  5924. right: 0;
  5925. width: var(--bs-offcanvas-width);
  5926. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5927. transform: translateX(100%);
  5928. }
  5929. .offcanvas-sm.offcanvas-end {
  5930. top: 0;
  5931. left: 0;
  5932. width: var(--bs-offcanvas-width);
  5933. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5934. transform: translateX(-100%);
  5935. }
  5936. .offcanvas-sm.offcanvas-top {
  5937. top: 0;
  5938. left: 0;
  5939. right: 0;
  5940. height: var(--bs-offcanvas-height);
  5941. max-height: 100%;
  5942. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5943. transform: translateY(-100%);
  5944. }
  5945. .offcanvas-sm.offcanvas-bottom {
  5946. left: 0;
  5947. right: 0;
  5948. height: var(--bs-offcanvas-height);
  5949. max-height: 100%;
  5950. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5951. transform: translateY(100%);
  5952. }
  5953. .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
  5954. transform: none;
  5955. }
  5956. .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
  5957. visibility: visible;
  5958. }
  5959. }
  5960. @media (min-width: 576px) {
  5961. .offcanvas-sm {
  5962. --bs-offcanvas-height: auto;
  5963. --bs-offcanvas-border-width: 0;
  5964. background-color: transparent !important;
  5965. }
  5966. .offcanvas-sm .offcanvas-header {
  5967. display: none;
  5968. }
  5969. .offcanvas-sm .offcanvas-body {
  5970. display: flex;
  5971. flex-grow: 0;
  5972. padding: 0;
  5973. overflow-y: visible;
  5974. background-color: transparent !important;
  5975. }
  5976. }
  5977. @media (max-width: 767.98px) {
  5978. .offcanvas-md {
  5979. position: fixed;
  5980. bottom: 0;
  5981. z-index: var(--bs-offcanvas-zindex);
  5982. display: flex;
  5983. flex-direction: column;
  5984. max-width: 100%;
  5985. color: var(--bs-offcanvas-color);
  5986. visibility: hidden;
  5987. background-color: var(--bs-offcanvas-bg);
  5988. background-clip: padding-box;
  5989. outline: 0;
  5990. box-shadow: var(--bs-offcanvas-box-shadow);
  5991. transition: var(--bs-offcanvas-transition);
  5992. }
  5993. }
  5994. @media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  5995. .offcanvas-md {
  5996. transition: none;
  5997. }
  5998. }
  5999. @media (max-width: 767.98px) {
  6000. .offcanvas-md.offcanvas-start {
  6001. top: 0;
  6002. right: 0;
  6003. width: var(--bs-offcanvas-width);
  6004. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6005. transform: translateX(100%);
  6006. }
  6007. .offcanvas-md.offcanvas-end {
  6008. top: 0;
  6009. left: 0;
  6010. width: var(--bs-offcanvas-width);
  6011. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6012. transform: translateX(-100%);
  6013. }
  6014. .offcanvas-md.offcanvas-top {
  6015. top: 0;
  6016. left: 0;
  6017. right: 0;
  6018. height: var(--bs-offcanvas-height);
  6019. max-height: 100%;
  6020. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6021. transform: translateY(-100%);
  6022. }
  6023. .offcanvas-md.offcanvas-bottom {
  6024. left: 0;
  6025. right: 0;
  6026. height: var(--bs-offcanvas-height);
  6027. max-height: 100%;
  6028. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6029. transform: translateY(100%);
  6030. }
  6031. .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
  6032. transform: none;
  6033. }
  6034. .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
  6035. visibility: visible;
  6036. }
  6037. }
  6038. @media (min-width: 768px) {
  6039. .offcanvas-md {
  6040. --bs-offcanvas-height: auto;
  6041. --bs-offcanvas-border-width: 0;
  6042. background-color: transparent !important;
  6043. }
  6044. .offcanvas-md .offcanvas-header {
  6045. display: none;
  6046. }
  6047. .offcanvas-md .offcanvas-body {
  6048. display: flex;
  6049. flex-grow: 0;
  6050. padding: 0;
  6051. overflow-y: visible;
  6052. background-color: transparent !important;
  6053. }
  6054. }
  6055. @media (max-width: 991.98px) {
  6056. .offcanvas-lg {
  6057. position: fixed;
  6058. bottom: 0;
  6059. z-index: var(--bs-offcanvas-zindex);
  6060. display: flex;
  6061. flex-direction: column;
  6062. max-width: 100%;
  6063. color: var(--bs-offcanvas-color);
  6064. visibility: hidden;
  6065. background-color: var(--bs-offcanvas-bg);
  6066. background-clip: padding-box;
  6067. outline: 0;
  6068. box-shadow: var(--bs-offcanvas-box-shadow);
  6069. transition: var(--bs-offcanvas-transition);
  6070. }
  6071. }
  6072. @media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  6073. .offcanvas-lg {
  6074. transition: none;
  6075. }
  6076. }
  6077. @media (max-width: 991.98px) {
  6078. .offcanvas-lg.offcanvas-start {
  6079. top: 0;
  6080. right: 0;
  6081. width: var(--bs-offcanvas-width);
  6082. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6083. transform: translateX(100%);
  6084. }
  6085. .offcanvas-lg.offcanvas-end {
  6086. top: 0;
  6087. left: 0;
  6088. width: var(--bs-offcanvas-width);
  6089. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6090. transform: translateX(-100%);
  6091. }
  6092. .offcanvas-lg.offcanvas-top {
  6093. top: 0;
  6094. left: 0;
  6095. right: 0;
  6096. height: var(--bs-offcanvas-height);
  6097. max-height: 100%;
  6098. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6099. transform: translateY(-100%);
  6100. }
  6101. .offcanvas-lg.offcanvas-bottom {
  6102. left: 0;
  6103. right: 0;
  6104. height: var(--bs-offcanvas-height);
  6105. max-height: 100%;
  6106. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6107. transform: translateY(100%);
  6108. }
  6109. .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
  6110. transform: none;
  6111. }
  6112. .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
  6113. visibility: visible;
  6114. }
  6115. }
  6116. @media (min-width: 992px) {
  6117. .offcanvas-lg {
  6118. --bs-offcanvas-height: auto;
  6119. --bs-offcanvas-border-width: 0;
  6120. background-color: transparent !important;
  6121. }
  6122. .offcanvas-lg .offcanvas-header {
  6123. display: none;
  6124. }
  6125. .offcanvas-lg .offcanvas-body {
  6126. display: flex;
  6127. flex-grow: 0;
  6128. padding: 0;
  6129. overflow-y: visible;
  6130. background-color: transparent !important;
  6131. }
  6132. }
  6133. @media (max-width: 1199.98px) {
  6134. .offcanvas-xl {
  6135. position: fixed;
  6136. bottom: 0;
  6137. z-index: var(--bs-offcanvas-zindex);
  6138. display: flex;
  6139. flex-direction: column;
  6140. max-width: 100%;
  6141. color: var(--bs-offcanvas-color);
  6142. visibility: hidden;
  6143. background-color: var(--bs-offcanvas-bg);
  6144. background-clip: padding-box;
  6145. outline: 0;
  6146. box-shadow: var(--bs-offcanvas-box-shadow);
  6147. transition: var(--bs-offcanvas-transition);
  6148. }
  6149. }
  6150. @media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  6151. .offcanvas-xl {
  6152. transition: none;
  6153. }
  6154. }
  6155. @media (max-width: 1199.98px) {
  6156. .offcanvas-xl.offcanvas-start {
  6157. top: 0;
  6158. right: 0;
  6159. width: var(--bs-offcanvas-width);
  6160. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6161. transform: translateX(100%);
  6162. }
  6163. .offcanvas-xl.offcanvas-end {
  6164. top: 0;
  6165. left: 0;
  6166. width: var(--bs-offcanvas-width);
  6167. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6168. transform: translateX(-100%);
  6169. }
  6170. .offcanvas-xl.offcanvas-top {
  6171. top: 0;
  6172. left: 0;
  6173. right: 0;
  6174. height: var(--bs-offcanvas-height);
  6175. max-height: 100%;
  6176. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6177. transform: translateY(-100%);
  6178. }
  6179. .offcanvas-xl.offcanvas-bottom {
  6180. left: 0;
  6181. right: 0;
  6182. height: var(--bs-offcanvas-height);
  6183. max-height: 100%;
  6184. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6185. transform: translateY(100%);
  6186. }
  6187. .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
  6188. transform: none;
  6189. }
  6190. .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
  6191. visibility: visible;
  6192. }
  6193. }
  6194. @media (min-width: 1200px) {
  6195. .offcanvas-xl {
  6196. --bs-offcanvas-height: auto;
  6197. --bs-offcanvas-border-width: 0;
  6198. background-color: transparent !important;
  6199. }
  6200. .offcanvas-xl .offcanvas-header {
  6201. display: none;
  6202. }
  6203. .offcanvas-xl .offcanvas-body {
  6204. display: flex;
  6205. flex-grow: 0;
  6206. padding: 0;
  6207. overflow-y: visible;
  6208. background-color: transparent !important;
  6209. }
  6210. }
  6211. @media (max-width: 1399.98px) {
  6212. .offcanvas-xxl {
  6213. position: fixed;
  6214. bottom: 0;
  6215. z-index: var(--bs-offcanvas-zindex);
  6216. display: flex;
  6217. flex-direction: column;
  6218. max-width: 100%;
  6219. color: var(--bs-offcanvas-color);
  6220. visibility: hidden;
  6221. background-color: var(--bs-offcanvas-bg);
  6222. background-clip: padding-box;
  6223. outline: 0;
  6224. box-shadow: var(--bs-offcanvas-box-shadow);
  6225. transition: var(--bs-offcanvas-transition);
  6226. }
  6227. }
  6228. @media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  6229. .offcanvas-xxl {
  6230. transition: none;
  6231. }
  6232. }
  6233. @media (max-width: 1399.98px) {
  6234. .offcanvas-xxl.offcanvas-start {
  6235. top: 0;
  6236. right: 0;
  6237. width: var(--bs-offcanvas-width);
  6238. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6239. transform: translateX(100%);
  6240. }
  6241. .offcanvas-xxl.offcanvas-end {
  6242. top: 0;
  6243. left: 0;
  6244. width: var(--bs-offcanvas-width);
  6245. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6246. transform: translateX(-100%);
  6247. }
  6248. .offcanvas-xxl.offcanvas-top {
  6249. top: 0;
  6250. left: 0;
  6251. right: 0;
  6252. height: var(--bs-offcanvas-height);
  6253. max-height: 100%;
  6254. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6255. transform: translateY(-100%);
  6256. }
  6257. .offcanvas-xxl.offcanvas-bottom {
  6258. left: 0;
  6259. right: 0;
  6260. height: var(--bs-offcanvas-height);
  6261. max-height: 100%;
  6262. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6263. transform: translateY(100%);
  6264. }
  6265. .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
  6266. transform: none;
  6267. }
  6268. .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
  6269. visibility: visible;
  6270. }
  6271. }
  6272. @media (min-width: 1400px) {
  6273. .offcanvas-xxl {
  6274. --bs-offcanvas-height: auto;
  6275. --bs-offcanvas-border-width: 0;
  6276. background-color: transparent !important;
  6277. }
  6278. .offcanvas-xxl .offcanvas-header {
  6279. display: none;
  6280. }
  6281. .offcanvas-xxl .offcanvas-body {
  6282. display: flex;
  6283. flex-grow: 0;
  6284. padding: 0;
  6285. overflow-y: visible;
  6286. background-color: transparent !important;
  6287. }
  6288. }
  6289. .offcanvas {
  6290. position: fixed;
  6291. bottom: 0;
  6292. z-index: var(--bs-offcanvas-zindex);
  6293. display: flex;
  6294. flex-direction: column;
  6295. max-width: 100%;
  6296. color: var(--bs-offcanvas-color);
  6297. visibility: hidden;
  6298. background-color: var(--bs-offcanvas-bg);
  6299. background-clip: padding-box;
  6300. outline: 0;
  6301. box-shadow: var(--bs-offcanvas-box-shadow);
  6302. transition: var(--bs-offcanvas-transition);
  6303. }
  6304. @media (prefers-reduced-motion: reduce) {
  6305. .offcanvas {
  6306. transition: none;
  6307. }
  6308. }
  6309. .offcanvas.offcanvas-start {
  6310. top: 0;
  6311. right: 0;
  6312. width: var(--bs-offcanvas-width);
  6313. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6314. transform: translateX(100%);
  6315. }
  6316. .offcanvas.offcanvas-end {
  6317. top: 0;
  6318. left: 0;
  6319. width: var(--bs-offcanvas-width);
  6320. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6321. transform: translateX(-100%);
  6322. }
  6323. .offcanvas.offcanvas-top {
  6324. top: 0;
  6325. left: 0;
  6326. right: 0;
  6327. height: var(--bs-offcanvas-height);
  6328. max-height: 100%;
  6329. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6330. transform: translateY(-100%);
  6331. }
  6332. .offcanvas.offcanvas-bottom {
  6333. left: 0;
  6334. right: 0;
  6335. height: var(--bs-offcanvas-height);
  6336. max-height: 100%;
  6337. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6338. transform: translateY(100%);
  6339. }
  6340. .offcanvas.showing, .offcanvas.show:not(.hiding) {
  6341. transform: none;
  6342. }
  6343. .offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  6344. visibility: visible;
  6345. }
  6346. .offcanvas-backdrop {
  6347. position: fixed;
  6348. top: 0;
  6349. right: 0;
  6350. z-index: 1040;
  6351. width: 100vw;
  6352. height: 100vh;
  6353. background-color: #000;
  6354. }
  6355. .offcanvas-backdrop.fade {
  6356. opacity: 0;
  6357. }
  6358. .offcanvas-backdrop.show {
  6359. opacity: 0.5;
  6360. }
  6361. .offcanvas-header {
  6362. display: flex;
  6363. align-items: center;
  6364. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6365. }
  6366. .offcanvas-header .btn-close {
  6367. padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  6368. margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  6369. margin-left: calc(-0.5 * var(--bs-offcanvas-padding-x));
  6370. margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
  6371. margin-right: auto;
  6372. }
  6373. .offcanvas-title {
  6374. margin-bottom: 0;
  6375. line-height: var(--bs-offcanvas-title-line-height);
  6376. }
  6377. .offcanvas-body {
  6378. flex-grow: 1;
  6379. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6380. overflow-y: auto;
  6381. }
  6382. .placeholder {
  6383. display: inline-block;
  6384. min-height: 1em;
  6385. vertical-align: middle;
  6386. cursor: wait;
  6387. background-color: currentcolor;
  6388. opacity: 0.5;
  6389. }
  6390. .placeholder.btn::before {
  6391. display: inline-block;
  6392. content: "";
  6393. }
  6394. .placeholder-xs {
  6395. min-height: 0.6em;
  6396. }
  6397. .placeholder-sm {
  6398. min-height: 0.8em;
  6399. }
  6400. .placeholder-lg {
  6401. min-height: 1.2em;
  6402. }
  6403. .placeholder-glow .placeholder {
  6404. animation: placeholder-glow 2s ease-in-out infinite;
  6405. }
  6406. @keyframes placeholder-glow {
  6407. 50% {
  6408. opacity: 0.2;
  6409. }
  6410. }
  6411. .placeholder-wave {
  6412. -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6413. mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6414. -webkit-mask-size: 200% 100%;
  6415. mask-size: 200% 100%;
  6416. animation: placeholder-wave 2s linear infinite;
  6417. }
  6418. @keyframes placeholder-wave {
  6419. 100% {
  6420. -webkit-mask-position: -200% 0%;
  6421. mask-position: -200% 0%;
  6422. }
  6423. }
  6424. .clearfix::after {
  6425. display: block;
  6426. clear: both;
  6427. content: "";
  6428. }
  6429. .text-bg-primary {
  6430. color: #fff !important;
  6431. background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
  6432. }
  6433. .text-bg-secondary {
  6434. color: #fff !important;
  6435. background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
  6436. }
  6437. .text-bg-success {
  6438. color: #fff !important;
  6439. background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
  6440. }
  6441. .text-bg-info {
  6442. color: #000 !important;
  6443. background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
  6444. }
  6445. .text-bg-warning {
  6446. color: #000 !important;
  6447. background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
  6448. }
  6449. .text-bg-danger {
  6450. color: #fff !important;
  6451. background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
  6452. }
  6453. .text-bg-light {
  6454. color: #000 !important;
  6455. background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
  6456. }
  6457. .text-bg-dark {
  6458. color: #fff !important;
  6459. background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
  6460. }
  6461. .link-primary {
  6462. color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  6463. text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6464. }
  6465. .link-primary:hover, .link-primary:focus {
  6466. color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  6467. text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
  6468. }
  6469. .link-secondary {
  6470. color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  6471. text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6472. }
  6473. .link-secondary:hover, .link-secondary:focus {
  6474. color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  6475. text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
  6476. }
  6477. .link-success {
  6478. color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  6479. text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6480. }
  6481. .link-success:hover, .link-success:focus {
  6482. color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
  6483. text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
  6484. }
  6485. .link-info {
  6486. color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  6487. text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6488. }
  6489. .link-info:hover, .link-info:focus {
  6490. color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  6491. text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
  6492. }
  6493. .link-warning {
  6494. color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  6495. text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6496. }
  6497. .link-warning:hover, .link-warning:focus {
  6498. color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  6499. text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
  6500. }
  6501. .link-danger {
  6502. color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  6503. text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6504. }
  6505. .link-danger:hover, .link-danger:focus {
  6506. color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  6507. text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
  6508. }
  6509. .link-light {
  6510. color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  6511. text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6512. }
  6513. .link-light:hover, .link-light:focus {
  6514. color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  6515. text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
  6516. }
  6517. .link-dark {
  6518. color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  6519. text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6520. }
  6521. .link-dark:hover, .link-dark:focus {
  6522. color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  6523. text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
  6524. }
  6525. .link-body-emphasis {
  6526. color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  6527. text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6528. }
  6529. .link-body-emphasis:hover, .link-body-emphasis:focus {
  6530. color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  6531. text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
  6532. }
  6533. .focus-ring:focus {
  6534. outline: 0;
  6535. 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);
  6536. }
  6537. .icon-link {
  6538. display: inline-flex;
  6539. gap: 0.375rem;
  6540. align-items: center;
  6541. text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  6542. text-underline-offset: 0.25em;
  6543. backface-visibility: hidden;
  6544. }
  6545. .icon-link > .bi {
  6546. flex-shrink: 0;
  6547. width: 1em;
  6548. height: 1em;
  6549. fill: currentcolor;
  6550. transition: 0.2s ease-in-out transform;
  6551. }
  6552. @media (prefers-reduced-motion: reduce) {
  6553. .icon-link > .bi {
  6554. transition: none;
  6555. }
  6556. }
  6557. .icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  6558. transform: var(--bs-icon-link-transform, translate3d(-0.25em, 0, 0));
  6559. }
  6560. .ratio {
  6561. position: relative;
  6562. width: 100%;
  6563. }
  6564. .ratio::before {
  6565. display: block;
  6566. padding-top: var(--bs-aspect-ratio);
  6567. content: "";
  6568. }
  6569. .ratio > * {
  6570. position: absolute;
  6571. top: 0;
  6572. right: 0;
  6573. width: 100%;
  6574. height: 100%;
  6575. }
  6576. .ratio-1x1 {
  6577. --bs-aspect-ratio: 100%;
  6578. }
  6579. .ratio-4x3 {
  6580. --bs-aspect-ratio: 75%;
  6581. }
  6582. .ratio-16x9 {
  6583. --bs-aspect-ratio: 56.25%;
  6584. }
  6585. .ratio-21x9 {
  6586. --bs-aspect-ratio: 42.8571428571%;
  6587. }
  6588. .fixed-top {
  6589. position: fixed;
  6590. top: 0;
  6591. left: 0;
  6592. right: 0;
  6593. z-index: 1030;
  6594. }
  6595. .fixed-bottom {
  6596. position: fixed;
  6597. left: 0;
  6598. bottom: 0;
  6599. right: 0;
  6600. z-index: 1030;
  6601. }
  6602. .sticky-top {
  6603. position: sticky;
  6604. top: 0;
  6605. z-index: 1020;
  6606. }
  6607. .sticky-bottom {
  6608. position: sticky;
  6609. bottom: 0;
  6610. z-index: 1020;
  6611. }
  6612. @media (min-width: 576px) {
  6613. .sticky-sm-top {
  6614. position: sticky;
  6615. top: 0;
  6616. z-index: 1020;
  6617. }
  6618. .sticky-sm-bottom {
  6619. position: sticky;
  6620. bottom: 0;
  6621. z-index: 1020;
  6622. }
  6623. }
  6624. @media (min-width: 768px) {
  6625. .sticky-md-top {
  6626. position: sticky;
  6627. top: 0;
  6628. z-index: 1020;
  6629. }
  6630. .sticky-md-bottom {
  6631. position: sticky;
  6632. bottom: 0;
  6633. z-index: 1020;
  6634. }
  6635. }
  6636. @media (min-width: 992px) {
  6637. .sticky-lg-top {
  6638. position: sticky;
  6639. top: 0;
  6640. z-index: 1020;
  6641. }
  6642. .sticky-lg-bottom {
  6643. position: sticky;
  6644. bottom: 0;
  6645. z-index: 1020;
  6646. }
  6647. }
  6648. @media (min-width: 1200px) {
  6649. .sticky-xl-top {
  6650. position: sticky;
  6651. top: 0;
  6652. z-index: 1020;
  6653. }
  6654. .sticky-xl-bottom {
  6655. position: sticky;
  6656. bottom: 0;
  6657. z-index: 1020;
  6658. }
  6659. }
  6660. @media (min-width: 1400px) {
  6661. .sticky-xxl-top {
  6662. position: sticky;
  6663. top: 0;
  6664. z-index: 1020;
  6665. }
  6666. .sticky-xxl-bottom {
  6667. position: sticky;
  6668. bottom: 0;
  6669. z-index: 1020;
  6670. }
  6671. }
  6672. .hstack {
  6673. display: flex;
  6674. flex-direction: row;
  6675. align-items: center;
  6676. align-self: stretch;
  6677. }
  6678. .vstack {
  6679. display: flex;
  6680. flex: 1 1 auto;
  6681. flex-direction: column;
  6682. align-self: stretch;
  6683. }
  6684. .visually-hidden,
  6685. .visually-hidden-focusable:not(:focus):not(:focus-within) {
  6686. width: 1px !important;
  6687. height: 1px !important;
  6688. padding: 0 !important;
  6689. margin: -1px !important;
  6690. overflow: hidden !important;
  6691. clip: rect(0, 0, 0, 0) !important;
  6692. white-space: nowrap !important;
  6693. border: 0 !important;
  6694. }
  6695. .visually-hidden:not(caption),
  6696. .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  6697. position: absolute !important;
  6698. }
  6699. .visually-hidden *,
  6700. .visually-hidden-focusable:not(:focus):not(:focus-within) * {
  6701. overflow: hidden !important;
  6702. }
  6703. .stretched-link::after {
  6704. position: absolute;
  6705. top: 0;
  6706. left: 0;
  6707. bottom: 0;
  6708. right: 0;
  6709. z-index: 1;
  6710. content: "";
  6711. }
  6712. .text-truncate {
  6713. overflow: hidden;
  6714. text-overflow: ellipsis;
  6715. white-space: nowrap;
  6716. }
  6717. .vr {
  6718. display: inline-block;
  6719. align-self: stretch;
  6720. width: var(--bs-border-width);
  6721. min-height: 1em;
  6722. background-color: currentcolor;
  6723. opacity: 0.25;
  6724. }
  6725. .align-baseline {
  6726. vertical-align: baseline !important;
  6727. }
  6728. .align-top {
  6729. vertical-align: top !important;
  6730. }
  6731. .align-middle {
  6732. vertical-align: middle !important;
  6733. }
  6734. .align-bottom {
  6735. vertical-align: bottom !important;
  6736. }
  6737. .align-text-bottom {
  6738. vertical-align: text-bottom !important;
  6739. }
  6740. .align-text-top {
  6741. vertical-align: text-top !important;
  6742. }
  6743. .float-start {
  6744. float: right !important;
  6745. }
  6746. .float-end {
  6747. float: left !important;
  6748. }
  6749. .float-none {
  6750. float: none !important;
  6751. }
  6752. .object-fit-contain {
  6753. -o-object-fit: contain !important;
  6754. object-fit: contain !important;
  6755. }
  6756. .object-fit-cover {
  6757. -o-object-fit: cover !important;
  6758. object-fit: cover !important;
  6759. }
  6760. .object-fit-fill {
  6761. -o-object-fit: fill !important;
  6762. object-fit: fill !important;
  6763. }
  6764. .object-fit-scale {
  6765. -o-object-fit: scale-down !important;
  6766. object-fit: scale-down !important;
  6767. }
  6768. .object-fit-none {
  6769. -o-object-fit: none !important;
  6770. object-fit: none !important;
  6771. }
  6772. .opacity-0 {
  6773. opacity: 0 !important;
  6774. }
  6775. .opacity-25 {
  6776. opacity: 0.25 !important;
  6777. }
  6778. .opacity-50 {
  6779. opacity: 0.5 !important;
  6780. }
  6781. .opacity-75 {
  6782. opacity: 0.75 !important;
  6783. }
  6784. .opacity-100 {
  6785. opacity: 1 !important;
  6786. }
  6787. .overflow-auto {
  6788. overflow: auto !important;
  6789. }
  6790. .overflow-hidden {
  6791. overflow: hidden !important;
  6792. }
  6793. .overflow-visible {
  6794. overflow: visible !important;
  6795. }
  6796. .overflow-scroll {
  6797. overflow: scroll !important;
  6798. }
  6799. .overflow-x-auto {
  6800. overflow-x: auto !important;
  6801. }
  6802. .overflow-x-hidden {
  6803. overflow-x: hidden !important;
  6804. }
  6805. .overflow-x-visible {
  6806. overflow-x: visible !important;
  6807. }
  6808. .overflow-x-scroll {
  6809. overflow-x: scroll !important;
  6810. }
  6811. .overflow-y-auto {
  6812. overflow-y: auto !important;
  6813. }
  6814. .overflow-y-hidden {
  6815. overflow-y: hidden !important;
  6816. }
  6817. .overflow-y-visible {
  6818. overflow-y: visible !important;
  6819. }
  6820. .overflow-y-scroll {
  6821. overflow-y: scroll !important;
  6822. }
  6823. .d-inline {
  6824. display: inline !important;
  6825. }
  6826. .d-inline-block {
  6827. display: inline-block !important;
  6828. }
  6829. .d-block {
  6830. display: block !important;
  6831. }
  6832. .d-grid {
  6833. display: grid !important;
  6834. }
  6835. .d-inline-grid {
  6836. display: inline-grid !important;
  6837. }
  6838. .d-table {
  6839. display: table !important;
  6840. }
  6841. .d-table-row {
  6842. display: table-row !important;
  6843. }
  6844. .d-table-cell {
  6845. display: table-cell !important;
  6846. }
  6847. .d-flex {
  6848. display: flex !important;
  6849. }
  6850. .d-inline-flex {
  6851. display: inline-flex !important;
  6852. }
  6853. .d-none {
  6854. display: none !important;
  6855. }
  6856. .shadow {
  6857. box-shadow: var(--bs-box-shadow) !important;
  6858. }
  6859. .shadow-sm {
  6860. box-shadow: var(--bs-box-shadow-sm) !important;
  6861. }
  6862. .shadow-lg {
  6863. box-shadow: var(--bs-box-shadow-lg) !important;
  6864. }
  6865. .shadow-none {
  6866. box-shadow: none !important;
  6867. }
  6868. .focus-ring-primary {
  6869. --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
  6870. }
  6871. .focus-ring-secondary {
  6872. --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
  6873. }
  6874. .focus-ring-success {
  6875. --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
  6876. }
  6877. .focus-ring-info {
  6878. --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
  6879. }
  6880. .focus-ring-warning {
  6881. --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
  6882. }
  6883. .focus-ring-danger {
  6884. --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
  6885. }
  6886. .focus-ring-light {
  6887. --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
  6888. }
  6889. .focus-ring-dark {
  6890. --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
  6891. }
  6892. .position-static {
  6893. position: static !important;
  6894. }
  6895. .position-relative {
  6896. position: relative !important;
  6897. }
  6898. .position-absolute {
  6899. position: absolute !important;
  6900. }
  6901. .position-fixed {
  6902. position: fixed !important;
  6903. }
  6904. .position-sticky {
  6905. position: sticky !important;
  6906. }
  6907. .top-0 {
  6908. top: 0 !important;
  6909. }
  6910. .top-50 {
  6911. top: 50% !important;
  6912. }
  6913. .top-100 {
  6914. top: 100% !important;
  6915. }
  6916. .bottom-0 {
  6917. bottom: 0 !important;
  6918. }
  6919. .bottom-50 {
  6920. bottom: 50% !important;
  6921. }
  6922. .bottom-100 {
  6923. bottom: 100% !important;
  6924. }
  6925. .start-0 {
  6926. right: 0 !important;
  6927. }
  6928. .start-50 {
  6929. right: 50% !important;
  6930. }
  6931. .start-100 {
  6932. right: 100% !important;
  6933. }
  6934. .end-0 {
  6935. left: 0 !important;
  6936. }
  6937. .end-50 {
  6938. left: 50% !important;
  6939. }
  6940. .end-100 {
  6941. left: 100% !important;
  6942. }
  6943. .translate-middle {
  6944. transform: translate(50%, -50%) !important;
  6945. }
  6946. .translate-middle-x {
  6947. transform: translateX(50%) !important;
  6948. }
  6949. .translate-middle-y {
  6950. transform: translateY(-50%) !important;
  6951. }
  6952. .border {
  6953. border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6954. }
  6955. .border-0 {
  6956. border: 0 !important;
  6957. }
  6958. .border-top {
  6959. border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6960. }
  6961. .border-top-0 {
  6962. border-top: 0 !important;
  6963. }
  6964. .border-end {
  6965. border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6966. }
  6967. .border-end-0 {
  6968. border-left: 0 !important;
  6969. }
  6970. .border-bottom {
  6971. border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6972. }
  6973. .border-bottom-0 {
  6974. border-bottom: 0 !important;
  6975. }
  6976. .border-start {
  6977. border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6978. }
  6979. .border-start-0 {
  6980. border-right: 0 !important;
  6981. }
  6982. .border-primary {
  6983. --bs-border-opacity: 1;
  6984. border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
  6985. }
  6986. .border-secondary {
  6987. --bs-border-opacity: 1;
  6988. border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
  6989. }
  6990. .border-success {
  6991. --bs-border-opacity: 1;
  6992. border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
  6993. }
  6994. .border-info {
  6995. --bs-border-opacity: 1;
  6996. border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
  6997. }
  6998. .border-warning {
  6999. --bs-border-opacity: 1;
  7000. border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
  7001. }
  7002. .border-danger {
  7003. --bs-border-opacity: 1;
  7004. border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
  7005. }
  7006. .border-light {
  7007. --bs-border-opacity: 1;
  7008. border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
  7009. }
  7010. .border-dark {
  7011. --bs-border-opacity: 1;
  7012. border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
  7013. }
  7014. .border-black {
  7015. --bs-border-opacity: 1;
  7016. border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
  7017. }
  7018. .border-white {
  7019. --bs-border-opacity: 1;
  7020. border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
  7021. }
  7022. .border-primary-subtle {
  7023. border-color: var(--bs-primary-border-subtle) !important;
  7024. }
  7025. .border-secondary-subtle {
  7026. border-color: var(--bs-secondary-border-subtle) !important;
  7027. }
  7028. .border-success-subtle {
  7029. border-color: var(--bs-success-border-subtle) !important;
  7030. }
  7031. .border-info-subtle {
  7032. border-color: var(--bs-info-border-subtle) !important;
  7033. }
  7034. .border-warning-subtle {
  7035. border-color: var(--bs-warning-border-subtle) !important;
  7036. }
  7037. .border-danger-subtle {
  7038. border-color: var(--bs-danger-border-subtle) !important;
  7039. }
  7040. .border-light-subtle {
  7041. border-color: var(--bs-light-border-subtle) !important;
  7042. }
  7043. .border-dark-subtle {
  7044. border-color: var(--bs-dark-border-subtle) !important;
  7045. }
  7046. .border-1 {
  7047. border-width: 1px !important;
  7048. }
  7049. .border-2 {
  7050. border-width: 2px !important;
  7051. }
  7052. .border-3 {
  7053. border-width: 3px !important;
  7054. }
  7055. .border-4 {
  7056. border-width: 4px !important;
  7057. }
  7058. .border-5 {
  7059. border-width: 5px !important;
  7060. }
  7061. .border-opacity-10 {
  7062. --bs-border-opacity: 0.1;
  7063. }
  7064. .border-opacity-25 {
  7065. --bs-border-opacity: 0.25;
  7066. }
  7067. .border-opacity-50 {
  7068. --bs-border-opacity: 0.5;
  7069. }
  7070. .border-opacity-75 {
  7071. --bs-border-opacity: 0.75;
  7072. }
  7073. .border-opacity-100 {
  7074. --bs-border-opacity: 1;
  7075. }
  7076. .w-25 {
  7077. width: 25% !important;
  7078. }
  7079. .w-50 {
  7080. width: 50% !important;
  7081. }
  7082. .w-75 {
  7083. width: 75% !important;
  7084. }
  7085. .w-100 {
  7086. width: 100% !important;
  7087. }
  7088. .w-auto {
  7089. width: auto !important;
  7090. }
  7091. .mw-100 {
  7092. max-width: 100% !important;
  7093. }
  7094. .vw-100 {
  7095. width: 100vw !important;
  7096. }
  7097. .min-vw-100 {
  7098. min-width: 100vw !important;
  7099. }
  7100. .h-25 {
  7101. height: 25% !important;
  7102. }
  7103. .h-50 {
  7104. height: 50% !important;
  7105. }
  7106. .h-75 {
  7107. height: 75% !important;
  7108. }
  7109. .h-100 {
  7110. height: 100% !important;
  7111. }
  7112. .h-auto {
  7113. height: auto !important;
  7114. }
  7115. .mh-100 {
  7116. max-height: 100% !important;
  7117. }
  7118. .vh-100 {
  7119. height: 100vh !important;
  7120. }
  7121. .min-vh-100 {
  7122. min-height: 100vh !important;
  7123. }
  7124. .flex-fill {
  7125. flex: 1 1 auto !important;
  7126. }
  7127. .flex-row {
  7128. flex-direction: row !important;
  7129. }
  7130. .flex-column {
  7131. flex-direction: column !important;
  7132. }
  7133. .flex-row-reverse {
  7134. flex-direction: row-reverse !important;
  7135. }
  7136. .flex-column-reverse {
  7137. flex-direction: column-reverse !important;
  7138. }
  7139. .flex-grow-0 {
  7140. flex-grow: 0 !important;
  7141. }
  7142. .flex-grow-1 {
  7143. flex-grow: 1 !important;
  7144. }
  7145. .flex-shrink-0 {
  7146. flex-shrink: 0 !important;
  7147. }
  7148. .flex-shrink-1 {
  7149. flex-shrink: 1 !important;
  7150. }
  7151. .flex-wrap {
  7152. flex-wrap: wrap !important;
  7153. }
  7154. .flex-nowrap {
  7155. flex-wrap: nowrap !important;
  7156. }
  7157. .flex-wrap-reverse {
  7158. flex-wrap: wrap-reverse !important;
  7159. }
  7160. .justify-content-start {
  7161. justify-content: flex-start !important;
  7162. }
  7163. .justify-content-end {
  7164. justify-content: flex-end !important;
  7165. }
  7166. .justify-content-center {
  7167. justify-content: center !important;
  7168. }
  7169. .justify-content-between {
  7170. justify-content: space-between !important;
  7171. }
  7172. .justify-content-around {
  7173. justify-content: space-around !important;
  7174. }
  7175. .justify-content-evenly {
  7176. justify-content: space-evenly !important;
  7177. }
  7178. .align-items-start {
  7179. align-items: flex-start !important;
  7180. }
  7181. .align-items-end {
  7182. align-items: flex-end !important;
  7183. }
  7184. .align-items-center {
  7185. align-items: center !important;
  7186. }
  7187. .align-items-baseline {
  7188. align-items: baseline !important;
  7189. }
  7190. .align-items-stretch {
  7191. align-items: stretch !important;
  7192. }
  7193. .align-content-start {
  7194. align-content: flex-start !important;
  7195. }
  7196. .align-content-end {
  7197. align-content: flex-end !important;
  7198. }
  7199. .align-content-center {
  7200. align-content: center !important;
  7201. }
  7202. .align-content-between {
  7203. align-content: space-between !important;
  7204. }
  7205. .align-content-around {
  7206. align-content: space-around !important;
  7207. }
  7208. .align-content-stretch {
  7209. align-content: stretch !important;
  7210. }
  7211. .align-self-auto {
  7212. align-self: auto !important;
  7213. }
  7214. .align-self-start {
  7215. align-self: flex-start !important;
  7216. }
  7217. .align-self-end {
  7218. align-self: flex-end !important;
  7219. }
  7220. .align-self-center {
  7221. align-self: center !important;
  7222. }
  7223. .align-self-baseline {
  7224. align-self: baseline !important;
  7225. }
  7226. .align-self-stretch {
  7227. align-self: stretch !important;
  7228. }
  7229. .order-first {
  7230. order: -1 !important;
  7231. }
  7232. .order-0 {
  7233. order: 0 !important;
  7234. }
  7235. .order-1 {
  7236. order: 1 !important;
  7237. }
  7238. .order-2 {
  7239. order: 2 !important;
  7240. }
  7241. .order-3 {
  7242. order: 3 !important;
  7243. }
  7244. .order-4 {
  7245. order: 4 !important;
  7246. }
  7247. .order-5 {
  7248. order: 5 !important;
  7249. }
  7250. .order-last {
  7251. order: 6 !important;
  7252. }
  7253. .m-0 {
  7254. margin: 0 !important;
  7255. }
  7256. .m-1 {
  7257. margin: 0.25rem !important;
  7258. }
  7259. .m-2 {
  7260. margin: 0.5rem !important;
  7261. }
  7262. .m-3 {
  7263. margin: 1rem !important;
  7264. }
  7265. .m-4 {
  7266. margin: 1.5rem !important;
  7267. }
  7268. .m-5 {
  7269. margin: 3rem !important;
  7270. }
  7271. .m-auto {
  7272. margin: auto !important;
  7273. }
  7274. .mx-0 {
  7275. margin-left: 0 !important;
  7276. margin-right: 0 !important;
  7277. }
  7278. .mx-1 {
  7279. margin-left: 0.25rem !important;
  7280. margin-right: 0.25rem !important;
  7281. }
  7282. .mx-2 {
  7283. margin-left: 0.5rem !important;
  7284. margin-right: 0.5rem !important;
  7285. }
  7286. .mx-3 {
  7287. margin-left: 1rem !important;
  7288. margin-right: 1rem !important;
  7289. }
  7290. .mx-4 {
  7291. margin-left: 1.5rem !important;
  7292. margin-right: 1.5rem !important;
  7293. }
  7294. .mx-5 {
  7295. margin-left: 3rem !important;
  7296. margin-right: 3rem !important;
  7297. }
  7298. .mx-auto {
  7299. margin-left: auto !important;
  7300. margin-right: auto !important;
  7301. }
  7302. .my-0 {
  7303. margin-top: 0 !important;
  7304. margin-bottom: 0 !important;
  7305. }
  7306. .my-1 {
  7307. margin-top: 0.25rem !important;
  7308. margin-bottom: 0.25rem !important;
  7309. }
  7310. .my-2 {
  7311. margin-top: 0.5rem !important;
  7312. margin-bottom: 0.5rem !important;
  7313. }
  7314. .my-3 {
  7315. margin-top: 1rem !important;
  7316. margin-bottom: 1rem !important;
  7317. }
  7318. .my-4 {
  7319. margin-top: 1.5rem !important;
  7320. margin-bottom: 1.5rem !important;
  7321. }
  7322. .my-5 {
  7323. margin-top: 3rem !important;
  7324. margin-bottom: 3rem !important;
  7325. }
  7326. .my-auto {
  7327. margin-top: auto !important;
  7328. margin-bottom: auto !important;
  7329. }
  7330. .mt-0 {
  7331. margin-top: 0 !important;
  7332. }
  7333. .mt-1 {
  7334. margin-top: 0.25rem !important;
  7335. }
  7336. .mt-2 {
  7337. margin-top: 0.5rem !important;
  7338. }
  7339. .mt-3 {
  7340. margin-top: 1rem !important;
  7341. }
  7342. .mt-4 {
  7343. margin-top: 1.5rem !important;
  7344. }
  7345. .mt-5 {
  7346. margin-top: 3rem !important;
  7347. }
  7348. .mt-auto {
  7349. margin-top: auto !important;
  7350. }
  7351. .me-0 {
  7352. margin-left: 0 !important;
  7353. }
  7354. .me-1 {
  7355. margin-left: 0.25rem !important;
  7356. }
  7357. .me-2 {
  7358. margin-left: 0.5rem !important;
  7359. }
  7360. .me-3 {
  7361. margin-left: 1rem !important;
  7362. }
  7363. .me-4 {
  7364. margin-left: 1.5rem !important;
  7365. }
  7366. .me-5 {
  7367. margin-left: 3rem !important;
  7368. }
  7369. .me-auto {
  7370. margin-left: auto !important;
  7371. }
  7372. .mb-0 {
  7373. margin-bottom: 0 !important;
  7374. }
  7375. .mb-1 {
  7376. margin-bottom: 0.25rem !important;
  7377. }
  7378. .mb-2 {
  7379. margin-bottom: 0.5rem !important;
  7380. }
  7381. .mb-3 {
  7382. margin-bottom: 1rem !important;
  7383. }
  7384. .mb-4 {
  7385. margin-bottom: 1.5rem !important;
  7386. }
  7387. .mb-5 {
  7388. margin-bottom: 3rem !important;
  7389. }
  7390. .mb-auto {
  7391. margin-bottom: auto !important;
  7392. }
  7393. .ms-0 {
  7394. margin-right: 0 !important;
  7395. }
  7396. .ms-1 {
  7397. margin-right: 0.25rem !important;
  7398. }
  7399. .ms-2 {
  7400. margin-right: 0.5rem !important;
  7401. }
  7402. .ms-3 {
  7403. margin-right: 1rem !important;
  7404. }
  7405. .ms-4 {
  7406. margin-right: 1.5rem !important;
  7407. }
  7408. .ms-5 {
  7409. margin-right: 3rem !important;
  7410. }
  7411. .ms-auto {
  7412. margin-right: auto !important;
  7413. }
  7414. .m-n1 {
  7415. margin: -0.25rem !important;
  7416. }
  7417. .m-n2 {
  7418. margin: -0.5rem !important;
  7419. }
  7420. .m-n3 {
  7421. margin: -1rem !important;
  7422. }
  7423. .m-n4 {
  7424. margin: -1.5rem !important;
  7425. }
  7426. .m-n5 {
  7427. margin: -3rem !important;
  7428. }
  7429. .mx-n1 {
  7430. margin-left: -0.25rem !important;
  7431. margin-right: -0.25rem !important;
  7432. }
  7433. .mx-n2 {
  7434. margin-left: -0.5rem !important;
  7435. margin-right: -0.5rem !important;
  7436. }
  7437. .mx-n3 {
  7438. margin-left: -1rem !important;
  7439. margin-right: -1rem !important;
  7440. }
  7441. .mx-n4 {
  7442. margin-left: -1.5rem !important;
  7443. margin-right: -1.5rem !important;
  7444. }
  7445. .mx-n5 {
  7446. margin-left: -3rem !important;
  7447. margin-right: -3rem !important;
  7448. }
  7449. .my-n1 {
  7450. margin-top: -0.25rem !important;
  7451. margin-bottom: -0.25rem !important;
  7452. }
  7453. .my-n2 {
  7454. margin-top: -0.5rem !important;
  7455. margin-bottom: -0.5rem !important;
  7456. }
  7457. .my-n3 {
  7458. margin-top: -1rem !important;
  7459. margin-bottom: -1rem !important;
  7460. }
  7461. .my-n4 {
  7462. margin-top: -1.5rem !important;
  7463. margin-bottom: -1.5rem !important;
  7464. }
  7465. .my-n5 {
  7466. margin-top: -3rem !important;
  7467. margin-bottom: -3rem !important;
  7468. }
  7469. .mt-n1 {
  7470. margin-top: -0.25rem !important;
  7471. }
  7472. .mt-n2 {
  7473. margin-top: -0.5rem !important;
  7474. }
  7475. .mt-n3 {
  7476. margin-top: -1rem !important;
  7477. }
  7478. .mt-n4 {
  7479. margin-top: -1.5rem !important;
  7480. }
  7481. .mt-n5 {
  7482. margin-top: -3rem !important;
  7483. }
  7484. .me-n1 {
  7485. margin-left: -0.25rem !important;
  7486. }
  7487. .me-n2 {
  7488. margin-left: -0.5rem !important;
  7489. }
  7490. .me-n3 {
  7491. margin-left: -1rem !important;
  7492. }
  7493. .me-n4 {
  7494. margin-left: -1.5rem !important;
  7495. }
  7496. .me-n5 {
  7497. margin-left: -3rem !important;
  7498. }
  7499. .mb-n1 {
  7500. margin-bottom: -0.25rem !important;
  7501. }
  7502. .mb-n2 {
  7503. margin-bottom: -0.5rem !important;
  7504. }
  7505. .mb-n3 {
  7506. margin-bottom: -1rem !important;
  7507. }
  7508. .mb-n4 {
  7509. margin-bottom: -1.5rem !important;
  7510. }
  7511. .mb-n5 {
  7512. margin-bottom: -3rem !important;
  7513. }
  7514. .ms-n1 {
  7515. margin-right: -0.25rem !important;
  7516. }
  7517. .ms-n2 {
  7518. margin-right: -0.5rem !important;
  7519. }
  7520. .ms-n3 {
  7521. margin-right: -1rem !important;
  7522. }
  7523. .ms-n4 {
  7524. margin-right: -1.5rem !important;
  7525. }
  7526. .ms-n5 {
  7527. margin-right: -3rem !important;
  7528. }
  7529. .p-0 {
  7530. padding: 0 !important;
  7531. }
  7532. .p-1 {
  7533. padding: 0.25rem !important;
  7534. }
  7535. .p-2 {
  7536. padding: 0.5rem !important;
  7537. }
  7538. .p-3 {
  7539. padding: 1rem !important;
  7540. }
  7541. .p-4 {
  7542. padding: 1.5rem !important;
  7543. }
  7544. .p-5 {
  7545. padding: 3rem !important;
  7546. }
  7547. .px-0 {
  7548. padding-left: 0 !important;
  7549. padding-right: 0 !important;
  7550. }
  7551. .px-1 {
  7552. padding-left: 0.25rem !important;
  7553. padding-right: 0.25rem !important;
  7554. }
  7555. .px-2 {
  7556. padding-left: 0.5rem !important;
  7557. padding-right: 0.5rem !important;
  7558. }
  7559. .px-3 {
  7560. padding-left: 1rem !important;
  7561. padding-right: 1rem !important;
  7562. }
  7563. .px-4 {
  7564. padding-left: 1.5rem !important;
  7565. padding-right: 1.5rem !important;
  7566. }
  7567. .px-5 {
  7568. padding-left: 3rem !important;
  7569. padding-right: 3rem !important;
  7570. }
  7571. .py-0 {
  7572. padding-top: 0 !important;
  7573. padding-bottom: 0 !important;
  7574. }
  7575. .py-1 {
  7576. padding-top: 0.25rem !important;
  7577. padding-bottom: 0.25rem !important;
  7578. }
  7579. .py-2 {
  7580. padding-top: 0.5rem !important;
  7581. padding-bottom: 0.5rem !important;
  7582. }
  7583. .py-3 {
  7584. padding-top: 1rem !important;
  7585. padding-bottom: 1rem !important;
  7586. }
  7587. .py-4 {
  7588. padding-top: 1.5rem !important;
  7589. padding-bottom: 1.5rem !important;
  7590. }
  7591. .py-5 {
  7592. padding-top: 3rem !important;
  7593. padding-bottom: 3rem !important;
  7594. }
  7595. .pt-0 {
  7596. padding-top: 0 !important;
  7597. }
  7598. .pt-1 {
  7599. padding-top: 0.25rem !important;
  7600. }
  7601. .pt-2 {
  7602. padding-top: 0.5rem !important;
  7603. }
  7604. .pt-3 {
  7605. padding-top: 1rem !important;
  7606. }
  7607. .pt-4 {
  7608. padding-top: 1.5rem !important;
  7609. }
  7610. .pt-5 {
  7611. padding-top: 3rem !important;
  7612. }
  7613. .pe-0 {
  7614. padding-left: 0 !important;
  7615. }
  7616. .pe-1 {
  7617. padding-left: 0.25rem !important;
  7618. }
  7619. .pe-2 {
  7620. padding-left: 0.5rem !important;
  7621. }
  7622. .pe-3 {
  7623. padding-left: 1rem !important;
  7624. }
  7625. .pe-4 {
  7626. padding-left: 1.5rem !important;
  7627. }
  7628. .pe-5 {
  7629. padding-left: 3rem !important;
  7630. }
  7631. .pb-0 {
  7632. padding-bottom: 0 !important;
  7633. }
  7634. .pb-1 {
  7635. padding-bottom: 0.25rem !important;
  7636. }
  7637. .pb-2 {
  7638. padding-bottom: 0.5rem !important;
  7639. }
  7640. .pb-3 {
  7641. padding-bottom: 1rem !important;
  7642. }
  7643. .pb-4 {
  7644. padding-bottom: 1.5rem !important;
  7645. }
  7646. .pb-5 {
  7647. padding-bottom: 3rem !important;
  7648. }
  7649. .ps-0 {
  7650. padding-right: 0 !important;
  7651. }
  7652. .ps-1 {
  7653. padding-right: 0.25rem !important;
  7654. }
  7655. .ps-2 {
  7656. padding-right: 0.5rem !important;
  7657. }
  7658. .ps-3 {
  7659. padding-right: 1rem !important;
  7660. }
  7661. .ps-4 {
  7662. padding-right: 1.5rem !important;
  7663. }
  7664. .ps-5 {
  7665. padding-right: 3rem !important;
  7666. }
  7667. .gap-0 {
  7668. gap: 0 !important;
  7669. }
  7670. .gap-1 {
  7671. gap: 0.25rem !important;
  7672. }
  7673. .gap-2 {
  7674. gap: 0.5rem !important;
  7675. }
  7676. .gap-3 {
  7677. gap: 1rem !important;
  7678. }
  7679. .gap-4 {
  7680. gap: 1.5rem !important;
  7681. }
  7682. .gap-5 {
  7683. gap: 3rem !important;
  7684. }
  7685. .row-gap-0 {
  7686. row-gap: 0 !important;
  7687. }
  7688. .row-gap-1 {
  7689. row-gap: 0.25rem !important;
  7690. }
  7691. .row-gap-2 {
  7692. row-gap: 0.5rem !important;
  7693. }
  7694. .row-gap-3 {
  7695. row-gap: 1rem !important;
  7696. }
  7697. .row-gap-4 {
  7698. row-gap: 1.5rem !important;
  7699. }
  7700. .row-gap-5 {
  7701. row-gap: 3rem !important;
  7702. }
  7703. .column-gap-0 {
  7704. -moz-column-gap: 0 !important;
  7705. column-gap: 0 !important;
  7706. }
  7707. .column-gap-1 {
  7708. -moz-column-gap: 0.25rem !important;
  7709. column-gap: 0.25rem !important;
  7710. }
  7711. .column-gap-2 {
  7712. -moz-column-gap: 0.5rem !important;
  7713. column-gap: 0.5rem !important;
  7714. }
  7715. .column-gap-3 {
  7716. -moz-column-gap: 1rem !important;
  7717. column-gap: 1rem !important;
  7718. }
  7719. .column-gap-4 {
  7720. -moz-column-gap: 1.5rem !important;
  7721. column-gap: 1.5rem !important;
  7722. }
  7723. .column-gap-5 {
  7724. -moz-column-gap: 3rem !important;
  7725. column-gap: 3rem !important;
  7726. }
  7727. .font-monospace {
  7728. font-family: var(--bs-font-monospace) !important;
  7729. }
  7730. .fs-1 {
  7731. font-size: calc(1.375rem + 1.5vw) !important;
  7732. }
  7733. .fs-2 {
  7734. font-size: calc(1.325rem + 0.9vw) !important;
  7735. }
  7736. .fs-3 {
  7737. font-size: calc(1.3rem + 0.6vw) !important;
  7738. }
  7739. .fs-4 {
  7740. font-size: calc(1.275rem + 0.3vw) !important;
  7741. }
  7742. .fs-5 {
  7743. font-size: 1.25rem !important;
  7744. }
  7745. .fs-6 {
  7746. font-size: 1rem !important;
  7747. }
  7748. .fs-7 {
  7749. font-size: 0.875rem !important;
  7750. }
  7751. .fs-8 {
  7752. font-size: 0.75rem !important;
  7753. }
  7754. .fst-italic {
  7755. font-style: italic !important;
  7756. }
  7757. .fst-normal {
  7758. font-style: normal !important;
  7759. }
  7760. .fw-lighter {
  7761. font-weight: lighter !important;
  7762. }
  7763. .fw-light {
  7764. font-weight: 300 !important;
  7765. }
  7766. .fw-normal {
  7767. font-weight: 400 !important;
  7768. }
  7769. .fw-medium {
  7770. font-weight: 500 !important;
  7771. }
  7772. .fw-semibold {
  7773. font-weight: 600 !important;
  7774. }
  7775. .fw-bold {
  7776. font-weight: 700 !important;
  7777. }
  7778. .fw-bolder {
  7779. font-weight: bolder !important;
  7780. }
  7781. .lh-1 {
  7782. line-height: 1 !important;
  7783. }
  7784. .lh-sm {
  7785. line-height: 1.25 !important;
  7786. }
  7787. .lh-base {
  7788. line-height: 1.5 !important;
  7789. }
  7790. .lh-lg {
  7791. line-height: 2 !important;
  7792. }
  7793. .text-start {
  7794. text-align: right !important;
  7795. }
  7796. .text-end {
  7797. text-align: left !important;
  7798. }
  7799. .text-center {
  7800. text-align: center !important;
  7801. }
  7802. .text-decoration-none {
  7803. text-decoration: none !important;
  7804. }
  7805. .text-decoration-underline {
  7806. text-decoration: underline !important;
  7807. }
  7808. .text-decoration-line-through {
  7809. text-decoration: line-through !important;
  7810. }
  7811. .text-lowercase {
  7812. text-transform: lowercase !important;
  7813. }
  7814. .text-uppercase {
  7815. text-transform: uppercase !important;
  7816. }
  7817. .text-capitalize {
  7818. text-transform: capitalize !important;
  7819. }
  7820. .text-wrap {
  7821. white-space: normal !important;
  7822. }
  7823. .text-nowrap {
  7824. white-space: nowrap !important;
  7825. }
  7826. .text-primary {
  7827. --bs-text-opacity: 1;
  7828. color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
  7829. }
  7830. .text-secondary {
  7831. --bs-text-opacity: 1;
  7832. color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
  7833. }
  7834. .text-success {
  7835. --bs-text-opacity: 1;
  7836. color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
  7837. }
  7838. .text-info {
  7839. --bs-text-opacity: 1;
  7840. color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
  7841. }
  7842. .text-warning {
  7843. --bs-text-opacity: 1;
  7844. color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
  7845. }
  7846. .text-danger {
  7847. --bs-text-opacity: 1;
  7848. color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
  7849. }
  7850. .text-light {
  7851. --bs-text-opacity: 1;
  7852. color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
  7853. }
  7854. .text-dark {
  7855. --bs-text-opacity: 1;
  7856. color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
  7857. }
  7858. .text-black {
  7859. --bs-text-opacity: 1;
  7860. color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
  7861. }
  7862. .text-white {
  7863. --bs-text-opacity: 1;
  7864. color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
  7865. }
  7866. .text-body {
  7867. --bs-text-opacity: 1;
  7868. color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
  7869. }
  7870. .text-muted {
  7871. --bs-text-opacity: 1;
  7872. color: var(--bs-secondary-color) !important;
  7873. }
  7874. .text-black-50 {
  7875. --bs-text-opacity: 1;
  7876. color: rgba(0, 0, 0, 0.5) !important;
  7877. }
  7878. .text-white-50 {
  7879. --bs-text-opacity: 1;
  7880. color: rgba(255, 255, 255, 0.5) !important;
  7881. }
  7882. .text-body-secondary {
  7883. --bs-text-opacity: 1;
  7884. color: var(--bs-secondary-color) !important;
  7885. }
  7886. .text-body-tertiary {
  7887. --bs-text-opacity: 1;
  7888. color: var(--bs-tertiary-color) !important;
  7889. }
  7890. .text-body-emphasis {
  7891. --bs-text-opacity: 1;
  7892. color: var(--bs-emphasis-color) !important;
  7893. }
  7894. .text-reset {
  7895. --bs-text-opacity: 1;
  7896. color: inherit !important;
  7897. }
  7898. .text-opacity-25 {
  7899. --bs-text-opacity: 0.25;
  7900. }
  7901. .text-opacity-50 {
  7902. --bs-text-opacity: 0.5;
  7903. }
  7904. .text-opacity-75 {
  7905. --bs-text-opacity: 0.75;
  7906. }
  7907. .text-opacity-100 {
  7908. --bs-text-opacity: 1;
  7909. }
  7910. .text-primary-emphasis {
  7911. color: var(--bs-primary-text-emphasis) !important;
  7912. }
  7913. .text-secondary-emphasis {
  7914. color: var(--bs-secondary-text-emphasis) !important;
  7915. }
  7916. .text-success-emphasis {
  7917. color: var(--bs-success-text-emphasis) !important;
  7918. }
  7919. .text-info-emphasis {
  7920. color: var(--bs-info-text-emphasis) !important;
  7921. }
  7922. .text-warning-emphasis {
  7923. color: var(--bs-warning-text-emphasis) !important;
  7924. }
  7925. .text-danger-emphasis {
  7926. color: var(--bs-danger-text-emphasis) !important;
  7927. }
  7928. .text-light-emphasis {
  7929. color: var(--bs-light-text-emphasis) !important;
  7930. }
  7931. .text-dark-emphasis {
  7932. color: var(--bs-dark-text-emphasis) !important;
  7933. }
  7934. .link-opacity-10 {
  7935. --bs-link-opacity: 0.1;
  7936. }
  7937. .link-opacity-10-hover:hover {
  7938. --bs-link-opacity: 0.1;
  7939. }
  7940. .link-opacity-25 {
  7941. --bs-link-opacity: 0.25;
  7942. }
  7943. .link-opacity-25-hover:hover {
  7944. --bs-link-opacity: 0.25;
  7945. }
  7946. .link-opacity-50 {
  7947. --bs-link-opacity: 0.5;
  7948. }
  7949. .link-opacity-50-hover:hover {
  7950. --bs-link-opacity: 0.5;
  7951. }
  7952. .link-opacity-75 {
  7953. --bs-link-opacity: 0.75;
  7954. }
  7955. .link-opacity-75-hover:hover {
  7956. --bs-link-opacity: 0.75;
  7957. }
  7958. .link-opacity-100 {
  7959. --bs-link-opacity: 1;
  7960. }
  7961. .link-opacity-100-hover:hover {
  7962. --bs-link-opacity: 1;
  7963. }
  7964. .link-offset-1 {
  7965. text-underline-offset: 0.125em !important;
  7966. }
  7967. .link-offset-1-hover:hover {
  7968. text-underline-offset: 0.125em !important;
  7969. }
  7970. .link-offset-2 {
  7971. text-underline-offset: 0.25em !important;
  7972. }
  7973. .link-offset-2-hover:hover {
  7974. text-underline-offset: 0.25em !important;
  7975. }
  7976. .link-offset-3 {
  7977. text-underline-offset: 0.375em !important;
  7978. }
  7979. .link-offset-3-hover:hover {
  7980. text-underline-offset: 0.375em !important;
  7981. }
  7982. .link-underline-primary {
  7983. --bs-link-underline-opacity: 1;
  7984. text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
  7985. }
  7986. .link-underline-secondary {
  7987. --bs-link-underline-opacity: 1;
  7988. text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
  7989. }
  7990. .link-underline-success {
  7991. --bs-link-underline-opacity: 1;
  7992. text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
  7993. }
  7994. .link-underline-info {
  7995. --bs-link-underline-opacity: 1;
  7996. text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
  7997. }
  7998. .link-underline-warning {
  7999. --bs-link-underline-opacity: 1;
  8000. text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
  8001. }
  8002. .link-underline-danger {
  8003. --bs-link-underline-opacity: 1;
  8004. text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
  8005. }
  8006. .link-underline-light {
  8007. --bs-link-underline-opacity: 1;
  8008. text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
  8009. }
  8010. .link-underline-dark {
  8011. --bs-link-underline-opacity: 1;
  8012. text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
  8013. }
  8014. .link-underline {
  8015. --bs-link-underline-opacity: 1;
  8016. text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  8017. }
  8018. .link-underline-opacity-0 {
  8019. --bs-link-underline-opacity: 0;
  8020. }
  8021. .link-underline-opacity-0-hover:hover {
  8022. --bs-link-underline-opacity: 0;
  8023. }
  8024. .link-underline-opacity-10 {
  8025. --bs-link-underline-opacity: 0.1;
  8026. }
  8027. .link-underline-opacity-10-hover:hover {
  8028. --bs-link-underline-opacity: 0.1;
  8029. }
  8030. .link-underline-opacity-25 {
  8031. --bs-link-underline-opacity: 0.25;
  8032. }
  8033. .link-underline-opacity-25-hover:hover {
  8034. --bs-link-underline-opacity: 0.25;
  8035. }
  8036. .link-underline-opacity-50 {
  8037. --bs-link-underline-opacity: 0.5;
  8038. }
  8039. .link-underline-opacity-50-hover:hover {
  8040. --bs-link-underline-opacity: 0.5;
  8041. }
  8042. .link-underline-opacity-75 {
  8043. --bs-link-underline-opacity: 0.75;
  8044. }
  8045. .link-underline-opacity-75-hover:hover {
  8046. --bs-link-underline-opacity: 0.75;
  8047. }
  8048. .link-underline-opacity-100 {
  8049. --bs-link-underline-opacity: 1;
  8050. }
  8051. .link-underline-opacity-100-hover:hover {
  8052. --bs-link-underline-opacity: 1;
  8053. }
  8054. .bg-primary {
  8055. --bs-bg-opacity: 1;
  8056. background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
  8057. }
  8058. .bg-secondary {
  8059. --bs-bg-opacity: 1;
  8060. background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
  8061. }
  8062. .bg-success {
  8063. --bs-bg-opacity: 1;
  8064. background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
  8065. }
  8066. .bg-info {
  8067. --bs-bg-opacity: 1;
  8068. background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
  8069. }
  8070. .bg-warning {
  8071. --bs-bg-opacity: 1;
  8072. background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  8073. }
  8074. .bg-danger {
  8075. --bs-bg-opacity: 1;
  8076. background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
  8077. }
  8078. .bg-light {
  8079. --bs-bg-opacity: 1;
  8080. background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  8081. }
  8082. .bg-dark {
  8083. --bs-bg-opacity: 1;
  8084. background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  8085. }
  8086. .bg-black {
  8087. --bs-bg-opacity: 1;
  8088. background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
  8089. }
  8090. .bg-white {
  8091. --bs-bg-opacity: 1;
  8092. background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  8093. }
  8094. .bg-body {
  8095. --bs-bg-opacity: 1;
  8096. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  8097. }
  8098. .bg-transparent {
  8099. --bs-bg-opacity: 1;
  8100. background-color: transparent !important;
  8101. }
  8102. .bg-body-secondary {
  8103. --bs-bg-opacity: 1;
  8104. background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
  8105. }
  8106. .bg-body-tertiary {
  8107. --bs-bg-opacity: 1;
  8108. background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
  8109. }
  8110. .bg-opacity-10 {
  8111. --bs-bg-opacity: 0.1;
  8112. }
  8113. .bg-opacity-25 {
  8114. --bs-bg-opacity: 0.25;
  8115. }
  8116. .bg-opacity-50 {
  8117. --bs-bg-opacity: 0.5;
  8118. }
  8119. .bg-opacity-75 {
  8120. --bs-bg-opacity: 0.75;
  8121. }
  8122. .bg-opacity-100 {
  8123. --bs-bg-opacity: 1;
  8124. }
  8125. .bg-primary-subtle {
  8126. background-color: var(--bs-primary-bg-subtle) !important;
  8127. }
  8128. .bg-secondary-subtle {
  8129. background-color: var(--bs-secondary-bg-subtle) !important;
  8130. }
  8131. .bg-success-subtle {
  8132. background-color: var(--bs-success-bg-subtle) !important;
  8133. }
  8134. .bg-info-subtle {
  8135. background-color: var(--bs-info-bg-subtle) !important;
  8136. }
  8137. .bg-warning-subtle {
  8138. background-color: var(--bs-warning-bg-subtle) !important;
  8139. }
  8140. .bg-danger-subtle {
  8141. background-color: var(--bs-danger-bg-subtle) !important;
  8142. }
  8143. .bg-light-subtle {
  8144. background-color: var(--bs-light-bg-subtle) !important;
  8145. }
  8146. .bg-dark-subtle {
  8147. background-color: var(--bs-dark-bg-subtle) !important;
  8148. }
  8149. .bg-gradient {
  8150. background-image: var(--bs-gradient) !important;
  8151. }
  8152. .user-select-all {
  8153. -webkit-user-select: all !important;
  8154. -moz-user-select: all !important;
  8155. user-select: all !important;
  8156. }
  8157. .user-select-auto {
  8158. -webkit-user-select: auto !important;
  8159. -moz-user-select: auto !important;
  8160. user-select: auto !important;
  8161. }
  8162. .user-select-none {
  8163. -webkit-user-select: none !important;
  8164. -moz-user-select: none !important;
  8165. user-select: none !important;
  8166. }
  8167. .pe-none {
  8168. pointer-events: none !important;
  8169. }
  8170. .pe-auto {
  8171. pointer-events: auto !important;
  8172. }
  8173. .rounded {
  8174. border-radius: var(--bs-border-radius) !important;
  8175. }
  8176. .rounded-0 {
  8177. border-radius: 0 !important;
  8178. }
  8179. .rounded-1 {
  8180. border-radius: var(--bs-border-radius-sm) !important;
  8181. }
  8182. .rounded-2 {
  8183. border-radius: var(--bs-border-radius) !important;
  8184. }
  8185. .rounded-3 {
  8186. border-radius: var(--bs-border-radius-lg) !important;
  8187. }
  8188. .rounded-4 {
  8189. border-radius: var(--bs-border-radius-xl) !important;
  8190. }
  8191. .rounded-5 {
  8192. border-radius: var(--bs-border-radius-xxl) !important;
  8193. }
  8194. .rounded-circle {
  8195. border-radius: 50% !important;
  8196. }
  8197. .rounded-pill {
  8198. border-radius: var(--bs-border-radius-pill) !important;
  8199. }
  8200. .rounded-top {
  8201. border-top-right-radius: var(--bs-border-radius) !important;
  8202. border-top-left-radius: var(--bs-border-radius) !important;
  8203. }
  8204. .rounded-top-0 {
  8205. border-top-right-radius: 0 !important;
  8206. border-top-left-radius: 0 !important;
  8207. }
  8208. .rounded-top-1 {
  8209. border-top-right-radius: var(--bs-border-radius-sm) !important;
  8210. border-top-left-radius: var(--bs-border-radius-sm) !important;
  8211. }
  8212. .rounded-top-2 {
  8213. border-top-right-radius: var(--bs-border-radius) !important;
  8214. border-top-left-radius: var(--bs-border-radius) !important;
  8215. }
  8216. .rounded-top-3 {
  8217. border-top-right-radius: var(--bs-border-radius-lg) !important;
  8218. border-top-left-radius: var(--bs-border-radius-lg) !important;
  8219. }
  8220. .rounded-top-4 {
  8221. border-top-right-radius: var(--bs-border-radius-xl) !important;
  8222. border-top-left-radius: var(--bs-border-radius-xl) !important;
  8223. }
  8224. .rounded-top-5 {
  8225. border-top-right-radius: var(--bs-border-radius-xxl) !important;
  8226. border-top-left-radius: var(--bs-border-radius-xxl) !important;
  8227. }
  8228. .rounded-top-circle {
  8229. border-top-right-radius: 50% !important;
  8230. border-top-left-radius: 50% !important;
  8231. }
  8232. .rounded-top-pill {
  8233. border-top-right-radius: var(--bs-border-radius-pill) !important;
  8234. border-top-left-radius: var(--bs-border-radius-pill) !important;
  8235. }
  8236. .rounded-end {
  8237. border-top-left-radius: var(--bs-border-radius) !important;
  8238. border-bottom-left-radius: var(--bs-border-radius) !important;
  8239. }
  8240. .rounded-end-0 {
  8241. border-top-left-radius: 0 !important;
  8242. border-bottom-left-radius: 0 !important;
  8243. }
  8244. .rounded-end-1 {
  8245. border-top-left-radius: var(--bs-border-radius-sm) !important;
  8246. border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  8247. }
  8248. .rounded-end-2 {
  8249. border-top-left-radius: var(--bs-border-radius) !important;
  8250. border-bottom-left-radius: var(--bs-border-radius) !important;
  8251. }
  8252. .rounded-end-3 {
  8253. border-top-left-radius: var(--bs-border-radius-lg) !important;
  8254. border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  8255. }
  8256. .rounded-end-4 {
  8257. border-top-left-radius: var(--bs-border-radius-xl) !important;
  8258. border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  8259. }
  8260. .rounded-end-5 {
  8261. border-top-left-radius: var(--bs-border-radius-xxl) !important;
  8262. border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  8263. }
  8264. .rounded-end-circle {
  8265. border-top-left-radius: 50% !important;
  8266. border-bottom-left-radius: 50% !important;
  8267. }
  8268. .rounded-end-pill {
  8269. border-top-left-radius: var(--bs-border-radius-pill) !important;
  8270. border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  8271. }
  8272. .rounded-bottom {
  8273. border-bottom-left-radius: var(--bs-border-radius) !important;
  8274. border-bottom-right-radius: var(--bs-border-radius) !important;
  8275. }
  8276. .rounded-bottom-0 {
  8277. border-bottom-left-radius: 0 !important;
  8278. border-bottom-right-radius: 0 !important;
  8279. }
  8280. .rounded-bottom-1 {
  8281. border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  8282. border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  8283. }
  8284. .rounded-bottom-2 {
  8285. border-bottom-left-radius: var(--bs-border-radius) !important;
  8286. border-bottom-right-radius: var(--bs-border-radius) !important;
  8287. }
  8288. .rounded-bottom-3 {
  8289. border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  8290. border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  8291. }
  8292. .rounded-bottom-4 {
  8293. border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  8294. border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  8295. }
  8296. .rounded-bottom-5 {
  8297. border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  8298. border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  8299. }
  8300. .rounded-bottom-circle {
  8301. border-bottom-left-radius: 50% !important;
  8302. border-bottom-right-radius: 50% !important;
  8303. }
  8304. .rounded-bottom-pill {
  8305. border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  8306. border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  8307. }
  8308. .rounded-start {
  8309. border-bottom-right-radius: var(--bs-border-radius) !important;
  8310. border-top-right-radius: var(--bs-border-radius) !important;
  8311. }
  8312. .rounded-start-0 {
  8313. border-bottom-right-radius: 0 !important;
  8314. border-top-right-radius: 0 !important;
  8315. }
  8316. .rounded-start-1 {
  8317. border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  8318. border-top-right-radius: var(--bs-border-radius-sm) !important;
  8319. }
  8320. .rounded-start-2 {
  8321. border-bottom-right-radius: var(--bs-border-radius) !important;
  8322. border-top-right-radius: var(--bs-border-radius) !important;
  8323. }
  8324. .rounded-start-3 {
  8325. border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  8326. border-top-right-radius: var(--bs-border-radius-lg) !important;
  8327. }
  8328. .rounded-start-4 {
  8329. border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  8330. border-top-right-radius: var(--bs-border-radius-xl) !important;
  8331. }
  8332. .rounded-start-5 {
  8333. border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  8334. border-top-right-radius: var(--bs-border-radius-xxl) !important;
  8335. }
  8336. .rounded-start-circle {
  8337. border-bottom-right-radius: 50% !important;
  8338. border-top-right-radius: 50% !important;
  8339. }
  8340. .rounded-start-pill {
  8341. border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  8342. border-top-right-radius: var(--bs-border-radius-pill) !important;
  8343. }
  8344. .visible {
  8345. visibility: visible !important;
  8346. }
  8347. .invisible {
  8348. visibility: hidden !important;
  8349. }
  8350. .z-n1 {
  8351. z-index: -1 !important;
  8352. }
  8353. .z-0 {
  8354. z-index: 0 !important;
  8355. }
  8356. .z-1 {
  8357. z-index: 1 !important;
  8358. }
  8359. .z-2 {
  8360. z-index: 2 !important;
  8361. }
  8362. .z-3 {
  8363. z-index: 3 !important;
  8364. }
  8365. @media (min-width: 576px) {
  8366. .float-sm-start {
  8367. float: right !important;
  8368. }
  8369. .float-sm-end {
  8370. float: left !important;
  8371. }
  8372. .float-sm-none {
  8373. float: none !important;
  8374. }
  8375. .object-fit-sm-contain {
  8376. -o-object-fit: contain !important;
  8377. object-fit: contain !important;
  8378. }
  8379. .object-fit-sm-cover {
  8380. -o-object-fit: cover !important;
  8381. object-fit: cover !important;
  8382. }
  8383. .object-fit-sm-fill {
  8384. -o-object-fit: fill !important;
  8385. object-fit: fill !important;
  8386. }
  8387. .object-fit-sm-scale {
  8388. -o-object-fit: scale-down !important;
  8389. object-fit: scale-down !important;
  8390. }
  8391. .object-fit-sm-none {
  8392. -o-object-fit: none !important;
  8393. object-fit: none !important;
  8394. }
  8395. .d-sm-inline {
  8396. display: inline !important;
  8397. }
  8398. .d-sm-inline-block {
  8399. display: inline-block !important;
  8400. }
  8401. .d-sm-block {
  8402. display: block !important;
  8403. }
  8404. .d-sm-grid {
  8405. display: grid !important;
  8406. }
  8407. .d-sm-inline-grid {
  8408. display: inline-grid !important;
  8409. }
  8410. .d-sm-table {
  8411. display: table !important;
  8412. }
  8413. .d-sm-table-row {
  8414. display: table-row !important;
  8415. }
  8416. .d-sm-table-cell {
  8417. display: table-cell !important;
  8418. }
  8419. .d-sm-flex {
  8420. display: flex !important;
  8421. }
  8422. .d-sm-inline-flex {
  8423. display: inline-flex !important;
  8424. }
  8425. .d-sm-none {
  8426. display: none !important;
  8427. }
  8428. .flex-sm-fill {
  8429. flex: 1 1 auto !important;
  8430. }
  8431. .flex-sm-row {
  8432. flex-direction: row !important;
  8433. }
  8434. .flex-sm-column {
  8435. flex-direction: column !important;
  8436. }
  8437. .flex-sm-row-reverse {
  8438. flex-direction: row-reverse !important;
  8439. }
  8440. .flex-sm-column-reverse {
  8441. flex-direction: column-reverse !important;
  8442. }
  8443. .flex-sm-grow-0 {
  8444. flex-grow: 0 !important;
  8445. }
  8446. .flex-sm-grow-1 {
  8447. flex-grow: 1 !important;
  8448. }
  8449. .flex-sm-shrink-0 {
  8450. flex-shrink: 0 !important;
  8451. }
  8452. .flex-sm-shrink-1 {
  8453. flex-shrink: 1 !important;
  8454. }
  8455. .flex-sm-wrap {
  8456. flex-wrap: wrap !important;
  8457. }
  8458. .flex-sm-nowrap {
  8459. flex-wrap: nowrap !important;
  8460. }
  8461. .flex-sm-wrap-reverse {
  8462. flex-wrap: wrap-reverse !important;
  8463. }
  8464. .justify-content-sm-start {
  8465. justify-content: flex-start !important;
  8466. }
  8467. .justify-content-sm-end {
  8468. justify-content: flex-end !important;
  8469. }
  8470. .justify-content-sm-center {
  8471. justify-content: center !important;
  8472. }
  8473. .justify-content-sm-between {
  8474. justify-content: space-between !important;
  8475. }
  8476. .justify-content-sm-around {
  8477. justify-content: space-around !important;
  8478. }
  8479. .justify-content-sm-evenly {
  8480. justify-content: space-evenly !important;
  8481. }
  8482. .align-items-sm-start {
  8483. align-items: flex-start !important;
  8484. }
  8485. .align-items-sm-end {
  8486. align-items: flex-end !important;
  8487. }
  8488. .align-items-sm-center {
  8489. align-items: center !important;
  8490. }
  8491. .align-items-sm-baseline {
  8492. align-items: baseline !important;
  8493. }
  8494. .align-items-sm-stretch {
  8495. align-items: stretch !important;
  8496. }
  8497. .align-content-sm-start {
  8498. align-content: flex-start !important;
  8499. }
  8500. .align-content-sm-end {
  8501. align-content: flex-end !important;
  8502. }
  8503. .align-content-sm-center {
  8504. align-content: center !important;
  8505. }
  8506. .align-content-sm-between {
  8507. align-content: space-between !important;
  8508. }
  8509. .align-content-sm-around {
  8510. align-content: space-around !important;
  8511. }
  8512. .align-content-sm-stretch {
  8513. align-content: stretch !important;
  8514. }
  8515. .align-self-sm-auto {
  8516. align-self: auto !important;
  8517. }
  8518. .align-self-sm-start {
  8519. align-self: flex-start !important;
  8520. }
  8521. .align-self-sm-end {
  8522. align-self: flex-end !important;
  8523. }
  8524. .align-self-sm-center {
  8525. align-self: center !important;
  8526. }
  8527. .align-self-sm-baseline {
  8528. align-self: baseline !important;
  8529. }
  8530. .align-self-sm-stretch {
  8531. align-self: stretch !important;
  8532. }
  8533. .order-sm-first {
  8534. order: -1 !important;
  8535. }
  8536. .order-sm-0 {
  8537. order: 0 !important;
  8538. }
  8539. .order-sm-1 {
  8540. order: 1 !important;
  8541. }
  8542. .order-sm-2 {
  8543. order: 2 !important;
  8544. }
  8545. .order-sm-3 {
  8546. order: 3 !important;
  8547. }
  8548. .order-sm-4 {
  8549. order: 4 !important;
  8550. }
  8551. .order-sm-5 {
  8552. order: 5 !important;
  8553. }
  8554. .order-sm-last {
  8555. order: 6 !important;
  8556. }
  8557. .m-sm-0 {
  8558. margin: 0 !important;
  8559. }
  8560. .m-sm-1 {
  8561. margin: 0.25rem !important;
  8562. }
  8563. .m-sm-2 {
  8564. margin: 0.5rem !important;
  8565. }
  8566. .m-sm-3 {
  8567. margin: 1rem !important;
  8568. }
  8569. .m-sm-4 {
  8570. margin: 1.5rem !important;
  8571. }
  8572. .m-sm-5 {
  8573. margin: 3rem !important;
  8574. }
  8575. .m-sm-auto {
  8576. margin: auto !important;
  8577. }
  8578. .mx-sm-0 {
  8579. margin-left: 0 !important;
  8580. margin-right: 0 !important;
  8581. }
  8582. .mx-sm-1 {
  8583. margin-left: 0.25rem !important;
  8584. margin-right: 0.25rem !important;
  8585. }
  8586. .mx-sm-2 {
  8587. margin-left: 0.5rem !important;
  8588. margin-right: 0.5rem !important;
  8589. }
  8590. .mx-sm-3 {
  8591. margin-left: 1rem !important;
  8592. margin-right: 1rem !important;
  8593. }
  8594. .mx-sm-4 {
  8595. margin-left: 1.5rem !important;
  8596. margin-right: 1.5rem !important;
  8597. }
  8598. .mx-sm-5 {
  8599. margin-left: 3rem !important;
  8600. margin-right: 3rem !important;
  8601. }
  8602. .mx-sm-auto {
  8603. margin-left: auto !important;
  8604. margin-right: auto !important;
  8605. }
  8606. .my-sm-0 {
  8607. margin-top: 0 !important;
  8608. margin-bottom: 0 !important;
  8609. }
  8610. .my-sm-1 {
  8611. margin-top: 0.25rem !important;
  8612. margin-bottom: 0.25rem !important;
  8613. }
  8614. .my-sm-2 {
  8615. margin-top: 0.5rem !important;
  8616. margin-bottom: 0.5rem !important;
  8617. }
  8618. .my-sm-3 {
  8619. margin-top: 1rem !important;
  8620. margin-bottom: 1rem !important;
  8621. }
  8622. .my-sm-4 {
  8623. margin-top: 1.5rem !important;
  8624. margin-bottom: 1.5rem !important;
  8625. }
  8626. .my-sm-5 {
  8627. margin-top: 3rem !important;
  8628. margin-bottom: 3rem !important;
  8629. }
  8630. .my-sm-auto {
  8631. margin-top: auto !important;
  8632. margin-bottom: auto !important;
  8633. }
  8634. .mt-sm-0 {
  8635. margin-top: 0 !important;
  8636. }
  8637. .mt-sm-1 {
  8638. margin-top: 0.25rem !important;
  8639. }
  8640. .mt-sm-2 {
  8641. margin-top: 0.5rem !important;
  8642. }
  8643. .mt-sm-3 {
  8644. margin-top: 1rem !important;
  8645. }
  8646. .mt-sm-4 {
  8647. margin-top: 1.5rem !important;
  8648. }
  8649. .mt-sm-5 {
  8650. margin-top: 3rem !important;
  8651. }
  8652. .mt-sm-auto {
  8653. margin-top: auto !important;
  8654. }
  8655. .me-sm-0 {
  8656. margin-left: 0 !important;
  8657. }
  8658. .me-sm-1 {
  8659. margin-left: 0.25rem !important;
  8660. }
  8661. .me-sm-2 {
  8662. margin-left: 0.5rem !important;
  8663. }
  8664. .me-sm-3 {
  8665. margin-left: 1rem !important;
  8666. }
  8667. .me-sm-4 {
  8668. margin-left: 1.5rem !important;
  8669. }
  8670. .me-sm-5 {
  8671. margin-left: 3rem !important;
  8672. }
  8673. .me-sm-auto {
  8674. margin-left: auto !important;
  8675. }
  8676. .mb-sm-0 {
  8677. margin-bottom: 0 !important;
  8678. }
  8679. .mb-sm-1 {
  8680. margin-bottom: 0.25rem !important;
  8681. }
  8682. .mb-sm-2 {
  8683. margin-bottom: 0.5rem !important;
  8684. }
  8685. .mb-sm-3 {
  8686. margin-bottom: 1rem !important;
  8687. }
  8688. .mb-sm-4 {
  8689. margin-bottom: 1.5rem !important;
  8690. }
  8691. .mb-sm-5 {
  8692. margin-bottom: 3rem !important;
  8693. }
  8694. .mb-sm-auto {
  8695. margin-bottom: auto !important;
  8696. }
  8697. .ms-sm-0 {
  8698. margin-right: 0 !important;
  8699. }
  8700. .ms-sm-1 {
  8701. margin-right: 0.25rem !important;
  8702. }
  8703. .ms-sm-2 {
  8704. margin-right: 0.5rem !important;
  8705. }
  8706. .ms-sm-3 {
  8707. margin-right: 1rem !important;
  8708. }
  8709. .ms-sm-4 {
  8710. margin-right: 1.5rem !important;
  8711. }
  8712. .ms-sm-5 {
  8713. margin-right: 3rem !important;
  8714. }
  8715. .ms-sm-auto {
  8716. margin-right: auto !important;
  8717. }
  8718. .m-sm-n1 {
  8719. margin: -0.25rem !important;
  8720. }
  8721. .m-sm-n2 {
  8722. margin: -0.5rem !important;
  8723. }
  8724. .m-sm-n3 {
  8725. margin: -1rem !important;
  8726. }
  8727. .m-sm-n4 {
  8728. margin: -1.5rem !important;
  8729. }
  8730. .m-sm-n5 {
  8731. margin: -3rem !important;
  8732. }
  8733. .mx-sm-n1 {
  8734. margin-left: -0.25rem !important;
  8735. margin-right: -0.25rem !important;
  8736. }
  8737. .mx-sm-n2 {
  8738. margin-left: -0.5rem !important;
  8739. margin-right: -0.5rem !important;
  8740. }
  8741. .mx-sm-n3 {
  8742. margin-left: -1rem !important;
  8743. margin-right: -1rem !important;
  8744. }
  8745. .mx-sm-n4 {
  8746. margin-left: -1.5rem !important;
  8747. margin-right: -1.5rem !important;
  8748. }
  8749. .mx-sm-n5 {
  8750. margin-left: -3rem !important;
  8751. margin-right: -3rem !important;
  8752. }
  8753. .my-sm-n1 {
  8754. margin-top: -0.25rem !important;
  8755. margin-bottom: -0.25rem !important;
  8756. }
  8757. .my-sm-n2 {
  8758. margin-top: -0.5rem !important;
  8759. margin-bottom: -0.5rem !important;
  8760. }
  8761. .my-sm-n3 {
  8762. margin-top: -1rem !important;
  8763. margin-bottom: -1rem !important;
  8764. }
  8765. .my-sm-n4 {
  8766. margin-top: -1.5rem !important;
  8767. margin-bottom: -1.5rem !important;
  8768. }
  8769. .my-sm-n5 {
  8770. margin-top: -3rem !important;
  8771. margin-bottom: -3rem !important;
  8772. }
  8773. .mt-sm-n1 {
  8774. margin-top: -0.25rem !important;
  8775. }
  8776. .mt-sm-n2 {
  8777. margin-top: -0.5rem !important;
  8778. }
  8779. .mt-sm-n3 {
  8780. margin-top: -1rem !important;
  8781. }
  8782. .mt-sm-n4 {
  8783. margin-top: -1.5rem !important;
  8784. }
  8785. .mt-sm-n5 {
  8786. margin-top: -3rem !important;
  8787. }
  8788. .me-sm-n1 {
  8789. margin-left: -0.25rem !important;
  8790. }
  8791. .me-sm-n2 {
  8792. margin-left: -0.5rem !important;
  8793. }
  8794. .me-sm-n3 {
  8795. margin-left: -1rem !important;
  8796. }
  8797. .me-sm-n4 {
  8798. margin-left: -1.5rem !important;
  8799. }
  8800. .me-sm-n5 {
  8801. margin-left: -3rem !important;
  8802. }
  8803. .mb-sm-n1 {
  8804. margin-bottom: -0.25rem !important;
  8805. }
  8806. .mb-sm-n2 {
  8807. margin-bottom: -0.5rem !important;
  8808. }
  8809. .mb-sm-n3 {
  8810. margin-bottom: -1rem !important;
  8811. }
  8812. .mb-sm-n4 {
  8813. margin-bottom: -1.5rem !important;
  8814. }
  8815. .mb-sm-n5 {
  8816. margin-bottom: -3rem !important;
  8817. }
  8818. .ms-sm-n1 {
  8819. margin-right: -0.25rem !important;
  8820. }
  8821. .ms-sm-n2 {
  8822. margin-right: -0.5rem !important;
  8823. }
  8824. .ms-sm-n3 {
  8825. margin-right: -1rem !important;
  8826. }
  8827. .ms-sm-n4 {
  8828. margin-right: -1.5rem !important;
  8829. }
  8830. .ms-sm-n5 {
  8831. margin-right: -3rem !important;
  8832. }
  8833. .p-sm-0 {
  8834. padding: 0 !important;
  8835. }
  8836. .p-sm-1 {
  8837. padding: 0.25rem !important;
  8838. }
  8839. .p-sm-2 {
  8840. padding: 0.5rem !important;
  8841. }
  8842. .p-sm-3 {
  8843. padding: 1rem !important;
  8844. }
  8845. .p-sm-4 {
  8846. padding: 1.5rem !important;
  8847. }
  8848. .p-sm-5 {
  8849. padding: 3rem !important;
  8850. }
  8851. .px-sm-0 {
  8852. padding-left: 0 !important;
  8853. padding-right: 0 !important;
  8854. }
  8855. .px-sm-1 {
  8856. padding-left: 0.25rem !important;
  8857. padding-right: 0.25rem !important;
  8858. }
  8859. .px-sm-2 {
  8860. padding-left: 0.5rem !important;
  8861. padding-right: 0.5rem !important;
  8862. }
  8863. .px-sm-3 {
  8864. padding-left: 1rem !important;
  8865. padding-right: 1rem !important;
  8866. }
  8867. .px-sm-4 {
  8868. padding-left: 1.5rem !important;
  8869. padding-right: 1.5rem !important;
  8870. }
  8871. .px-sm-5 {
  8872. padding-left: 3rem !important;
  8873. padding-right: 3rem !important;
  8874. }
  8875. .py-sm-0 {
  8876. padding-top: 0 !important;
  8877. padding-bottom: 0 !important;
  8878. }
  8879. .py-sm-1 {
  8880. padding-top: 0.25rem !important;
  8881. padding-bottom: 0.25rem !important;
  8882. }
  8883. .py-sm-2 {
  8884. padding-top: 0.5rem !important;
  8885. padding-bottom: 0.5rem !important;
  8886. }
  8887. .py-sm-3 {
  8888. padding-top: 1rem !important;
  8889. padding-bottom: 1rem !important;
  8890. }
  8891. .py-sm-4 {
  8892. padding-top: 1.5rem !important;
  8893. padding-bottom: 1.5rem !important;
  8894. }
  8895. .py-sm-5 {
  8896. padding-top: 3rem !important;
  8897. padding-bottom: 3rem !important;
  8898. }
  8899. .pt-sm-0 {
  8900. padding-top: 0 !important;
  8901. }
  8902. .pt-sm-1 {
  8903. padding-top: 0.25rem !important;
  8904. }
  8905. .pt-sm-2 {
  8906. padding-top: 0.5rem !important;
  8907. }
  8908. .pt-sm-3 {
  8909. padding-top: 1rem !important;
  8910. }
  8911. .pt-sm-4 {
  8912. padding-top: 1.5rem !important;
  8913. }
  8914. .pt-sm-5 {
  8915. padding-top: 3rem !important;
  8916. }
  8917. .pe-sm-0 {
  8918. padding-left: 0 !important;
  8919. }
  8920. .pe-sm-1 {
  8921. padding-left: 0.25rem !important;
  8922. }
  8923. .pe-sm-2 {
  8924. padding-left: 0.5rem !important;
  8925. }
  8926. .pe-sm-3 {
  8927. padding-left: 1rem !important;
  8928. }
  8929. .pe-sm-4 {
  8930. padding-left: 1.5rem !important;
  8931. }
  8932. .pe-sm-5 {
  8933. padding-left: 3rem !important;
  8934. }
  8935. .pb-sm-0 {
  8936. padding-bottom: 0 !important;
  8937. }
  8938. .pb-sm-1 {
  8939. padding-bottom: 0.25rem !important;
  8940. }
  8941. .pb-sm-2 {
  8942. padding-bottom: 0.5rem !important;
  8943. }
  8944. .pb-sm-3 {
  8945. padding-bottom: 1rem !important;
  8946. }
  8947. .pb-sm-4 {
  8948. padding-bottom: 1.5rem !important;
  8949. }
  8950. .pb-sm-5 {
  8951. padding-bottom: 3rem !important;
  8952. }
  8953. .ps-sm-0 {
  8954. padding-right: 0 !important;
  8955. }
  8956. .ps-sm-1 {
  8957. padding-right: 0.25rem !important;
  8958. }
  8959. .ps-sm-2 {
  8960. padding-right: 0.5rem !important;
  8961. }
  8962. .ps-sm-3 {
  8963. padding-right: 1rem !important;
  8964. }
  8965. .ps-sm-4 {
  8966. padding-right: 1.5rem !important;
  8967. }
  8968. .ps-sm-5 {
  8969. padding-right: 3rem !important;
  8970. }
  8971. .gap-sm-0 {
  8972. gap: 0 !important;
  8973. }
  8974. .gap-sm-1 {
  8975. gap: 0.25rem !important;
  8976. }
  8977. .gap-sm-2 {
  8978. gap: 0.5rem !important;
  8979. }
  8980. .gap-sm-3 {
  8981. gap: 1rem !important;
  8982. }
  8983. .gap-sm-4 {
  8984. gap: 1.5rem !important;
  8985. }
  8986. .gap-sm-5 {
  8987. gap: 3rem !important;
  8988. }
  8989. .row-gap-sm-0 {
  8990. row-gap: 0 !important;
  8991. }
  8992. .row-gap-sm-1 {
  8993. row-gap: 0.25rem !important;
  8994. }
  8995. .row-gap-sm-2 {
  8996. row-gap: 0.5rem !important;
  8997. }
  8998. .row-gap-sm-3 {
  8999. row-gap: 1rem !important;
  9000. }
  9001. .row-gap-sm-4 {
  9002. row-gap: 1.5rem !important;
  9003. }
  9004. .row-gap-sm-5 {
  9005. row-gap: 3rem !important;
  9006. }
  9007. .column-gap-sm-0 {
  9008. -moz-column-gap: 0 !important;
  9009. column-gap: 0 !important;
  9010. }
  9011. .column-gap-sm-1 {
  9012. -moz-column-gap: 0.25rem !important;
  9013. column-gap: 0.25rem !important;
  9014. }
  9015. .column-gap-sm-2 {
  9016. -moz-column-gap: 0.5rem !important;
  9017. column-gap: 0.5rem !important;
  9018. }
  9019. .column-gap-sm-3 {
  9020. -moz-column-gap: 1rem !important;
  9021. column-gap: 1rem !important;
  9022. }
  9023. .column-gap-sm-4 {
  9024. -moz-column-gap: 1.5rem !important;
  9025. column-gap: 1.5rem !important;
  9026. }
  9027. .column-gap-sm-5 {
  9028. -moz-column-gap: 3rem !important;
  9029. column-gap: 3rem !important;
  9030. }
  9031. .text-sm-start {
  9032. text-align: right !important;
  9033. }
  9034. .text-sm-end {
  9035. text-align: left !important;
  9036. }
  9037. .text-sm-center {
  9038. text-align: center !important;
  9039. }
  9040. }
  9041. @media (min-width: 768px) {
  9042. .float-md-start {
  9043. float: right !important;
  9044. }
  9045. .float-md-end {
  9046. float: left !important;
  9047. }
  9048. .float-md-none {
  9049. float: none !important;
  9050. }
  9051. .object-fit-md-contain {
  9052. -o-object-fit: contain !important;
  9053. object-fit: contain !important;
  9054. }
  9055. .object-fit-md-cover {
  9056. -o-object-fit: cover !important;
  9057. object-fit: cover !important;
  9058. }
  9059. .object-fit-md-fill {
  9060. -o-object-fit: fill !important;
  9061. object-fit: fill !important;
  9062. }
  9063. .object-fit-md-scale {
  9064. -o-object-fit: scale-down !important;
  9065. object-fit: scale-down !important;
  9066. }
  9067. .object-fit-md-none {
  9068. -o-object-fit: none !important;
  9069. object-fit: none !important;
  9070. }
  9071. .d-md-inline {
  9072. display: inline !important;
  9073. }
  9074. .d-md-inline-block {
  9075. display: inline-block !important;
  9076. }
  9077. .d-md-block {
  9078. display: block !important;
  9079. }
  9080. .d-md-grid {
  9081. display: grid !important;
  9082. }
  9083. .d-md-inline-grid {
  9084. display: inline-grid !important;
  9085. }
  9086. .d-md-table {
  9087. display: table !important;
  9088. }
  9089. .d-md-table-row {
  9090. display: table-row !important;
  9091. }
  9092. .d-md-table-cell {
  9093. display: table-cell !important;
  9094. }
  9095. .d-md-flex {
  9096. display: flex !important;
  9097. }
  9098. .d-md-inline-flex {
  9099. display: inline-flex !important;
  9100. }
  9101. .d-md-none {
  9102. display: none !important;
  9103. }
  9104. .flex-md-fill {
  9105. flex: 1 1 auto !important;
  9106. }
  9107. .flex-md-row {
  9108. flex-direction: row !important;
  9109. }
  9110. .flex-md-column {
  9111. flex-direction: column !important;
  9112. }
  9113. .flex-md-row-reverse {
  9114. flex-direction: row-reverse !important;
  9115. }
  9116. .flex-md-column-reverse {
  9117. flex-direction: column-reverse !important;
  9118. }
  9119. .flex-md-grow-0 {
  9120. flex-grow: 0 !important;
  9121. }
  9122. .flex-md-grow-1 {
  9123. flex-grow: 1 !important;
  9124. }
  9125. .flex-md-shrink-0 {
  9126. flex-shrink: 0 !important;
  9127. }
  9128. .flex-md-shrink-1 {
  9129. flex-shrink: 1 !important;
  9130. }
  9131. .flex-md-wrap {
  9132. flex-wrap: wrap !important;
  9133. }
  9134. .flex-md-nowrap {
  9135. flex-wrap: nowrap !important;
  9136. }
  9137. .flex-md-wrap-reverse {
  9138. flex-wrap: wrap-reverse !important;
  9139. }
  9140. .justify-content-md-start {
  9141. justify-content: flex-start !important;
  9142. }
  9143. .justify-content-md-end {
  9144. justify-content: flex-end !important;
  9145. }
  9146. .justify-content-md-center {
  9147. justify-content: center !important;
  9148. }
  9149. .justify-content-md-between {
  9150. justify-content: space-between !important;
  9151. }
  9152. .justify-content-md-around {
  9153. justify-content: space-around !important;
  9154. }
  9155. .justify-content-md-evenly {
  9156. justify-content: space-evenly !important;
  9157. }
  9158. .align-items-md-start {
  9159. align-items: flex-start !important;
  9160. }
  9161. .align-items-md-end {
  9162. align-items: flex-end !important;
  9163. }
  9164. .align-items-md-center {
  9165. align-items: center !important;
  9166. }
  9167. .align-items-md-baseline {
  9168. align-items: baseline !important;
  9169. }
  9170. .align-items-md-stretch {
  9171. align-items: stretch !important;
  9172. }
  9173. .align-content-md-start {
  9174. align-content: flex-start !important;
  9175. }
  9176. .align-content-md-end {
  9177. align-content: flex-end !important;
  9178. }
  9179. .align-content-md-center {
  9180. align-content: center !important;
  9181. }
  9182. .align-content-md-between {
  9183. align-content: space-between !important;
  9184. }
  9185. .align-content-md-around {
  9186. align-content: space-around !important;
  9187. }
  9188. .align-content-md-stretch {
  9189. align-content: stretch !important;
  9190. }
  9191. .align-self-md-auto {
  9192. align-self: auto !important;
  9193. }
  9194. .align-self-md-start {
  9195. align-self: flex-start !important;
  9196. }
  9197. .align-self-md-end {
  9198. align-self: flex-end !important;
  9199. }
  9200. .align-self-md-center {
  9201. align-self: center !important;
  9202. }
  9203. .align-self-md-baseline {
  9204. align-self: baseline !important;
  9205. }
  9206. .align-self-md-stretch {
  9207. align-self: stretch !important;
  9208. }
  9209. .order-md-first {
  9210. order: -1 !important;
  9211. }
  9212. .order-md-0 {
  9213. order: 0 !important;
  9214. }
  9215. .order-md-1 {
  9216. order: 1 !important;
  9217. }
  9218. .order-md-2 {
  9219. order: 2 !important;
  9220. }
  9221. .order-md-3 {
  9222. order: 3 !important;
  9223. }
  9224. .order-md-4 {
  9225. order: 4 !important;
  9226. }
  9227. .order-md-5 {
  9228. order: 5 !important;
  9229. }
  9230. .order-md-last {
  9231. order: 6 !important;
  9232. }
  9233. .m-md-0 {
  9234. margin: 0 !important;
  9235. }
  9236. .m-md-1 {
  9237. margin: 0.25rem !important;
  9238. }
  9239. .m-md-2 {
  9240. margin: 0.5rem !important;
  9241. }
  9242. .m-md-3 {
  9243. margin: 1rem !important;
  9244. }
  9245. .m-md-4 {
  9246. margin: 1.5rem !important;
  9247. }
  9248. .m-md-5 {
  9249. margin: 3rem !important;
  9250. }
  9251. .m-md-auto {
  9252. margin: auto !important;
  9253. }
  9254. .mx-md-0 {
  9255. margin-left: 0 !important;
  9256. margin-right: 0 !important;
  9257. }
  9258. .mx-md-1 {
  9259. margin-left: 0.25rem !important;
  9260. margin-right: 0.25rem !important;
  9261. }
  9262. .mx-md-2 {
  9263. margin-left: 0.5rem !important;
  9264. margin-right: 0.5rem !important;
  9265. }
  9266. .mx-md-3 {
  9267. margin-left: 1rem !important;
  9268. margin-right: 1rem !important;
  9269. }
  9270. .mx-md-4 {
  9271. margin-left: 1.5rem !important;
  9272. margin-right: 1.5rem !important;
  9273. }
  9274. .mx-md-5 {
  9275. margin-left: 3rem !important;
  9276. margin-right: 3rem !important;
  9277. }
  9278. .mx-md-auto {
  9279. margin-left: auto !important;
  9280. margin-right: auto !important;
  9281. }
  9282. .my-md-0 {
  9283. margin-top: 0 !important;
  9284. margin-bottom: 0 !important;
  9285. }
  9286. .my-md-1 {
  9287. margin-top: 0.25rem !important;
  9288. margin-bottom: 0.25rem !important;
  9289. }
  9290. .my-md-2 {
  9291. margin-top: 0.5rem !important;
  9292. margin-bottom: 0.5rem !important;
  9293. }
  9294. .my-md-3 {
  9295. margin-top: 1rem !important;
  9296. margin-bottom: 1rem !important;
  9297. }
  9298. .my-md-4 {
  9299. margin-top: 1.5rem !important;
  9300. margin-bottom: 1.5rem !important;
  9301. }
  9302. .my-md-5 {
  9303. margin-top: 3rem !important;
  9304. margin-bottom: 3rem !important;
  9305. }
  9306. .my-md-auto {
  9307. margin-top: auto !important;
  9308. margin-bottom: auto !important;
  9309. }
  9310. .mt-md-0 {
  9311. margin-top: 0 !important;
  9312. }
  9313. .mt-md-1 {
  9314. margin-top: 0.25rem !important;
  9315. }
  9316. .mt-md-2 {
  9317. margin-top: 0.5rem !important;
  9318. }
  9319. .mt-md-3 {
  9320. margin-top: 1rem !important;
  9321. }
  9322. .mt-md-4 {
  9323. margin-top: 1.5rem !important;
  9324. }
  9325. .mt-md-5 {
  9326. margin-top: 3rem !important;
  9327. }
  9328. .mt-md-auto {
  9329. margin-top: auto !important;
  9330. }
  9331. .me-md-0 {
  9332. margin-left: 0 !important;
  9333. }
  9334. .me-md-1 {
  9335. margin-left: 0.25rem !important;
  9336. }
  9337. .me-md-2 {
  9338. margin-left: 0.5rem !important;
  9339. }
  9340. .me-md-3 {
  9341. margin-left: 1rem !important;
  9342. }
  9343. .me-md-4 {
  9344. margin-left: 1.5rem !important;
  9345. }
  9346. .me-md-5 {
  9347. margin-left: 3rem !important;
  9348. }
  9349. .me-md-auto {
  9350. margin-left: auto !important;
  9351. }
  9352. .mb-md-0 {
  9353. margin-bottom: 0 !important;
  9354. }
  9355. .mb-md-1 {
  9356. margin-bottom: 0.25rem !important;
  9357. }
  9358. .mb-md-2 {
  9359. margin-bottom: 0.5rem !important;
  9360. }
  9361. .mb-md-3 {
  9362. margin-bottom: 1rem !important;
  9363. }
  9364. .mb-md-4 {
  9365. margin-bottom: 1.5rem !important;
  9366. }
  9367. .mb-md-5 {
  9368. margin-bottom: 3rem !important;
  9369. }
  9370. .mb-md-auto {
  9371. margin-bottom: auto !important;
  9372. }
  9373. .ms-md-0 {
  9374. margin-right: 0 !important;
  9375. }
  9376. .ms-md-1 {
  9377. margin-right: 0.25rem !important;
  9378. }
  9379. .ms-md-2 {
  9380. margin-right: 0.5rem !important;
  9381. }
  9382. .ms-md-3 {
  9383. margin-right: 1rem !important;
  9384. }
  9385. .ms-md-4 {
  9386. margin-right: 1.5rem !important;
  9387. }
  9388. .ms-md-5 {
  9389. margin-right: 3rem !important;
  9390. }
  9391. .ms-md-auto {
  9392. margin-right: auto !important;
  9393. }
  9394. .m-md-n1 {
  9395. margin: -0.25rem !important;
  9396. }
  9397. .m-md-n2 {
  9398. margin: -0.5rem !important;
  9399. }
  9400. .m-md-n3 {
  9401. margin: -1rem !important;
  9402. }
  9403. .m-md-n4 {
  9404. margin: -1.5rem !important;
  9405. }
  9406. .m-md-n5 {
  9407. margin: -3rem !important;
  9408. }
  9409. .mx-md-n1 {
  9410. margin-left: -0.25rem !important;
  9411. margin-right: -0.25rem !important;
  9412. }
  9413. .mx-md-n2 {
  9414. margin-left: -0.5rem !important;
  9415. margin-right: -0.5rem !important;
  9416. }
  9417. .mx-md-n3 {
  9418. margin-left: -1rem !important;
  9419. margin-right: -1rem !important;
  9420. }
  9421. .mx-md-n4 {
  9422. margin-left: -1.5rem !important;
  9423. margin-right: -1.5rem !important;
  9424. }
  9425. .mx-md-n5 {
  9426. margin-left: -3rem !important;
  9427. margin-right: -3rem !important;
  9428. }
  9429. .my-md-n1 {
  9430. margin-top: -0.25rem !important;
  9431. margin-bottom: -0.25rem !important;
  9432. }
  9433. .my-md-n2 {
  9434. margin-top: -0.5rem !important;
  9435. margin-bottom: -0.5rem !important;
  9436. }
  9437. .my-md-n3 {
  9438. margin-top: -1rem !important;
  9439. margin-bottom: -1rem !important;
  9440. }
  9441. .my-md-n4 {
  9442. margin-top: -1.5rem !important;
  9443. margin-bottom: -1.5rem !important;
  9444. }
  9445. .my-md-n5 {
  9446. margin-top: -3rem !important;
  9447. margin-bottom: -3rem !important;
  9448. }
  9449. .mt-md-n1 {
  9450. margin-top: -0.25rem !important;
  9451. }
  9452. .mt-md-n2 {
  9453. margin-top: -0.5rem !important;
  9454. }
  9455. .mt-md-n3 {
  9456. margin-top: -1rem !important;
  9457. }
  9458. .mt-md-n4 {
  9459. margin-top: -1.5rem !important;
  9460. }
  9461. .mt-md-n5 {
  9462. margin-top: -3rem !important;
  9463. }
  9464. .me-md-n1 {
  9465. margin-left: -0.25rem !important;
  9466. }
  9467. .me-md-n2 {
  9468. margin-left: -0.5rem !important;
  9469. }
  9470. .me-md-n3 {
  9471. margin-left: -1rem !important;
  9472. }
  9473. .me-md-n4 {
  9474. margin-left: -1.5rem !important;
  9475. }
  9476. .me-md-n5 {
  9477. margin-left: -3rem !important;
  9478. }
  9479. .mb-md-n1 {
  9480. margin-bottom: -0.25rem !important;
  9481. }
  9482. .mb-md-n2 {
  9483. margin-bottom: -0.5rem !important;
  9484. }
  9485. .mb-md-n3 {
  9486. margin-bottom: -1rem !important;
  9487. }
  9488. .mb-md-n4 {
  9489. margin-bottom: -1.5rem !important;
  9490. }
  9491. .mb-md-n5 {
  9492. margin-bottom: -3rem !important;
  9493. }
  9494. .ms-md-n1 {
  9495. margin-right: -0.25rem !important;
  9496. }
  9497. .ms-md-n2 {
  9498. margin-right: -0.5rem !important;
  9499. }
  9500. .ms-md-n3 {
  9501. margin-right: -1rem !important;
  9502. }
  9503. .ms-md-n4 {
  9504. margin-right: -1.5rem !important;
  9505. }
  9506. .ms-md-n5 {
  9507. margin-right: -3rem !important;
  9508. }
  9509. .p-md-0 {
  9510. padding: 0 !important;
  9511. }
  9512. .p-md-1 {
  9513. padding: 0.25rem !important;
  9514. }
  9515. .p-md-2 {
  9516. padding: 0.5rem !important;
  9517. }
  9518. .p-md-3 {
  9519. padding: 1rem !important;
  9520. }
  9521. .p-md-4 {
  9522. padding: 1.5rem !important;
  9523. }
  9524. .p-md-5 {
  9525. padding: 3rem !important;
  9526. }
  9527. .px-md-0 {
  9528. padding-left: 0 !important;
  9529. padding-right: 0 !important;
  9530. }
  9531. .px-md-1 {
  9532. padding-left: 0.25rem !important;
  9533. padding-right: 0.25rem !important;
  9534. }
  9535. .px-md-2 {
  9536. padding-left: 0.5rem !important;
  9537. padding-right: 0.5rem !important;
  9538. }
  9539. .px-md-3 {
  9540. padding-left: 1rem !important;
  9541. padding-right: 1rem !important;
  9542. }
  9543. .px-md-4 {
  9544. padding-left: 1.5rem !important;
  9545. padding-right: 1.5rem !important;
  9546. }
  9547. .px-md-5 {
  9548. padding-left: 3rem !important;
  9549. padding-right: 3rem !important;
  9550. }
  9551. .py-md-0 {
  9552. padding-top: 0 !important;
  9553. padding-bottom: 0 !important;
  9554. }
  9555. .py-md-1 {
  9556. padding-top: 0.25rem !important;
  9557. padding-bottom: 0.25rem !important;
  9558. }
  9559. .py-md-2 {
  9560. padding-top: 0.5rem !important;
  9561. padding-bottom: 0.5rem !important;
  9562. }
  9563. .py-md-3 {
  9564. padding-top: 1rem !important;
  9565. padding-bottom: 1rem !important;
  9566. }
  9567. .py-md-4 {
  9568. padding-top: 1.5rem !important;
  9569. padding-bottom: 1.5rem !important;
  9570. }
  9571. .py-md-5 {
  9572. padding-top: 3rem !important;
  9573. padding-bottom: 3rem !important;
  9574. }
  9575. .pt-md-0 {
  9576. padding-top: 0 !important;
  9577. }
  9578. .pt-md-1 {
  9579. padding-top: 0.25rem !important;
  9580. }
  9581. .pt-md-2 {
  9582. padding-top: 0.5rem !important;
  9583. }
  9584. .pt-md-3 {
  9585. padding-top: 1rem !important;
  9586. }
  9587. .pt-md-4 {
  9588. padding-top: 1.5rem !important;
  9589. }
  9590. .pt-md-5 {
  9591. padding-top: 3rem !important;
  9592. }
  9593. .pe-md-0 {
  9594. padding-left: 0 !important;
  9595. }
  9596. .pe-md-1 {
  9597. padding-left: 0.25rem !important;
  9598. }
  9599. .pe-md-2 {
  9600. padding-left: 0.5rem !important;
  9601. }
  9602. .pe-md-3 {
  9603. padding-left: 1rem !important;
  9604. }
  9605. .pe-md-4 {
  9606. padding-left: 1.5rem !important;
  9607. }
  9608. .pe-md-5 {
  9609. padding-left: 3rem !important;
  9610. }
  9611. .pb-md-0 {
  9612. padding-bottom: 0 !important;
  9613. }
  9614. .pb-md-1 {
  9615. padding-bottom: 0.25rem !important;
  9616. }
  9617. .pb-md-2 {
  9618. padding-bottom: 0.5rem !important;
  9619. }
  9620. .pb-md-3 {
  9621. padding-bottom: 1rem !important;
  9622. }
  9623. .pb-md-4 {
  9624. padding-bottom: 1.5rem !important;
  9625. }
  9626. .pb-md-5 {
  9627. padding-bottom: 3rem !important;
  9628. }
  9629. .ps-md-0 {
  9630. padding-right: 0 !important;
  9631. }
  9632. .ps-md-1 {
  9633. padding-right: 0.25rem !important;
  9634. }
  9635. .ps-md-2 {
  9636. padding-right: 0.5rem !important;
  9637. }
  9638. .ps-md-3 {
  9639. padding-right: 1rem !important;
  9640. }
  9641. .ps-md-4 {
  9642. padding-right: 1.5rem !important;
  9643. }
  9644. .ps-md-5 {
  9645. padding-right: 3rem !important;
  9646. }
  9647. .gap-md-0 {
  9648. gap: 0 !important;
  9649. }
  9650. .gap-md-1 {
  9651. gap: 0.25rem !important;
  9652. }
  9653. .gap-md-2 {
  9654. gap: 0.5rem !important;
  9655. }
  9656. .gap-md-3 {
  9657. gap: 1rem !important;
  9658. }
  9659. .gap-md-4 {
  9660. gap: 1.5rem !important;
  9661. }
  9662. .gap-md-5 {
  9663. gap: 3rem !important;
  9664. }
  9665. .row-gap-md-0 {
  9666. row-gap: 0 !important;
  9667. }
  9668. .row-gap-md-1 {
  9669. row-gap: 0.25rem !important;
  9670. }
  9671. .row-gap-md-2 {
  9672. row-gap: 0.5rem !important;
  9673. }
  9674. .row-gap-md-3 {
  9675. row-gap: 1rem !important;
  9676. }
  9677. .row-gap-md-4 {
  9678. row-gap: 1.5rem !important;
  9679. }
  9680. .row-gap-md-5 {
  9681. row-gap: 3rem !important;
  9682. }
  9683. .column-gap-md-0 {
  9684. -moz-column-gap: 0 !important;
  9685. column-gap: 0 !important;
  9686. }
  9687. .column-gap-md-1 {
  9688. -moz-column-gap: 0.25rem !important;
  9689. column-gap: 0.25rem !important;
  9690. }
  9691. .column-gap-md-2 {
  9692. -moz-column-gap: 0.5rem !important;
  9693. column-gap: 0.5rem !important;
  9694. }
  9695. .column-gap-md-3 {
  9696. -moz-column-gap: 1rem !important;
  9697. column-gap: 1rem !important;
  9698. }
  9699. .column-gap-md-4 {
  9700. -moz-column-gap: 1.5rem !important;
  9701. column-gap: 1.5rem !important;
  9702. }
  9703. .column-gap-md-5 {
  9704. -moz-column-gap: 3rem !important;
  9705. column-gap: 3rem !important;
  9706. }
  9707. .text-md-start {
  9708. text-align: right !important;
  9709. }
  9710. .text-md-end {
  9711. text-align: left !important;
  9712. }
  9713. .text-md-center {
  9714. text-align: center !important;
  9715. }
  9716. }
  9717. @media (min-width: 992px) {
  9718. .float-lg-start {
  9719. float: right !important;
  9720. }
  9721. .float-lg-end {
  9722. float: left !important;
  9723. }
  9724. .float-lg-none {
  9725. float: none !important;
  9726. }
  9727. .object-fit-lg-contain {
  9728. -o-object-fit: contain !important;
  9729. object-fit: contain !important;
  9730. }
  9731. .object-fit-lg-cover {
  9732. -o-object-fit: cover !important;
  9733. object-fit: cover !important;
  9734. }
  9735. .object-fit-lg-fill {
  9736. -o-object-fit: fill !important;
  9737. object-fit: fill !important;
  9738. }
  9739. .object-fit-lg-scale {
  9740. -o-object-fit: scale-down !important;
  9741. object-fit: scale-down !important;
  9742. }
  9743. .object-fit-lg-none {
  9744. -o-object-fit: none !important;
  9745. object-fit: none !important;
  9746. }
  9747. .d-lg-inline {
  9748. display: inline !important;
  9749. }
  9750. .d-lg-inline-block {
  9751. display: inline-block !important;
  9752. }
  9753. .d-lg-block {
  9754. display: block !important;
  9755. }
  9756. .d-lg-grid {
  9757. display: grid !important;
  9758. }
  9759. .d-lg-inline-grid {
  9760. display: inline-grid !important;
  9761. }
  9762. .d-lg-table {
  9763. display: table !important;
  9764. }
  9765. .d-lg-table-row {
  9766. display: table-row !important;
  9767. }
  9768. .d-lg-table-cell {
  9769. display: table-cell !important;
  9770. }
  9771. .d-lg-flex {
  9772. display: flex !important;
  9773. }
  9774. .d-lg-inline-flex {
  9775. display: inline-flex !important;
  9776. }
  9777. .d-lg-none {
  9778. display: none !important;
  9779. }
  9780. .flex-lg-fill {
  9781. flex: 1 1 auto !important;
  9782. }
  9783. .flex-lg-row {
  9784. flex-direction: row !important;
  9785. }
  9786. .flex-lg-column {
  9787. flex-direction: column !important;
  9788. }
  9789. .flex-lg-row-reverse {
  9790. flex-direction: row-reverse !important;
  9791. }
  9792. .flex-lg-column-reverse {
  9793. flex-direction: column-reverse !important;
  9794. }
  9795. .flex-lg-grow-0 {
  9796. flex-grow: 0 !important;
  9797. }
  9798. .flex-lg-grow-1 {
  9799. flex-grow: 1 !important;
  9800. }
  9801. .flex-lg-shrink-0 {
  9802. flex-shrink: 0 !important;
  9803. }
  9804. .flex-lg-shrink-1 {
  9805. flex-shrink: 1 !important;
  9806. }
  9807. .flex-lg-wrap {
  9808. flex-wrap: wrap !important;
  9809. }
  9810. .flex-lg-nowrap {
  9811. flex-wrap: nowrap !important;
  9812. }
  9813. .flex-lg-wrap-reverse {
  9814. flex-wrap: wrap-reverse !important;
  9815. }
  9816. .justify-content-lg-start {
  9817. justify-content: flex-start !important;
  9818. }
  9819. .justify-content-lg-end {
  9820. justify-content: flex-end !important;
  9821. }
  9822. .justify-content-lg-center {
  9823. justify-content: center !important;
  9824. }
  9825. .justify-content-lg-between {
  9826. justify-content: space-between !important;
  9827. }
  9828. .justify-content-lg-around {
  9829. justify-content: space-around !important;
  9830. }
  9831. .justify-content-lg-evenly {
  9832. justify-content: space-evenly !important;
  9833. }
  9834. .align-items-lg-start {
  9835. align-items: flex-start !important;
  9836. }
  9837. .align-items-lg-end {
  9838. align-items: flex-end !important;
  9839. }
  9840. .align-items-lg-center {
  9841. align-items: center !important;
  9842. }
  9843. .align-items-lg-baseline {
  9844. align-items: baseline !important;
  9845. }
  9846. .align-items-lg-stretch {
  9847. align-items: stretch !important;
  9848. }
  9849. .align-content-lg-start {
  9850. align-content: flex-start !important;
  9851. }
  9852. .align-content-lg-end {
  9853. align-content: flex-end !important;
  9854. }
  9855. .align-content-lg-center {
  9856. align-content: center !important;
  9857. }
  9858. .align-content-lg-between {
  9859. align-content: space-between !important;
  9860. }
  9861. .align-content-lg-around {
  9862. align-content: space-around !important;
  9863. }
  9864. .align-content-lg-stretch {
  9865. align-content: stretch !important;
  9866. }
  9867. .align-self-lg-auto {
  9868. align-self: auto !important;
  9869. }
  9870. .align-self-lg-start {
  9871. align-self: flex-start !important;
  9872. }
  9873. .align-self-lg-end {
  9874. align-self: flex-end !important;
  9875. }
  9876. .align-self-lg-center {
  9877. align-self: center !important;
  9878. }
  9879. .align-self-lg-baseline {
  9880. align-self: baseline !important;
  9881. }
  9882. .align-self-lg-stretch {
  9883. align-self: stretch !important;
  9884. }
  9885. .order-lg-first {
  9886. order: -1 !important;
  9887. }
  9888. .order-lg-0 {
  9889. order: 0 !important;
  9890. }
  9891. .order-lg-1 {
  9892. order: 1 !important;
  9893. }
  9894. .order-lg-2 {
  9895. order: 2 !important;
  9896. }
  9897. .order-lg-3 {
  9898. order: 3 !important;
  9899. }
  9900. .order-lg-4 {
  9901. order: 4 !important;
  9902. }
  9903. .order-lg-5 {
  9904. order: 5 !important;
  9905. }
  9906. .order-lg-last {
  9907. order: 6 !important;
  9908. }
  9909. .m-lg-0 {
  9910. margin: 0 !important;
  9911. }
  9912. .m-lg-1 {
  9913. margin: 0.25rem !important;
  9914. }
  9915. .m-lg-2 {
  9916. margin: 0.5rem !important;
  9917. }
  9918. .m-lg-3 {
  9919. margin: 1rem !important;
  9920. }
  9921. .m-lg-4 {
  9922. margin: 1.5rem !important;
  9923. }
  9924. .m-lg-5 {
  9925. margin: 3rem !important;
  9926. }
  9927. .m-lg-auto {
  9928. margin: auto !important;
  9929. }
  9930. .mx-lg-0 {
  9931. margin-left: 0 !important;
  9932. margin-right: 0 !important;
  9933. }
  9934. .mx-lg-1 {
  9935. margin-left: 0.25rem !important;
  9936. margin-right: 0.25rem !important;
  9937. }
  9938. .mx-lg-2 {
  9939. margin-left: 0.5rem !important;
  9940. margin-right: 0.5rem !important;
  9941. }
  9942. .mx-lg-3 {
  9943. margin-left: 1rem !important;
  9944. margin-right: 1rem !important;
  9945. }
  9946. .mx-lg-4 {
  9947. margin-left: 1.5rem !important;
  9948. margin-right: 1.5rem !important;
  9949. }
  9950. .mx-lg-5 {
  9951. margin-left: 3rem !important;
  9952. margin-right: 3rem !important;
  9953. }
  9954. .mx-lg-auto {
  9955. margin-left: auto !important;
  9956. margin-right: auto !important;
  9957. }
  9958. .my-lg-0 {
  9959. margin-top: 0 !important;
  9960. margin-bottom: 0 !important;
  9961. }
  9962. .my-lg-1 {
  9963. margin-top: 0.25rem !important;
  9964. margin-bottom: 0.25rem !important;
  9965. }
  9966. .my-lg-2 {
  9967. margin-top: 0.5rem !important;
  9968. margin-bottom: 0.5rem !important;
  9969. }
  9970. .my-lg-3 {
  9971. margin-top: 1rem !important;
  9972. margin-bottom: 1rem !important;
  9973. }
  9974. .my-lg-4 {
  9975. margin-top: 1.5rem !important;
  9976. margin-bottom: 1.5rem !important;
  9977. }
  9978. .my-lg-5 {
  9979. margin-top: 3rem !important;
  9980. margin-bottom: 3rem !important;
  9981. }
  9982. .my-lg-auto {
  9983. margin-top: auto !important;
  9984. margin-bottom: auto !important;
  9985. }
  9986. .mt-lg-0 {
  9987. margin-top: 0 !important;
  9988. }
  9989. .mt-lg-1 {
  9990. margin-top: 0.25rem !important;
  9991. }
  9992. .mt-lg-2 {
  9993. margin-top: 0.5rem !important;
  9994. }
  9995. .mt-lg-3 {
  9996. margin-top: 1rem !important;
  9997. }
  9998. .mt-lg-4 {
  9999. margin-top: 1.5rem !important;
  10000. }
  10001. .mt-lg-5 {
  10002. margin-top: 3rem !important;
  10003. }
  10004. .mt-lg-auto {
  10005. margin-top: auto !important;
  10006. }
  10007. .me-lg-0 {
  10008. margin-left: 0 !important;
  10009. }
  10010. .me-lg-1 {
  10011. margin-left: 0.25rem !important;
  10012. }
  10013. .me-lg-2 {
  10014. margin-left: 0.5rem !important;
  10015. }
  10016. .me-lg-3 {
  10017. margin-left: 1rem !important;
  10018. }
  10019. .me-lg-4 {
  10020. margin-left: 1.5rem !important;
  10021. }
  10022. .me-lg-5 {
  10023. margin-left: 3rem !important;
  10024. }
  10025. .me-lg-auto {
  10026. margin-left: auto !important;
  10027. }
  10028. .mb-lg-0 {
  10029. margin-bottom: 0 !important;
  10030. }
  10031. .mb-lg-1 {
  10032. margin-bottom: 0.25rem !important;
  10033. }
  10034. .mb-lg-2 {
  10035. margin-bottom: 0.5rem !important;
  10036. }
  10037. .mb-lg-3 {
  10038. margin-bottom: 1rem !important;
  10039. }
  10040. .mb-lg-4 {
  10041. margin-bottom: 1.5rem !important;
  10042. }
  10043. .mb-lg-5 {
  10044. margin-bottom: 3rem !important;
  10045. }
  10046. .mb-lg-auto {
  10047. margin-bottom: auto !important;
  10048. }
  10049. .ms-lg-0 {
  10050. margin-right: 0 !important;
  10051. }
  10052. .ms-lg-1 {
  10053. margin-right: 0.25rem !important;
  10054. }
  10055. .ms-lg-2 {
  10056. margin-right: 0.5rem !important;
  10057. }
  10058. .ms-lg-3 {
  10059. margin-right: 1rem !important;
  10060. }
  10061. .ms-lg-4 {
  10062. margin-right: 1.5rem !important;
  10063. }
  10064. .ms-lg-5 {
  10065. margin-right: 3rem !important;
  10066. }
  10067. .ms-lg-auto {
  10068. margin-right: auto !important;
  10069. }
  10070. .m-lg-n1 {
  10071. margin: -0.25rem !important;
  10072. }
  10073. .m-lg-n2 {
  10074. margin: -0.5rem !important;
  10075. }
  10076. .m-lg-n3 {
  10077. margin: -1rem !important;
  10078. }
  10079. .m-lg-n4 {
  10080. margin: -1.5rem !important;
  10081. }
  10082. .m-lg-n5 {
  10083. margin: -3rem !important;
  10084. }
  10085. .mx-lg-n1 {
  10086. margin-left: -0.25rem !important;
  10087. margin-right: -0.25rem !important;
  10088. }
  10089. .mx-lg-n2 {
  10090. margin-left: -0.5rem !important;
  10091. margin-right: -0.5rem !important;
  10092. }
  10093. .mx-lg-n3 {
  10094. margin-left: -1rem !important;
  10095. margin-right: -1rem !important;
  10096. }
  10097. .mx-lg-n4 {
  10098. margin-left: -1.5rem !important;
  10099. margin-right: -1.5rem !important;
  10100. }
  10101. .mx-lg-n5 {
  10102. margin-left: -3rem !important;
  10103. margin-right: -3rem !important;
  10104. }
  10105. .my-lg-n1 {
  10106. margin-top: -0.25rem !important;
  10107. margin-bottom: -0.25rem !important;
  10108. }
  10109. .my-lg-n2 {
  10110. margin-top: -0.5rem !important;
  10111. margin-bottom: -0.5rem !important;
  10112. }
  10113. .my-lg-n3 {
  10114. margin-top: -1rem !important;
  10115. margin-bottom: -1rem !important;
  10116. }
  10117. .my-lg-n4 {
  10118. margin-top: -1.5rem !important;
  10119. margin-bottom: -1.5rem !important;
  10120. }
  10121. .my-lg-n5 {
  10122. margin-top: -3rem !important;
  10123. margin-bottom: -3rem !important;
  10124. }
  10125. .mt-lg-n1 {
  10126. margin-top: -0.25rem !important;
  10127. }
  10128. .mt-lg-n2 {
  10129. margin-top: -0.5rem !important;
  10130. }
  10131. .mt-lg-n3 {
  10132. margin-top: -1rem !important;
  10133. }
  10134. .mt-lg-n4 {
  10135. margin-top: -1.5rem !important;
  10136. }
  10137. .mt-lg-n5 {
  10138. margin-top: -3rem !important;
  10139. }
  10140. .me-lg-n1 {
  10141. margin-left: -0.25rem !important;
  10142. }
  10143. .me-lg-n2 {
  10144. margin-left: -0.5rem !important;
  10145. }
  10146. .me-lg-n3 {
  10147. margin-left: -1rem !important;
  10148. }
  10149. .me-lg-n4 {
  10150. margin-left: -1.5rem !important;
  10151. }
  10152. .me-lg-n5 {
  10153. margin-left: -3rem !important;
  10154. }
  10155. .mb-lg-n1 {
  10156. margin-bottom: -0.25rem !important;
  10157. }
  10158. .mb-lg-n2 {
  10159. margin-bottom: -0.5rem !important;
  10160. }
  10161. .mb-lg-n3 {
  10162. margin-bottom: -1rem !important;
  10163. }
  10164. .mb-lg-n4 {
  10165. margin-bottom: -1.5rem !important;
  10166. }
  10167. .mb-lg-n5 {
  10168. margin-bottom: -3rem !important;
  10169. }
  10170. .ms-lg-n1 {
  10171. margin-right: -0.25rem !important;
  10172. }
  10173. .ms-lg-n2 {
  10174. margin-right: -0.5rem !important;
  10175. }
  10176. .ms-lg-n3 {
  10177. margin-right: -1rem !important;
  10178. }
  10179. .ms-lg-n4 {
  10180. margin-right: -1.5rem !important;
  10181. }
  10182. .ms-lg-n5 {
  10183. margin-right: -3rem !important;
  10184. }
  10185. .p-lg-0 {
  10186. padding: 0 !important;
  10187. }
  10188. .p-lg-1 {
  10189. padding: 0.25rem !important;
  10190. }
  10191. .p-lg-2 {
  10192. padding: 0.5rem !important;
  10193. }
  10194. .p-lg-3 {
  10195. padding: 1rem !important;
  10196. }
  10197. .p-lg-4 {
  10198. padding: 1.5rem !important;
  10199. }
  10200. .p-lg-5 {
  10201. padding: 3rem !important;
  10202. }
  10203. .px-lg-0 {
  10204. padding-left: 0 !important;
  10205. padding-right: 0 !important;
  10206. }
  10207. .px-lg-1 {
  10208. padding-left: 0.25rem !important;
  10209. padding-right: 0.25rem !important;
  10210. }
  10211. .px-lg-2 {
  10212. padding-left: 0.5rem !important;
  10213. padding-right: 0.5rem !important;
  10214. }
  10215. .px-lg-3 {
  10216. padding-left: 1rem !important;
  10217. padding-right: 1rem !important;
  10218. }
  10219. .px-lg-4 {
  10220. padding-left: 1.5rem !important;
  10221. padding-right: 1.5rem !important;
  10222. }
  10223. .px-lg-5 {
  10224. padding-left: 3rem !important;
  10225. padding-right: 3rem !important;
  10226. }
  10227. .py-lg-0 {
  10228. padding-top: 0 !important;
  10229. padding-bottom: 0 !important;
  10230. }
  10231. .py-lg-1 {
  10232. padding-top: 0.25rem !important;
  10233. padding-bottom: 0.25rem !important;
  10234. }
  10235. .py-lg-2 {
  10236. padding-top: 0.5rem !important;
  10237. padding-bottom: 0.5rem !important;
  10238. }
  10239. .py-lg-3 {
  10240. padding-top: 1rem !important;
  10241. padding-bottom: 1rem !important;
  10242. }
  10243. .py-lg-4 {
  10244. padding-top: 1.5rem !important;
  10245. padding-bottom: 1.5rem !important;
  10246. }
  10247. .py-lg-5 {
  10248. padding-top: 3rem !important;
  10249. padding-bottom: 3rem !important;
  10250. }
  10251. .pt-lg-0 {
  10252. padding-top: 0 !important;
  10253. }
  10254. .pt-lg-1 {
  10255. padding-top: 0.25rem !important;
  10256. }
  10257. .pt-lg-2 {
  10258. padding-top: 0.5rem !important;
  10259. }
  10260. .pt-lg-3 {
  10261. padding-top: 1rem !important;
  10262. }
  10263. .pt-lg-4 {
  10264. padding-top: 1.5rem !important;
  10265. }
  10266. .pt-lg-5 {
  10267. padding-top: 3rem !important;
  10268. }
  10269. .pe-lg-0 {
  10270. padding-left: 0 !important;
  10271. }
  10272. .pe-lg-1 {
  10273. padding-left: 0.25rem !important;
  10274. }
  10275. .pe-lg-2 {
  10276. padding-left: 0.5rem !important;
  10277. }
  10278. .pe-lg-3 {
  10279. padding-left: 1rem !important;
  10280. }
  10281. .pe-lg-4 {
  10282. padding-left: 1.5rem !important;
  10283. }
  10284. .pe-lg-5 {
  10285. padding-left: 3rem !important;
  10286. }
  10287. .pb-lg-0 {
  10288. padding-bottom: 0 !important;
  10289. }
  10290. .pb-lg-1 {
  10291. padding-bottom: 0.25rem !important;
  10292. }
  10293. .pb-lg-2 {
  10294. padding-bottom: 0.5rem !important;
  10295. }
  10296. .pb-lg-3 {
  10297. padding-bottom: 1rem !important;
  10298. }
  10299. .pb-lg-4 {
  10300. padding-bottom: 1.5rem !important;
  10301. }
  10302. .pb-lg-5 {
  10303. padding-bottom: 3rem !important;
  10304. }
  10305. .ps-lg-0 {
  10306. padding-right: 0 !important;
  10307. }
  10308. .ps-lg-1 {
  10309. padding-right: 0.25rem !important;
  10310. }
  10311. .ps-lg-2 {
  10312. padding-right: 0.5rem !important;
  10313. }
  10314. .ps-lg-3 {
  10315. padding-right: 1rem !important;
  10316. }
  10317. .ps-lg-4 {
  10318. padding-right: 1.5rem !important;
  10319. }
  10320. .ps-lg-5 {
  10321. padding-right: 3rem !important;
  10322. }
  10323. .gap-lg-0 {
  10324. gap: 0 !important;
  10325. }
  10326. .gap-lg-1 {
  10327. gap: 0.25rem !important;
  10328. }
  10329. .gap-lg-2 {
  10330. gap: 0.5rem !important;
  10331. }
  10332. .gap-lg-3 {
  10333. gap: 1rem !important;
  10334. }
  10335. .gap-lg-4 {
  10336. gap: 1.5rem !important;
  10337. }
  10338. .gap-lg-5 {
  10339. gap: 3rem !important;
  10340. }
  10341. .row-gap-lg-0 {
  10342. row-gap: 0 !important;
  10343. }
  10344. .row-gap-lg-1 {
  10345. row-gap: 0.25rem !important;
  10346. }
  10347. .row-gap-lg-2 {
  10348. row-gap: 0.5rem !important;
  10349. }
  10350. .row-gap-lg-3 {
  10351. row-gap: 1rem !important;
  10352. }
  10353. .row-gap-lg-4 {
  10354. row-gap: 1.5rem !important;
  10355. }
  10356. .row-gap-lg-5 {
  10357. row-gap: 3rem !important;
  10358. }
  10359. .column-gap-lg-0 {
  10360. -moz-column-gap: 0 !important;
  10361. column-gap: 0 !important;
  10362. }
  10363. .column-gap-lg-1 {
  10364. -moz-column-gap: 0.25rem !important;
  10365. column-gap: 0.25rem !important;
  10366. }
  10367. .column-gap-lg-2 {
  10368. -moz-column-gap: 0.5rem !important;
  10369. column-gap: 0.5rem !important;
  10370. }
  10371. .column-gap-lg-3 {
  10372. -moz-column-gap: 1rem !important;
  10373. column-gap: 1rem !important;
  10374. }
  10375. .column-gap-lg-4 {
  10376. -moz-column-gap: 1.5rem !important;
  10377. column-gap: 1.5rem !important;
  10378. }
  10379. .column-gap-lg-5 {
  10380. -moz-column-gap: 3rem !important;
  10381. column-gap: 3rem !important;
  10382. }
  10383. .text-lg-start {
  10384. text-align: right !important;
  10385. }
  10386. .text-lg-end {
  10387. text-align: left !important;
  10388. }
  10389. .text-lg-center {
  10390. text-align: center !important;
  10391. }
  10392. }
  10393. @media (min-width: 1200px) {
  10394. .float-xl-start {
  10395. float: right !important;
  10396. }
  10397. .float-xl-end {
  10398. float: left !important;
  10399. }
  10400. .float-xl-none {
  10401. float: none !important;
  10402. }
  10403. .object-fit-xl-contain {
  10404. -o-object-fit: contain !important;
  10405. object-fit: contain !important;
  10406. }
  10407. .object-fit-xl-cover {
  10408. -o-object-fit: cover !important;
  10409. object-fit: cover !important;
  10410. }
  10411. .object-fit-xl-fill {
  10412. -o-object-fit: fill !important;
  10413. object-fit: fill !important;
  10414. }
  10415. .object-fit-xl-scale {
  10416. -o-object-fit: scale-down !important;
  10417. object-fit: scale-down !important;
  10418. }
  10419. .object-fit-xl-none {
  10420. -o-object-fit: none !important;
  10421. object-fit: none !important;
  10422. }
  10423. .d-xl-inline {
  10424. display: inline !important;
  10425. }
  10426. .d-xl-inline-block {
  10427. display: inline-block !important;
  10428. }
  10429. .d-xl-block {
  10430. display: block !important;
  10431. }
  10432. .d-xl-grid {
  10433. display: grid !important;
  10434. }
  10435. .d-xl-inline-grid {
  10436. display: inline-grid !important;
  10437. }
  10438. .d-xl-table {
  10439. display: table !important;
  10440. }
  10441. .d-xl-table-row {
  10442. display: table-row !important;
  10443. }
  10444. .d-xl-table-cell {
  10445. display: table-cell !important;
  10446. }
  10447. .d-xl-flex {
  10448. display: flex !important;
  10449. }
  10450. .d-xl-inline-flex {
  10451. display: inline-flex !important;
  10452. }
  10453. .d-xl-none {
  10454. display: none !important;
  10455. }
  10456. .flex-xl-fill {
  10457. flex: 1 1 auto !important;
  10458. }
  10459. .flex-xl-row {
  10460. flex-direction: row !important;
  10461. }
  10462. .flex-xl-column {
  10463. flex-direction: column !important;
  10464. }
  10465. .flex-xl-row-reverse {
  10466. flex-direction: row-reverse !important;
  10467. }
  10468. .flex-xl-column-reverse {
  10469. flex-direction: column-reverse !important;
  10470. }
  10471. .flex-xl-grow-0 {
  10472. flex-grow: 0 !important;
  10473. }
  10474. .flex-xl-grow-1 {
  10475. flex-grow: 1 !important;
  10476. }
  10477. .flex-xl-shrink-0 {
  10478. flex-shrink: 0 !important;
  10479. }
  10480. .flex-xl-shrink-1 {
  10481. flex-shrink: 1 !important;
  10482. }
  10483. .flex-xl-wrap {
  10484. flex-wrap: wrap !important;
  10485. }
  10486. .flex-xl-nowrap {
  10487. flex-wrap: nowrap !important;
  10488. }
  10489. .flex-xl-wrap-reverse {
  10490. flex-wrap: wrap-reverse !important;
  10491. }
  10492. .justify-content-xl-start {
  10493. justify-content: flex-start !important;
  10494. }
  10495. .justify-content-xl-end {
  10496. justify-content: flex-end !important;
  10497. }
  10498. .justify-content-xl-center {
  10499. justify-content: center !important;
  10500. }
  10501. .justify-content-xl-between {
  10502. justify-content: space-between !important;
  10503. }
  10504. .justify-content-xl-around {
  10505. justify-content: space-around !important;
  10506. }
  10507. .justify-content-xl-evenly {
  10508. justify-content: space-evenly !important;
  10509. }
  10510. .align-items-xl-start {
  10511. align-items: flex-start !important;
  10512. }
  10513. .align-items-xl-end {
  10514. align-items: flex-end !important;
  10515. }
  10516. .align-items-xl-center {
  10517. align-items: center !important;
  10518. }
  10519. .align-items-xl-baseline {
  10520. align-items: baseline !important;
  10521. }
  10522. .align-items-xl-stretch {
  10523. align-items: stretch !important;
  10524. }
  10525. .align-content-xl-start {
  10526. align-content: flex-start !important;
  10527. }
  10528. .align-content-xl-end {
  10529. align-content: flex-end !important;
  10530. }
  10531. .align-content-xl-center {
  10532. align-content: center !important;
  10533. }
  10534. .align-content-xl-between {
  10535. align-content: space-between !important;
  10536. }
  10537. .align-content-xl-around {
  10538. align-content: space-around !important;
  10539. }
  10540. .align-content-xl-stretch {
  10541. align-content: stretch !important;
  10542. }
  10543. .align-self-xl-auto {
  10544. align-self: auto !important;
  10545. }
  10546. .align-self-xl-start {
  10547. align-self: flex-start !important;
  10548. }
  10549. .align-self-xl-end {
  10550. align-self: flex-end !important;
  10551. }
  10552. .align-self-xl-center {
  10553. align-self: center !important;
  10554. }
  10555. .align-self-xl-baseline {
  10556. align-self: baseline !important;
  10557. }
  10558. .align-self-xl-stretch {
  10559. align-self: stretch !important;
  10560. }
  10561. .order-xl-first {
  10562. order: -1 !important;
  10563. }
  10564. .order-xl-0 {
  10565. order: 0 !important;
  10566. }
  10567. .order-xl-1 {
  10568. order: 1 !important;
  10569. }
  10570. .order-xl-2 {
  10571. order: 2 !important;
  10572. }
  10573. .order-xl-3 {
  10574. order: 3 !important;
  10575. }
  10576. .order-xl-4 {
  10577. order: 4 !important;
  10578. }
  10579. .order-xl-5 {
  10580. order: 5 !important;
  10581. }
  10582. .order-xl-last {
  10583. order: 6 !important;
  10584. }
  10585. .m-xl-0 {
  10586. margin: 0 !important;
  10587. }
  10588. .m-xl-1 {
  10589. margin: 0.25rem !important;
  10590. }
  10591. .m-xl-2 {
  10592. margin: 0.5rem !important;
  10593. }
  10594. .m-xl-3 {
  10595. margin: 1rem !important;
  10596. }
  10597. .m-xl-4 {
  10598. margin: 1.5rem !important;
  10599. }
  10600. .m-xl-5 {
  10601. margin: 3rem !important;
  10602. }
  10603. .m-xl-auto {
  10604. margin: auto !important;
  10605. }
  10606. .mx-xl-0 {
  10607. margin-left: 0 !important;
  10608. margin-right: 0 !important;
  10609. }
  10610. .mx-xl-1 {
  10611. margin-left: 0.25rem !important;
  10612. margin-right: 0.25rem !important;
  10613. }
  10614. .mx-xl-2 {
  10615. margin-left: 0.5rem !important;
  10616. margin-right: 0.5rem !important;
  10617. }
  10618. .mx-xl-3 {
  10619. margin-left: 1rem !important;
  10620. margin-right: 1rem !important;
  10621. }
  10622. .mx-xl-4 {
  10623. margin-left: 1.5rem !important;
  10624. margin-right: 1.5rem !important;
  10625. }
  10626. .mx-xl-5 {
  10627. margin-left: 3rem !important;
  10628. margin-right: 3rem !important;
  10629. }
  10630. .mx-xl-auto {
  10631. margin-left: auto !important;
  10632. margin-right: auto !important;
  10633. }
  10634. .my-xl-0 {
  10635. margin-top: 0 !important;
  10636. margin-bottom: 0 !important;
  10637. }
  10638. .my-xl-1 {
  10639. margin-top: 0.25rem !important;
  10640. margin-bottom: 0.25rem !important;
  10641. }
  10642. .my-xl-2 {
  10643. margin-top: 0.5rem !important;
  10644. margin-bottom: 0.5rem !important;
  10645. }
  10646. .my-xl-3 {
  10647. margin-top: 1rem !important;
  10648. margin-bottom: 1rem !important;
  10649. }
  10650. .my-xl-4 {
  10651. margin-top: 1.5rem !important;
  10652. margin-bottom: 1.5rem !important;
  10653. }
  10654. .my-xl-5 {
  10655. margin-top: 3rem !important;
  10656. margin-bottom: 3rem !important;
  10657. }
  10658. .my-xl-auto {
  10659. margin-top: auto !important;
  10660. margin-bottom: auto !important;
  10661. }
  10662. .mt-xl-0 {
  10663. margin-top: 0 !important;
  10664. }
  10665. .mt-xl-1 {
  10666. margin-top: 0.25rem !important;
  10667. }
  10668. .mt-xl-2 {
  10669. margin-top: 0.5rem !important;
  10670. }
  10671. .mt-xl-3 {
  10672. margin-top: 1rem !important;
  10673. }
  10674. .mt-xl-4 {
  10675. margin-top: 1.5rem !important;
  10676. }
  10677. .mt-xl-5 {
  10678. margin-top: 3rem !important;
  10679. }
  10680. .mt-xl-auto {
  10681. margin-top: auto !important;
  10682. }
  10683. .me-xl-0 {
  10684. margin-left: 0 !important;
  10685. }
  10686. .me-xl-1 {
  10687. margin-left: 0.25rem !important;
  10688. }
  10689. .me-xl-2 {
  10690. margin-left: 0.5rem !important;
  10691. }
  10692. .me-xl-3 {
  10693. margin-left: 1rem !important;
  10694. }
  10695. .me-xl-4 {
  10696. margin-left: 1.5rem !important;
  10697. }
  10698. .me-xl-5 {
  10699. margin-left: 3rem !important;
  10700. }
  10701. .me-xl-auto {
  10702. margin-left: auto !important;
  10703. }
  10704. .mb-xl-0 {
  10705. margin-bottom: 0 !important;
  10706. }
  10707. .mb-xl-1 {
  10708. margin-bottom: 0.25rem !important;
  10709. }
  10710. .mb-xl-2 {
  10711. margin-bottom: 0.5rem !important;
  10712. }
  10713. .mb-xl-3 {
  10714. margin-bottom: 1rem !important;
  10715. }
  10716. .mb-xl-4 {
  10717. margin-bottom: 1.5rem !important;
  10718. }
  10719. .mb-xl-5 {
  10720. margin-bottom: 3rem !important;
  10721. }
  10722. .mb-xl-auto {
  10723. margin-bottom: auto !important;
  10724. }
  10725. .ms-xl-0 {
  10726. margin-right: 0 !important;
  10727. }
  10728. .ms-xl-1 {
  10729. margin-right: 0.25rem !important;
  10730. }
  10731. .ms-xl-2 {
  10732. margin-right: 0.5rem !important;
  10733. }
  10734. .ms-xl-3 {
  10735. margin-right: 1rem !important;
  10736. }
  10737. .ms-xl-4 {
  10738. margin-right: 1.5rem !important;
  10739. }
  10740. .ms-xl-5 {
  10741. margin-right: 3rem !important;
  10742. }
  10743. .ms-xl-auto {
  10744. margin-right: auto !important;
  10745. }
  10746. .m-xl-n1 {
  10747. margin: -0.25rem !important;
  10748. }
  10749. .m-xl-n2 {
  10750. margin: -0.5rem !important;
  10751. }
  10752. .m-xl-n3 {
  10753. margin: -1rem !important;
  10754. }
  10755. .m-xl-n4 {
  10756. margin: -1.5rem !important;
  10757. }
  10758. .m-xl-n5 {
  10759. margin: -3rem !important;
  10760. }
  10761. .mx-xl-n1 {
  10762. margin-left: -0.25rem !important;
  10763. margin-right: -0.25rem !important;
  10764. }
  10765. .mx-xl-n2 {
  10766. margin-left: -0.5rem !important;
  10767. margin-right: -0.5rem !important;
  10768. }
  10769. .mx-xl-n3 {
  10770. margin-left: -1rem !important;
  10771. margin-right: -1rem !important;
  10772. }
  10773. .mx-xl-n4 {
  10774. margin-left: -1.5rem !important;
  10775. margin-right: -1.5rem !important;
  10776. }
  10777. .mx-xl-n5 {
  10778. margin-left: -3rem !important;
  10779. margin-right: -3rem !important;
  10780. }
  10781. .my-xl-n1 {
  10782. margin-top: -0.25rem !important;
  10783. margin-bottom: -0.25rem !important;
  10784. }
  10785. .my-xl-n2 {
  10786. margin-top: -0.5rem !important;
  10787. margin-bottom: -0.5rem !important;
  10788. }
  10789. .my-xl-n3 {
  10790. margin-top: -1rem !important;
  10791. margin-bottom: -1rem !important;
  10792. }
  10793. .my-xl-n4 {
  10794. margin-top: -1.5rem !important;
  10795. margin-bottom: -1.5rem !important;
  10796. }
  10797. .my-xl-n5 {
  10798. margin-top: -3rem !important;
  10799. margin-bottom: -3rem !important;
  10800. }
  10801. .mt-xl-n1 {
  10802. margin-top: -0.25rem !important;
  10803. }
  10804. .mt-xl-n2 {
  10805. margin-top: -0.5rem !important;
  10806. }
  10807. .mt-xl-n3 {
  10808. margin-top: -1rem !important;
  10809. }
  10810. .mt-xl-n4 {
  10811. margin-top: -1.5rem !important;
  10812. }
  10813. .mt-xl-n5 {
  10814. margin-top: -3rem !important;
  10815. }
  10816. .me-xl-n1 {
  10817. margin-left: -0.25rem !important;
  10818. }
  10819. .me-xl-n2 {
  10820. margin-left: -0.5rem !important;
  10821. }
  10822. .me-xl-n3 {
  10823. margin-left: -1rem !important;
  10824. }
  10825. .me-xl-n4 {
  10826. margin-left: -1.5rem !important;
  10827. }
  10828. .me-xl-n5 {
  10829. margin-left: -3rem !important;
  10830. }
  10831. .mb-xl-n1 {
  10832. margin-bottom: -0.25rem !important;
  10833. }
  10834. .mb-xl-n2 {
  10835. margin-bottom: -0.5rem !important;
  10836. }
  10837. .mb-xl-n3 {
  10838. margin-bottom: -1rem !important;
  10839. }
  10840. .mb-xl-n4 {
  10841. margin-bottom: -1.5rem !important;
  10842. }
  10843. .mb-xl-n5 {
  10844. margin-bottom: -3rem !important;
  10845. }
  10846. .ms-xl-n1 {
  10847. margin-right: -0.25rem !important;
  10848. }
  10849. .ms-xl-n2 {
  10850. margin-right: -0.5rem !important;
  10851. }
  10852. .ms-xl-n3 {
  10853. margin-right: -1rem !important;
  10854. }
  10855. .ms-xl-n4 {
  10856. margin-right: -1.5rem !important;
  10857. }
  10858. .ms-xl-n5 {
  10859. margin-right: -3rem !important;
  10860. }
  10861. .p-xl-0 {
  10862. padding: 0 !important;
  10863. }
  10864. .p-xl-1 {
  10865. padding: 0.25rem !important;
  10866. }
  10867. .p-xl-2 {
  10868. padding: 0.5rem !important;
  10869. }
  10870. .p-xl-3 {
  10871. padding: 1rem !important;
  10872. }
  10873. .p-xl-4 {
  10874. padding: 1.5rem !important;
  10875. }
  10876. .p-xl-5 {
  10877. padding: 3rem !important;
  10878. }
  10879. .px-xl-0 {
  10880. padding-left: 0 !important;
  10881. padding-right: 0 !important;
  10882. }
  10883. .px-xl-1 {
  10884. padding-left: 0.25rem !important;
  10885. padding-right: 0.25rem !important;
  10886. }
  10887. .px-xl-2 {
  10888. padding-left: 0.5rem !important;
  10889. padding-right: 0.5rem !important;
  10890. }
  10891. .px-xl-3 {
  10892. padding-left: 1rem !important;
  10893. padding-right: 1rem !important;
  10894. }
  10895. .px-xl-4 {
  10896. padding-left: 1.5rem !important;
  10897. padding-right: 1.5rem !important;
  10898. }
  10899. .px-xl-5 {
  10900. padding-left: 3rem !important;
  10901. padding-right: 3rem !important;
  10902. }
  10903. .py-xl-0 {
  10904. padding-top: 0 !important;
  10905. padding-bottom: 0 !important;
  10906. }
  10907. .py-xl-1 {
  10908. padding-top: 0.25rem !important;
  10909. padding-bottom: 0.25rem !important;
  10910. }
  10911. .py-xl-2 {
  10912. padding-top: 0.5rem !important;
  10913. padding-bottom: 0.5rem !important;
  10914. }
  10915. .py-xl-3 {
  10916. padding-top: 1rem !important;
  10917. padding-bottom: 1rem !important;
  10918. }
  10919. .py-xl-4 {
  10920. padding-top: 1.5rem !important;
  10921. padding-bottom: 1.5rem !important;
  10922. }
  10923. .py-xl-5 {
  10924. padding-top: 3rem !important;
  10925. padding-bottom: 3rem !important;
  10926. }
  10927. .pt-xl-0 {
  10928. padding-top: 0 !important;
  10929. }
  10930. .pt-xl-1 {
  10931. padding-top: 0.25rem !important;
  10932. }
  10933. .pt-xl-2 {
  10934. padding-top: 0.5rem !important;
  10935. }
  10936. .pt-xl-3 {
  10937. padding-top: 1rem !important;
  10938. }
  10939. .pt-xl-4 {
  10940. padding-top: 1.5rem !important;
  10941. }
  10942. .pt-xl-5 {
  10943. padding-top: 3rem !important;
  10944. }
  10945. .pe-xl-0 {
  10946. padding-left: 0 !important;
  10947. }
  10948. .pe-xl-1 {
  10949. padding-left: 0.25rem !important;
  10950. }
  10951. .pe-xl-2 {
  10952. padding-left: 0.5rem !important;
  10953. }
  10954. .pe-xl-3 {
  10955. padding-left: 1rem !important;
  10956. }
  10957. .pe-xl-4 {
  10958. padding-left: 1.5rem !important;
  10959. }
  10960. .pe-xl-5 {
  10961. padding-left: 3rem !important;
  10962. }
  10963. .pb-xl-0 {
  10964. padding-bottom: 0 !important;
  10965. }
  10966. .pb-xl-1 {
  10967. padding-bottom: 0.25rem !important;
  10968. }
  10969. .pb-xl-2 {
  10970. padding-bottom: 0.5rem !important;
  10971. }
  10972. .pb-xl-3 {
  10973. padding-bottom: 1rem !important;
  10974. }
  10975. .pb-xl-4 {
  10976. padding-bottom: 1.5rem !important;
  10977. }
  10978. .pb-xl-5 {
  10979. padding-bottom: 3rem !important;
  10980. }
  10981. .ps-xl-0 {
  10982. padding-right: 0 !important;
  10983. }
  10984. .ps-xl-1 {
  10985. padding-right: 0.25rem !important;
  10986. }
  10987. .ps-xl-2 {
  10988. padding-right: 0.5rem !important;
  10989. }
  10990. .ps-xl-3 {
  10991. padding-right: 1rem !important;
  10992. }
  10993. .ps-xl-4 {
  10994. padding-right: 1.5rem !important;
  10995. }
  10996. .ps-xl-5 {
  10997. padding-right: 3rem !important;
  10998. }
  10999. .gap-xl-0 {
  11000. gap: 0 !important;
  11001. }
  11002. .gap-xl-1 {
  11003. gap: 0.25rem !important;
  11004. }
  11005. .gap-xl-2 {
  11006. gap: 0.5rem !important;
  11007. }
  11008. .gap-xl-3 {
  11009. gap: 1rem !important;
  11010. }
  11011. .gap-xl-4 {
  11012. gap: 1.5rem !important;
  11013. }
  11014. .gap-xl-5 {
  11015. gap: 3rem !important;
  11016. }
  11017. .row-gap-xl-0 {
  11018. row-gap: 0 !important;
  11019. }
  11020. .row-gap-xl-1 {
  11021. row-gap: 0.25rem !important;
  11022. }
  11023. .row-gap-xl-2 {
  11024. row-gap: 0.5rem !important;
  11025. }
  11026. .row-gap-xl-3 {
  11027. row-gap: 1rem !important;
  11028. }
  11029. .row-gap-xl-4 {
  11030. row-gap: 1.5rem !important;
  11031. }
  11032. .row-gap-xl-5 {
  11033. row-gap: 3rem !important;
  11034. }
  11035. .column-gap-xl-0 {
  11036. -moz-column-gap: 0 !important;
  11037. column-gap: 0 !important;
  11038. }
  11039. .column-gap-xl-1 {
  11040. -moz-column-gap: 0.25rem !important;
  11041. column-gap: 0.25rem !important;
  11042. }
  11043. .column-gap-xl-2 {
  11044. -moz-column-gap: 0.5rem !important;
  11045. column-gap: 0.5rem !important;
  11046. }
  11047. .column-gap-xl-3 {
  11048. -moz-column-gap: 1rem !important;
  11049. column-gap: 1rem !important;
  11050. }
  11051. .column-gap-xl-4 {
  11052. -moz-column-gap: 1.5rem !important;
  11053. column-gap: 1.5rem !important;
  11054. }
  11055. .column-gap-xl-5 {
  11056. -moz-column-gap: 3rem !important;
  11057. column-gap: 3rem !important;
  11058. }
  11059. .text-xl-start {
  11060. text-align: right !important;
  11061. }
  11062. .text-xl-end {
  11063. text-align: left !important;
  11064. }
  11065. .text-xl-center {
  11066. text-align: center !important;
  11067. }
  11068. }
  11069. @media (min-width: 1400px) {
  11070. .float-xxl-start {
  11071. float: right !important;
  11072. }
  11073. .float-xxl-end {
  11074. float: left !important;
  11075. }
  11076. .float-xxl-none {
  11077. float: none !important;
  11078. }
  11079. .object-fit-xxl-contain {
  11080. -o-object-fit: contain !important;
  11081. object-fit: contain !important;
  11082. }
  11083. .object-fit-xxl-cover {
  11084. -o-object-fit: cover !important;
  11085. object-fit: cover !important;
  11086. }
  11087. .object-fit-xxl-fill {
  11088. -o-object-fit: fill !important;
  11089. object-fit: fill !important;
  11090. }
  11091. .object-fit-xxl-scale {
  11092. -o-object-fit: scale-down !important;
  11093. object-fit: scale-down !important;
  11094. }
  11095. .object-fit-xxl-none {
  11096. -o-object-fit: none !important;
  11097. object-fit: none !important;
  11098. }
  11099. .d-xxl-inline {
  11100. display: inline !important;
  11101. }
  11102. .d-xxl-inline-block {
  11103. display: inline-block !important;
  11104. }
  11105. .d-xxl-block {
  11106. display: block !important;
  11107. }
  11108. .d-xxl-grid {
  11109. display: grid !important;
  11110. }
  11111. .d-xxl-inline-grid {
  11112. display: inline-grid !important;
  11113. }
  11114. .d-xxl-table {
  11115. display: table !important;
  11116. }
  11117. .d-xxl-table-row {
  11118. display: table-row !important;
  11119. }
  11120. .d-xxl-table-cell {
  11121. display: table-cell !important;
  11122. }
  11123. .d-xxl-flex {
  11124. display: flex !important;
  11125. }
  11126. .d-xxl-inline-flex {
  11127. display: inline-flex !important;
  11128. }
  11129. .d-xxl-none {
  11130. display: none !important;
  11131. }
  11132. .flex-xxl-fill {
  11133. flex: 1 1 auto !important;
  11134. }
  11135. .flex-xxl-row {
  11136. flex-direction: row !important;
  11137. }
  11138. .flex-xxl-column {
  11139. flex-direction: column !important;
  11140. }
  11141. .flex-xxl-row-reverse {
  11142. flex-direction: row-reverse !important;
  11143. }
  11144. .flex-xxl-column-reverse {
  11145. flex-direction: column-reverse !important;
  11146. }
  11147. .flex-xxl-grow-0 {
  11148. flex-grow: 0 !important;
  11149. }
  11150. .flex-xxl-grow-1 {
  11151. flex-grow: 1 !important;
  11152. }
  11153. .flex-xxl-shrink-0 {
  11154. flex-shrink: 0 !important;
  11155. }
  11156. .flex-xxl-shrink-1 {
  11157. flex-shrink: 1 !important;
  11158. }
  11159. .flex-xxl-wrap {
  11160. flex-wrap: wrap !important;
  11161. }
  11162. .flex-xxl-nowrap {
  11163. flex-wrap: nowrap !important;
  11164. }
  11165. .flex-xxl-wrap-reverse {
  11166. flex-wrap: wrap-reverse !important;
  11167. }
  11168. .justify-content-xxl-start {
  11169. justify-content: flex-start !important;
  11170. }
  11171. .justify-content-xxl-end {
  11172. justify-content: flex-end !important;
  11173. }
  11174. .justify-content-xxl-center {
  11175. justify-content: center !important;
  11176. }
  11177. .justify-content-xxl-between {
  11178. justify-content: space-between !important;
  11179. }
  11180. .justify-content-xxl-around {
  11181. justify-content: space-around !important;
  11182. }
  11183. .justify-content-xxl-evenly {
  11184. justify-content: space-evenly !important;
  11185. }
  11186. .align-items-xxl-start {
  11187. align-items: flex-start !important;
  11188. }
  11189. .align-items-xxl-end {
  11190. align-items: flex-end !important;
  11191. }
  11192. .align-items-xxl-center {
  11193. align-items: center !important;
  11194. }
  11195. .align-items-xxl-baseline {
  11196. align-items: baseline !important;
  11197. }
  11198. .align-items-xxl-stretch {
  11199. align-items: stretch !important;
  11200. }
  11201. .align-content-xxl-start {
  11202. align-content: flex-start !important;
  11203. }
  11204. .align-content-xxl-end {
  11205. align-content: flex-end !important;
  11206. }
  11207. .align-content-xxl-center {
  11208. align-content: center !important;
  11209. }
  11210. .align-content-xxl-between {
  11211. align-content: space-between !important;
  11212. }
  11213. .align-content-xxl-around {
  11214. align-content: space-around !important;
  11215. }
  11216. .align-content-xxl-stretch {
  11217. align-content: stretch !important;
  11218. }
  11219. .align-self-xxl-auto {
  11220. align-self: auto !important;
  11221. }
  11222. .align-self-xxl-start {
  11223. align-self: flex-start !important;
  11224. }
  11225. .align-self-xxl-end {
  11226. align-self: flex-end !important;
  11227. }
  11228. .align-self-xxl-center {
  11229. align-self: center !important;
  11230. }
  11231. .align-self-xxl-baseline {
  11232. align-self: baseline !important;
  11233. }
  11234. .align-self-xxl-stretch {
  11235. align-self: stretch !important;
  11236. }
  11237. .order-xxl-first {
  11238. order: -1 !important;
  11239. }
  11240. .order-xxl-0 {
  11241. order: 0 !important;
  11242. }
  11243. .order-xxl-1 {
  11244. order: 1 !important;
  11245. }
  11246. .order-xxl-2 {
  11247. order: 2 !important;
  11248. }
  11249. .order-xxl-3 {
  11250. order: 3 !important;
  11251. }
  11252. .order-xxl-4 {
  11253. order: 4 !important;
  11254. }
  11255. .order-xxl-5 {
  11256. order: 5 !important;
  11257. }
  11258. .order-xxl-last {
  11259. order: 6 !important;
  11260. }
  11261. .m-xxl-0 {
  11262. margin: 0 !important;
  11263. }
  11264. .m-xxl-1 {
  11265. margin: 0.25rem !important;
  11266. }
  11267. .m-xxl-2 {
  11268. margin: 0.5rem !important;
  11269. }
  11270. .m-xxl-3 {
  11271. margin: 1rem !important;
  11272. }
  11273. .m-xxl-4 {
  11274. margin: 1.5rem !important;
  11275. }
  11276. .m-xxl-5 {
  11277. margin: 3rem !important;
  11278. }
  11279. .m-xxl-auto {
  11280. margin: auto !important;
  11281. }
  11282. .mx-xxl-0 {
  11283. margin-left: 0 !important;
  11284. margin-right: 0 !important;
  11285. }
  11286. .mx-xxl-1 {
  11287. margin-left: 0.25rem !important;
  11288. margin-right: 0.25rem !important;
  11289. }
  11290. .mx-xxl-2 {
  11291. margin-left: 0.5rem !important;
  11292. margin-right: 0.5rem !important;
  11293. }
  11294. .mx-xxl-3 {
  11295. margin-left: 1rem !important;
  11296. margin-right: 1rem !important;
  11297. }
  11298. .mx-xxl-4 {
  11299. margin-left: 1.5rem !important;
  11300. margin-right: 1.5rem !important;
  11301. }
  11302. .mx-xxl-5 {
  11303. margin-left: 3rem !important;
  11304. margin-right: 3rem !important;
  11305. }
  11306. .mx-xxl-auto {
  11307. margin-left: auto !important;
  11308. margin-right: auto !important;
  11309. }
  11310. .my-xxl-0 {
  11311. margin-top: 0 !important;
  11312. margin-bottom: 0 !important;
  11313. }
  11314. .my-xxl-1 {
  11315. margin-top: 0.25rem !important;
  11316. margin-bottom: 0.25rem !important;
  11317. }
  11318. .my-xxl-2 {
  11319. margin-top: 0.5rem !important;
  11320. margin-bottom: 0.5rem !important;
  11321. }
  11322. .my-xxl-3 {
  11323. margin-top: 1rem !important;
  11324. margin-bottom: 1rem !important;
  11325. }
  11326. .my-xxl-4 {
  11327. margin-top: 1.5rem !important;
  11328. margin-bottom: 1.5rem !important;
  11329. }
  11330. .my-xxl-5 {
  11331. margin-top: 3rem !important;
  11332. margin-bottom: 3rem !important;
  11333. }
  11334. .my-xxl-auto {
  11335. margin-top: auto !important;
  11336. margin-bottom: auto !important;
  11337. }
  11338. .mt-xxl-0 {
  11339. margin-top: 0 !important;
  11340. }
  11341. .mt-xxl-1 {
  11342. margin-top: 0.25rem !important;
  11343. }
  11344. .mt-xxl-2 {
  11345. margin-top: 0.5rem !important;
  11346. }
  11347. .mt-xxl-3 {
  11348. margin-top: 1rem !important;
  11349. }
  11350. .mt-xxl-4 {
  11351. margin-top: 1.5rem !important;
  11352. }
  11353. .mt-xxl-5 {
  11354. margin-top: 3rem !important;
  11355. }
  11356. .mt-xxl-auto {
  11357. margin-top: auto !important;
  11358. }
  11359. .me-xxl-0 {
  11360. margin-left: 0 !important;
  11361. }
  11362. .me-xxl-1 {
  11363. margin-left: 0.25rem !important;
  11364. }
  11365. .me-xxl-2 {
  11366. margin-left: 0.5rem !important;
  11367. }
  11368. .me-xxl-3 {
  11369. margin-left: 1rem !important;
  11370. }
  11371. .me-xxl-4 {
  11372. margin-left: 1.5rem !important;
  11373. }
  11374. .me-xxl-5 {
  11375. margin-left: 3rem !important;
  11376. }
  11377. .me-xxl-auto {
  11378. margin-left: auto !important;
  11379. }
  11380. .mb-xxl-0 {
  11381. margin-bottom: 0 !important;
  11382. }
  11383. .mb-xxl-1 {
  11384. margin-bottom: 0.25rem !important;
  11385. }
  11386. .mb-xxl-2 {
  11387. margin-bottom: 0.5rem !important;
  11388. }
  11389. .mb-xxl-3 {
  11390. margin-bottom: 1rem !important;
  11391. }
  11392. .mb-xxl-4 {
  11393. margin-bottom: 1.5rem !important;
  11394. }
  11395. .mb-xxl-5 {
  11396. margin-bottom: 3rem !important;
  11397. }
  11398. .mb-xxl-auto {
  11399. margin-bottom: auto !important;
  11400. }
  11401. .ms-xxl-0 {
  11402. margin-right: 0 !important;
  11403. }
  11404. .ms-xxl-1 {
  11405. margin-right: 0.25rem !important;
  11406. }
  11407. .ms-xxl-2 {
  11408. margin-right: 0.5rem !important;
  11409. }
  11410. .ms-xxl-3 {
  11411. margin-right: 1rem !important;
  11412. }
  11413. .ms-xxl-4 {
  11414. margin-right: 1.5rem !important;
  11415. }
  11416. .ms-xxl-5 {
  11417. margin-right: 3rem !important;
  11418. }
  11419. .ms-xxl-auto {
  11420. margin-right: auto !important;
  11421. }
  11422. .m-xxl-n1 {
  11423. margin: -0.25rem !important;
  11424. }
  11425. .m-xxl-n2 {
  11426. margin: -0.5rem !important;
  11427. }
  11428. .m-xxl-n3 {
  11429. margin: -1rem !important;
  11430. }
  11431. .m-xxl-n4 {
  11432. margin: -1.5rem !important;
  11433. }
  11434. .m-xxl-n5 {
  11435. margin: -3rem !important;
  11436. }
  11437. .mx-xxl-n1 {
  11438. margin-left: -0.25rem !important;
  11439. margin-right: -0.25rem !important;
  11440. }
  11441. .mx-xxl-n2 {
  11442. margin-left: -0.5rem !important;
  11443. margin-right: -0.5rem !important;
  11444. }
  11445. .mx-xxl-n3 {
  11446. margin-left: -1rem !important;
  11447. margin-right: -1rem !important;
  11448. }
  11449. .mx-xxl-n4 {
  11450. margin-left: -1.5rem !important;
  11451. margin-right: -1.5rem !important;
  11452. }
  11453. .mx-xxl-n5 {
  11454. margin-left: -3rem !important;
  11455. margin-right: -3rem !important;
  11456. }
  11457. .my-xxl-n1 {
  11458. margin-top: -0.25rem !important;
  11459. margin-bottom: -0.25rem !important;
  11460. }
  11461. .my-xxl-n2 {
  11462. margin-top: -0.5rem !important;
  11463. margin-bottom: -0.5rem !important;
  11464. }
  11465. .my-xxl-n3 {
  11466. margin-top: -1rem !important;
  11467. margin-bottom: -1rem !important;
  11468. }
  11469. .my-xxl-n4 {
  11470. margin-top: -1.5rem !important;
  11471. margin-bottom: -1.5rem !important;
  11472. }
  11473. .my-xxl-n5 {
  11474. margin-top: -3rem !important;
  11475. margin-bottom: -3rem !important;
  11476. }
  11477. .mt-xxl-n1 {
  11478. margin-top: -0.25rem !important;
  11479. }
  11480. .mt-xxl-n2 {
  11481. margin-top: -0.5rem !important;
  11482. }
  11483. .mt-xxl-n3 {
  11484. margin-top: -1rem !important;
  11485. }
  11486. .mt-xxl-n4 {
  11487. margin-top: -1.5rem !important;
  11488. }
  11489. .mt-xxl-n5 {
  11490. margin-top: -3rem !important;
  11491. }
  11492. .me-xxl-n1 {
  11493. margin-left: -0.25rem !important;
  11494. }
  11495. .me-xxl-n2 {
  11496. margin-left: -0.5rem !important;
  11497. }
  11498. .me-xxl-n3 {
  11499. margin-left: -1rem !important;
  11500. }
  11501. .me-xxl-n4 {
  11502. margin-left: -1.5rem !important;
  11503. }
  11504. .me-xxl-n5 {
  11505. margin-left: -3rem !important;
  11506. }
  11507. .mb-xxl-n1 {
  11508. margin-bottom: -0.25rem !important;
  11509. }
  11510. .mb-xxl-n2 {
  11511. margin-bottom: -0.5rem !important;
  11512. }
  11513. .mb-xxl-n3 {
  11514. margin-bottom: -1rem !important;
  11515. }
  11516. .mb-xxl-n4 {
  11517. margin-bottom: -1.5rem !important;
  11518. }
  11519. .mb-xxl-n5 {
  11520. margin-bottom: -3rem !important;
  11521. }
  11522. .ms-xxl-n1 {
  11523. margin-right: -0.25rem !important;
  11524. }
  11525. .ms-xxl-n2 {
  11526. margin-right: -0.5rem !important;
  11527. }
  11528. .ms-xxl-n3 {
  11529. margin-right: -1rem !important;
  11530. }
  11531. .ms-xxl-n4 {
  11532. margin-right: -1.5rem !important;
  11533. }
  11534. .ms-xxl-n5 {
  11535. margin-right: -3rem !important;
  11536. }
  11537. .p-xxl-0 {
  11538. padding: 0 !important;
  11539. }
  11540. .p-xxl-1 {
  11541. padding: 0.25rem !important;
  11542. }
  11543. .p-xxl-2 {
  11544. padding: 0.5rem !important;
  11545. }
  11546. .p-xxl-3 {
  11547. padding: 1rem !important;
  11548. }
  11549. .p-xxl-4 {
  11550. padding: 1.5rem !important;
  11551. }
  11552. .p-xxl-5 {
  11553. padding: 3rem !important;
  11554. }
  11555. .px-xxl-0 {
  11556. padding-left: 0 !important;
  11557. padding-right: 0 !important;
  11558. }
  11559. .px-xxl-1 {
  11560. padding-left: 0.25rem !important;
  11561. padding-right: 0.25rem !important;
  11562. }
  11563. .px-xxl-2 {
  11564. padding-left: 0.5rem !important;
  11565. padding-right: 0.5rem !important;
  11566. }
  11567. .px-xxl-3 {
  11568. padding-left: 1rem !important;
  11569. padding-right: 1rem !important;
  11570. }
  11571. .px-xxl-4 {
  11572. padding-left: 1.5rem !important;
  11573. padding-right: 1.5rem !important;
  11574. }
  11575. .px-xxl-5 {
  11576. padding-left: 3rem !important;
  11577. padding-right: 3rem !important;
  11578. }
  11579. .py-xxl-0 {
  11580. padding-top: 0 !important;
  11581. padding-bottom: 0 !important;
  11582. }
  11583. .py-xxl-1 {
  11584. padding-top: 0.25rem !important;
  11585. padding-bottom: 0.25rem !important;
  11586. }
  11587. .py-xxl-2 {
  11588. padding-top: 0.5rem !important;
  11589. padding-bottom: 0.5rem !important;
  11590. }
  11591. .py-xxl-3 {
  11592. padding-top: 1rem !important;
  11593. padding-bottom: 1rem !important;
  11594. }
  11595. .py-xxl-4 {
  11596. padding-top: 1.5rem !important;
  11597. padding-bottom: 1.5rem !important;
  11598. }
  11599. .py-xxl-5 {
  11600. padding-top: 3rem !important;
  11601. padding-bottom: 3rem !important;
  11602. }
  11603. .pt-xxl-0 {
  11604. padding-top: 0 !important;
  11605. }
  11606. .pt-xxl-1 {
  11607. padding-top: 0.25rem !important;
  11608. }
  11609. .pt-xxl-2 {
  11610. padding-top: 0.5rem !important;
  11611. }
  11612. .pt-xxl-3 {
  11613. padding-top: 1rem !important;
  11614. }
  11615. .pt-xxl-4 {
  11616. padding-top: 1.5rem !important;
  11617. }
  11618. .pt-xxl-5 {
  11619. padding-top: 3rem !important;
  11620. }
  11621. .pe-xxl-0 {
  11622. padding-left: 0 !important;
  11623. }
  11624. .pe-xxl-1 {
  11625. padding-left: 0.25rem !important;
  11626. }
  11627. .pe-xxl-2 {
  11628. padding-left: 0.5rem !important;
  11629. }
  11630. .pe-xxl-3 {
  11631. padding-left: 1rem !important;
  11632. }
  11633. .pe-xxl-4 {
  11634. padding-left: 1.5rem !important;
  11635. }
  11636. .pe-xxl-5 {
  11637. padding-left: 3rem !important;
  11638. }
  11639. .pb-xxl-0 {
  11640. padding-bottom: 0 !important;
  11641. }
  11642. .pb-xxl-1 {
  11643. padding-bottom: 0.25rem !important;
  11644. }
  11645. .pb-xxl-2 {
  11646. padding-bottom: 0.5rem !important;
  11647. }
  11648. .pb-xxl-3 {
  11649. padding-bottom: 1rem !important;
  11650. }
  11651. .pb-xxl-4 {
  11652. padding-bottom: 1.5rem !important;
  11653. }
  11654. .pb-xxl-5 {
  11655. padding-bottom: 3rem !important;
  11656. }
  11657. .ps-xxl-0 {
  11658. padding-right: 0 !important;
  11659. }
  11660. .ps-xxl-1 {
  11661. padding-right: 0.25rem !important;
  11662. }
  11663. .ps-xxl-2 {
  11664. padding-right: 0.5rem !important;
  11665. }
  11666. .ps-xxl-3 {
  11667. padding-right: 1rem !important;
  11668. }
  11669. .ps-xxl-4 {
  11670. padding-right: 1.5rem !important;
  11671. }
  11672. .ps-xxl-5 {
  11673. padding-right: 3rem !important;
  11674. }
  11675. .gap-xxl-0 {
  11676. gap: 0 !important;
  11677. }
  11678. .gap-xxl-1 {
  11679. gap: 0.25rem !important;
  11680. }
  11681. .gap-xxl-2 {
  11682. gap: 0.5rem !important;
  11683. }
  11684. .gap-xxl-3 {
  11685. gap: 1rem !important;
  11686. }
  11687. .gap-xxl-4 {
  11688. gap: 1.5rem !important;
  11689. }
  11690. .gap-xxl-5 {
  11691. gap: 3rem !important;
  11692. }
  11693. .row-gap-xxl-0 {
  11694. row-gap: 0 !important;
  11695. }
  11696. .row-gap-xxl-1 {
  11697. row-gap: 0.25rem !important;
  11698. }
  11699. .row-gap-xxl-2 {
  11700. row-gap: 0.5rem !important;
  11701. }
  11702. .row-gap-xxl-3 {
  11703. row-gap: 1rem !important;
  11704. }
  11705. .row-gap-xxl-4 {
  11706. row-gap: 1.5rem !important;
  11707. }
  11708. .row-gap-xxl-5 {
  11709. row-gap: 3rem !important;
  11710. }
  11711. .column-gap-xxl-0 {
  11712. -moz-column-gap: 0 !important;
  11713. column-gap: 0 !important;
  11714. }
  11715. .column-gap-xxl-1 {
  11716. -moz-column-gap: 0.25rem !important;
  11717. column-gap: 0.25rem !important;
  11718. }
  11719. .column-gap-xxl-2 {
  11720. -moz-column-gap: 0.5rem !important;
  11721. column-gap: 0.5rem !important;
  11722. }
  11723. .column-gap-xxl-3 {
  11724. -moz-column-gap: 1rem !important;
  11725. column-gap: 1rem !important;
  11726. }
  11727. .column-gap-xxl-4 {
  11728. -moz-column-gap: 1.5rem !important;
  11729. column-gap: 1.5rem !important;
  11730. }
  11731. .column-gap-xxl-5 {
  11732. -moz-column-gap: 3rem !important;
  11733. column-gap: 3rem !important;
  11734. }
  11735. .text-xxl-start {
  11736. text-align: right !important;
  11737. }
  11738. .text-xxl-end {
  11739. text-align: left !important;
  11740. }
  11741. .text-xxl-center {
  11742. text-align: center !important;
  11743. }
  11744. }
  11745. @media (min-width: 1200px) {
  11746. .fs-1 {
  11747. font-size: 2.5rem !important;
  11748. }
  11749. .fs-2 {
  11750. font-size: 2rem !important;
  11751. }
  11752. .fs-3 {
  11753. font-size: 1.75rem !important;
  11754. }
  11755. .fs-4 {
  11756. font-size: 1.5rem !important;
  11757. }
  11758. }
  11759. @media print {
  11760. .d-print-inline {
  11761. display: inline !important;
  11762. }
  11763. .d-print-inline-block {
  11764. display: inline-block !important;
  11765. }
  11766. .d-print-block {
  11767. display: block !important;
  11768. }
  11769. .d-print-grid {
  11770. display: grid !important;
  11771. }
  11772. .d-print-inline-grid {
  11773. display: inline-grid !important;
  11774. }
  11775. .d-print-table {
  11776. display: table !important;
  11777. }
  11778. .d-print-table-row {
  11779. display: table-row !important;
  11780. }
  11781. .d-print-table-cell {
  11782. display: table-cell !important;
  11783. }
  11784. .d-print-flex {
  11785. display: flex !important;
  11786. }
  11787. .d-print-inline-flex {
  11788. display: inline-flex !important;
  11789. }
  11790. .d-print-none {
  11791. display: none !important;
  11792. }
  11793. }
  11794. @keyframes flipInX {
  11795. 0% {
  11796. opacity: 0;
  11797. transition-timing-function: ease-in;
  11798. transform: perspective(400px) rotate3d(-1, 0, 0, -90deg);
  11799. }
  11800. 40% {
  11801. transition-timing-function: ease-in;
  11802. transform: perspective(400px) rotate3d(-1, 0, 0, 20deg);
  11803. }
  11804. 60% {
  11805. opacity: 1;
  11806. transform: perspective(400px) rotate3d(-1, 0, 0, -10deg);
  11807. }
  11808. 80% {
  11809. transform: perspective(400px) rotate3d(-1, 0, 0, 5deg);
  11810. }
  11811. 100% {
  11812. transform: perspective(400px);
  11813. }
  11814. }
  11815. @keyframes fadeIn {
  11816. from {
  11817. opacity: 0;
  11818. }
  11819. to {
  11820. opacity: 1;
  11821. }
  11822. }
  11823. @keyframes fadeOut {
  11824. from {
  11825. opacity: 1;
  11826. }
  11827. to {
  11828. opacity: 0;
  11829. }
  11830. }
  11831. @keyframes shake {
  11832. 0% {
  11833. transform: translate(-2px, 1px) rotate(0deg);
  11834. }
  11835. 10% {
  11836. transform: translate(1px, -2px) rotate(2deg);
  11837. }
  11838. 20% {
  11839. transform: translate(3px, 0) rotate(-3deg);
  11840. }
  11841. 30% {
  11842. transform: translate(0, 2px) rotate(0deg);
  11843. }
  11844. 40% {
  11845. transform: translate(-1px, -1px) rotate(-1deg);
  11846. }
  11847. 50% {
  11848. transform: translate(1px, 2px) rotate(1deg);
  11849. }
  11850. 60% {
  11851. transform: translate(3px, 1px) rotate(0deg);
  11852. }
  11853. 70% {
  11854. transform: translate(-2px, 1px) rotate(2deg);
  11855. }
  11856. 80% {
  11857. transform: translate(1px, -1px) rotate(-4deg);
  11858. }
  11859. 90% {
  11860. transform: translate(-2px, 2px) rotate(0deg);
  11861. }
  11862. 100% {
  11863. transform: translate(-1px, -2px) rotate(1deg);
  11864. }
  11865. }
  11866. @keyframes wobble {
  11867. 0% {
  11868. transform: none;
  11869. }
  11870. 15% {
  11871. transform: translate3d(25%, 0, 0) rotate3d(0, 0, 1, 5deg);
  11872. }
  11873. 30% {
  11874. transform: translate3d(-20%, 0, 0) rotate3d(0, 0, 1, -3deg);
  11875. }
  11876. 45% {
  11877. transform: translate3d(15%, 0, 0) rotate3d(0, 0, 1, 3deg);
  11878. }
  11879. 60% {
  11880. transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -2deg);
  11881. }
  11882. 75% {
  11883. transform: translate3d(5%, 0, 0) rotate3d(0, 0, 1, 1deg);
  11884. }
  11885. 100% {
  11886. transform: none;
  11887. }
  11888. }
  11889. :root,
  11890. [data-bs-theme=light] {
  11891. --lte-sidebar-width: 250px;
  11892. }
  11893. .app-wrapper {
  11894. position: relative;
  11895. display: grid;
  11896. grid-template-areas: "lte-app-sidebar lte-app-header" "lte-app-sidebar lte-app-main" "lte-app-sidebar lte-app-footer";
  11897. grid-template-rows: min-content 1fr min-content;
  11898. grid-template-columns: auto 1fr;
  11899. grid-gap: 0;
  11900. align-content: stretch;
  11901. align-items: stretch;
  11902. max-width: 100vw;
  11903. min-height: 100vh;
  11904. }
  11905. .app-wrapper > * {
  11906. min-width: 0;
  11907. }
  11908. .app-content {
  11909. padding: 0 0.5rem;
  11910. }
  11911. .app-header {
  11912. z-index: 1034;
  11913. grid-area: lte-app-header;
  11914. max-width: 100vw;
  11915. border-bottom: 1px solid var(--bs-border-color);
  11916. transition: 0.3s ease-in-out;
  11917. }
  11918. @media (prefers-reduced-motion: reduce) {
  11919. .app-header {
  11920. transition: none;
  11921. }
  11922. }
  11923. .app-header .nav-link {
  11924. position: relative;
  11925. height: 2.5rem;
  11926. }
  11927. .navbar-badge {
  11928. position: absolute;
  11929. top: 9px;
  11930. left: 5px;
  11931. padding: 2px 4px;
  11932. font-size: 0.6rem;
  11933. font-weight: 400;
  11934. }
  11935. .fixed-header .app-header {
  11936. position: sticky;
  11937. top: 0;
  11938. z-index: 1030;
  11939. }
  11940. .app-sidebar {
  11941. --lte-sidebar-hover-bg: rgba(0, 0, 0, 0.1);
  11942. --lte-sidebar-color: #343a40;
  11943. --lte-sidebar-hover-color: #212529;
  11944. --lte-sidebar-active-color: #000;
  11945. --lte-sidebar-menu-active-bg: rgba(0, 0, 0, 0.1);
  11946. --lte-sidebar-menu-active-color: #000;
  11947. --lte-sidebar-submenu-bg: transparent;
  11948. --lte-sidebar-submenu-color: #777;
  11949. --lte-sidebar-submenu-hover-color: #000;
  11950. --lte-sidebar-submenu-hover-bg: rgba(0, 0, 0, 0.1);
  11951. --lte-sidebar-submenu-active-color: #212529;
  11952. --lte-sidebar-submenu-active-bg: rgba(0, 0, 0, 0.1);
  11953. --lte-sidebar-header-color: rgb(49.4, 55.1, 60.8);
  11954. z-index: 1038;
  11955. grid-area: lte-app-sidebar;
  11956. min-width: var(--lte-sidebar-width);
  11957. max-width: var(--lte-sidebar-width);
  11958. 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;
  11959. }
  11960. @media (prefers-reduced-motion: reduce) {
  11961. .app-sidebar {
  11962. transition: none;
  11963. }
  11964. }
  11965. .sidebar-brand {
  11966. display: flex;
  11967. align-items: center;
  11968. justify-content: center;
  11969. height: 3.5rem;
  11970. padding: 0.8125rem 0.5rem;
  11971. overflow: hidden;
  11972. font-size: 1.25rem;
  11973. white-space: nowrap;
  11974. border-bottom: 1px solid var(--bs-border-color);
  11975. transition: width 0.3s ease-in-out;
  11976. }
  11977. @media (prefers-reduced-motion: reduce) {
  11978. .sidebar-brand {
  11979. transition: none;
  11980. }
  11981. }
  11982. .sidebar-brand .brand-link {
  11983. display: flex;
  11984. align-items: center;
  11985. text-decoration: none;
  11986. }
  11987. .sidebar-brand .brand-link .brand-image {
  11988. float: right;
  11989. width: auto;
  11990. max-height: 33px;
  11991. line-height: 0.8;
  11992. }
  11993. .sidebar-brand .brand-link .brand-image-xs {
  11994. float: right;
  11995. width: auto;
  11996. max-height: 33px;
  11997. margin-top: -0.1rem;
  11998. line-height: 0.8;
  11999. }
  12000. .sidebar-brand .brand-link .brand-image-xl {
  12001. width: auto;
  12002. max-height: 40px;
  12003. line-height: 0.8;
  12004. }
  12005. .sidebar-brand .brand-link .brand-image-xl.single {
  12006. margin-top: -0.3rem;
  12007. }
  12008. .sidebar-brand .brand-text {
  12009. margin-right: 0.5rem;
  12010. color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  12011. transition: flex 0.3s ease-in-out, width 0.3s ease-in-out;
  12012. }
  12013. @media (prefers-reduced-motion: reduce) {
  12014. .sidebar-brand .brand-text {
  12015. transition: none;
  12016. }
  12017. }
  12018. .sidebar-brand .brand-text:hover {
  12019. color: var(--bs-emphasis-color);
  12020. }
  12021. .sidebar-wrapper {
  12022. padding-top: 0.5rem;
  12023. padding-left: 0.5rem;
  12024. padding-bottom: 0.5rem;
  12025. padding-right: 0.5rem;
  12026. scrollbar-color: var(--bs-secondary-bg) transparent;
  12027. }
  12028. .sidebar-wrapper::-webkit-scrollbar-thumb {
  12029. background-color: var(--bs-secondary-bg);
  12030. }
  12031. .sidebar-wrapper::-webkit-scrollbar-track {
  12032. background-color: transparent;
  12033. }
  12034. .sidebar-wrapper::-webkit-scrollbar-corner {
  12035. background-color: transparent;
  12036. }
  12037. .sidebar-wrapper {
  12038. scrollbar-width: thin;
  12039. }
  12040. .sidebar-wrapper::-webkit-scrollbar {
  12041. width: 0.5rem;
  12042. height: 0.5rem;
  12043. }
  12044. .sidebar-wrapper .nav-item {
  12045. max-width: 100%;
  12046. }
  12047. .sidebar-wrapper .nav-link {
  12048. display: flex;
  12049. justify-content: flex-start;
  12050. }
  12051. .sidebar-wrapper .nav-link p {
  12052. overflow: hidden;
  12053. text-overflow: ellipsis;
  12054. white-space: nowrap;
  12055. }
  12056. .sidebar-wrapper .nav-icon {
  12057. display: flex;
  12058. align-items: center;
  12059. justify-content: center;
  12060. min-width: 1.5rem;
  12061. max-width: 1.5rem;
  12062. }
  12063. .sidebar-wrapper .sidebar-menu > .nav-item.menu-open .nav-link.active:not(:hover) {
  12064. --lte-sidebar-menu-active-bg: transparent;
  12065. }
  12066. .sidebar-wrapper .sidebar-menu > .nav-item > .nav-link:active, .sidebar-wrapper .sidebar-menu > .nav-item > .nav-link:focus {
  12067. color: var(--lte-sidebar-color);
  12068. }
  12069. .sidebar-wrapper .sidebar-menu > .nav-item > .nav-link.active:not(:hover) {
  12070. color: var(--lte-sidebar-menu-active-color);
  12071. background-color: var(--lte-sidebar-menu-active-bg);
  12072. }
  12073. .sidebar-wrapper .sidebar-menu > .nav-item.menu-open > .nav-link, .sidebar-wrapper .sidebar-menu > .nav-item:hover > .nav-link,
  12074. .sidebar-wrapper .sidebar-menu > .nav-item > .nav-link:focus {
  12075. color: var(--lte-sidebar-hover-color);
  12076. background-color: var(--lte-sidebar-hover-bg);
  12077. }
  12078. .sidebar-wrapper .sidebar-menu > .nav-item > .nav-treeview {
  12079. background-color: var(--lte-sidebar-submenu-bg);
  12080. }
  12081. .sidebar-wrapper .nav-header {
  12082. color: var(--lte-sidebar-header-color);
  12083. background-color: inherit;
  12084. }
  12085. .sidebar-wrapper a {
  12086. color: var(--lte-sidebar-color);
  12087. }
  12088. .sidebar-wrapper .nav-treeview > .nav-item > .nav-link {
  12089. color: var(--lte-sidebar-submenu-color);
  12090. }
  12091. .sidebar-wrapper .nav-treeview > .nav-item > .nav-link:hover, .sidebar-wrapper .nav-treeview > .nav-item > .nav-link:focus {
  12092. color: var(--lte-sidebar-submenu-hover-color);
  12093. }
  12094. .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 {
  12095. color: var(--lte-sidebar-submenu-active-color);
  12096. background-color: var(--lte-sidebar-submenu-active-bg);
  12097. }
  12098. .sidebar-wrapper .nav-treeview > .nav-item > .nav-link:hover {
  12099. background-color: var(--lte-sidebar-submenu-hover-bg);
  12100. }
  12101. .sidebar-menu .nav-item > .nav-link {
  12102. margin-bottom: 0.2rem;
  12103. }
  12104. .sidebar-menu .nav-item > .nav-link .nav-arrow {
  12105. transition: transform ease-in-out 0.3s;
  12106. }
  12107. @media (prefers-reduced-motion: reduce) {
  12108. .sidebar-menu .nav-item > .nav-link .nav-arrow {
  12109. transition: none;
  12110. }
  12111. }
  12112. .sidebar-menu .nav-item > .nav-link .nav-arrow {
  12113. transform: translateY(-50%) rotate(180deg);
  12114. animation-name: fadeIn;
  12115. animation-duration: 0.3s;
  12116. animation-fill-mode: both;
  12117. }
  12118. .sidebar-menu .nav-link > .nav-badge,
  12119. .sidebar-menu .nav-link > p > .nav-badge {
  12120. position: absolute;
  12121. top: 50%;
  12122. left: 1rem;
  12123. transform: translateY(-50%);
  12124. }
  12125. .sidebar-menu .nav-link > .nav-arrow,
  12126. .sidebar-menu .nav-link > p > .nav-arrow {
  12127. position: absolute;
  12128. top: 50%;
  12129. left: 1rem;
  12130. }
  12131. .sidebar-menu .nav-link {
  12132. position: relative;
  12133. width: 100%;
  12134. transition: width ease-in-out 0.3s;
  12135. }
  12136. @media (prefers-reduced-motion: reduce) {
  12137. .sidebar-menu .nav-link {
  12138. transition: none;
  12139. }
  12140. }
  12141. .sidebar-menu .nav-link {
  12142. border-radius: 0.375rem;
  12143. }
  12144. .sidebar-menu .nav-link p {
  12145. display: inline;
  12146. padding-right: 0.5rem;
  12147. margin: 0;
  12148. }
  12149. .sidebar-menu .nav-header {
  12150. padding: 0.5rem 0.75rem;
  12151. font-size: 0.9rem;
  12152. }
  12153. .sidebar-menu .nav-treeview {
  12154. display: none;
  12155. padding: 0;
  12156. list-style: none;
  12157. }
  12158. .nav-indent .sidebar-menu .nav-treeview {
  12159. padding-right: 0.5rem;
  12160. }
  12161. .sidebar-menu .menu-open > .nav-treeview {
  12162. display: block;
  12163. }
  12164. .sidebar-menu .menu-open > .nav-link .nav-arrow {
  12165. transform: translateY(-50%) rotate(90deg) ;
  12166. }
  12167. .sidebar-menu .nav-link > .nav-badge,
  12168. .sidebar-menu .nav-link > p > .nav-badge,
  12169. .sidebar-menu .nav-link > .nav-arrow,
  12170. .sidebar-menu .nav-link > p > .nav-arrow {
  12171. left: 1rem !important;
  12172. right: auto !important;
  12173. }
  12174. .nav-compact.nav-indent .nav-treeview {
  12175. padding-right: 0;
  12176. }
  12177. .nav-compact.nav-indent .nav-treeview .nav-item {
  12178. padding-right: 0.5rem;
  12179. }
  12180. .sidebar-mini.sidebar-collapse.nav-indent .app-sidebar:hover .nav-treeview {
  12181. padding-right: 0;
  12182. }
  12183. .sidebar-mini.sidebar-collapse.nav-indent .app-sidebar:hover .nav-treeview .nav-item {
  12184. padding-right: 0.5rem;
  12185. }
  12186. .sidebar-collapse.nav-compact.nav-indent .nav-treeview .nav-item {
  12187. padding-right: 0;
  12188. }
  12189. .nav-compact .nav-link {
  12190. border-radius: 0;
  12191. margin-bottom: 0 !important;
  12192. }
  12193. .sidebar-menu,
  12194. .sidebar-menu > .nav-header,
  12195. .sidebar-menu .nav-link {
  12196. white-space: nowrap;
  12197. }
  12198. .logo-xs,
  12199. .logo-xl {
  12200. position: absolute;
  12201. visibility: visible;
  12202. opacity: 1;
  12203. }
  12204. .logo-xs.brand-image-xs,
  12205. .logo-xl.brand-image-xs {
  12206. top: 12px;
  12207. right: 18px;
  12208. }
  12209. .logo-xs.brand-image-xl,
  12210. .logo-xl.brand-image-xl {
  12211. top: 6px;
  12212. right: 12px;
  12213. }
  12214. .logo-xs {
  12215. visibility: hidden;
  12216. opacity: 0;
  12217. }
  12218. .logo-xs.brand-image-xl {
  12219. top: 8px;
  12220. right: 16px;
  12221. }
  12222. .brand-link.logo-switch::before {
  12223. content: " ";
  12224. }
  12225. .sidebar-mini.sidebar-collapse .app-sidebar {
  12226. min-width: 4.6rem;
  12227. max-width: 4.6rem;
  12228. }
  12229. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-header {
  12230. display: none;
  12231. }
  12232. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-link {
  12233. width: 3.6rem;
  12234. }
  12235. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-link p {
  12236. display: inline-block;
  12237. width: 0;
  12238. white-space: nowrap;
  12239. }
  12240. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-badge,
  12241. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-arrow {
  12242. display: none;
  12243. animation-name: fadeOut;
  12244. animation-duration: 0.3s;
  12245. animation-fill-mode: both;
  12246. }
  12247. .sidebar-mini.sidebar-collapse .brand-text {
  12248. display: inline-block;
  12249. max-width: 0;
  12250. overflow: hidden;
  12251. }
  12252. .sidebar-mini.sidebar-collapse .sidebar-menu .nav-link p,
  12253. .sidebar-mini.sidebar-collapse .brand-text,
  12254. .sidebar-mini.sidebar-collapse .logo-xl,
  12255. .sidebar-mini.sidebar-collapse .nav-arrow {
  12256. visibility: hidden;
  12257. animation-name: fadeOut;
  12258. animation-duration: 0.3s;
  12259. animation-fill-mode: both;
  12260. }
  12261. .sidebar-mini.sidebar-collapse .logo-xs {
  12262. display: inline-block;
  12263. visibility: visible;
  12264. animation-name: fadeIn;
  12265. animation-duration: 0.3s;
  12266. animation-fill-mode: both;
  12267. }
  12268. .sidebar-mini.sidebar-collapse .app-sidebar:hover {
  12269. min-width: var(--lte-sidebar-width);
  12270. max-width: var(--lte-sidebar-width);
  12271. }
  12272. .sidebar-mini.sidebar-collapse .app-sidebar:hover .sidebar-menu .nav-header {
  12273. display: inline-block;
  12274. }
  12275. .sidebar-mini.sidebar-collapse .app-sidebar:hover .sidebar-menu .nav-link {
  12276. width: auto;
  12277. }
  12278. .sidebar-mini.sidebar-collapse .app-sidebar:hover .sidebar-menu .nav-link p,
  12279. .sidebar-mini.sidebar-collapse .app-sidebar:hover .brand-text,
  12280. .sidebar-mini.sidebar-collapse .app-sidebar:hover .logo-xl {
  12281. width: auto;
  12282. margin-right: 0;
  12283. visibility: visible;
  12284. animation-name: fadeIn;
  12285. animation-duration: 0.3s;
  12286. animation-fill-mode: both;
  12287. }
  12288. .sidebar-mini.sidebar-collapse .app-sidebar:hover .brand-text {
  12289. display: inline;
  12290. max-width: inherit;
  12291. margin-right: 0.5rem;
  12292. animation-name: fadeIn;
  12293. animation-duration: 0.3s;
  12294. animation-fill-mode: both;
  12295. }
  12296. .sidebar-mini.sidebar-collapse .app-sidebar:hover .nav-badge,
  12297. .sidebar-mini.sidebar-collapse .app-sidebar:hover .nav-arrow {
  12298. display: inline-block;
  12299. visibility: visible;
  12300. animation-name: fadeIn;
  12301. animation-duration: 0.3s;
  12302. animation-fill-mode: both;
  12303. animation-delay: 0.3s;
  12304. }
  12305. .sidebar-mini.sidebar-collapse .app-sidebar:hover .nav-link p {
  12306. padding-right: 0.5rem;
  12307. }
  12308. .sidebar-mini.sidebar-collapse .app-sidebar:hover .logo-xs {
  12309. visibility: hidden;
  12310. animation-name: fadeOut;
  12311. animation-duration: 0.3s;
  12312. animation-fill-mode: both;
  12313. }
  12314. .sidebar-collapse:not(.sidebar-mini) .app-sidebar {
  12315. margin-right: calc(var(--lte-sidebar-width) * -1);
  12316. }
  12317. .sidebar-expand {
  12318. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12319. }
  12320. @media (min-width: 576px) {
  12321. .sidebar-expand-sm.layout-fixed .app-main-wrapper {
  12322. display: flex;
  12323. flex-direction: column;
  12324. min-height: 100vh;
  12325. }
  12326. .sidebar-expand-sm.layout-fixed .app-sidebar-wrapper {
  12327. position: relative;
  12328. }
  12329. .sidebar-expand-sm.layout-fixed .app-main {
  12330. flex: 1 1 auto;
  12331. overflow: auto;
  12332. }
  12333. .sidebar-expand-sm.layout-fixed .app-sidebar {
  12334. position: sticky;
  12335. top: 0;
  12336. bottom: 0;
  12337. max-height: 100vh;
  12338. }
  12339. .sidebar-expand-sm.layout-fixed .app-sidebar .sidebar-wrapper {
  12340. height: calc(100vh - (calc(3.5rem + 1px)));
  12341. overflow-x: hidden;
  12342. overflow-y: auto;
  12343. }
  12344. .sidebar-expand-sm.sidebar-open .nav-link > .nav-badge,
  12345. .sidebar-expand-sm.sidebar-open .nav-link > p > .nav-badge {
  12346. animation-name: fadeIn;
  12347. animation-duration: 0.3s;
  12348. animation-fill-mode: both;
  12349. animation-delay: 0.3s;
  12350. }
  12351. .sidebar-expand-sm.sidebar-open .nav-link > .nav-arrow,
  12352. .sidebar-expand-sm.sidebar-open .nav-link > p > .nav-arrow {
  12353. animation-name: fadeIn;
  12354. animation-duration: 0.3s;
  12355. animation-fill-mode: both;
  12356. animation-delay: 0.3s;
  12357. }
  12358. }
  12359. @media (max-width: 575.98px) {
  12360. .sidebar-expand-sm::before {
  12361. display: none;
  12362. content: "575.98px";
  12363. }
  12364. .sidebar-expand-sm .app-sidebar {
  12365. position: fixed;
  12366. top: 0;
  12367. bottom: 0;
  12368. max-height: 100vh;
  12369. margin-right: calc(var(--lte-sidebar-width) * -1);
  12370. }
  12371. .sidebar-expand-sm .app-sidebar .sidebar-wrapper {
  12372. height: calc(100vh - (calc(3.5rem + 1px)));
  12373. overflow-x: hidden;
  12374. overflow-y: auto;
  12375. }
  12376. .sidebar-expand-sm.sidebar-open .app-sidebar {
  12377. margin-right: 0;
  12378. }
  12379. .sidebar-expand-sm.sidebar-open .sidebar-overlay {
  12380. position: absolute;
  12381. inset: 0;
  12382. z-index: 1037;
  12383. width: 100%;
  12384. height: 100%;
  12385. cursor: pointer;
  12386. visibility: visible;
  12387. background-color: rgba(0, 0, 0, 0.2);
  12388. animation-name: fadeIn;
  12389. animation-fill-mode: both;
  12390. }
  12391. }
  12392. .sidebar-expand {
  12393. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12394. }
  12395. @media (min-width: 768px) {
  12396. .sidebar-expand-md.layout-fixed .app-main-wrapper {
  12397. display: flex;
  12398. flex-direction: column;
  12399. min-height: 100vh;
  12400. }
  12401. .sidebar-expand-md.layout-fixed .app-sidebar-wrapper {
  12402. position: relative;
  12403. }
  12404. .sidebar-expand-md.layout-fixed .app-main {
  12405. flex: 1 1 auto;
  12406. overflow: auto;
  12407. }
  12408. .sidebar-expand-md.layout-fixed .app-sidebar {
  12409. position: sticky;
  12410. top: 0;
  12411. bottom: 0;
  12412. max-height: 100vh;
  12413. }
  12414. .sidebar-expand-md.layout-fixed .app-sidebar .sidebar-wrapper {
  12415. height: calc(100vh - (calc(3.5rem + 1px)));
  12416. overflow-x: hidden;
  12417. overflow-y: auto;
  12418. }
  12419. .sidebar-expand-md.sidebar-open .nav-link > .nav-badge,
  12420. .sidebar-expand-md.sidebar-open .nav-link > p > .nav-badge {
  12421. animation-name: fadeIn;
  12422. animation-duration: 0.3s;
  12423. animation-fill-mode: both;
  12424. animation-delay: 0.3s;
  12425. }
  12426. .sidebar-expand-md.sidebar-open .nav-link > .nav-arrow,
  12427. .sidebar-expand-md.sidebar-open .nav-link > p > .nav-arrow {
  12428. animation-name: fadeIn;
  12429. animation-duration: 0.3s;
  12430. animation-fill-mode: both;
  12431. animation-delay: 0.3s;
  12432. }
  12433. }
  12434. @media (max-width: 767.98px) {
  12435. .sidebar-expand-md::before {
  12436. display: none;
  12437. content: "767.98px";
  12438. }
  12439. .sidebar-expand-md .app-sidebar {
  12440. position: fixed;
  12441. top: 0;
  12442. bottom: 0;
  12443. max-height: 100vh;
  12444. margin-right: calc(var(--lte-sidebar-width) * -1);
  12445. }
  12446. .sidebar-expand-md .app-sidebar .sidebar-wrapper {
  12447. height: calc(100vh - (calc(3.5rem + 1px)));
  12448. overflow-x: hidden;
  12449. overflow-y: auto;
  12450. }
  12451. .sidebar-expand-md.sidebar-open .app-sidebar {
  12452. margin-right: 0;
  12453. }
  12454. .sidebar-expand-md.sidebar-open .sidebar-overlay {
  12455. position: absolute;
  12456. inset: 0;
  12457. z-index: 1037;
  12458. width: 100%;
  12459. height: 100%;
  12460. cursor: pointer;
  12461. visibility: visible;
  12462. background-color: rgba(0, 0, 0, 0.2);
  12463. animation-name: fadeIn;
  12464. animation-fill-mode: both;
  12465. }
  12466. }
  12467. .sidebar-expand {
  12468. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12469. }
  12470. @media (min-width: 992px) {
  12471. .sidebar-expand-lg.layout-fixed .app-main-wrapper {
  12472. display: flex;
  12473. flex-direction: column;
  12474. min-height: 100vh;
  12475. }
  12476. .sidebar-expand-lg.layout-fixed .app-sidebar-wrapper {
  12477. position: relative;
  12478. }
  12479. .sidebar-expand-lg.layout-fixed .app-main {
  12480. flex: 1 1 auto;
  12481. overflow: auto;
  12482. }
  12483. .sidebar-expand-lg.layout-fixed .app-sidebar {
  12484. position: sticky;
  12485. top: 0;
  12486. bottom: 0;
  12487. max-height: 100vh;
  12488. }
  12489. .sidebar-expand-lg.layout-fixed .app-sidebar .sidebar-wrapper {
  12490. height: calc(100vh - (calc(3.5rem + 1px)));
  12491. overflow-x: hidden;
  12492. overflow-y: auto;
  12493. }
  12494. .sidebar-expand-lg.sidebar-open .nav-link > .nav-badge,
  12495. .sidebar-expand-lg.sidebar-open .nav-link > p > .nav-badge {
  12496. animation-name: fadeIn;
  12497. animation-duration: 0.3s;
  12498. animation-fill-mode: both;
  12499. animation-delay: 0.3s;
  12500. }
  12501. .sidebar-expand-lg.sidebar-open .nav-link > .nav-arrow,
  12502. .sidebar-expand-lg.sidebar-open .nav-link > p > .nav-arrow {
  12503. animation-name: fadeIn;
  12504. animation-duration: 0.3s;
  12505. animation-fill-mode: both;
  12506. animation-delay: 0.3s;
  12507. }
  12508. }
  12509. @media (max-width: 991.98px) {
  12510. .sidebar-expand-lg::before {
  12511. display: none;
  12512. content: "991.98px";
  12513. }
  12514. .sidebar-expand-lg .app-sidebar {
  12515. position: fixed;
  12516. top: 0;
  12517. bottom: 0;
  12518. max-height: 100vh;
  12519. margin-right: calc(var(--lte-sidebar-width) * -1);
  12520. }
  12521. .sidebar-expand-lg .app-sidebar .sidebar-wrapper {
  12522. height: calc(100vh - (calc(3.5rem + 1px)));
  12523. overflow-x: hidden;
  12524. overflow-y: auto;
  12525. }
  12526. .sidebar-expand-lg.sidebar-open .app-sidebar {
  12527. margin-right: 0;
  12528. }
  12529. .sidebar-expand-lg.sidebar-open .sidebar-overlay {
  12530. position: absolute;
  12531. inset: 0;
  12532. z-index: 1037;
  12533. width: 100%;
  12534. height: 100%;
  12535. cursor: pointer;
  12536. visibility: visible;
  12537. background-color: rgba(0, 0, 0, 0.2);
  12538. animation-name: fadeIn;
  12539. animation-fill-mode: both;
  12540. }
  12541. }
  12542. .sidebar-expand {
  12543. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12544. }
  12545. @media (min-width: 1200px) {
  12546. .sidebar-expand-xl.layout-fixed .app-main-wrapper {
  12547. display: flex;
  12548. flex-direction: column;
  12549. min-height: 100vh;
  12550. }
  12551. .sidebar-expand-xl.layout-fixed .app-sidebar-wrapper {
  12552. position: relative;
  12553. }
  12554. .sidebar-expand-xl.layout-fixed .app-main {
  12555. flex: 1 1 auto;
  12556. overflow: auto;
  12557. }
  12558. .sidebar-expand-xl.layout-fixed .app-sidebar {
  12559. position: sticky;
  12560. top: 0;
  12561. bottom: 0;
  12562. max-height: 100vh;
  12563. }
  12564. .sidebar-expand-xl.layout-fixed .app-sidebar .sidebar-wrapper {
  12565. height: calc(100vh - (calc(3.5rem + 1px)));
  12566. overflow-x: hidden;
  12567. overflow-y: auto;
  12568. }
  12569. .sidebar-expand-xl.sidebar-open .nav-link > .nav-badge,
  12570. .sidebar-expand-xl.sidebar-open .nav-link > p > .nav-badge {
  12571. animation-name: fadeIn;
  12572. animation-duration: 0.3s;
  12573. animation-fill-mode: both;
  12574. animation-delay: 0.3s;
  12575. }
  12576. .sidebar-expand-xl.sidebar-open .nav-link > .nav-arrow,
  12577. .sidebar-expand-xl.sidebar-open .nav-link > p > .nav-arrow {
  12578. animation-name: fadeIn;
  12579. animation-duration: 0.3s;
  12580. animation-fill-mode: both;
  12581. animation-delay: 0.3s;
  12582. }
  12583. }
  12584. @media (max-width: 1199.98px) {
  12585. .sidebar-expand-xl::before {
  12586. display: none;
  12587. content: "1199.98px";
  12588. }
  12589. .sidebar-expand-xl .app-sidebar {
  12590. position: fixed;
  12591. top: 0;
  12592. bottom: 0;
  12593. max-height: 100vh;
  12594. margin-right: calc(var(--lte-sidebar-width) * -1);
  12595. }
  12596. .sidebar-expand-xl .app-sidebar .sidebar-wrapper {
  12597. height: calc(100vh - (calc(3.5rem + 1px)));
  12598. overflow-x: hidden;
  12599. overflow-y: auto;
  12600. }
  12601. .sidebar-expand-xl.sidebar-open .app-sidebar {
  12602. margin-right: 0;
  12603. }
  12604. .sidebar-expand-xl.sidebar-open .sidebar-overlay {
  12605. position: absolute;
  12606. inset: 0;
  12607. z-index: 1037;
  12608. width: 100%;
  12609. height: 100%;
  12610. cursor: pointer;
  12611. visibility: visible;
  12612. background-color: rgba(0, 0, 0, 0.2);
  12613. animation-name: fadeIn;
  12614. animation-fill-mode: both;
  12615. }
  12616. }
  12617. .sidebar-expand {
  12618. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12619. }
  12620. @media (min-width: 1400px) {
  12621. .sidebar-expand-xxl.layout-fixed .app-main-wrapper {
  12622. display: flex;
  12623. flex-direction: column;
  12624. min-height: 100vh;
  12625. }
  12626. .sidebar-expand-xxl.layout-fixed .app-sidebar-wrapper {
  12627. position: relative;
  12628. }
  12629. .sidebar-expand-xxl.layout-fixed .app-main {
  12630. flex: 1 1 auto;
  12631. overflow: auto;
  12632. }
  12633. .sidebar-expand-xxl.layout-fixed .app-sidebar {
  12634. position: sticky;
  12635. top: 0;
  12636. bottom: 0;
  12637. max-height: 100vh;
  12638. }
  12639. .sidebar-expand-xxl.layout-fixed .app-sidebar .sidebar-wrapper {
  12640. height: calc(100vh - (calc(3.5rem + 1px)));
  12641. overflow-x: hidden;
  12642. overflow-y: auto;
  12643. }
  12644. .sidebar-expand-xxl.sidebar-open .nav-link > .nav-badge,
  12645. .sidebar-expand-xxl.sidebar-open .nav-link > p > .nav-badge {
  12646. animation-name: fadeIn;
  12647. animation-duration: 0.3s;
  12648. animation-fill-mode: both;
  12649. animation-delay: 0.3s;
  12650. }
  12651. .sidebar-expand-xxl.sidebar-open .nav-link > .nav-arrow,
  12652. .sidebar-expand-xxl.sidebar-open .nav-link > p > .nav-arrow {
  12653. animation-name: fadeIn;
  12654. animation-duration: 0.3s;
  12655. animation-fill-mode: both;
  12656. animation-delay: 0.3s;
  12657. }
  12658. }
  12659. @media (max-width: 1399.98px) {
  12660. .sidebar-expand-xxl::before {
  12661. display: none;
  12662. content: "1399.98px";
  12663. }
  12664. .sidebar-expand-xxl .app-sidebar {
  12665. position: fixed;
  12666. top: 0;
  12667. bottom: 0;
  12668. max-height: 100vh;
  12669. margin-right: calc(var(--lte-sidebar-width) * -1);
  12670. }
  12671. .sidebar-expand-xxl .app-sidebar .sidebar-wrapper {
  12672. height: calc(100vh - (calc(3.5rem + 1px)));
  12673. overflow-x: hidden;
  12674. overflow-y: auto;
  12675. }
  12676. .sidebar-expand-xxl.sidebar-open .app-sidebar {
  12677. margin-right: 0;
  12678. }
  12679. .sidebar-expand-xxl.sidebar-open .sidebar-overlay {
  12680. position: absolute;
  12681. inset: 0;
  12682. z-index: 1037;
  12683. width: 100%;
  12684. height: 100%;
  12685. cursor: pointer;
  12686. visibility: visible;
  12687. background-color: rgba(0, 0, 0, 0.2);
  12688. animation-name: fadeIn;
  12689. animation-fill-mode: both;
  12690. }
  12691. }
  12692. .sidebar-expand {
  12693. /* stylelint-disable-next-line scss/selector-no-union-class-name */
  12694. }
  12695. .sidebar-expand.layout-fixed .app-main-wrapper {
  12696. display: flex;
  12697. flex-direction: column;
  12698. min-height: 100vh;
  12699. }
  12700. .sidebar-expand.layout-fixed .app-sidebar-wrapper {
  12701. position: relative;
  12702. }
  12703. .sidebar-expand.layout-fixed .app-main {
  12704. flex: 1 1 auto;
  12705. overflow: auto;
  12706. }
  12707. .sidebar-expand.layout-fixed .app-sidebar {
  12708. position: sticky;
  12709. top: 0;
  12710. bottom: 0;
  12711. max-height: 100vh;
  12712. }
  12713. .sidebar-expand.layout-fixed .app-sidebar .sidebar-wrapper {
  12714. height: calc(100vh - (calc(3.5rem + 1px)));
  12715. overflow-x: hidden;
  12716. overflow-y: auto;
  12717. }
  12718. .sidebar-expand.sidebar-open .nav-link > .nav-badge,
  12719. .sidebar-expand.sidebar-open .nav-link > p > .nav-badge {
  12720. animation-name: fadeIn;
  12721. animation-duration: 0.3s;
  12722. animation-fill-mode: both;
  12723. animation-delay: 0.3s;
  12724. }
  12725. .sidebar-expand.sidebar-open .nav-link > .nav-arrow,
  12726. .sidebar-expand.sidebar-open .nav-link > p > .nav-arrow {
  12727. animation-name: fadeIn;
  12728. animation-duration: 0.3s;
  12729. animation-fill-mode: both;
  12730. animation-delay: 0.3s;
  12731. }
  12732. .sidebar-expand::before {
  12733. display: none;
  12734. content: "";
  12735. }
  12736. .sidebar-expand .app-sidebar {
  12737. position: fixed;
  12738. top: 0;
  12739. bottom: 0;
  12740. max-height: 100vh;
  12741. margin-right: calc(var(--lte-sidebar-width) * -1);
  12742. }
  12743. .sidebar-expand .app-sidebar .sidebar-wrapper {
  12744. height: calc(100vh - (calc(3.5rem + 1px)));
  12745. overflow-x: hidden;
  12746. overflow-y: auto;
  12747. }
  12748. .sidebar-expand.sidebar-open .app-sidebar {
  12749. margin-right: 0;
  12750. }
  12751. .sidebar-expand.sidebar-open .sidebar-overlay {
  12752. position: absolute;
  12753. inset: 0;
  12754. z-index: 1037;
  12755. width: 100%;
  12756. height: 100%;
  12757. cursor: pointer;
  12758. visibility: visible;
  12759. background-color: rgba(0, 0, 0, 0.2);
  12760. animation-name: fadeIn;
  12761. animation-fill-mode: both;
  12762. }
  12763. .sidebar-menu .nav-link p,
  12764. .app-sidebar .brand-text,
  12765. .app-sidebar .logo-xs,
  12766. .app-sidebar .logo-xl {
  12767. transition: margin-right 0.3s linear, opacity 0.3s ease, visibility 0.3s ease;
  12768. }
  12769. @media (prefers-reduced-motion: reduce) {
  12770. .sidebar-menu .nav-link p,
  12771. .app-sidebar .brand-text,
  12772. .app-sidebar .logo-xs,
  12773. .app-sidebar .logo-xl {
  12774. transition: none;
  12775. }
  12776. }
  12777. .app-loaded.sidebar-mini.sidebar-collapse .sidebar-menu .nav-link p,
  12778. .app-loaded.sidebar-mini.sidebar-collapse .brand-text {
  12779. animation-duration: 0.3s;
  12780. }
  12781. body:not(.app-loaded) .app-header,
  12782. body:not(.app-loaded) .app-sidebar,
  12783. body:not(.app-loaded) .app-main,
  12784. body:not(.app-loaded) .app-footer {
  12785. transition: none !important;
  12786. }
  12787. @media (prefers-reduced-motion: reduce) {
  12788. body:not(.app-loaded) .app-header,
  12789. body:not(.app-loaded) .app-sidebar,
  12790. body:not(.app-loaded) .app-main,
  12791. body:not(.app-loaded) .app-footer {
  12792. transition: none;
  12793. }
  12794. }
  12795. body:not(.app-loaded) .app-header,
  12796. body:not(.app-loaded) .app-sidebar,
  12797. body:not(.app-loaded) .app-main,
  12798. body:not(.app-loaded) .app-footer {
  12799. animation-duration: 0s !important;
  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. transition: none !important;
  12808. }
  12809. @media (prefers-reduced-motion: reduce) {
  12810. .hold-transition .app-header,
  12811. .hold-transition .app-sidebar,
  12812. .hold-transition .app-main,
  12813. .hold-transition .app-footer,
  12814. .hold-transition .nav-arrow,
  12815. .hold-transition .nav-badge {
  12816. transition: none;
  12817. }
  12818. }
  12819. .hold-transition .app-header,
  12820. .hold-transition .app-sidebar,
  12821. .hold-transition .app-main,
  12822. .hold-transition .app-footer,
  12823. .hold-transition .nav-arrow,
  12824. .hold-transition .nav-badge {
  12825. animation-duration: 0s !important;
  12826. }
  12827. [data-bs-theme=dark].app-sidebar,
  12828. [data-bs-theme=dark] .app-sidebar {
  12829. --lte-sidebar-hover-bg: rgba(255, 255, 255, 0.1);
  12830. --lte-sidebar-color: #c2c7d0;
  12831. --lte-sidebar-hover-color: #fff;
  12832. --lte-sidebar-active-color: #fff;
  12833. --lte-sidebar-menu-active-bg: rgba(255, 255, 255, 0.1);
  12834. --lte-sidebar-menu-active-color: #fff;
  12835. --lte-sidebar-submenu-bg: transparent;
  12836. --lte-sidebar-submenu-color: #c2c7d0;
  12837. --lte-sidebar-submenu-hover-color: #fff;
  12838. --lte-sidebar-submenu-hover-bg: rgba(255, 255, 255, 0.1);
  12839. --lte-sidebar-submenu-active-color: #fff;
  12840. --lte-sidebar-submenu-active-bg: rgba(255, 255, 255, 0.1);
  12841. --lte-sidebar-header-color: rgb(197.05, 201.8, 210.35);
  12842. }
  12843. .app-main {
  12844. position: relative;
  12845. display: flex;
  12846. flex-direction: column;
  12847. grid-area: lte-app-main;
  12848. max-width: 100vw;
  12849. padding-bottom: 0.75rem;
  12850. transition: 0.3s ease-in-out;
  12851. }
  12852. @media (prefers-reduced-motion: reduce) {
  12853. .app-main {
  12854. transition: none;
  12855. }
  12856. }
  12857. .app-main .app-content-header {
  12858. padding: 1rem 0.5rem;
  12859. }
  12860. .app-main .app-content-header .breadcrumb {
  12861. padding: 0;
  12862. margin-bottom: 0;
  12863. line-height: 2.5rem;
  12864. }
  12865. .app-main .app-content-header .breadcrumb a {
  12866. text-decoration: none;
  12867. }
  12868. .app-main .app-content-top-area,
  12869. .app-main .app-content-bottom-area {
  12870. color: var(--bs-secondary-color);
  12871. background-color: var(--bs-body-bg);
  12872. }
  12873. .app-main .app-content-top-area {
  12874. padding: 1rem 0;
  12875. border-bottom: 1px solid var(--bs-border-color);
  12876. }
  12877. .app-main .app-content-bottom-area {
  12878. padding: 1rem 0;
  12879. margin-top: auto;
  12880. margin-bottom: -0.75rem;
  12881. border-top: 1px solid var(--bs-border-color);
  12882. }
  12883. .app-footer {
  12884. grid-area: lte-app-footer;
  12885. width: inherit;
  12886. max-width: 100vw;
  12887. min-height: 3rem;
  12888. padding: 1rem;
  12889. color: var(--bs-secondary-color);
  12890. background-color: var(--bs-body-bg);
  12891. border-top: 1px solid var(--bs-border-color);
  12892. transition: 0.3s ease-in-out;
  12893. }
  12894. @media (prefers-reduced-motion: reduce) {
  12895. .app-footer {
  12896. transition: none;
  12897. }
  12898. }
  12899. .fixed-footer .app-footer {
  12900. position: sticky;
  12901. bottom: 0;
  12902. z-index: 1030;
  12903. }
  12904. .fs-7 .dropdown-menu {
  12905. font-size: 0.875rem !important;
  12906. }
  12907. .fs-7 .dropdown-toggle::after {
  12908. vertical-align: 0.2rem;
  12909. }
  12910. .dropdown-item-title {
  12911. margin: 0;
  12912. font-size: 1rem;
  12913. }
  12914. .dropdown-icon::after {
  12915. margin-right: 0;
  12916. }
  12917. .dropdown-menu-lg {
  12918. min-width: 280px;
  12919. max-width: 300px;
  12920. padding: 0;
  12921. }
  12922. .dropdown-menu-lg .dropdown-divider {
  12923. margin: 0;
  12924. }
  12925. .dropdown-menu-lg .dropdown-item {
  12926. padding: 0.5rem 1rem;
  12927. }
  12928. .dropdown-menu-lg p {
  12929. margin: 0;
  12930. word-wrap: break-word;
  12931. white-space: normal;
  12932. }
  12933. .dropdown-submenu {
  12934. position: relative;
  12935. }
  12936. .dropdown-submenu > a::after {
  12937. border-top: 0.3em solid transparent;
  12938. border-left: 0;
  12939. border-bottom: 0.3em solid transparent;
  12940. border-right: 0.3em solid;
  12941. float: left;
  12942. margin-top: 0.5rem;
  12943. margin-right: 0.5rem;
  12944. }
  12945. .dropdown-submenu > .dropdown-menu {
  12946. top: 0;
  12947. right: 100%;
  12948. margin-top: 0;
  12949. margin-right: 0;
  12950. }
  12951. .dropdown-hover:hover > .dropdown-menu, .dropdown-hover.nav-item.dropdown:hover > .dropdown-menu,
  12952. .dropdown-hover .dropdown-submenu:hover > .dropdown-menu, .dropdown-hover.dropdown-submenu:hover > .dropdown-menu {
  12953. display: block;
  12954. }
  12955. .dropdown-menu-xl {
  12956. min-width: 360px;
  12957. max-width: 420px;
  12958. padding: 0;
  12959. }
  12960. .dropdown-menu-xl .dropdown-divider {
  12961. margin: 0;
  12962. }
  12963. .dropdown-menu-xl .dropdown-item {
  12964. padding: 0.5rem 1rem;
  12965. }
  12966. .dropdown-menu-xl p {
  12967. margin: 0;
  12968. word-wrap: break-word;
  12969. white-space: normal;
  12970. }
  12971. .dropdown-footer,
  12972. .dropdown-header {
  12973. display: block;
  12974. padding: 0.5rem 1rem;
  12975. font-size: 0.875rem;
  12976. text-align: center;
  12977. }
  12978. .open:not(.dropup) > .animated-dropdown-menu {
  12979. animation: flipInX 0.7s both;
  12980. backface-visibility: visible !important;
  12981. }
  12982. .navbar-custom-menu > .navbar-nav > li {
  12983. position: relative;
  12984. }
  12985. .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  12986. position: absolute;
  12987. left: 0;
  12988. right: auto;
  12989. }
  12990. @media (max-width: 575.98px) {
  12991. .navbar-custom-menu > .navbar-nav {
  12992. float: left;
  12993. }
  12994. .navbar-custom-menu > .navbar-nav > li {
  12995. position: static;
  12996. }
  12997. .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  12998. position: absolute;
  12999. left: 5%;
  13000. right: auto;
  13001. background-color: var(--bs-body-bg);
  13002. border: 1px solid var(--bs-border-color);
  13003. }
  13004. }
  13005. .navbar-nav > .user-menu > .nav-link::after {
  13006. content: none;
  13007. }
  13008. .navbar-nav > .user-menu > .dropdown-menu {
  13009. border-top-right-radius: 0;
  13010. border-top-left-radius: 0;
  13011. width: 280px;
  13012. padding: 0;
  13013. }
  13014. .navbar-nav > .user-menu > .dropdown-menu,
  13015. .navbar-nav > .user-menu > .dropdown-menu > .user-body {
  13016. border-bottom-left-radius: 4px;
  13017. border-bottom-right-radius: 4px;
  13018. }
  13019. .navbar-nav > .user-menu > .dropdown-menu > li.user-header {
  13020. min-height: 175px;
  13021. padding: 10px;
  13022. text-align: center;
  13023. }
  13024. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
  13025. z-index: 5;
  13026. width: 90px;
  13027. height: 90px;
  13028. border: 3px solid;
  13029. border-color: transparent;
  13030. border-color: var(--bs-border-color-translucent);
  13031. }
  13032. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
  13033. z-index: 5;
  13034. margin-top: 10px;
  13035. font-size: 17px;
  13036. word-wrap: break-word;
  13037. }
  13038. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small, .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > .small {
  13039. display: block;
  13040. font-size: 12px;
  13041. }
  13042. .navbar-nav > .user-menu > .dropdown-menu > .user-body::after {
  13043. display: block;
  13044. clear: both;
  13045. content: "";
  13046. }
  13047. .navbar-nav > .user-menu > .dropdown-menu > .user-body {
  13048. padding: 15px;
  13049. border-top: 1px solid var(--bs-border-color);
  13050. border-bottom: 1px solid var(--bs-border-color-translucent);
  13051. }
  13052. .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
  13053. text-decoration: none;
  13054. }
  13055. @media (min-width: 576px) {
  13056. .navbar-nav > .user-menu > .dropdown-menu > .user-body a {
  13057. color: var(--bs-body-color) !important;
  13058. background-color: var(--bs-body-bg) !important;
  13059. }
  13060. }
  13061. .navbar-nav > .user-menu > .dropdown-menu > .user-footer::after {
  13062. display: block;
  13063. clear: both;
  13064. content: "";
  13065. }
  13066. .navbar-nav > .user-menu > .dropdown-menu > .user-footer {
  13067. padding: 10px;
  13068. background-color: var(--bs-light-bg);
  13069. }
  13070. .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default {
  13071. color: var(--bs-body-color);
  13072. }
  13073. @media (min-width: 576px) {
  13074. .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default:hover {
  13075. background-color: var(--bs-body-bg);
  13076. }
  13077. }
  13078. @media (min-width: 576px) {
  13079. .navbar-nav > .user-menu .user-image {
  13080. float: none;
  13081. margin-top: -8px;
  13082. margin-left: 0.4rem;
  13083. line-height: 10px;
  13084. }
  13085. }
  13086. .navbar-nav > .user-menu .user-image {
  13087. float: right;
  13088. width: 2rem;
  13089. height: 2rem;
  13090. margin-top: -2px;
  13091. border-radius: 50%;
  13092. }
  13093. .callout {
  13094. --bs-link-color-rgb: var(--lte-callout-link);
  13095. --bs-code-color: var(--lte-callout-code-color);
  13096. padding: 1.25rem;
  13097. color: var(--lte-callout-color, inherit);
  13098. background-color: var(--lte-callout-bg, var(--bs-gray-100));
  13099. border-right: 0.25rem solid var(--lte-callout-border, var(--bs-gray-300));
  13100. }
  13101. .callout .callout-link {
  13102. font-weight: 700;
  13103. color: var(--bs-callout-link-color);
  13104. }
  13105. .callout h4, .callout .h4 {
  13106. margin-bottom: 0.25rem;
  13107. }
  13108. .callout > :last-child {
  13109. margin-bottom: 0;
  13110. }
  13111. .callout + .callout {
  13112. margin-top: -0.25rem;
  13113. }
  13114. .callout-primary {
  13115. --lte-callout-color: var(--bs-primary-text-emphasis);
  13116. --lte-callout-bg: var(--bs-primary-bg-subtle);
  13117. --lte-callout-border: var(--bs-primary-border-subtle);
  13118. --bs-callout-link-color: var(--bs-primary-text-emphasis);
  13119. }
  13120. .callout-secondary {
  13121. --lte-callout-color: var(--bs-secondary-text-emphasis);
  13122. --lte-callout-bg: var(--bs-secondary-bg-subtle);
  13123. --lte-callout-border: var(--bs-secondary-border-subtle);
  13124. --bs-callout-link-color: var(--bs-secondary-text-emphasis);
  13125. }
  13126. .callout-success {
  13127. --lte-callout-color: var(--bs-success-text-emphasis);
  13128. --lte-callout-bg: var(--bs-success-bg-subtle);
  13129. --lte-callout-border: var(--bs-success-border-subtle);
  13130. --bs-callout-link-color: var(--bs-success-text-emphasis);
  13131. }
  13132. .callout-info {
  13133. --lte-callout-color: var(--bs-info-text-emphasis);
  13134. --lte-callout-bg: var(--bs-info-bg-subtle);
  13135. --lte-callout-border: var(--bs-info-border-subtle);
  13136. --bs-callout-link-color: var(--bs-info-text-emphasis);
  13137. }
  13138. .callout-warning {
  13139. --lte-callout-color: var(--bs-warning-text-emphasis);
  13140. --lte-callout-bg: var(--bs-warning-bg-subtle);
  13141. --lte-callout-border: var(--bs-warning-border-subtle);
  13142. --bs-callout-link-color: var(--bs-warning-text-emphasis);
  13143. }
  13144. .callout-danger {
  13145. --lte-callout-color: var(--bs-danger-text-emphasis);
  13146. --lte-callout-bg: var(--bs-danger-bg-subtle);
  13147. --lte-callout-border: var(--bs-danger-border-subtle);
  13148. --bs-callout-link-color: var(--bs-danger-text-emphasis);
  13149. }
  13150. .callout-light {
  13151. --lte-callout-color: var(--bs-light-text-emphasis);
  13152. --lte-callout-bg: var(--bs-light-bg-subtle);
  13153. --lte-callout-border: var(--bs-light-border-subtle);
  13154. --bs-callout-link-color: var(--bs-light-text-emphasis);
  13155. }
  13156. .callout-dark {
  13157. --lte-callout-color: var(--bs-dark-text-emphasis);
  13158. --lte-callout-bg: var(--bs-dark-bg-subtle);
  13159. --lte-callout-border: var(--bs-dark-border-subtle);
  13160. --bs-callout-link-color: var(--bs-dark-text-emphasis);
  13161. }
  13162. .compact-mode .app-header {
  13163. max-height: 2.75rem;
  13164. }
  13165. .compact-mode .app-header .nav-link {
  13166. max-height: 1.75rem;
  13167. }
  13168. .compact-mode .nav-link {
  13169. --bs-nav-link-padding-y: .25rem;
  13170. --bs-nav-link-padding-x: .5rem;
  13171. }
  13172. .compact-mode.sidebar-mini.sidebar-collapse .app-sidebar:not(:hover) {
  13173. min-width: 3.1rem;
  13174. max-width: 3.1rem;
  13175. }
  13176. .compact-mode.sidebar-mini.sidebar-collapse .app-sidebar:not(:hover) .sidebar-menu .nav-link {
  13177. width: 2.1rem !important;
  13178. }
  13179. .compact-mode .logo-xs,
  13180. .compact-mode .logo-xl {
  13181. max-height: 2.75rem;
  13182. }
  13183. .compact-mode .brand-image {
  13184. width: 1.75rem;
  13185. height: 1.75rem;
  13186. }
  13187. .compact-mode .sidebar-brand {
  13188. height: 2.75rem;
  13189. }
  13190. .compact-mode .app-footer {
  13191. padding: 0.5rem;
  13192. }
  13193. .compact-mode .sidebar-wrapper .nav-icon {
  13194. min-width: 1.1rem;
  13195. max-width: 1.1rem;
  13196. }
  13197. .astro-code {
  13198. padding: 0.75rem;
  13199. border-radius: 0.375rem;
  13200. }
  13201. .progress {
  13202. border-radius: 1px;
  13203. }
  13204. .progress.vertical {
  13205. position: relative;
  13206. display: inline-block;
  13207. width: 30px;
  13208. height: 200px;
  13209. margin-left: 10px;
  13210. }
  13211. .progress.vertical > .progress-bar {
  13212. position: absolute;
  13213. bottom: 0;
  13214. width: 100%;
  13215. }
  13216. .progress.vertical.sm, .progress.vertical.progress-sm {
  13217. width: 20px;
  13218. }
  13219. .progress.vertical.xs, .progress.vertical.progress-xs {
  13220. width: 10px;
  13221. }
  13222. .progress.vertical.xxs, .progress.vertical.progress-xxs {
  13223. width: 3px;
  13224. }
  13225. .progress-group {
  13226. margin-bottom: 0.5rem;
  13227. }
  13228. .progress-sm {
  13229. height: 10px;
  13230. }
  13231. .progress-xs {
  13232. height: 7px;
  13233. }
  13234. .progress-xxs {
  13235. height: 3px;
  13236. }
  13237. .table tr > td .progress {
  13238. margin: 0;
  13239. }
  13240. .card {
  13241. box-shadow: 0 0 1px rgba(var(--bs-body-color-rgb), 0.125), 0 1px 3px rgba(var(--bs-body-color-rgb), 0.2);
  13242. }
  13243. .card[class*=card-]:not(.card-outline) > .card-header, .card[class*=text-bg-]:not(.card-outline) > .card-header {
  13244. color: var(--lte-card-variant-color);
  13245. background-color: var(--lte-card-variant-bg);
  13246. }
  13247. .card[class*=card-]:not(.card-outline) > .card-header .btn-tool, .card[class*=text-bg-]:not(.card-outline) > .card-header .btn-tool {
  13248. --bs-btn-color: rgba(var(--lte-card-variant-color-rgb), .8);
  13249. --bs-btn-hover-color: var(--lte-card-variant-color);
  13250. }
  13251. .card.card-outline {
  13252. border-top: 3px solid var(--lte-card-variant-bg);
  13253. }
  13254. .card.maximized-card {
  13255. position: fixed;
  13256. top: 0;
  13257. right: 0;
  13258. z-index: 1050;
  13259. width: 100% !important;
  13260. max-width: 100% !important;
  13261. height: 100% !important;
  13262. max-height: 100% !important;
  13263. }
  13264. .card.maximized-card.was-collapsed .card-body {
  13265. display: block !important;
  13266. }
  13267. .card.maximized-card .card-body {
  13268. overflow: auto;
  13269. }
  13270. .card.maximized-card [data-lte-toggle=card-collapse] {
  13271. display: none;
  13272. }
  13273. .card.maximized-card [data-lte-icon=maximize] {
  13274. display: none;
  13275. }
  13276. .card.maximized-card .card-header,
  13277. .card.maximized-card .card-footer {
  13278. border-radius: 0 !important;
  13279. }
  13280. .card:not(.maximized-card) [data-lte-icon=minimize] {
  13281. display: none;
  13282. }
  13283. .card.collapsed-card [data-lte-icon=collapse] {
  13284. display: none;
  13285. }
  13286. .card.collapsed-card .card-body,
  13287. .card.collapsed-card .card-footer {
  13288. display: none;
  13289. }
  13290. .card:not(.collapsed-card) [data-lte-icon=expand] {
  13291. display: none;
  13292. }
  13293. .card .nav.flex-column > li {
  13294. margin: 0;
  13295. border-bottom: 1px solid var(--bs-border-color-translucent);
  13296. }
  13297. .card .nav.flex-column > li:last-of-type {
  13298. border-bottom: 0;
  13299. }
  13300. .card.height-control .card-body {
  13301. max-height: 300px;
  13302. overflow: auto;
  13303. }
  13304. .card .border-end {
  13305. border-left: 1px solid var(--bs-border-color-translucent);
  13306. }
  13307. .card .border-start {
  13308. border-right: 1px solid var(--bs-border-color-translucent);
  13309. }
  13310. .card.card-tabs:not(.card-outline) > .card-header {
  13311. border-bottom: 0;
  13312. }
  13313. .card.card-tabs:not(.card-outline) > .card-header .nav-item:first-child .nav-link {
  13314. border-right-color: transparent;
  13315. }
  13316. .card.card-tabs.card-outline .nav-item {
  13317. border-bottom: 0;
  13318. }
  13319. .card.card-tabs.card-outline .nav-item:first-child .nav-link {
  13320. margin-right: 0;
  13321. border-right: 0;
  13322. }
  13323. .card.card-tabs .card-tools {
  13324. margin: 0.3rem 0.5rem;
  13325. }
  13326. .card.card-tabs:not(.expanding-card).collapsed-card .card-header {
  13327. border-bottom: 0;
  13328. }
  13329. .card.card-tabs:not(.expanding-card).collapsed-card .card-header .nav-tabs {
  13330. border-bottom: 0;
  13331. }
  13332. .card.card-tabs:not(.expanding-card).collapsed-card .card-header .nav-tabs .nav-item {
  13333. margin-bottom: 0;
  13334. }
  13335. .card.card-tabs.expanding-card .card-header .nav-tabs .nav-item {
  13336. margin-bottom: -1px;
  13337. }
  13338. .card.card-outline-tabs {
  13339. border-top: 0;
  13340. }
  13341. .card.card-outline-tabs .card-header .nav-item:first-child .nav-link {
  13342. margin-right: 0;
  13343. border-right: 0;
  13344. }
  13345. .card.card-outline-tabs .card-header a {
  13346. text-decoration: none;
  13347. border-top: 3px solid transparent;
  13348. }
  13349. .card.card-outline-tabs .card-header a:hover {
  13350. border-top: 3px solid var(--bs-border-color);
  13351. }
  13352. .card.card-outline-tabs .card-header a.active:hover {
  13353. margin-top: 0;
  13354. }
  13355. .card.card-outline-tabs .card-tools {
  13356. margin: 0.5rem 0.5rem 0.3rem;
  13357. }
  13358. .card.card-outline-tabs:not(.expanding-card).collapsed-card .card-header {
  13359. border-bottom: 0;
  13360. }
  13361. .card.card-outline-tabs:not(.expanding-card).collapsed-card .card-header .nav-tabs {
  13362. border-bottom: 0;
  13363. }
  13364. .card.card-outline-tabs:not(.expanding-card).collapsed-card .card-header .nav-tabs .nav-item {
  13365. margin-bottom: 0;
  13366. }
  13367. .card.card-outline-tabs.expanding-card .card-header .nav-tabs .nav-item {
  13368. margin-bottom: -1px;
  13369. }
  13370. html.maximized-card {
  13371. overflow: hidden;
  13372. }
  13373. .card-header::after,
  13374. .card-body::after,
  13375. .card-footer::after {
  13376. display: block;
  13377. clear: both;
  13378. content: "";
  13379. }
  13380. .card-header {
  13381. position: relative;
  13382. padding: 1rem 1rem;
  13383. background-color: transparent;
  13384. border-bottom: 1px solid var(--bs-border-color-translucent);
  13385. border-top-right-radius: 0.375rem;
  13386. border-top-left-radius: 0.375rem;
  13387. }
  13388. .collapsed-card .card-header {
  13389. border-bottom: 0;
  13390. }
  13391. .card-header > .card-tools {
  13392. float: left;
  13393. margin-left: -0.5rem;
  13394. }
  13395. .card-header > .card-tools .input-group,
  13396. .card-header > .card-tools .nav,
  13397. .card-header > .card-tools .pagination {
  13398. margin-top: -0.4rem;
  13399. margin-bottom: -0.4rem;
  13400. }
  13401. .card-header > .card-tools [data-bs-toggle=tooltip] {
  13402. position: relative;
  13403. }
  13404. .card-title {
  13405. float: right;
  13406. margin: 0;
  13407. font-size: 1.1rem;
  13408. font-weight: 400;
  13409. }
  13410. .btn-tool {
  13411. --bs-btn-padding-x: .5rem;
  13412. --bs-btn-padding-y: .25rem;
  13413. }
  13414. .btn-tool:not(.btn-tool-custom) {
  13415. --bs-btn-color: var(--bs-tertiary-color);
  13416. --bs-btn-bg: transparent;
  13417. --bs-btn-box-shadow: none;
  13418. --bs-btn-hover-color: var(--bs-secondary-color);
  13419. --bs-btn-active-border-color: transparent;
  13420. }
  13421. .btn-tool {
  13422. margin: -1rem 0;
  13423. font-size: 0.875rem;
  13424. }
  13425. .card-primary,
  13426. .bg-primary,
  13427. .text-bg-primary {
  13428. --lte-card-variant-bg: #0d6efd;
  13429. --lte-card-variant-bg-rgb: 13, 110, 253;
  13430. --lte-card-variant-color: #fff;
  13431. --lte-card-variant-color-rgb: 255, 255, 255;
  13432. }
  13433. .card-secondary,
  13434. .bg-secondary,
  13435. .text-bg-secondary {
  13436. --lte-card-variant-bg: #6c757d;
  13437. --lte-card-variant-bg-rgb: 108, 117, 125;
  13438. --lte-card-variant-color: #fff;
  13439. --lte-card-variant-color-rgb: 255, 255, 255;
  13440. }
  13441. .card-success,
  13442. .bg-success,
  13443. .text-bg-success {
  13444. --lte-card-variant-bg: #198754;
  13445. --lte-card-variant-bg-rgb: 25, 135, 84;
  13446. --lte-card-variant-color: #fff;
  13447. --lte-card-variant-color-rgb: 255, 255, 255;
  13448. }
  13449. .card-info,
  13450. .bg-info,
  13451. .text-bg-info {
  13452. --lte-card-variant-bg: #0dcaf0;
  13453. --lte-card-variant-bg-rgb: 13, 202, 240;
  13454. --lte-card-variant-color: #000;
  13455. --lte-card-variant-color-rgb: 0, 0, 0;
  13456. }
  13457. .card-warning,
  13458. .bg-warning,
  13459. .text-bg-warning {
  13460. --lte-card-variant-bg: #ffc107;
  13461. --lte-card-variant-bg-rgb: 255, 193, 7;
  13462. --lte-card-variant-color: #000;
  13463. --lte-card-variant-color-rgb: 0, 0, 0;
  13464. }
  13465. .card-danger,
  13466. .bg-danger,
  13467. .text-bg-danger {
  13468. --lte-card-variant-bg: #dc3545;
  13469. --lte-card-variant-bg-rgb: 220, 53, 69;
  13470. --lte-card-variant-color: #fff;
  13471. --lte-card-variant-color-rgb: 255, 255, 255;
  13472. }
  13473. .card-light,
  13474. .bg-light,
  13475. .text-bg-light {
  13476. --lte-card-variant-bg: #f8f9fa;
  13477. --lte-card-variant-bg-rgb: 248, 249, 250;
  13478. --lte-card-variant-color: #000;
  13479. --lte-card-variant-color-rgb: 0, 0, 0;
  13480. }
  13481. .card-dark,
  13482. .bg-dark,
  13483. .text-bg-dark {
  13484. --lte-card-variant-bg: #212529;
  13485. --lte-card-variant-bg-rgb: 33, 37, 41;
  13486. --lte-card-variant-color: #fff;
  13487. --lte-card-variant-color-rgb: 255, 255, 255;
  13488. }
  13489. .card-body > .table {
  13490. margin-bottom: 0;
  13491. }
  13492. .card-body > .table > thead > tr > th,
  13493. .card-body > .table > thead > tr > td {
  13494. border-top-width: 0;
  13495. }
  13496. .table:not(.table-dark) {
  13497. color: inherit;
  13498. }
  13499. .table.table-head-fixed thead tr:nth-child(1) th {
  13500. position: sticky;
  13501. top: 0;
  13502. z-index: 10;
  13503. background-color: #fff;
  13504. border-bottom: 0;
  13505. box-shadow: inset 0 1px 0 var(--bs-border-color), inset 0 -1px 0 var(--bs-border-color);
  13506. }
  13507. .table.no-border,
  13508. .table.no-border td,
  13509. .table.no-border th {
  13510. border: 0;
  13511. }
  13512. .table.text-center,
  13513. .table.text-center td,
  13514. .table.text-center th {
  13515. text-align: center;
  13516. }
  13517. .table.table-valign-middle thead > tr > th,
  13518. .table.table-valign-middle thead > tr > td,
  13519. .table.table-valign-middle tbody > tr > th,
  13520. .table.table-valign-middle tbody > tr > td {
  13521. vertical-align: middle;
  13522. }
  13523. .card-body.p-0 .table thead > tr > th:first-of-type,
  13524. .card-body.p-0 .table thead > tr > td:first-of-type,
  13525. .card-body.p-0 .table tfoot > tr > th:first-of-type,
  13526. .card-body.p-0 .table tfoot > tr > td:first-of-type,
  13527. .card-body.p-0 .table tbody > tr > th:first-of-type,
  13528. .card-body.p-0 .table tbody > tr > td:first-of-type {
  13529. padding-right: 1.5rem;
  13530. }
  13531. .card-body.p-0 .table thead > tr > th:last-of-type,
  13532. .card-body.p-0 .table thead > tr > td:last-of-type,
  13533. .card-body.p-0 .table tfoot > tr > th:last-of-type,
  13534. .card-body.p-0 .table tfoot > tr > td:last-of-type,
  13535. .card-body.p-0 .table tbody > tr > th:last-of-type,
  13536. .card-body.p-0 .table tbody > tr > td:last-of-type {
  13537. padding-left: 1.5rem;
  13538. }
  13539. .small-box {
  13540. border-radius: 0.375rem;
  13541. box-shadow: 0 0 1px rgba(var(--bs-body-color-rgb), 0.125), 0 1px 3px rgba(var(--bs-body-color-rgb), 0.2);
  13542. position: relative;
  13543. display: block;
  13544. margin-bottom: 1.25rem;
  13545. --bs-link-color-rgb: none;
  13546. --bs-link-hover-color-rgb: none;
  13547. --bs-heading-color: none;
  13548. }
  13549. .small-box > .inner {
  13550. padding: 10px;
  13551. }
  13552. .small-box > .small-box-footer {
  13553. position: relative;
  13554. z-index: 10;
  13555. display: block;
  13556. padding: 3px 0;
  13557. text-align: center;
  13558. background-color: rgba(0, 0, 0, 0.07);
  13559. }
  13560. .small-box > .small-box-footer:hover {
  13561. background-color: rgba(0, 0, 0, 0.1);
  13562. }
  13563. .small-box h3, .small-box .h3 {
  13564. font-size: calc(1.345rem + 1.14vw);
  13565. }
  13566. @media (min-width: 1200px) {
  13567. .small-box h3, .small-box .h3 {
  13568. font-size: 2.2rem;
  13569. }
  13570. }
  13571. .small-box h3, .small-box .h3 {
  13572. padding: 0;
  13573. margin: 0 0 10px;
  13574. font-weight: 700;
  13575. white-space: nowrap;
  13576. }
  13577. @media (min-width: 992px) {
  13578. .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 {
  13579. font-size: calc(1.285rem + 0.42vw);
  13580. }
  13581. }
  13582. @media (min-width: 992px) and (min-width: 1200px) {
  13583. .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 {
  13584. font-size: 1.6rem;
  13585. }
  13586. }
  13587. @media (min-width: 992px) {
  13588. .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 {
  13589. font-size: calc(1.285rem + 0.42vw);
  13590. }
  13591. }
  13592. @media (min-width: 992px) and (min-width: 1200px) {
  13593. .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 {
  13594. font-size: 1.6rem;
  13595. }
  13596. }
  13597. @media (min-width: 1200px) {
  13598. .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 {
  13599. font-size: calc(1.345rem + 1.14vw);
  13600. }
  13601. }
  13602. @media (min-width: 1200px) and (min-width: 1200px) {
  13603. .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 {
  13604. font-size: 2.2rem;
  13605. }
  13606. }
  13607. @media (min-width: 1200px) {
  13608. .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 {
  13609. font-size: calc(1.345rem + 1.14vw);
  13610. }
  13611. }
  13612. @media (min-width: 1200px) and (min-width: 1200px) {
  13613. .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 {
  13614. font-size: 2.2rem;
  13615. }
  13616. }
  13617. .small-box p {
  13618. font-size: 1rem;
  13619. }
  13620. .small-box p > small, .small-box p > .small {
  13621. display: block;
  13622. margin-top: 5px;
  13623. font-size: 0.9rem;
  13624. color: #f8f9fa;
  13625. }
  13626. .small-box h3, .small-box .h3,
  13627. .small-box p {
  13628. z-index: 5;
  13629. }
  13630. .small-box .small-box-icon {
  13631. position: absolute;
  13632. top: 15px;
  13633. left: 15px;
  13634. z-index: 0;
  13635. height: 70px;
  13636. font-size: 70px;
  13637. color: rgba(0, 0, 0, 0.15);
  13638. transition: transform 0.3s linear;
  13639. }
  13640. @media (prefers-reduced-motion: reduce) {
  13641. .small-box .small-box-icon {
  13642. transition: none;
  13643. }
  13644. }
  13645. .small-box:hover .small-box-icon {
  13646. transform: scale(1.1);
  13647. }
  13648. @media (max-width: 575.98px) {
  13649. .small-box {
  13650. text-align: center;
  13651. }
  13652. .small-box .small-box-icon {
  13653. display: none;
  13654. }
  13655. .small-box p {
  13656. font-size: 12px;
  13657. }
  13658. }
  13659. .info-box {
  13660. box-shadow: 0 0 1px rgba(var(--bs-body-color-rgb), 0.125), 0 1px 3px rgba(var(--bs-body-color-rgb), 0.2);
  13661. border-radius: 0.375rem;
  13662. position: relative;
  13663. display: flex;
  13664. width: 100%;
  13665. min-height: 80px;
  13666. padding: 0.5rem;
  13667. margin-bottom: 1rem;
  13668. color: var(--bs-body-color);
  13669. background-color: var(--bs-body-bg);
  13670. }
  13671. .info-box .progress {
  13672. height: 2px;
  13673. margin: 5px 0;
  13674. background-color: rgba(var(--lte-card-variant-color-rgb), 0.125);
  13675. }
  13676. .info-box .progress .progress-bar {
  13677. background-color: var(--lte-card-variant-color);
  13678. }
  13679. .info-box .info-box-icon {
  13680. display: flex;
  13681. align-items: center;
  13682. justify-content: center;
  13683. width: 70px;
  13684. font-size: 1.875rem;
  13685. text-align: center;
  13686. border-radius: 0.375rem;
  13687. }
  13688. .info-box .info-box-icon > img {
  13689. max-width: 100%;
  13690. }
  13691. .info-box .info-box-content {
  13692. display: flex;
  13693. flex: 1;
  13694. flex-direction: column;
  13695. justify-content: center;
  13696. padding: 0 10px;
  13697. line-height: 1.8;
  13698. }
  13699. .info-box .info-box-number {
  13700. display: block;
  13701. margin-top: 0.25rem;
  13702. font-weight: 700;
  13703. }
  13704. .info-box .progress-description,
  13705. .info-box .info-box-text {
  13706. display: block;
  13707. overflow: hidden;
  13708. text-overflow: ellipsis;
  13709. white-space: nowrap;
  13710. }
  13711. .info-box .info-box-more {
  13712. display: block;
  13713. }
  13714. .info-box .progress-description {
  13715. margin: 0;
  13716. }
  13717. @media (min-width: 768px) {
  13718. .col-xl-2 .info-box .progress-description, .col-lg-2 .info-box .progress-description, .col-md-2 .info-box .progress-description {
  13719. display: none;
  13720. }
  13721. .col-xl-3 .info-box .progress-description, .col-lg-3 .info-box .progress-description, .col-md-3 .info-box .progress-description {
  13722. display: none;
  13723. }
  13724. }
  13725. @media (min-width: 992px) {
  13726. .col-xl-2 .info-box .progress-description, .col-lg-2 .info-box .progress-description, .col-md-2 .info-box .progress-description {
  13727. font-size: 0.75rem;
  13728. display: block;
  13729. }
  13730. .col-xl-3 .info-box .progress-description, .col-lg-3 .info-box .progress-description, .col-md-3 .info-box .progress-description {
  13731. font-size: 0.75rem;
  13732. display: block;
  13733. }
  13734. }
  13735. @media (min-width: 1200px) {
  13736. .col-xl-2 .info-box .progress-description, .col-lg-2 .info-box .progress-description, .col-md-2 .info-box .progress-description {
  13737. font-size: 1rem;
  13738. display: block;
  13739. }
  13740. .col-xl-3 .info-box .progress-description, .col-lg-3 .info-box .progress-description, .col-md-3 .info-box .progress-description {
  13741. font-size: 1rem;
  13742. display: block;
  13743. }
  13744. }
  13745. .timeline {
  13746. position: relative;
  13747. padding: 0;
  13748. margin: 0 0 45px;
  13749. }
  13750. .timeline::before {
  13751. border-radius: 0.375rem;
  13752. position: absolute;
  13753. top: 0;
  13754. bottom: 0;
  13755. right: 31px;
  13756. width: 4px;
  13757. margin: 0;
  13758. content: "";
  13759. background-color: var(--bs-border-color);
  13760. }
  13761. .timeline > div::before, .timeline > div::after {
  13762. display: table;
  13763. content: "";
  13764. }
  13765. .timeline > div {
  13766. position: relative;
  13767. margin-left: 10px;
  13768. margin-bottom: 15px;
  13769. }
  13770. .timeline > div > .timeline-item {
  13771. box-shadow: 0 0 1px rgba(var(--bs-body-color-rgb), 0.125), 0 1px 3px rgba(var(--bs-body-color-rgb), 0.2);
  13772. border-radius: 0.375rem;
  13773. position: relative;
  13774. padding: 0;
  13775. margin-top: 0;
  13776. margin-left: 15px;
  13777. margin-right: 60px;
  13778. color: var(--bs-body-color);
  13779. background-color: var(--bs-body-bg);
  13780. }
  13781. .timeline > div > .timeline-item > .time {
  13782. float: left;
  13783. padding: 10px;
  13784. font-size: 12px;
  13785. color: var(--bs-secondary-color);
  13786. }
  13787. .timeline > div > .timeline-item > .timeline-header {
  13788. padding: 10px;
  13789. margin: 0;
  13790. font-size: 16px;
  13791. line-height: 1.1;
  13792. color: var(--bs-secondary-color);
  13793. border-bottom: 1px solid var(--bs-border-color);
  13794. }
  13795. .timeline > div > .timeline-item > .timeline-header > a {
  13796. font-weight: 600;
  13797. text-decoration: none;
  13798. }
  13799. .timeline > div > .timeline-item > .timeline-body,
  13800. .timeline > div > .timeline-item > .timeline-footer {
  13801. padding: 10px;
  13802. }
  13803. .timeline > div > .timeline-item > .timeline-body > img {
  13804. margin: 10px;
  13805. }
  13806. .timeline > div > .timeline-item > .timeline-body > dl,
  13807. .timeline > div > .timeline-item > .timeline-body ol,
  13808. .timeline > div > .timeline-item > .timeline-body ul {
  13809. margin: 0;
  13810. }
  13811. .timeline > div .timeline-icon {
  13812. position: absolute;
  13813. top: 0;
  13814. right: 18px;
  13815. width: 30px;
  13816. height: 30px;
  13817. font-size: 16px;
  13818. line-height: 30px;
  13819. text-align: center;
  13820. background-color: var(--bs-secondary-bg);
  13821. border-radius: 50%;
  13822. }
  13823. .timeline > .time-label > span {
  13824. border-radius: 4px;
  13825. display: inline-block;
  13826. padding: 5px;
  13827. font-weight: 600;
  13828. background-color: var(--bs-body-bg);
  13829. }
  13830. .timeline-inverse > div > .timeline-item {
  13831. box-shadow: none;
  13832. background-color: var(--bs-tertiary-bg);
  13833. border: 1px solid var(--bs-border-color);
  13834. }
  13835. .timeline-inverse > div > .timeline-item > .timeline-header {
  13836. border-bottom-color: var(--bs-border-color);
  13837. }
  13838. .direct-chat .card-body {
  13839. position: relative;
  13840. padding: 0;
  13841. overflow-x: hidden;
  13842. }
  13843. .direct-chat.chat-pane-open .direct-chat-contacts {
  13844. transform: translate(0, 0);
  13845. }
  13846. .direct-chat.timestamp-light .direct-chat-timestamp {
  13847. color: rgba(var(--bs-body-color-rgb), 0.65);
  13848. }
  13849. .direct-chat.timestamp-dark .direct-chat-timestamp {
  13850. color: rgba(var(--bs-body-color-rgb), 0.9);
  13851. }
  13852. .direct-chat-messages {
  13853. height: 250px;
  13854. padding: 10px;
  13855. overflow: auto;
  13856. transform: translate(0, 0);
  13857. }
  13858. .direct-chat-msg,
  13859. .direct-chat-text {
  13860. display: block;
  13861. }
  13862. .direct-chat-msg::after {
  13863. display: block;
  13864. clear: both;
  13865. content: "";
  13866. }
  13867. .direct-chat-msg {
  13868. margin-bottom: 10px;
  13869. }
  13870. .direct-chat-messages,
  13871. .direct-chat-contacts {
  13872. transition: transform 0.5s ease-in-out;
  13873. }
  13874. @media (prefers-reduced-motion: reduce) {
  13875. .direct-chat-messages,
  13876. .direct-chat-contacts {
  13877. transition: none;
  13878. }
  13879. }
  13880. .direct-chat-text {
  13881. border-radius: 0.5rem;
  13882. position: relative;
  13883. padding: 5px 10px;
  13884. margin: 5px 50px 0 0;
  13885. color: var(--bs-emphasis-color);
  13886. background-color: var(--bs-secondary-bg);
  13887. border: 1px solid var(--bs-border-color);
  13888. }
  13889. .direct-chat-text::after, .direct-chat-text::before {
  13890. position: absolute;
  13891. top: 15px;
  13892. left: 100%;
  13893. width: 0;
  13894. height: 0;
  13895. pointer-events: none;
  13896. content: " ";
  13897. border: solid transparent;
  13898. border-left-color: var(--bs-border-color);
  13899. }
  13900. .direct-chat-text::after {
  13901. margin-top: -5px;
  13902. border-width: 5px;
  13903. }
  13904. .direct-chat-text::before {
  13905. margin-top: -6px;
  13906. border-width: 6px;
  13907. }
  13908. .end .direct-chat-text {
  13909. margin-left: 50px;
  13910. margin-right: 0;
  13911. }
  13912. .end .direct-chat-text::after, .end .direct-chat-text::before {
  13913. left: auto;
  13914. right: 100%;
  13915. border-left-color: transparent;
  13916. border-right-color: var(--bs-border-color);
  13917. }
  13918. .direct-chat-img {
  13919. border-radius: 50%;
  13920. float: right;
  13921. width: 40px;
  13922. height: 40px;
  13923. }
  13924. .end .direct-chat-img {
  13925. float: left;
  13926. }
  13927. .direct-chat-infos {
  13928. display: block;
  13929. margin-bottom: 2px;
  13930. font-size: 0.875rem;
  13931. }
  13932. .direct-chat-name {
  13933. font-weight: 600;
  13934. }
  13935. .direct-chat-timestamp {
  13936. color: rgba(var(--bs-body-color-rgb), 0.75);
  13937. }
  13938. .direct-chat-contacts-open .direct-chat-contacts {
  13939. transform: translate(0, 0);
  13940. }
  13941. .direct-chat-contacts {
  13942. position: absolute;
  13943. top: 0;
  13944. bottom: 0;
  13945. width: 100%;
  13946. height: 250px;
  13947. overflow: auto;
  13948. color: var(--bs-body-bg);
  13949. background-color: var(--bs-body-color);
  13950. transform: translate(-101%, 0);
  13951. }
  13952. .direct-chat-contacts-light {
  13953. background-color: var(--bs-light-bg-subtle);
  13954. }
  13955. .direct-chat-contacts-light .contacts-list-name {
  13956. color: var(--bs-body-color);
  13957. }
  13958. .direct-chat-contacts-light .contacts-list-date {
  13959. color: var(--bs-secondary-color);
  13960. }
  13961. .direct-chat-contacts-light .contacts-list-msg {
  13962. color: var(--bs-secondary-color);
  13963. }
  13964. .contacts-list {
  13965. padding-right: 0;
  13966. list-style: none;
  13967. }
  13968. .contacts-list > li::after {
  13969. display: block;
  13970. clear: both;
  13971. content: "";
  13972. }
  13973. .contacts-list > li {
  13974. padding: 10px;
  13975. margin: 0;
  13976. text-decoration: none;
  13977. border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  13978. }
  13979. .contacts-list > li:last-of-type {
  13980. border-bottom: 0;
  13981. }
  13982. .contacts-list > li a {
  13983. text-decoration: none;
  13984. }
  13985. .contacts-list-img {
  13986. border-radius: 50%;
  13987. float: right;
  13988. width: 40px;
  13989. }
  13990. .contacts-list-info {
  13991. margin-right: 45px;
  13992. color: var(--bs-body-bg);
  13993. }
  13994. .contacts-list-name,
  13995. .contacts-list-status {
  13996. display: block;
  13997. }
  13998. .contacts-list-name {
  13999. font-weight: 600;
  14000. }
  14001. .contacts-list-status {
  14002. font-size: 0.875rem;
  14003. }
  14004. .contacts-list-date {
  14005. font-weight: 400;
  14006. color: var(--bs-secondary-bg);
  14007. }
  14008. .contacts-list-msg {
  14009. color: var(--bs-secondary-bg);
  14010. }
  14011. .end > .direct-chat-text {
  14012. color: var(--lte-direct-chat-color);
  14013. background-color: var(--lte-direct-chat-bg);
  14014. border-color: var(--lte-direct-chat-bg);
  14015. }
  14016. .end > .direct-chat-text::after, .end > .direct-chat-text::before {
  14017. border-right-color: var(--lte-direct-chat-bg);
  14018. }
  14019. .direct-chat-primary {
  14020. --lte-direct-chat-color: #fff;
  14021. --lte-direct-chat-bg: #0d6efd;
  14022. }
  14023. .direct-chat-secondary {
  14024. --lte-direct-chat-color: #fff;
  14025. --lte-direct-chat-bg: #6c757d;
  14026. }
  14027. .direct-chat-success {
  14028. --lte-direct-chat-color: #fff;
  14029. --lte-direct-chat-bg: #198754;
  14030. }
  14031. .direct-chat-info {
  14032. --lte-direct-chat-color: #000;
  14033. --lte-direct-chat-bg: #0dcaf0;
  14034. }
  14035. .direct-chat-warning {
  14036. --lte-direct-chat-color: #000;
  14037. --lte-direct-chat-bg: #ffc107;
  14038. }
  14039. .direct-chat-danger {
  14040. --lte-direct-chat-color: #fff;
  14041. --lte-direct-chat-bg: #dc3545;
  14042. }
  14043. .direct-chat-light {
  14044. --lte-direct-chat-color: #000;
  14045. --lte-direct-chat-bg: #f8f9fa;
  14046. }
  14047. .direct-chat-dark {
  14048. --lte-direct-chat-color: #fff;
  14049. --lte-direct-chat-bg: #212529;
  14050. }
  14051. .toast-primary {
  14052. --bs-toast-header-color: #fff;
  14053. --bs-toast-header-bg: #0d6efd;
  14054. --bs-toast-header-border-color: #0d6efd;
  14055. --bs-toast-border-color: #0d6efd;
  14056. --bs-toast-bg: var(--bs-primary-bg-subtle);
  14057. }
  14058. .toast-primary .btn-close {
  14059. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  14060. }
  14061. .toast-secondary {
  14062. --bs-toast-header-color: #fff;
  14063. --bs-toast-header-bg: #6c757d;
  14064. --bs-toast-header-border-color: #6c757d;
  14065. --bs-toast-border-color: #6c757d;
  14066. --bs-toast-bg: var(--bs-secondary-bg-subtle);
  14067. }
  14068. .toast-secondary .btn-close {
  14069. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  14070. }
  14071. .toast-success {
  14072. --bs-toast-header-color: #fff;
  14073. --bs-toast-header-bg: #198754;
  14074. --bs-toast-header-border-color: #198754;
  14075. --bs-toast-border-color: #198754;
  14076. --bs-toast-bg: var(--bs-success-bg-subtle);
  14077. }
  14078. .toast-success .btn-close {
  14079. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  14080. }
  14081. .toast-info {
  14082. --bs-toast-header-color: #000;
  14083. --bs-toast-header-bg: #0dcaf0;
  14084. --bs-toast-header-border-color: #0dcaf0;
  14085. --bs-toast-border-color: #0dcaf0;
  14086. --bs-toast-bg: var(--bs-info-bg-subtle);
  14087. }
  14088. .toast-warning {
  14089. --bs-toast-header-color: #000;
  14090. --bs-toast-header-bg: #ffc107;
  14091. --bs-toast-header-border-color: #ffc107;
  14092. --bs-toast-border-color: #ffc107;
  14093. --bs-toast-bg: var(--bs-warning-bg-subtle);
  14094. }
  14095. .toast-danger {
  14096. --bs-toast-header-color: #fff;
  14097. --bs-toast-header-bg: #dc3545;
  14098. --bs-toast-header-border-color: #dc3545;
  14099. --bs-toast-border-color: #dc3545;
  14100. --bs-toast-bg: var(--bs-danger-bg-subtle);
  14101. }
  14102. .toast-danger .btn-close {
  14103. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  14104. }
  14105. .toast-light {
  14106. --bs-toast-header-color: #000;
  14107. --bs-toast-header-bg: #f8f9fa;
  14108. --bs-toast-header-border-color: #f8f9fa;
  14109. --bs-toast-border-color: #f8f9fa;
  14110. --bs-toast-bg: var(--bs-light-bg-subtle);
  14111. }
  14112. .toast-dark {
  14113. --bs-toast-header-color: #fff;
  14114. --bs-toast-header-bg: #212529;
  14115. --bs-toast-header-border-color: #212529;
  14116. --bs-toast-border-color: #212529;
  14117. --bs-toast-bg: var(--bs-dark-bg-subtle);
  14118. }
  14119. .toast-dark .btn-close {
  14120. --bs-btn-close-filter: invert(1) grayscale(100%) brightness(200%);
  14121. }
  14122. [data-bs-theme=dark] .toast-info .btn-close {
  14123. --bs-btn-close-white-filter: none;
  14124. }
  14125. [data-bs-theme=dark] .toast-warning .btn-close {
  14126. --bs-btn-close-white-filter: none;
  14127. }
  14128. [data-bs-theme=dark] .toast-light .btn-close {
  14129. --bs-btn-close-white-filter: none;
  14130. }
  14131. .login-logo,
  14132. .register-logo {
  14133. margin-bottom: 0.9rem;
  14134. font-size: 2.1rem;
  14135. font-weight: 300;
  14136. text-align: center;
  14137. }
  14138. .login-logo a,
  14139. .register-logo a {
  14140. color: var(--bs-secondary-color);
  14141. text-decoration: none;
  14142. }
  14143. .login-page,
  14144. .register-page {
  14145. display: flex;
  14146. flex-direction: column;
  14147. align-items: center;
  14148. justify-content: center;
  14149. min-height: 100vh;
  14150. }
  14151. .login-box,
  14152. .register-box {
  14153. width: 360px;
  14154. }
  14155. @media (max-width: 576px) {
  14156. .login-box,
  14157. .register-box {
  14158. width: 90%;
  14159. margin-top: 0.5rem;
  14160. }
  14161. }
  14162. .login-box .card,
  14163. .register-box .card {
  14164. margin-bottom: 0;
  14165. }
  14166. .login-card-body,
  14167. .register-card-body {
  14168. padding: 20px;
  14169. color: var(--bs-secondary-color);
  14170. background-color: var(--bs-body-bg);
  14171. border-top: 0;
  14172. }
  14173. .login-card-body .input-group .form-control:focus,
  14174. .register-card-body .input-group .form-control:focus {
  14175. box-shadow: none;
  14176. }
  14177. .login-card-body .input-group .form-control:focus ~ .input-group-prepend .input-group-text,
  14178. .login-card-body .input-group .form-control:focus ~ .input-group-append .input-group-text,
  14179. .register-card-body .input-group .form-control:focus ~ .input-group-prepend .input-group-text,
  14180. .register-card-body .input-group .form-control:focus ~ .input-group-append .input-group-text {
  14181. border-color: rgb(134, 182.5, 254);
  14182. }
  14183. .login-card-body .input-group .form-control.is-valid:focus,
  14184. .register-card-body .input-group .form-control.is-valid:focus {
  14185. box-shadow: none;
  14186. }
  14187. .login-card-body .input-group .form-control.is-valid ~ .input-group-prepend .input-group-text,
  14188. .login-card-body .input-group .form-control.is-valid ~ .input-group-append .input-group-text,
  14189. .register-card-body .input-group .form-control.is-valid ~ .input-group-prepend .input-group-text,
  14190. .register-card-body .input-group .form-control.is-valid ~ .input-group-append .input-group-text {
  14191. border-color: #198754;
  14192. }
  14193. .login-card-body .input-group .form-control.is-invalid:focus,
  14194. .register-card-body .input-group .form-control.is-invalid:focus {
  14195. box-shadow: none;
  14196. }
  14197. .login-card-body .input-group .form-control.is-invalid ~ .input-group-append .input-group-text,
  14198. .register-card-body .input-group .form-control.is-invalid ~ .input-group-append .input-group-text {
  14199. border-color: #dc3545;
  14200. }
  14201. .login-card-body .input-group .input-group-text,
  14202. .register-card-body .input-group .input-group-text {
  14203. color: var(--bs-secondary-color);
  14204. background-color: transparent;
  14205. border-top-left-radius: 0.375rem;
  14206. border-bottom-left-radius: 0.375rem;
  14207. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  14208. }
  14209. @media (prefers-reduced-motion: reduce) {
  14210. .login-card-body .input-group .input-group-text,
  14211. .register-card-body .input-group .input-group-text {
  14212. transition: none;
  14213. }
  14214. }
  14215. .login-box-msg,
  14216. .register-box-msg {
  14217. padding: 0 20px 20px;
  14218. margin: 0;
  14219. text-align: center;
  14220. }
  14221. .social-auth-links {
  14222. margin: 10px 0;
  14223. }
  14224. .lockscreen .lockscreen-name {
  14225. font-weight: 600;
  14226. text-align: center;
  14227. }
  14228. .lockscreen .lockscreen-logo {
  14229. margin-bottom: 25px;
  14230. font-size: 35px;
  14231. font-weight: 300;
  14232. text-align: center;
  14233. }
  14234. .lockscreen .lockscreen-logo a {
  14235. color: var(--bs-emphasis-color);
  14236. text-decoration: none;
  14237. }
  14238. .lockscreen .lockscreen-wrapper {
  14239. max-width: 400px;
  14240. margin: 0 auto;
  14241. margin-top: 10%;
  14242. }
  14243. .lockscreen .lockscreen-item {
  14244. position: relative;
  14245. width: 290px;
  14246. padding: 0;
  14247. margin: 10px auto 30px;
  14248. background-color: var(--bs-body-bg);
  14249. border-radius: 4px;
  14250. }
  14251. .lockscreen .lockscreen-image {
  14252. position: absolute;
  14253. top: -25px;
  14254. right: -10px;
  14255. z-index: 10;
  14256. padding: 5px;
  14257. background-color: var(--bs-body-bg);
  14258. border-radius: 50%;
  14259. }
  14260. .lockscreen .lockscreen-image > img {
  14261. border-radius: 50%;
  14262. width: 70px;
  14263. height: 70px;
  14264. }
  14265. .lockscreen .lockscreen-credentials {
  14266. margin-right: 70px;
  14267. }
  14268. .lockscreen .lockscreen-credentials .form-control {
  14269. border: 0;
  14270. }
  14271. .lockscreen .lockscreen-credentials .btn {
  14272. padding: 0 10px;
  14273. border: 0;
  14274. }
  14275. .lockscreen .lockscreen-footer {
  14276. margin-top: 10px;
  14277. }
  14278. .img-size-64,
  14279. .img-size-50,
  14280. .img-size-32 {
  14281. height: auto;
  14282. }
  14283. .img-size-64 {
  14284. width: 64px;
  14285. }
  14286. .img-size-50 {
  14287. width: 50px;
  14288. }
  14289. .img-size-32 {
  14290. width: 32px;
  14291. }
  14292. /* ==========================================================================
  14293. AdminLTE Accessibility Styles - WCAG 2.1 AA Compliance
  14294. ========================================================================== */
  14295. /* Skip Links - WCAG 2.4.1: Bypass Blocks */
  14296. .skip-link {
  14297. position: absolute;
  14298. top: -40px;
  14299. right: 6px;
  14300. z-index: 999999;
  14301. padding: 8px 16px;
  14302. font-weight: 600;
  14303. color: var(--bs-white);
  14304. text-decoration: none;
  14305. background: var(--bs-primary);
  14306. }
  14307. .skip-link:focus {
  14308. top: 0;
  14309. outline: 3px solid var(--bs-warning);
  14310. outline-offset: 2px;
  14311. }
  14312. .skip-link:hover {
  14313. color: var(--bs-white);
  14314. text-decoration: none;
  14315. background: var(--bs-primary-emphasis);
  14316. }
  14317. /* Enhanced Focus Indicators - WCAG 2.4.7: Focus Visible */
  14318. .focus-enhanced:focus {
  14319. outline: 3px solid var(--bs-focus-ring-color, #0d6efd);
  14320. outline-offset: 2px;
  14321. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  14322. }
  14323. /* High Contrast Mode Support */
  14324. @media (prefers-contrast: high) {
  14325. .card {
  14326. border: 2px solid;
  14327. }
  14328. .btn {
  14329. border-width: 2px;
  14330. }
  14331. .nav-link {
  14332. border: 1px solid transparent;
  14333. }
  14334. .nav-link:hover, .nav-link:focus {
  14335. border-color: currentcolor;
  14336. }
  14337. }
  14338. /* Reduced Motion Support - WCAG 2.3.3: Animation from Interactions */
  14339. @media (prefers-reduced-motion: reduce) {
  14340. *,
  14341. *::before,
  14342. *::after {
  14343. transition-duration: 0.01ms !important;
  14344. animation-duration: 0.01ms !important;
  14345. animation-iteration-count: 1 !important;
  14346. scroll-behavior: auto !important;
  14347. }
  14348. .fade {
  14349. opacity: 1 !important;
  14350. /* stylelint-disable-next-line property-disallowed-list */
  14351. transition: none !important;
  14352. }
  14353. .collapse {
  14354. /* stylelint-disable-next-line property-disallowed-list */
  14355. transition: none !important;
  14356. }
  14357. .modal.fade .modal-dialog {
  14358. transform: none !important;
  14359. }
  14360. }
  14361. /* Screen Reader Only Content */
  14362. .sr-only {
  14363. position: absolute !important;
  14364. width: 1px !important;
  14365. height: 1px !important;
  14366. padding: 0 !important;
  14367. margin: -1px !important;
  14368. overflow: hidden !important;
  14369. clip: rect(0, 0, 0, 0) !important;
  14370. white-space: nowrap !important;
  14371. border: 0 !important;
  14372. }
  14373. .sr-only-focusable:focus {
  14374. position: static !important;
  14375. width: auto !important;
  14376. height: auto !important;
  14377. padding: inherit !important;
  14378. margin: inherit !important;
  14379. overflow: visible !important;
  14380. clip: auto !important;
  14381. white-space: normal !important;
  14382. }
  14383. /* Focus Trap Utilities */
  14384. .focus-trap:focus {
  14385. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  14386. }
  14387. /* Accessible Color Combinations - WCAG 1.4.3: Contrast (Minimum) */
  14388. .text-accessible-primary {
  14389. color: #003d82; /* 4.5:1 contrast on white */
  14390. }
  14391. .text-accessible-success {
  14392. color: #0f5132; /* 4.5:1 contrast on white */
  14393. }
  14394. .text-accessible-danger {
  14395. color: #842029; /* 4.5:1 contrast on white */
  14396. }
  14397. .text-accessible-warning {
  14398. color: #664d03; /* 4.5:1 contrast on white */
  14399. }
  14400. /* ARIA Live Regions */
  14401. .live-region {
  14402. position: absolute;
  14403. right: -10000px;
  14404. width: 1px;
  14405. height: 1px;
  14406. overflow: hidden;
  14407. }
  14408. .live-region.live-region-visible {
  14409. position: static;
  14410. right: auto;
  14411. width: auto;
  14412. height: auto;
  14413. overflow: visible;
  14414. }
  14415. /* Enhanced Error States - WCAG 3.3.1: Error Identification */
  14416. .form-control.is-invalid {
  14417. border-color: var(--bs-danger);
  14418. }
  14419. .form-control.is-invalid:focus {
  14420. border-color: var(--bs-danger);
  14421. box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  14422. }
  14423. .invalid-feedback {
  14424. display: block;
  14425. width: 100%;
  14426. margin-top: 0.25rem;
  14427. font-size: 0.875em;
  14428. color: var(--bs-danger);
  14429. }
  14430. .invalid-feedback[role=alert] {
  14431. font-weight: 600;
  14432. }
  14433. /* Target Size - WCAG 2.5.8: Target Size (Minimum) */
  14434. .touch-target {
  14435. min-width: 44px;
  14436. min-height: 44px;
  14437. }
  14438. .touch-target.touch-target-small {
  14439. min-width: 24px;
  14440. min-height: 24px;
  14441. }
  14442. /* Table Accessibility */
  14443. .table-accessible th {
  14444. font-weight: 600;
  14445. background-color: var(--bs-secondary-bg);
  14446. }
  14447. .table-accessible th[scope=col] {
  14448. border-bottom: 2px solid var(--bs-border-color);
  14449. }
  14450. .table-accessible th[scope=row] {
  14451. border-left: 2px solid var(--bs-border-color);
  14452. }
  14453. .table-accessible caption {
  14454. padding: 0.75rem;
  14455. font-weight: 600;
  14456. color: var(--bs-secondary);
  14457. text-align: right;
  14458. caption-side: top;
  14459. }
  14460. /* Navigation Landmarks */
  14461. nav[role=navigation]:not([aria-label]):not([aria-labelledby])::before {
  14462. position: absolute;
  14463. right: -10000px;
  14464. content: "Navigation";
  14465. }
  14466. /* Form Fieldset Styling */
  14467. fieldset {
  14468. padding: 1rem;
  14469. margin-bottom: 1rem;
  14470. border: 1px solid var(--bs-border-color);
  14471. }
  14472. fieldset legend {
  14473. padding: 0 0.5rem;
  14474. margin-bottom: 0.5rem;
  14475. font-size: 1.1em;
  14476. font-weight: 600;
  14477. }
  14478. /* Loading States */
  14479. .loading[aria-busy=true] {
  14480. position: relative;
  14481. pointer-events: none;
  14482. }
  14483. .loading[aria-busy=true]::after {
  14484. position: absolute;
  14485. top: 50%;
  14486. right: 50%;
  14487. width: 20px;
  14488. height: 20px;
  14489. margin-top: -10px;
  14490. margin-right: -10px;
  14491. content: "";
  14492. border: 2px solid var(--bs-primary);
  14493. border-top-color: transparent;
  14494. animation: spin 1s linear infinite;
  14495. }
  14496. @media (prefers-reduced-motion: reduce) {
  14497. .loading[aria-busy=true]::after {
  14498. border-top-color: var(--bs-primary);
  14499. animation: none;
  14500. }
  14501. }
  14502. @keyframes spin {
  14503. to {
  14504. transform: rotate(-360deg);
  14505. }
  14506. }
  14507. /* Dark Mode Accessibility */
  14508. [data-bs-theme=dark] .text-accessible-primary {
  14509. color: #6ea8fe;
  14510. }
  14511. [data-bs-theme=dark] .text-accessible-success {
  14512. color: #75b798;
  14513. }
  14514. [data-bs-theme=dark] .text-accessible-danger {
  14515. color: #f1aeb5;
  14516. }
  14517. [data-bs-theme=dark] .text-accessible-warning {
  14518. color: #ffda6a;
  14519. }
  14520. /* Print Accessibility */
  14521. @media print {
  14522. .skip-link,
  14523. .btn,
  14524. .nav-link {
  14525. color: #000 !important;
  14526. background: transparent !important;
  14527. border: 1px solid #000 !important;
  14528. }
  14529. a[href^=http]::after {
  14530. font-size: 0.8em;
  14531. content: " (" attr(href) ")";
  14532. }
  14533. }
  14534. /*# sourceMappingURL=adminlte.rtl.css.map */