styles.css 244 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244
  1. @charset "UTF-8";
  2. /*!
  3. * Start Bootstrap - SB Admin v7.0.7 (https://startbootstrap.com/template/sb-admin)
  4. * Copyright 2013-2023 Start Bootstrap
  5. * Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-sb-admin/blob/master/LICENSE)
  6. */
  7. /*!
  8. * Bootstrap v5.2.3 (https://getbootstrap.com/)
  9. * Copyright 2011-2022 The Bootstrap Authors
  10. * Copyright 2011-2022 Twitter, Inc.
  11. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  12. */
  13. :root {
  14. --bs-blue: #0d6efd;
  15. --bs-indigo: #6610f2;
  16. --bs-purple: #6f42c1;
  17. --bs-pink: #d63384;
  18. --bs-red: #dc3545;
  19. --bs-orange: #fd7e14;
  20. --bs-yellow: #ffc107;
  21. --bs-green: #198754;
  22. --bs-teal: #20c997;
  23. --bs-cyan: #0dcaf0;
  24. --bs-black: #000;
  25. --bs-white: #fff;
  26. --bs-gray: #6c757d;
  27. --bs-gray-dark: #343a40;
  28. --bs-gray-100: #f8f9fa;
  29. --bs-gray-200: #e9ecef;
  30. --bs-gray-300: #dee2e6;
  31. --bs-gray-400: #ced4da;
  32. --bs-gray-500: #adb5bd;
  33. --bs-gray-600: #6c757d;
  34. --bs-gray-700: #495057;
  35. --bs-gray-800: #343a40;
  36. --bs-gray-900: #212529;
  37. --bs-primary: #0d6efd;
  38. --bs-secondary: #6c757d;
  39. --bs-success: #198754;
  40. --bs-info: #0dcaf0;
  41. --bs-warning: #ffc107;
  42. --bs-danger: #dc3545;
  43. --bs-light: #f8f9fa;
  44. --bs-dark: #212529;
  45. --bs-primary-rgb: 13, 110, 253;
  46. --bs-secondary-rgb: 108, 117, 125;
  47. --bs-success-rgb: 25, 135, 84;
  48. --bs-info-rgb: 13, 202, 240;
  49. --bs-warning-rgb: 255, 193, 7;
  50. --bs-danger-rgb: 220, 53, 69;
  51. --bs-light-rgb: 248, 249, 250;
  52. --bs-dark-rgb: 33, 37, 41;
  53. --bs-white-rgb: 255, 255, 255;
  54. --bs-black-rgb: 0, 0, 0;
  55. --bs-body-color-rgb: 33, 37, 41;
  56. --bs-body-bg-rgb: 255, 255, 255;
  57. --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  58. --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  59. --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  60. --bs-body-font-family: var(--bs-font-sans-serif);
  61. --bs-body-font-size: 1rem;
  62. --bs-body-font-weight: 400;
  63. --bs-body-line-height: 1.5;
  64. --bs-body-color: #212529;
  65. --bs-body-bg: #fff;
  66. --bs-border-width: 1px;
  67. --bs-border-style: solid;
  68. --bs-border-color: #dee2e6;
  69. --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  70. --bs-border-radius: 0.375rem;
  71. --bs-border-radius-sm: 0.25rem;
  72. --bs-border-radius-lg: 0.5rem;
  73. --bs-border-radius-xl: 1rem;
  74. --bs-border-radius-2xl: 2rem;
  75. --bs-border-radius-pill: 50rem;
  76. --bs-link-color: #0d6efd;
  77. --bs-link-hover-color: #0a58ca;
  78. --bs-code-color: #d63384;
  79. --bs-highlight-bg: #fff3cd;
  80. }
  81. *,
  82. *::before,
  83. *::after {
  84. box-sizing: border-box;
  85. }
  86. @media (prefers-reduced-motion: no-preference) {
  87. :root {
  88. scroll-behavior: smooth;
  89. }
  90. }
  91. body {
  92. margin: 0;
  93. font-family: var(--bs-body-font-family);
  94. font-size: var(--bs-body-font-size);
  95. font-weight: var(--bs-body-font-weight);
  96. line-height: var(--bs-body-line-height);
  97. color: var(--bs-body-color);
  98. text-align: var(--bs-body-text-align);
  99. background-color: var(--bs-body-bg);
  100. -webkit-text-size-adjust: 100%;
  101. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  102. }
  103. hr {
  104. margin: 1rem 0;
  105. color: inherit;
  106. border: 0;
  107. border-top: 1px solid;
  108. opacity: 0.25;
  109. }
  110. h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  111. margin-top: 0;
  112. margin-bottom: 0.5rem;
  113. font-weight: 500;
  114. line-height: 1.2;
  115. }
  116. h1, .h1 {
  117. font-size: calc(1.375rem + 1.5vw);
  118. }
  119. @media (min-width: 1200px) {
  120. h1, .h1 {
  121. font-size: 2.5rem;
  122. }
  123. }
  124. h2, .h2 {
  125. font-size: calc(1.325rem + 0.9vw);
  126. }
  127. @media (min-width: 1200px) {
  128. h2, .h2 {
  129. font-size: 2rem;
  130. }
  131. }
  132. h3, .h3 {
  133. font-size: calc(1.3rem + 0.6vw);
  134. }
  135. @media (min-width: 1200px) {
  136. h3, .h3 {
  137. font-size: 1.75rem;
  138. }
  139. }
  140. h4, .h4 {
  141. font-size: calc(1.275rem + 0.3vw);
  142. }
  143. @media (min-width: 1200px) {
  144. h4, .h4 {
  145. font-size: 1.5rem;
  146. }
  147. }
  148. h5, .h5 {
  149. font-size: 1.25rem;
  150. }
  151. h6, .h6 {
  152. font-size: 1rem;
  153. }
  154. p {
  155. margin-top: 0;
  156. margin-bottom: 1rem;
  157. }
  158. abbr[title] {
  159. -webkit-text-decoration: underline dotted;
  160. text-decoration: underline dotted;
  161. cursor: help;
  162. -webkit-text-decoration-skip-ink: none;
  163. text-decoration-skip-ink: none;
  164. }
  165. address {
  166. margin-bottom: 1rem;
  167. font-style: normal;
  168. line-height: inherit;
  169. }
  170. ol,
  171. ul {
  172. padding-left: 2rem;
  173. }
  174. ol,
  175. ul,
  176. dl {
  177. margin-top: 0;
  178. margin-bottom: 1rem;
  179. }
  180. ol ol,
  181. ul ul,
  182. ol ul,
  183. ul ol {
  184. margin-bottom: 0;
  185. }
  186. dt {
  187. font-weight: 700;
  188. }
  189. dd {
  190. margin-bottom: 0.5rem;
  191. margin-left: 0;
  192. }
  193. blockquote {
  194. margin: 0 0 1rem;
  195. }
  196. b,
  197. strong {
  198. font-weight: bolder;
  199. }
  200. small, .small {
  201. font-size: 0.875em;
  202. }
  203. mark, .mark {
  204. padding: 0.1875em;
  205. background-color: var(--bs-highlight-bg);
  206. }
  207. sub,
  208. sup {
  209. position: relative;
  210. font-size: 0.75em;
  211. line-height: 0;
  212. vertical-align: baseline;
  213. }
  214. sub {
  215. bottom: -0.25em;
  216. }
  217. sup {
  218. top: -0.5em;
  219. }
  220. a {
  221. color: var(--bs-link-color);
  222. text-decoration: underline;
  223. }
  224. a:hover {
  225. color: var(--bs-link-hover-color);
  226. }
  227. a:not([href]):not([class]), a:not([href]):not([class]):hover {
  228. color: inherit;
  229. text-decoration: none;
  230. }
  231. pre,
  232. code,
  233. kbd,
  234. samp {
  235. font-family: var(--bs-font-monospace);
  236. font-size: 1em;
  237. }
  238. pre {
  239. display: block;
  240. margin-top: 0;
  241. margin-bottom: 1rem;
  242. overflow: auto;
  243. font-size: 0.875em;
  244. }
  245. pre code {
  246. font-size: inherit;
  247. color: inherit;
  248. word-break: normal;
  249. }
  250. code {
  251. font-size: 0.875em;
  252. color: var(--bs-code-color);
  253. word-wrap: break-word;
  254. }
  255. a > code {
  256. color: inherit;
  257. }
  258. kbd {
  259. padding: 0.1875rem 0.375rem;
  260. font-size: 0.875em;
  261. color: var(--bs-body-bg);
  262. background-color: var(--bs-body-color);
  263. border-radius: 0.25rem;
  264. }
  265. kbd kbd {
  266. padding: 0;
  267. font-size: 1em;
  268. }
  269. figure {
  270. margin: 0 0 1rem;
  271. }
  272. img,
  273. svg {
  274. vertical-align: middle;
  275. }
  276. table {
  277. caption-side: bottom;
  278. border-collapse: collapse;
  279. }
  280. caption {
  281. padding-top: 0.5rem;
  282. padding-bottom: 0.5rem;
  283. color: #6c757d;
  284. text-align: left;
  285. }
  286. th {
  287. text-align: inherit;
  288. text-align: -webkit-match-parent;
  289. }
  290. thead,
  291. tbody,
  292. tfoot,
  293. tr,
  294. td,
  295. th {
  296. border-color: inherit;
  297. border-style: solid;
  298. border-width: 0;
  299. }
  300. label {
  301. display: inline-block;
  302. }
  303. button {
  304. border-radius: 0;
  305. }
  306. button:focus:not(:focus-visible) {
  307. outline: 0;
  308. }
  309. input,
  310. button,
  311. select,
  312. optgroup,
  313. textarea {
  314. margin: 0;
  315. font-family: inherit;
  316. font-size: inherit;
  317. line-height: inherit;
  318. }
  319. button,
  320. select {
  321. text-transform: none;
  322. }
  323. [role=button] {
  324. cursor: pointer;
  325. }
  326. select {
  327. word-wrap: normal;
  328. }
  329. select:disabled {
  330. opacity: 1;
  331. }
  332. [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  333. display: none !important;
  334. }
  335. button,
  336. [type=button],
  337. [type=reset],
  338. [type=submit] {
  339. -webkit-appearance: button;
  340. }
  341. button:not(:disabled),
  342. [type=button]:not(:disabled),
  343. [type=reset]:not(:disabled),
  344. [type=submit]:not(:disabled) {
  345. cursor: pointer;
  346. }
  347. ::-moz-focus-inner {
  348. padding: 0;
  349. border-style: none;
  350. }
  351. textarea {
  352. resize: vertical;
  353. }
  354. fieldset {
  355. min-width: 0;
  356. padding: 0;
  357. margin: 0;
  358. border: 0;
  359. }
  360. legend {
  361. float: left;
  362. width: 100%;
  363. padding: 0;
  364. margin-bottom: 0.5rem;
  365. font-size: calc(1.275rem + 0.3vw);
  366. line-height: inherit;
  367. }
  368. @media (min-width: 1200px) {
  369. legend {
  370. font-size: 1.5rem;
  371. }
  372. }
  373. legend + * {
  374. clear: left;
  375. }
  376. ::-webkit-datetime-edit-fields-wrapper,
  377. ::-webkit-datetime-edit-text,
  378. ::-webkit-datetime-edit-minute,
  379. ::-webkit-datetime-edit-hour-field,
  380. ::-webkit-datetime-edit-day-field,
  381. ::-webkit-datetime-edit-month-field,
  382. ::-webkit-datetime-edit-year-field {
  383. padding: 0;
  384. }
  385. ::-webkit-inner-spin-button {
  386. height: auto;
  387. }
  388. [type=search] {
  389. outline-offset: -2px;
  390. -webkit-appearance: textfield;
  391. }
  392. /* rtl:raw:
  393. [type="tel"],
  394. [type="url"],
  395. [type="email"],
  396. [type="number"] {
  397. direction: ltr;
  398. }
  399. */
  400. ::-webkit-search-decoration {
  401. -webkit-appearance: none;
  402. }
  403. ::-webkit-color-swatch-wrapper {
  404. padding: 0;
  405. }
  406. ::file-selector-button {
  407. font: inherit;
  408. -webkit-appearance: button;
  409. }
  410. output {
  411. display: inline-block;
  412. }
  413. iframe {
  414. border: 0;
  415. }
  416. summary {
  417. display: list-item;
  418. cursor: pointer;
  419. }
  420. progress {
  421. vertical-align: baseline;
  422. }
  423. [hidden] {
  424. display: none !important;
  425. }
  426. .lead {
  427. font-size: 1.25rem;
  428. font-weight: 300;
  429. }
  430. .display-1 {
  431. font-size: calc(1.625rem + 4.5vw);
  432. font-weight: 300;
  433. line-height: 1.2;
  434. }
  435. @media (min-width: 1200px) {
  436. .display-1 {
  437. font-size: 5rem;
  438. }
  439. }
  440. .display-2 {
  441. font-size: calc(1.575rem + 3.9vw);
  442. font-weight: 300;
  443. line-height: 1.2;
  444. }
  445. @media (min-width: 1200px) {
  446. .display-2 {
  447. font-size: 4.5rem;
  448. }
  449. }
  450. .display-3 {
  451. font-size: calc(1.525rem + 3.3vw);
  452. font-weight: 300;
  453. line-height: 1.2;
  454. }
  455. @media (min-width: 1200px) {
  456. .display-3 {
  457. font-size: 4rem;
  458. }
  459. }
  460. .display-4 {
  461. font-size: calc(1.475rem + 2.7vw);
  462. font-weight: 300;
  463. line-height: 1.2;
  464. }
  465. @media (min-width: 1200px) {
  466. .display-4 {
  467. font-size: 3.5rem;
  468. }
  469. }
  470. .display-5 {
  471. font-size: calc(1.425rem + 2.1vw);
  472. font-weight: 300;
  473. line-height: 1.2;
  474. }
  475. @media (min-width: 1200px) {
  476. .display-5 {
  477. font-size: 3rem;
  478. }
  479. }
  480. .display-6 {
  481. font-size: calc(1.375rem + 1.5vw);
  482. font-weight: 300;
  483. line-height: 1.2;
  484. }
  485. @media (min-width: 1200px) {
  486. .display-6 {
  487. font-size: 2.5rem;
  488. }
  489. }
  490. .list-unstyled {
  491. padding-left: 0;
  492. list-style: none;
  493. }
  494. .list-inline {
  495. padding-left: 0;
  496. list-style: none;
  497. }
  498. .list-inline-item {
  499. display: inline-block;
  500. }
  501. .list-inline-item:not(:last-child) {
  502. margin-right: 0.5rem;
  503. }
  504. .initialism {
  505. font-size: 0.875em;
  506. text-transform: uppercase;
  507. }
  508. .blockquote {
  509. margin-bottom: 1rem;
  510. font-size: 1.25rem;
  511. }
  512. .blockquote > :last-child {
  513. margin-bottom: 0;
  514. }
  515. .blockquote-footer {
  516. margin-top: -1rem;
  517. margin-bottom: 1rem;
  518. font-size: 0.875em;
  519. color: #6c757d;
  520. }
  521. .blockquote-footer::before {
  522. content: "— ";
  523. }
  524. .img-fluid {
  525. max-width: 100%;
  526. height: auto;
  527. }
  528. .img-thumbnail {
  529. padding: 0.25rem;
  530. background-color: #fff;
  531. border: 1px solid var(--bs-border-color);
  532. border-radius: 0.375rem;
  533. max-width: 100%;
  534. height: auto;
  535. }
  536. .figure {
  537. display: inline-block;
  538. }
  539. .figure-img {
  540. margin-bottom: 0.5rem;
  541. line-height: 1;
  542. }
  543. .figure-caption {
  544. font-size: 0.875em;
  545. color: #6c757d;
  546. }
  547. .container,
  548. .container-fluid,
  549. .container-xxl,
  550. .container-xl,
  551. .container-lg,
  552. .container-md,
  553. .container-sm {
  554. --bs-gutter-x: 1.5rem;
  555. --bs-gutter-y: 0;
  556. width: 100%;
  557. padding-right: calc(var(--bs-gutter-x) * 0.5);
  558. padding-left: calc(var(--bs-gutter-x) * 0.5);
  559. margin-right: auto;
  560. margin-left: auto;
  561. }
  562. @media (min-width: 576px) {
  563. .container-sm, .container {
  564. max-width: 540px;
  565. }
  566. }
  567. @media (min-width: 768px) {
  568. .container-md, .container-sm, .container {
  569. max-width: 720px;
  570. }
  571. }
  572. @media (min-width: 992px) {
  573. .container-lg, .container-md, .container-sm, .container {
  574. max-width: 960px;
  575. }
  576. }
  577. @media (min-width: 1200px) {
  578. .container-xl, .container-lg, .container-md, .container-sm, .container {
  579. max-width: 1140px;
  580. }
  581. }
  582. @media (min-width: 1400px) {
  583. .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
  584. max-width: 1320px;
  585. }
  586. }
  587. .row {
  588. --bs-gutter-x: 1.5rem;
  589. --bs-gutter-y: 0;
  590. display: flex;
  591. flex-wrap: wrap;
  592. margin-top: calc(-1 * var(--bs-gutter-y));
  593. margin-right: calc(-0.5 * var(--bs-gutter-x));
  594. margin-left: calc(-0.5 * var(--bs-gutter-x));
  595. }
  596. .row > * {
  597. flex-shrink: 0;
  598. width: 100%;
  599. max-width: 100%;
  600. padding-right: calc(var(--bs-gutter-x) * 0.5);
  601. padding-left: calc(var(--bs-gutter-x) * 0.5);
  602. margin-top: var(--bs-gutter-y);
  603. }
  604. .col {
  605. flex: 1 0 0%;
  606. }
  607. .row-cols-auto > * {
  608. flex: 0 0 auto;
  609. width: auto;
  610. }
  611. .row-cols-1 > * {
  612. flex: 0 0 auto;
  613. width: 100%;
  614. }
  615. .row-cols-2 > * {
  616. flex: 0 0 auto;
  617. width: 50%;
  618. }
  619. .row-cols-3 > * {
  620. flex: 0 0 auto;
  621. width: 33.3333333333%;
  622. }
  623. .row-cols-4 > * {
  624. flex: 0 0 auto;
  625. width: 25%;
  626. }
  627. .row-cols-5 > * {
  628. flex: 0 0 auto;
  629. width: 20%;
  630. }
  631. .row-cols-6 > * {
  632. flex: 0 0 auto;
  633. width: 16.6666666667%;
  634. }
  635. .col-auto {
  636. flex: 0 0 auto;
  637. width: auto;
  638. }
  639. .col-1 {
  640. flex: 0 0 auto;
  641. width: 8.33333333%;
  642. }
  643. .col-2 {
  644. flex: 0 0 auto;
  645. width: 16.66666667%;
  646. }
  647. .col-3 {
  648. flex: 0 0 auto;
  649. width: 25%;
  650. }
  651. .col-4 {
  652. flex: 0 0 auto;
  653. width: 33.33333333%;
  654. }
  655. .col-5 {
  656. flex: 0 0 auto;
  657. width: 41.66666667%;
  658. }
  659. .col-6 {
  660. flex: 0 0 auto;
  661. width: 50%;
  662. }
  663. .col-7 {
  664. flex: 0 0 auto;
  665. width: 58.33333333%;
  666. }
  667. .col-8 {
  668. flex: 0 0 auto;
  669. width: 66.66666667%;
  670. }
  671. .col-9 {
  672. flex: 0 0 auto;
  673. width: 75%;
  674. }
  675. .col-10 {
  676. flex: 0 0 auto;
  677. width: 83.33333333%;
  678. }
  679. .col-11 {
  680. flex: 0 0 auto;
  681. width: 91.66666667%;
  682. }
  683. .col-12 {
  684. flex: 0 0 auto;
  685. width: 100%;
  686. }
  687. .offset-1 {
  688. margin-left: 8.33333333%;
  689. }
  690. .offset-2 {
  691. margin-left: 16.66666667%;
  692. }
  693. .offset-3 {
  694. margin-left: 25%;
  695. }
  696. .offset-4 {
  697. margin-left: 33.33333333%;
  698. }
  699. .offset-5 {
  700. margin-left: 41.66666667%;
  701. }
  702. .offset-6 {
  703. margin-left: 50%;
  704. }
  705. .offset-7 {
  706. margin-left: 58.33333333%;
  707. }
  708. .offset-8 {
  709. margin-left: 66.66666667%;
  710. }
  711. .offset-9 {
  712. margin-left: 75%;
  713. }
  714. .offset-10 {
  715. margin-left: 83.33333333%;
  716. }
  717. .offset-11 {
  718. margin-left: 91.66666667%;
  719. }
  720. .g-0,
  721. .gx-0 {
  722. --bs-gutter-x: 0;
  723. }
  724. .g-0,
  725. .gy-0 {
  726. --bs-gutter-y: 0;
  727. }
  728. .g-1,
  729. .gx-1 {
  730. --bs-gutter-x: 0.25rem;
  731. }
  732. .g-1,
  733. .gy-1 {
  734. --bs-gutter-y: 0.25rem;
  735. }
  736. .g-2,
  737. .gx-2 {
  738. --bs-gutter-x: 0.5rem;
  739. }
  740. .g-2,
  741. .gy-2 {
  742. --bs-gutter-y: 0.5rem;
  743. }
  744. .g-3,
  745. .gx-3 {
  746. --bs-gutter-x: 1rem;
  747. }
  748. .g-3,
  749. .gy-3 {
  750. --bs-gutter-y: 1rem;
  751. }
  752. .g-4,
  753. .gx-4 {
  754. --bs-gutter-x: 1.5rem;
  755. }
  756. .g-4,
  757. .gy-4 {
  758. --bs-gutter-y: 1.5rem;
  759. }
  760. .g-5,
  761. .gx-5 {
  762. --bs-gutter-x: 3rem;
  763. }
  764. .g-5,
  765. .gy-5 {
  766. --bs-gutter-y: 3rem;
  767. }
  768. @media (min-width: 576px) {
  769. .col-sm {
  770. flex: 1 0 0%;
  771. }
  772. .row-cols-sm-auto > * {
  773. flex: 0 0 auto;
  774. width: auto;
  775. }
  776. .row-cols-sm-1 > * {
  777. flex: 0 0 auto;
  778. width: 100%;
  779. }
  780. .row-cols-sm-2 > * {
  781. flex: 0 0 auto;
  782. width: 50%;
  783. }
  784. .row-cols-sm-3 > * {
  785. flex: 0 0 auto;
  786. width: 33.3333333333%;
  787. }
  788. .row-cols-sm-4 > * {
  789. flex: 0 0 auto;
  790. width: 25%;
  791. }
  792. .row-cols-sm-5 > * {
  793. flex: 0 0 auto;
  794. width: 20%;
  795. }
  796. .row-cols-sm-6 > * {
  797. flex: 0 0 auto;
  798. width: 16.6666666667%;
  799. }
  800. .col-sm-auto {
  801. flex: 0 0 auto;
  802. width: auto;
  803. }
  804. .col-sm-1 {
  805. flex: 0 0 auto;
  806. width: 8.33333333%;
  807. }
  808. .col-sm-2 {
  809. flex: 0 0 auto;
  810. width: 16.66666667%;
  811. }
  812. .col-sm-3 {
  813. flex: 0 0 auto;
  814. width: 25%;
  815. }
  816. .col-sm-4 {
  817. flex: 0 0 auto;
  818. width: 33.33333333%;
  819. }
  820. .col-sm-5 {
  821. flex: 0 0 auto;
  822. width: 41.66666667%;
  823. }
  824. .col-sm-6 {
  825. flex: 0 0 auto;
  826. width: 50%;
  827. }
  828. .col-sm-7 {
  829. flex: 0 0 auto;
  830. width: 58.33333333%;
  831. }
  832. .col-sm-8 {
  833. flex: 0 0 auto;
  834. width: 66.66666667%;
  835. }
  836. .col-sm-9 {
  837. flex: 0 0 auto;
  838. width: 75%;
  839. }
  840. .col-sm-10 {
  841. flex: 0 0 auto;
  842. width: 83.33333333%;
  843. }
  844. .col-sm-11 {
  845. flex: 0 0 auto;
  846. width: 91.66666667%;
  847. }
  848. .col-sm-12 {
  849. flex: 0 0 auto;
  850. width: 100%;
  851. }
  852. .offset-sm-0 {
  853. margin-left: 0;
  854. }
  855. .offset-sm-1 {
  856. margin-left: 8.33333333%;
  857. }
  858. .offset-sm-2 {
  859. margin-left: 16.66666667%;
  860. }
  861. .offset-sm-3 {
  862. margin-left: 25%;
  863. }
  864. .offset-sm-4 {
  865. margin-left: 33.33333333%;
  866. }
  867. .offset-sm-5 {
  868. margin-left: 41.66666667%;
  869. }
  870. .offset-sm-6 {
  871. margin-left: 50%;
  872. }
  873. .offset-sm-7 {
  874. margin-left: 58.33333333%;
  875. }
  876. .offset-sm-8 {
  877. margin-left: 66.66666667%;
  878. }
  879. .offset-sm-9 {
  880. margin-left: 75%;
  881. }
  882. .offset-sm-10 {
  883. margin-left: 83.33333333%;
  884. }
  885. .offset-sm-11 {
  886. margin-left: 91.66666667%;
  887. }
  888. .g-sm-0,
  889. .gx-sm-0 {
  890. --bs-gutter-x: 0;
  891. }
  892. .g-sm-0,
  893. .gy-sm-0 {
  894. --bs-gutter-y: 0;
  895. }
  896. .g-sm-1,
  897. .gx-sm-1 {
  898. --bs-gutter-x: 0.25rem;
  899. }
  900. .g-sm-1,
  901. .gy-sm-1 {
  902. --bs-gutter-y: 0.25rem;
  903. }
  904. .g-sm-2,
  905. .gx-sm-2 {
  906. --bs-gutter-x: 0.5rem;
  907. }
  908. .g-sm-2,
  909. .gy-sm-2 {
  910. --bs-gutter-y: 0.5rem;
  911. }
  912. .g-sm-3,
  913. .gx-sm-3 {
  914. --bs-gutter-x: 1rem;
  915. }
  916. .g-sm-3,
  917. .gy-sm-3 {
  918. --bs-gutter-y: 1rem;
  919. }
  920. .g-sm-4,
  921. .gx-sm-4 {
  922. --bs-gutter-x: 1.5rem;
  923. }
  924. .g-sm-4,
  925. .gy-sm-4 {
  926. --bs-gutter-y: 1.5rem;
  927. }
  928. .g-sm-5,
  929. .gx-sm-5 {
  930. --bs-gutter-x: 3rem;
  931. }
  932. .g-sm-5,
  933. .gy-sm-5 {
  934. --bs-gutter-y: 3rem;
  935. }
  936. }
  937. @media (min-width: 768px) {
  938. .col-md {
  939. flex: 1 0 0%;
  940. }
  941. .row-cols-md-auto > * {
  942. flex: 0 0 auto;
  943. width: auto;
  944. }
  945. .row-cols-md-1 > * {
  946. flex: 0 0 auto;
  947. width: 100%;
  948. }
  949. .row-cols-md-2 > * {
  950. flex: 0 0 auto;
  951. width: 50%;
  952. }
  953. .row-cols-md-3 > * {
  954. flex: 0 0 auto;
  955. width: 33.3333333333%;
  956. }
  957. .row-cols-md-4 > * {
  958. flex: 0 0 auto;
  959. width: 25%;
  960. }
  961. .row-cols-md-5 > * {
  962. flex: 0 0 auto;
  963. width: 20%;
  964. }
  965. .row-cols-md-6 > * {
  966. flex: 0 0 auto;
  967. width: 16.6666666667%;
  968. }
  969. .col-md-auto {
  970. flex: 0 0 auto;
  971. width: auto;
  972. }
  973. .col-md-1 {
  974. flex: 0 0 auto;
  975. width: 8.33333333%;
  976. }
  977. .col-md-2 {
  978. flex: 0 0 auto;
  979. width: 16.66666667%;
  980. }
  981. .col-md-3 {
  982. flex: 0 0 auto;
  983. width: 25%;
  984. }
  985. .col-md-4 {
  986. flex: 0 0 auto;
  987. width: 33.33333333%;
  988. }
  989. .col-md-5 {
  990. flex: 0 0 auto;
  991. width: 41.66666667%;
  992. }
  993. .col-md-6 {
  994. flex: 0 0 auto;
  995. width: 50%;
  996. }
  997. .col-md-7 {
  998. flex: 0 0 auto;
  999. width: 58.33333333%;
  1000. }
  1001. .col-md-8 {
  1002. flex: 0 0 auto;
  1003. width: 66.66666667%;
  1004. }
  1005. .col-md-9 {
  1006. flex: 0 0 auto;
  1007. width: 75%;
  1008. }
  1009. .col-md-10 {
  1010. flex: 0 0 auto;
  1011. width: 83.33333333%;
  1012. }
  1013. .col-md-11 {
  1014. flex: 0 0 auto;
  1015. width: 91.66666667%;
  1016. }
  1017. .col-md-12 {
  1018. flex: 0 0 auto;
  1019. width: 100%;
  1020. }
  1021. .offset-md-0 {
  1022. margin-left: 0;
  1023. }
  1024. .offset-md-1 {
  1025. margin-left: 8.33333333%;
  1026. }
  1027. .offset-md-2 {
  1028. margin-left: 16.66666667%;
  1029. }
  1030. .offset-md-3 {
  1031. margin-left: 25%;
  1032. }
  1033. .offset-md-4 {
  1034. margin-left: 33.33333333%;
  1035. }
  1036. .offset-md-5 {
  1037. margin-left: 41.66666667%;
  1038. }
  1039. .offset-md-6 {
  1040. margin-left: 50%;
  1041. }
  1042. .offset-md-7 {
  1043. margin-left: 58.33333333%;
  1044. }
  1045. .offset-md-8 {
  1046. margin-left: 66.66666667%;
  1047. }
  1048. .offset-md-9 {
  1049. margin-left: 75%;
  1050. }
  1051. .offset-md-10 {
  1052. margin-left: 83.33333333%;
  1053. }
  1054. .offset-md-11 {
  1055. margin-left: 91.66666667%;
  1056. }
  1057. .g-md-0,
  1058. .gx-md-0 {
  1059. --bs-gutter-x: 0;
  1060. }
  1061. .g-md-0,
  1062. .gy-md-0 {
  1063. --bs-gutter-y: 0;
  1064. }
  1065. .g-md-1,
  1066. .gx-md-1 {
  1067. --bs-gutter-x: 0.25rem;
  1068. }
  1069. .g-md-1,
  1070. .gy-md-1 {
  1071. --bs-gutter-y: 0.25rem;
  1072. }
  1073. .g-md-2,
  1074. .gx-md-2 {
  1075. --bs-gutter-x: 0.5rem;
  1076. }
  1077. .g-md-2,
  1078. .gy-md-2 {
  1079. --bs-gutter-y: 0.5rem;
  1080. }
  1081. .g-md-3,
  1082. .gx-md-3 {
  1083. --bs-gutter-x: 1rem;
  1084. }
  1085. .g-md-3,
  1086. .gy-md-3 {
  1087. --bs-gutter-y: 1rem;
  1088. }
  1089. .g-md-4,
  1090. .gx-md-4 {
  1091. --bs-gutter-x: 1.5rem;
  1092. }
  1093. .g-md-4,
  1094. .gy-md-4 {
  1095. --bs-gutter-y: 1.5rem;
  1096. }
  1097. .g-md-5,
  1098. .gx-md-5 {
  1099. --bs-gutter-x: 3rem;
  1100. }
  1101. .g-md-5,
  1102. .gy-md-5 {
  1103. --bs-gutter-y: 3rem;
  1104. }
  1105. }
  1106. @media (min-width: 992px) {
  1107. .col-lg {
  1108. flex: 1 0 0%;
  1109. }
  1110. .row-cols-lg-auto > * {
  1111. flex: 0 0 auto;
  1112. width: auto;
  1113. }
  1114. .row-cols-lg-1 > * {
  1115. flex: 0 0 auto;
  1116. width: 100%;
  1117. }
  1118. .row-cols-lg-2 > * {
  1119. flex: 0 0 auto;
  1120. width: 50%;
  1121. }
  1122. .row-cols-lg-3 > * {
  1123. flex: 0 0 auto;
  1124. width: 33.3333333333%;
  1125. }
  1126. .row-cols-lg-4 > * {
  1127. flex: 0 0 auto;
  1128. width: 25%;
  1129. }
  1130. .row-cols-lg-5 > * {
  1131. flex: 0 0 auto;
  1132. width: 20%;
  1133. }
  1134. .row-cols-lg-6 > * {
  1135. flex: 0 0 auto;
  1136. width: 16.6666666667%;
  1137. }
  1138. .col-lg-auto {
  1139. flex: 0 0 auto;
  1140. width: auto;
  1141. }
  1142. .col-lg-1 {
  1143. flex: 0 0 auto;
  1144. width: 8.33333333%;
  1145. }
  1146. .col-lg-2 {
  1147. flex: 0 0 auto;
  1148. width: 16.66666667%;
  1149. }
  1150. .col-lg-3 {
  1151. flex: 0 0 auto;
  1152. width: 25%;
  1153. }
  1154. .col-lg-4 {
  1155. flex: 0 0 auto;
  1156. width: 33.33333333%;
  1157. }
  1158. .col-lg-5 {
  1159. flex: 0 0 auto;
  1160. width: 41.66666667%;
  1161. }
  1162. .col-lg-6 {
  1163. flex: 0 0 auto;
  1164. width: 50%;
  1165. }
  1166. .col-lg-7 {
  1167. flex: 0 0 auto;
  1168. width: 58.33333333%;
  1169. }
  1170. .col-lg-8 {
  1171. flex: 0 0 auto;
  1172. width: 66.66666667%;
  1173. }
  1174. .col-lg-9 {
  1175. flex: 0 0 auto;
  1176. width: 75%;
  1177. }
  1178. .col-lg-10 {
  1179. flex: 0 0 auto;
  1180. width: 83.33333333%;
  1181. }
  1182. .col-lg-11 {
  1183. flex: 0 0 auto;
  1184. width: 91.66666667%;
  1185. }
  1186. .col-lg-12 {
  1187. flex: 0 0 auto;
  1188. width: 100%;
  1189. }
  1190. .offset-lg-0 {
  1191. margin-left: 0;
  1192. }
  1193. .offset-lg-1 {
  1194. margin-left: 8.33333333%;
  1195. }
  1196. .offset-lg-2 {
  1197. margin-left: 16.66666667%;
  1198. }
  1199. .offset-lg-3 {
  1200. margin-left: 25%;
  1201. }
  1202. .offset-lg-4 {
  1203. margin-left: 33.33333333%;
  1204. }
  1205. .offset-lg-5 {
  1206. margin-left: 41.66666667%;
  1207. }
  1208. .offset-lg-6 {
  1209. margin-left: 50%;
  1210. }
  1211. .offset-lg-7 {
  1212. margin-left: 58.33333333%;
  1213. }
  1214. .offset-lg-8 {
  1215. margin-left: 66.66666667%;
  1216. }
  1217. .offset-lg-9 {
  1218. margin-left: 75%;
  1219. }
  1220. .offset-lg-10 {
  1221. margin-left: 83.33333333%;
  1222. }
  1223. .offset-lg-11 {
  1224. margin-left: 91.66666667%;
  1225. }
  1226. .g-lg-0,
  1227. .gx-lg-0 {
  1228. --bs-gutter-x: 0;
  1229. }
  1230. .g-lg-0,
  1231. .gy-lg-0 {
  1232. --bs-gutter-y: 0;
  1233. }
  1234. .g-lg-1,
  1235. .gx-lg-1 {
  1236. --bs-gutter-x: 0.25rem;
  1237. }
  1238. .g-lg-1,
  1239. .gy-lg-1 {
  1240. --bs-gutter-y: 0.25rem;
  1241. }
  1242. .g-lg-2,
  1243. .gx-lg-2 {
  1244. --bs-gutter-x: 0.5rem;
  1245. }
  1246. .g-lg-2,
  1247. .gy-lg-2 {
  1248. --bs-gutter-y: 0.5rem;
  1249. }
  1250. .g-lg-3,
  1251. .gx-lg-3 {
  1252. --bs-gutter-x: 1rem;
  1253. }
  1254. .g-lg-3,
  1255. .gy-lg-3 {
  1256. --bs-gutter-y: 1rem;
  1257. }
  1258. .g-lg-4,
  1259. .gx-lg-4 {
  1260. --bs-gutter-x: 1.5rem;
  1261. }
  1262. .g-lg-4,
  1263. .gy-lg-4 {
  1264. --bs-gutter-y: 1.5rem;
  1265. }
  1266. .g-lg-5,
  1267. .gx-lg-5 {
  1268. --bs-gutter-x: 3rem;
  1269. }
  1270. .g-lg-5,
  1271. .gy-lg-5 {
  1272. --bs-gutter-y: 3rem;
  1273. }
  1274. }
  1275. @media (min-width: 1200px) {
  1276. .col-xl {
  1277. flex: 1 0 0%;
  1278. }
  1279. .row-cols-xl-auto > * {
  1280. flex: 0 0 auto;
  1281. width: auto;
  1282. }
  1283. .row-cols-xl-1 > * {
  1284. flex: 0 0 auto;
  1285. width: 100%;
  1286. }
  1287. .row-cols-xl-2 > * {
  1288. flex: 0 0 auto;
  1289. width: 50%;
  1290. }
  1291. .row-cols-xl-3 > * {
  1292. flex: 0 0 auto;
  1293. width: 33.3333333333%;
  1294. }
  1295. .row-cols-xl-4 > * {
  1296. flex: 0 0 auto;
  1297. width: 25%;
  1298. }
  1299. .row-cols-xl-5 > * {
  1300. flex: 0 0 auto;
  1301. width: 20%;
  1302. }
  1303. .row-cols-xl-6 > * {
  1304. flex: 0 0 auto;
  1305. width: 16.6666666667%;
  1306. }
  1307. .col-xl-auto {
  1308. flex: 0 0 auto;
  1309. width: auto;
  1310. }
  1311. .col-xl-1 {
  1312. flex: 0 0 auto;
  1313. width: 8.33333333%;
  1314. }
  1315. .col-xl-2 {
  1316. flex: 0 0 auto;
  1317. width: 16.66666667%;
  1318. }
  1319. .col-xl-3 {
  1320. flex: 0 0 auto;
  1321. width: 25%;
  1322. }
  1323. .col-xl-4 {
  1324. flex: 0 0 auto;
  1325. width: 33.33333333%;
  1326. }
  1327. .col-xl-5 {
  1328. flex: 0 0 auto;
  1329. width: 41.66666667%;
  1330. }
  1331. .col-xl-6 {
  1332. flex: 0 0 auto;
  1333. width: 50%;
  1334. }
  1335. .col-xl-7 {
  1336. flex: 0 0 auto;
  1337. width: 58.33333333%;
  1338. }
  1339. .col-xl-8 {
  1340. flex: 0 0 auto;
  1341. width: 66.66666667%;
  1342. }
  1343. .col-xl-9 {
  1344. flex: 0 0 auto;
  1345. width: 75%;
  1346. }
  1347. .col-xl-10 {
  1348. flex: 0 0 auto;
  1349. width: 83.33333333%;
  1350. }
  1351. .col-xl-11 {
  1352. flex: 0 0 auto;
  1353. width: 91.66666667%;
  1354. }
  1355. .col-xl-12 {
  1356. flex: 0 0 auto;
  1357. width: 100%;
  1358. }
  1359. .offset-xl-0 {
  1360. margin-left: 0;
  1361. }
  1362. .offset-xl-1 {
  1363. margin-left: 8.33333333%;
  1364. }
  1365. .offset-xl-2 {
  1366. margin-left: 16.66666667%;
  1367. }
  1368. .offset-xl-3 {
  1369. margin-left: 25%;
  1370. }
  1371. .offset-xl-4 {
  1372. margin-left: 33.33333333%;
  1373. }
  1374. .offset-xl-5 {
  1375. margin-left: 41.66666667%;
  1376. }
  1377. .offset-xl-6 {
  1378. margin-left: 50%;
  1379. }
  1380. .offset-xl-7 {
  1381. margin-left: 58.33333333%;
  1382. }
  1383. .offset-xl-8 {
  1384. margin-left: 66.66666667%;
  1385. }
  1386. .offset-xl-9 {
  1387. margin-left: 75%;
  1388. }
  1389. .offset-xl-10 {
  1390. margin-left: 83.33333333%;
  1391. }
  1392. .offset-xl-11 {
  1393. margin-left: 91.66666667%;
  1394. }
  1395. .g-xl-0,
  1396. .gx-xl-0 {
  1397. --bs-gutter-x: 0;
  1398. }
  1399. .g-xl-0,
  1400. .gy-xl-0 {
  1401. --bs-gutter-y: 0;
  1402. }
  1403. .g-xl-1,
  1404. .gx-xl-1 {
  1405. --bs-gutter-x: 0.25rem;
  1406. }
  1407. .g-xl-1,
  1408. .gy-xl-1 {
  1409. --bs-gutter-y: 0.25rem;
  1410. }
  1411. .g-xl-2,
  1412. .gx-xl-2 {
  1413. --bs-gutter-x: 0.5rem;
  1414. }
  1415. .g-xl-2,
  1416. .gy-xl-2 {
  1417. --bs-gutter-y: 0.5rem;
  1418. }
  1419. .g-xl-3,
  1420. .gx-xl-3 {
  1421. --bs-gutter-x: 1rem;
  1422. }
  1423. .g-xl-3,
  1424. .gy-xl-3 {
  1425. --bs-gutter-y: 1rem;
  1426. }
  1427. .g-xl-4,
  1428. .gx-xl-4 {
  1429. --bs-gutter-x: 1.5rem;
  1430. }
  1431. .g-xl-4,
  1432. .gy-xl-4 {
  1433. --bs-gutter-y: 1.5rem;
  1434. }
  1435. .g-xl-5,
  1436. .gx-xl-5 {
  1437. --bs-gutter-x: 3rem;
  1438. }
  1439. .g-xl-5,
  1440. .gy-xl-5 {
  1441. --bs-gutter-y: 3rem;
  1442. }
  1443. }
  1444. @media (min-width: 1400px) {
  1445. .col-xxl {
  1446. flex: 1 0 0%;
  1447. }
  1448. .row-cols-xxl-auto > * {
  1449. flex: 0 0 auto;
  1450. width: auto;
  1451. }
  1452. .row-cols-xxl-1 > * {
  1453. flex: 0 0 auto;
  1454. width: 100%;
  1455. }
  1456. .row-cols-xxl-2 > * {
  1457. flex: 0 0 auto;
  1458. width: 50%;
  1459. }
  1460. .row-cols-xxl-3 > * {
  1461. flex: 0 0 auto;
  1462. width: 33.3333333333%;
  1463. }
  1464. .row-cols-xxl-4 > * {
  1465. flex: 0 0 auto;
  1466. width: 25%;
  1467. }
  1468. .row-cols-xxl-5 > * {
  1469. flex: 0 0 auto;
  1470. width: 20%;
  1471. }
  1472. .row-cols-xxl-6 > * {
  1473. flex: 0 0 auto;
  1474. width: 16.6666666667%;
  1475. }
  1476. .col-xxl-auto {
  1477. flex: 0 0 auto;
  1478. width: auto;
  1479. }
  1480. .col-xxl-1 {
  1481. flex: 0 0 auto;
  1482. width: 8.33333333%;
  1483. }
  1484. .col-xxl-2 {
  1485. flex: 0 0 auto;
  1486. width: 16.66666667%;
  1487. }
  1488. .col-xxl-3 {
  1489. flex: 0 0 auto;
  1490. width: 25%;
  1491. }
  1492. .col-xxl-4 {
  1493. flex: 0 0 auto;
  1494. width: 33.33333333%;
  1495. }
  1496. .col-xxl-5 {
  1497. flex: 0 0 auto;
  1498. width: 41.66666667%;
  1499. }
  1500. .col-xxl-6 {
  1501. flex: 0 0 auto;
  1502. width: 50%;
  1503. }
  1504. .col-xxl-7 {
  1505. flex: 0 0 auto;
  1506. width: 58.33333333%;
  1507. }
  1508. .col-xxl-8 {
  1509. flex: 0 0 auto;
  1510. width: 66.66666667%;
  1511. }
  1512. .col-xxl-9 {
  1513. flex: 0 0 auto;
  1514. width: 75%;
  1515. }
  1516. .col-xxl-10 {
  1517. flex: 0 0 auto;
  1518. width: 83.33333333%;
  1519. }
  1520. .col-xxl-11 {
  1521. flex: 0 0 auto;
  1522. width: 91.66666667%;
  1523. }
  1524. .col-xxl-12 {
  1525. flex: 0 0 auto;
  1526. width: 100%;
  1527. }
  1528. .offset-xxl-0 {
  1529. margin-left: 0;
  1530. }
  1531. .offset-xxl-1 {
  1532. margin-left: 8.33333333%;
  1533. }
  1534. .offset-xxl-2 {
  1535. margin-left: 16.66666667%;
  1536. }
  1537. .offset-xxl-3 {
  1538. margin-left: 25%;
  1539. }
  1540. .offset-xxl-4 {
  1541. margin-left: 33.33333333%;
  1542. }
  1543. .offset-xxl-5 {
  1544. margin-left: 41.66666667%;
  1545. }
  1546. .offset-xxl-6 {
  1547. margin-left: 50%;
  1548. }
  1549. .offset-xxl-7 {
  1550. margin-left: 58.33333333%;
  1551. }
  1552. .offset-xxl-8 {
  1553. margin-left: 66.66666667%;
  1554. }
  1555. .offset-xxl-9 {
  1556. margin-left: 75%;
  1557. }
  1558. .offset-xxl-10 {
  1559. margin-left: 83.33333333%;
  1560. }
  1561. .offset-xxl-11 {
  1562. margin-left: 91.66666667%;
  1563. }
  1564. .g-xxl-0,
  1565. .gx-xxl-0 {
  1566. --bs-gutter-x: 0;
  1567. }
  1568. .g-xxl-0,
  1569. .gy-xxl-0 {
  1570. --bs-gutter-y: 0;
  1571. }
  1572. .g-xxl-1,
  1573. .gx-xxl-1 {
  1574. --bs-gutter-x: 0.25rem;
  1575. }
  1576. .g-xxl-1,
  1577. .gy-xxl-1 {
  1578. --bs-gutter-y: 0.25rem;
  1579. }
  1580. .g-xxl-2,
  1581. .gx-xxl-2 {
  1582. --bs-gutter-x: 0.5rem;
  1583. }
  1584. .g-xxl-2,
  1585. .gy-xxl-2 {
  1586. --bs-gutter-y: 0.5rem;
  1587. }
  1588. .g-xxl-3,
  1589. .gx-xxl-3 {
  1590. --bs-gutter-x: 1rem;
  1591. }
  1592. .g-xxl-3,
  1593. .gy-xxl-3 {
  1594. --bs-gutter-y: 1rem;
  1595. }
  1596. .g-xxl-4,
  1597. .gx-xxl-4 {
  1598. --bs-gutter-x: 1.5rem;
  1599. }
  1600. .g-xxl-4,
  1601. .gy-xxl-4 {
  1602. --bs-gutter-y: 1.5rem;
  1603. }
  1604. .g-xxl-5,
  1605. .gx-xxl-5 {
  1606. --bs-gutter-x: 3rem;
  1607. }
  1608. .g-xxl-5,
  1609. .gy-xxl-5 {
  1610. --bs-gutter-y: 3rem;
  1611. }
  1612. }
  1613. .table, .datatable-table {
  1614. --bs-table-color: var(--bs-body-color);
  1615. --bs-table-bg: transparent;
  1616. --bs-table-border-color: var(--bs-border-color);
  1617. --bs-table-accent-bg: transparent;
  1618. --bs-table-striped-color: var(--bs-body-color);
  1619. --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  1620. --bs-table-active-color: var(--bs-body-color);
  1621. --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  1622. --bs-table-hover-color: var(--bs-body-color);
  1623. --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  1624. width: 100%;
  1625. margin-bottom: 1rem;
  1626. color: var(--bs-table-color);
  1627. vertical-align: top;
  1628. border-color: var(--bs-table-border-color);
  1629. }
  1630. .table > :not(caption) > * > *, .datatable-table > :not(caption) > * > * {
  1631. padding: 0.5rem 0.5rem;
  1632. background-color: var(--bs-table-bg);
  1633. border-bottom-width: 1px;
  1634. box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  1635. }
  1636. .table > tbody, .datatable-table > tbody {
  1637. vertical-align: inherit;
  1638. }
  1639. .table > thead, .datatable-table > thead {
  1640. vertical-align: bottom;
  1641. }
  1642. .table-group-divider {
  1643. border-top: 2px solid currentcolor;
  1644. }
  1645. .caption-top {
  1646. caption-side: top;
  1647. }
  1648. .table-sm > :not(caption) > * > * {
  1649. padding: 0.25rem 0.25rem;
  1650. }
  1651. .table-bordered > :not(caption) > *, .datatable-table > :not(caption) > * {
  1652. border-width: 1px 0;
  1653. }
  1654. .table-bordered > :not(caption) > * > *, .datatable-table > :not(caption) > * > * {
  1655. border-width: 0 1px;
  1656. }
  1657. .table-borderless > :not(caption) > * > * {
  1658. border-bottom-width: 0;
  1659. }
  1660. .table-borderless > :not(:first-child) {
  1661. border-top-width: 0;
  1662. }
  1663. .table-striped > tbody > tr:nth-of-type(odd) > * {
  1664. --bs-table-accent-bg: var(--bs-table-striped-bg);
  1665. color: var(--bs-table-striped-color);
  1666. }
  1667. .table-striped-columns > :not(caption) > tr > :nth-child(even) {
  1668. --bs-table-accent-bg: var(--bs-table-striped-bg);
  1669. color: var(--bs-table-striped-color);
  1670. }
  1671. .table-active {
  1672. --bs-table-accent-bg: var(--bs-table-active-bg);
  1673. color: var(--bs-table-active-color);
  1674. }
  1675. .table-hover > tbody > tr:hover > *, .datatable-table > tbody > tr:hover > * {
  1676. --bs-table-accent-bg: var(--bs-table-hover-bg);
  1677. color: var(--bs-table-hover-color);
  1678. }
  1679. .table-primary {
  1680. --bs-table-color: #000;
  1681. --bs-table-bg: #cfe2ff;
  1682. --bs-table-border-color: #bacbe6;
  1683. --bs-table-striped-bg: #c5d7f2;
  1684. --bs-table-striped-color: #000;
  1685. --bs-table-active-bg: #bacbe6;
  1686. --bs-table-active-color: #000;
  1687. --bs-table-hover-bg: #bfd1ec;
  1688. --bs-table-hover-color: #000;
  1689. color: var(--bs-table-color);
  1690. border-color: var(--bs-table-border-color);
  1691. }
  1692. .table-secondary {
  1693. --bs-table-color: #000;
  1694. --bs-table-bg: #e2e3e5;
  1695. --bs-table-border-color: #cbccce;
  1696. --bs-table-striped-bg: #d7d8da;
  1697. --bs-table-striped-color: #000;
  1698. --bs-table-active-bg: #cbccce;
  1699. --bs-table-active-color: #000;
  1700. --bs-table-hover-bg: #d1d2d4;
  1701. --bs-table-hover-color: #000;
  1702. color: var(--bs-table-color);
  1703. border-color: var(--bs-table-border-color);
  1704. }
  1705. .table-success {
  1706. --bs-table-color: #000;
  1707. --bs-table-bg: #d1e7dd;
  1708. --bs-table-border-color: #bcd0c7;
  1709. --bs-table-striped-bg: #c7dbd2;
  1710. --bs-table-striped-color: #000;
  1711. --bs-table-active-bg: #bcd0c7;
  1712. --bs-table-active-color: #000;
  1713. --bs-table-hover-bg: #c1d6cc;
  1714. --bs-table-hover-color: #000;
  1715. color: var(--bs-table-color);
  1716. border-color: var(--bs-table-border-color);
  1717. }
  1718. .table-info {
  1719. --bs-table-color: #000;
  1720. --bs-table-bg: #cff4fc;
  1721. --bs-table-border-color: #badce3;
  1722. --bs-table-striped-bg: #c5e8ef;
  1723. --bs-table-striped-color: #000;
  1724. --bs-table-active-bg: #badce3;
  1725. --bs-table-active-color: #000;
  1726. --bs-table-hover-bg: #bfe2e9;
  1727. --bs-table-hover-color: #000;
  1728. color: var(--bs-table-color);
  1729. border-color: var(--bs-table-border-color);
  1730. }
  1731. .table-warning {
  1732. --bs-table-color: #000;
  1733. --bs-table-bg: #fff3cd;
  1734. --bs-table-border-color: #e6dbb9;
  1735. --bs-table-striped-bg: #f2e7c3;
  1736. --bs-table-striped-color: #000;
  1737. --bs-table-active-bg: #e6dbb9;
  1738. --bs-table-active-color: #000;
  1739. --bs-table-hover-bg: #ece1be;
  1740. --bs-table-hover-color: #000;
  1741. color: var(--bs-table-color);
  1742. border-color: var(--bs-table-border-color);
  1743. }
  1744. .table-danger {
  1745. --bs-table-color: #000;
  1746. --bs-table-bg: #f8d7da;
  1747. --bs-table-border-color: #dfc2c4;
  1748. --bs-table-striped-bg: #eccccf;
  1749. --bs-table-striped-color: #000;
  1750. --bs-table-active-bg: #dfc2c4;
  1751. --bs-table-active-color: #000;
  1752. --bs-table-hover-bg: #e5c7ca;
  1753. --bs-table-hover-color: #000;
  1754. color: var(--bs-table-color);
  1755. border-color: var(--bs-table-border-color);
  1756. }
  1757. .table-light {
  1758. --bs-table-color: #000;
  1759. --bs-table-bg: #f8f9fa;
  1760. --bs-table-border-color: #dfe0e1;
  1761. --bs-table-striped-bg: #ecedee;
  1762. --bs-table-striped-color: #000;
  1763. --bs-table-active-bg: #dfe0e1;
  1764. --bs-table-active-color: #000;
  1765. --bs-table-hover-bg: #e5e6e7;
  1766. --bs-table-hover-color: #000;
  1767. color: var(--bs-table-color);
  1768. border-color: var(--bs-table-border-color);
  1769. }
  1770. .table-dark {
  1771. --bs-table-color: #fff;
  1772. --bs-table-bg: #212529;
  1773. --bs-table-border-color: #373b3e;
  1774. --bs-table-striped-bg: #2c3034;
  1775. --bs-table-striped-color: #fff;
  1776. --bs-table-active-bg: #373b3e;
  1777. --bs-table-active-color: #fff;
  1778. --bs-table-hover-bg: #323539;
  1779. --bs-table-hover-color: #fff;
  1780. color: var(--bs-table-color);
  1781. border-color: var(--bs-table-border-color);
  1782. }
  1783. .table-responsive, .datatable-wrapper .datatable-container {
  1784. overflow-x: auto;
  1785. -webkit-overflow-scrolling: touch;
  1786. }
  1787. @media (max-width: 575.98px) {
  1788. .table-responsive-sm {
  1789. overflow-x: auto;
  1790. -webkit-overflow-scrolling: touch;
  1791. }
  1792. }
  1793. @media (max-width: 767.98px) {
  1794. .table-responsive-md {
  1795. overflow-x: auto;
  1796. -webkit-overflow-scrolling: touch;
  1797. }
  1798. }
  1799. @media (max-width: 991.98px) {
  1800. .table-responsive-lg {
  1801. overflow-x: auto;
  1802. -webkit-overflow-scrolling: touch;
  1803. }
  1804. }
  1805. @media (max-width: 1199.98px) {
  1806. .table-responsive-xl {
  1807. overflow-x: auto;
  1808. -webkit-overflow-scrolling: touch;
  1809. }
  1810. }
  1811. @media (max-width: 1399.98px) {
  1812. .table-responsive-xxl {
  1813. overflow-x: auto;
  1814. -webkit-overflow-scrolling: touch;
  1815. }
  1816. }
  1817. .form-label {
  1818. margin-bottom: 0.5rem;
  1819. }
  1820. .col-form-label {
  1821. padding-top: calc(0.375rem + 1px);
  1822. padding-bottom: calc(0.375rem + 1px);
  1823. margin-bottom: 0;
  1824. font-size: inherit;
  1825. line-height: 1.5;
  1826. }
  1827. .col-form-label-lg {
  1828. padding-top: calc(0.5rem + 1px);
  1829. padding-bottom: calc(0.5rem + 1px);
  1830. font-size: 1.25rem;
  1831. }
  1832. .col-form-label-sm {
  1833. padding-top: calc(0.25rem + 1px);
  1834. padding-bottom: calc(0.25rem + 1px);
  1835. font-size: 0.875rem;
  1836. }
  1837. .form-text {
  1838. margin-top: 0.25rem;
  1839. font-size: 0.875em;
  1840. color: #6c757d;
  1841. }
  1842. .form-control, .datatable-input {
  1843. display: block;
  1844. width: 100%;
  1845. padding: 0.375rem 0.75rem;
  1846. font-size: 1rem;
  1847. font-weight: 400;
  1848. line-height: 1.5;
  1849. color: #212529;
  1850. background-color: #fff;
  1851. background-clip: padding-box;
  1852. border: 1px solid #ced4da;
  1853. -webkit-appearance: none;
  1854. -moz-appearance: none;
  1855. appearance: none;
  1856. border-radius: 0.375rem;
  1857. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  1858. }
  1859. @media (prefers-reduced-motion: reduce) {
  1860. .form-control, .datatable-input {
  1861. transition: none;
  1862. }
  1863. }
  1864. .form-control[type=file], [type=file].datatable-input {
  1865. overflow: hidden;
  1866. }
  1867. .form-control[type=file]:not(:disabled):not([readonly]), [type=file].datatable-input:not(:disabled):not([readonly]) {
  1868. cursor: pointer;
  1869. }
  1870. .form-control:focus, .datatable-input:focus {
  1871. color: #212529;
  1872. background-color: #fff;
  1873. border-color: #86b7fe;
  1874. outline: 0;
  1875. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  1876. }
  1877. .form-control::-webkit-date-and-time-value, .datatable-input::-webkit-date-and-time-value {
  1878. height: 1.5em;
  1879. }
  1880. .form-control::-moz-placeholder, .datatable-input::-moz-placeholder {
  1881. color: #6c757d;
  1882. opacity: 1;
  1883. }
  1884. .form-control::placeholder, .datatable-input::placeholder {
  1885. color: #6c757d;
  1886. opacity: 1;
  1887. }
  1888. .form-control:disabled, .datatable-input:disabled {
  1889. background-color: #e9ecef;
  1890. opacity: 1;
  1891. }
  1892. .form-control::file-selector-button, .datatable-input::file-selector-button {
  1893. padding: 0.375rem 0.75rem;
  1894. margin: -0.375rem -0.75rem;
  1895. -webkit-margin-end: 0.75rem;
  1896. margin-inline-end: 0.75rem;
  1897. color: #212529;
  1898. background-color: #e9ecef;
  1899. pointer-events: none;
  1900. border-color: inherit;
  1901. border-style: solid;
  1902. border-width: 0;
  1903. border-inline-end-width: 1px;
  1904. border-radius: 0;
  1905. 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;
  1906. }
  1907. @media (prefers-reduced-motion: reduce) {
  1908. .form-control::file-selector-button, .datatable-input::file-selector-button {
  1909. transition: none;
  1910. }
  1911. }
  1912. .form-control:hover:not(:disabled):not([readonly])::file-selector-button, .datatable-input:hover:not(:disabled):not([readonly])::file-selector-button {
  1913. background-color: #dde0e3;
  1914. }
  1915. .form-control-plaintext {
  1916. display: block;
  1917. width: 100%;
  1918. padding: 0.375rem 0;
  1919. margin-bottom: 0;
  1920. line-height: 1.5;
  1921. color: #212529;
  1922. background-color: transparent;
  1923. border: solid transparent;
  1924. border-width: 1px 0;
  1925. }
  1926. .form-control-plaintext:focus {
  1927. outline: 0;
  1928. }
  1929. .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  1930. padding-right: 0;
  1931. padding-left: 0;
  1932. }
  1933. .form-control-sm {
  1934. min-height: calc(1.5em + 0.5rem + 2px);
  1935. padding: 0.25rem 0.5rem;
  1936. font-size: 0.875rem;
  1937. border-radius: 0.25rem;
  1938. }
  1939. .form-control-sm::file-selector-button {
  1940. padding: 0.25rem 0.5rem;
  1941. margin: -0.25rem -0.5rem;
  1942. -webkit-margin-end: 0.5rem;
  1943. margin-inline-end: 0.5rem;
  1944. }
  1945. .form-control-lg {
  1946. min-height: calc(1.5em + 1rem + 2px);
  1947. padding: 0.5rem 1rem;
  1948. font-size: 1.25rem;
  1949. border-radius: 0.5rem;
  1950. }
  1951. .form-control-lg::file-selector-button {
  1952. padding: 0.5rem 1rem;
  1953. margin: -0.5rem -1rem;
  1954. -webkit-margin-end: 1rem;
  1955. margin-inline-end: 1rem;
  1956. }
  1957. textarea.form-control, textarea.datatable-input {
  1958. min-height: calc(1.5em + 0.75rem + 2px);
  1959. }
  1960. textarea.form-control-sm {
  1961. min-height: calc(1.5em + 0.5rem + 2px);
  1962. }
  1963. textarea.form-control-lg {
  1964. min-height: calc(1.5em + 1rem + 2px);
  1965. }
  1966. .form-control-color {
  1967. width: 3rem;
  1968. height: calc(1.5em + 0.75rem + 2px);
  1969. padding: 0.375rem;
  1970. }
  1971. .form-control-color:not(:disabled):not([readonly]) {
  1972. cursor: pointer;
  1973. }
  1974. .form-control-color::-moz-color-swatch {
  1975. border: 0 !important;
  1976. border-radius: 0.375rem;
  1977. }
  1978. .form-control-color::-webkit-color-swatch {
  1979. border-radius: 0.375rem;
  1980. }
  1981. .form-control-color.form-control-sm {
  1982. height: calc(1.5em + 0.5rem + 2px);
  1983. }
  1984. .form-control-color.form-control-lg {
  1985. height: calc(1.5em + 1rem + 2px);
  1986. }
  1987. .form-select, .datatable-selector {
  1988. display: block;
  1989. width: 100%;
  1990. padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  1991. -moz-padding-start: calc(0.75rem - 3px);
  1992. font-size: 1rem;
  1993. font-weight: 400;
  1994. line-height: 1.5;
  1995. color: #212529;
  1996. background-color: #fff;
  1997. background-image: 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");
  1998. background-repeat: no-repeat;
  1999. background-position: right 0.75rem center;
  2000. background-size: 16px 12px;
  2001. border: 1px solid #ced4da;
  2002. border-radius: 0.375rem;
  2003. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2004. -webkit-appearance: none;
  2005. -moz-appearance: none;
  2006. appearance: none;
  2007. }
  2008. @media (prefers-reduced-motion: reduce) {
  2009. .form-select, .datatable-selector {
  2010. transition: none;
  2011. }
  2012. }
  2013. .form-select:focus, .datatable-selector:focus {
  2014. border-color: #86b7fe;
  2015. outline: 0;
  2016. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2017. }
  2018. .form-select[multiple], [multiple].datatable-selector, .form-select[size]:not([size="1"]), [size].datatable-selector:not([size="1"]) {
  2019. padding-right: 0.75rem;
  2020. background-image: none;
  2021. }
  2022. .form-select:disabled, .datatable-selector:disabled {
  2023. background-color: #e9ecef;
  2024. }
  2025. .form-select:-moz-focusring, .datatable-selector:-moz-focusring {
  2026. color: transparent;
  2027. text-shadow: 0 0 0 #212529;
  2028. }
  2029. .form-select-sm {
  2030. padding-top: 0.25rem;
  2031. padding-bottom: 0.25rem;
  2032. padding-left: 0.5rem;
  2033. font-size: 0.875rem;
  2034. border-radius: 0.25rem;
  2035. }
  2036. .form-select-lg {
  2037. padding-top: 0.5rem;
  2038. padding-bottom: 0.5rem;
  2039. padding-left: 1rem;
  2040. font-size: 1.25rem;
  2041. border-radius: 0.5rem;
  2042. }
  2043. .form-check {
  2044. display: block;
  2045. min-height: 1.5rem;
  2046. padding-left: 1.5em;
  2047. margin-bottom: 0.125rem;
  2048. }
  2049. .form-check .form-check-input {
  2050. float: left;
  2051. margin-left: -1.5em;
  2052. }
  2053. .form-check-reverse {
  2054. padding-right: 1.5em;
  2055. padding-left: 0;
  2056. text-align: right;
  2057. }
  2058. .form-check-reverse .form-check-input {
  2059. float: right;
  2060. margin-right: -1.5em;
  2061. margin-left: 0;
  2062. }
  2063. .form-check-input {
  2064. width: 1em;
  2065. height: 1em;
  2066. margin-top: 0.25em;
  2067. vertical-align: top;
  2068. background-color: #fff;
  2069. background-repeat: no-repeat;
  2070. background-position: center;
  2071. background-size: contain;
  2072. border: 1px solid rgba(0, 0, 0, 0.25);
  2073. -webkit-appearance: none;
  2074. -moz-appearance: none;
  2075. appearance: none;
  2076. -webkit-print-color-adjust: exact;
  2077. print-color-adjust: exact;
  2078. }
  2079. .form-check-input[type=checkbox] {
  2080. border-radius: 0.25em;
  2081. }
  2082. .form-check-input[type=radio] {
  2083. border-radius: 50%;
  2084. }
  2085. .form-check-input:active {
  2086. filter: brightness(90%);
  2087. }
  2088. .form-check-input:focus {
  2089. border-color: #86b7fe;
  2090. outline: 0;
  2091. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2092. }
  2093. .form-check-input:checked {
  2094. background-color: #0d6efd;
  2095. border-color: #0d6efd;
  2096. }
  2097. .form-check-input:checked[type=checkbox] {
  2098. background-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");
  2099. }
  2100. .form-check-input:checked[type=radio] {
  2101. background-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");
  2102. }
  2103. .form-check-input[type=checkbox]:indeterminate {
  2104. background-color: #0d6efd;
  2105. border-color: #0d6efd;
  2106. background-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");
  2107. }
  2108. .form-check-input:disabled {
  2109. pointer-events: none;
  2110. filter: none;
  2111. opacity: 0.5;
  2112. }
  2113. .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  2114. cursor: default;
  2115. opacity: 0.5;
  2116. }
  2117. .form-switch {
  2118. padding-left: 2.5em;
  2119. }
  2120. .form-switch .form-check-input {
  2121. width: 2em;
  2122. margin-left: -2.5em;
  2123. background-image: 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");
  2124. background-position: left center;
  2125. border-radius: 2em;
  2126. transition: background-position 0.15s ease-in-out;
  2127. }
  2128. @media (prefers-reduced-motion: reduce) {
  2129. .form-switch .form-check-input {
  2130. transition: none;
  2131. }
  2132. }
  2133. .form-switch .form-check-input:focus {
  2134. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
  2135. }
  2136. .form-switch .form-check-input:checked {
  2137. background-position: right center;
  2138. background-image: 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");
  2139. }
  2140. .form-switch.form-check-reverse {
  2141. padding-right: 2.5em;
  2142. padding-left: 0;
  2143. }
  2144. .form-switch.form-check-reverse .form-check-input {
  2145. margin-right: -2.5em;
  2146. margin-left: 0;
  2147. }
  2148. .form-check-inline {
  2149. display: inline-block;
  2150. margin-right: 1rem;
  2151. }
  2152. .btn-check {
  2153. position: absolute;
  2154. clip: rect(0, 0, 0, 0);
  2155. pointer-events: none;
  2156. }
  2157. .btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  2158. pointer-events: none;
  2159. filter: none;
  2160. opacity: 0.65;
  2161. }
  2162. .form-range {
  2163. width: 100%;
  2164. height: 1.5rem;
  2165. padding: 0;
  2166. background-color: transparent;
  2167. -webkit-appearance: none;
  2168. -moz-appearance: none;
  2169. appearance: none;
  2170. }
  2171. .form-range:focus {
  2172. outline: 0;
  2173. }
  2174. .form-range:focus::-webkit-slider-thumb {
  2175. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2176. }
  2177. .form-range:focus::-moz-range-thumb {
  2178. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2179. }
  2180. .form-range::-moz-focus-outer {
  2181. border: 0;
  2182. }
  2183. .form-range::-webkit-slider-thumb {
  2184. width: 1rem;
  2185. height: 1rem;
  2186. margin-top: -0.25rem;
  2187. background-color: #0d6efd;
  2188. border: 0;
  2189. border-radius: 1rem;
  2190. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2191. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2192. -webkit-appearance: none;
  2193. appearance: none;
  2194. }
  2195. @media (prefers-reduced-motion: reduce) {
  2196. .form-range::-webkit-slider-thumb {
  2197. -webkit-transition: none;
  2198. transition: none;
  2199. }
  2200. }
  2201. .form-range::-webkit-slider-thumb:active {
  2202. background-color: #b6d4fe;
  2203. }
  2204. .form-range::-webkit-slider-runnable-track {
  2205. width: 100%;
  2206. height: 0.5rem;
  2207. color: transparent;
  2208. cursor: pointer;
  2209. background-color: #dee2e6;
  2210. border-color: transparent;
  2211. border-radius: 1rem;
  2212. }
  2213. .form-range::-moz-range-thumb {
  2214. width: 1rem;
  2215. height: 1rem;
  2216. background-color: #0d6efd;
  2217. border: 0;
  2218. border-radius: 1rem;
  2219. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2220. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2221. -moz-appearance: none;
  2222. appearance: none;
  2223. }
  2224. @media (prefers-reduced-motion: reduce) {
  2225. .form-range::-moz-range-thumb {
  2226. -moz-transition: none;
  2227. transition: none;
  2228. }
  2229. }
  2230. .form-range::-moz-range-thumb:active {
  2231. background-color: #b6d4fe;
  2232. }
  2233. .form-range::-moz-range-track {
  2234. width: 100%;
  2235. height: 0.5rem;
  2236. color: transparent;
  2237. cursor: pointer;
  2238. background-color: #dee2e6;
  2239. border-color: transparent;
  2240. border-radius: 1rem;
  2241. }
  2242. .form-range:disabled {
  2243. pointer-events: none;
  2244. }
  2245. .form-range:disabled::-webkit-slider-thumb {
  2246. background-color: #adb5bd;
  2247. }
  2248. .form-range:disabled::-moz-range-thumb {
  2249. background-color: #adb5bd;
  2250. }
  2251. .form-floating {
  2252. position: relative;
  2253. }
  2254. .form-floating > .form-control, .form-floating > .datatable-input,
  2255. .form-floating > .form-control-plaintext,
  2256. .form-floating > .form-select,
  2257. .form-floating > .datatable-selector {
  2258. height: calc(3.5rem + 2px);
  2259. line-height: 1.25;
  2260. }
  2261. .form-floating > label {
  2262. position: absolute;
  2263. top: 0;
  2264. left: 0;
  2265. width: 100%;
  2266. height: 100%;
  2267. padding: 1rem 0.75rem;
  2268. overflow: hidden;
  2269. text-align: start;
  2270. text-overflow: ellipsis;
  2271. white-space: nowrap;
  2272. pointer-events: none;
  2273. border: 1px solid transparent;
  2274. transform-origin: 0 0;
  2275. transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  2276. }
  2277. @media (prefers-reduced-motion: reduce) {
  2278. .form-floating > label {
  2279. transition: none;
  2280. }
  2281. }
  2282. .form-floating > .form-control, .form-floating > .datatable-input,
  2283. .form-floating > .form-control-plaintext {
  2284. padding: 1rem 0.75rem;
  2285. }
  2286. .form-floating > .form-control::-moz-placeholder, .form-floating > .datatable-input::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  2287. color: transparent;
  2288. }
  2289. .form-floating > .form-control::placeholder, .form-floating > .datatable-input::placeholder,
  2290. .form-floating > .form-control-plaintext::placeholder {
  2291. color: transparent;
  2292. }
  2293. .form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .datatable-input:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
  2294. padding-top: 1.625rem;
  2295. padding-bottom: 0.625rem;
  2296. }
  2297. .form-floating > .form-control:focus, .form-floating > .datatable-input:focus, .form-floating > .form-control:not(:placeholder-shown), .form-floating > .datatable-input:not(:placeholder-shown),
  2298. .form-floating > .form-control-plaintext:focus,
  2299. .form-floating > .form-control-plaintext:not(:placeholder-shown) {
  2300. padding-top: 1.625rem;
  2301. padding-bottom: 0.625rem;
  2302. }
  2303. .form-floating > .form-control:-webkit-autofill, .form-floating > .datatable-input:-webkit-autofill,
  2304. .form-floating > .form-control-plaintext:-webkit-autofill {
  2305. padding-top: 1.625rem;
  2306. padding-bottom: 0.625rem;
  2307. }
  2308. .form-floating > .form-select, .form-floating > .datatable-selector {
  2309. padding-top: 1.625rem;
  2310. padding-bottom: 0.625rem;
  2311. }
  2312. .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label, .form-floating > .datatable-input:not(:-moz-placeholder-shown) ~ label {
  2313. opacity: 0.65;
  2314. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2315. }
  2316. .form-floating > .form-control:focus ~ label, .form-floating > .datatable-input:focus ~ label,
  2317. .form-floating > .form-control:not(:placeholder-shown) ~ label,
  2318. .form-floating > .datatable-input:not(:placeholder-shown) ~ label,
  2319. .form-floating > .form-control-plaintext ~ label,
  2320. .form-floating > .form-select ~ label,
  2321. .form-floating > .datatable-selector ~ label {
  2322. opacity: 0.65;
  2323. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2324. }
  2325. .form-floating > .form-control:-webkit-autofill ~ label, .form-floating > .datatable-input:-webkit-autofill ~ label {
  2326. opacity: 0.65;
  2327. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2328. }
  2329. .form-floating > .form-control-plaintext ~ label {
  2330. border-width: 1px 0;
  2331. }
  2332. .input-group {
  2333. position: relative;
  2334. display: flex;
  2335. flex-wrap: wrap;
  2336. align-items: stretch;
  2337. width: 100%;
  2338. }
  2339. .input-group > .form-control, .input-group > .datatable-input,
  2340. .input-group > .form-select,
  2341. .input-group > .datatable-selector,
  2342. .input-group > .form-floating {
  2343. position: relative;
  2344. flex: 1 1 auto;
  2345. width: 1%;
  2346. min-width: 0;
  2347. }
  2348. .input-group > .form-control:focus, .input-group > .datatable-input:focus,
  2349. .input-group > .form-select:focus,
  2350. .input-group > .datatable-selector:focus,
  2351. .input-group > .form-floating:focus-within {
  2352. z-index: 5;
  2353. }
  2354. .input-group .btn {
  2355. position: relative;
  2356. z-index: 2;
  2357. }
  2358. .input-group .btn:focus {
  2359. z-index: 5;
  2360. }
  2361. .input-group-text {
  2362. display: flex;
  2363. align-items: center;
  2364. padding: 0.375rem 0.75rem;
  2365. font-size: 1rem;
  2366. font-weight: 400;
  2367. line-height: 1.5;
  2368. color: #212529;
  2369. text-align: center;
  2370. white-space: nowrap;
  2371. background-color: #e9ecef;
  2372. border: 1px solid #ced4da;
  2373. border-radius: 0.375rem;
  2374. }
  2375. .input-group-lg > .form-control, .input-group-lg > .datatable-input,
  2376. .input-group-lg > .form-select,
  2377. .input-group-lg > .datatable-selector,
  2378. .input-group-lg > .input-group-text,
  2379. .input-group-lg > .btn {
  2380. padding: 0.5rem 1rem;
  2381. font-size: 1.25rem;
  2382. border-radius: 0.5rem;
  2383. }
  2384. .input-group-sm > .form-control, .input-group-sm > .datatable-input,
  2385. .input-group-sm > .form-select,
  2386. .input-group-sm > .datatable-selector,
  2387. .input-group-sm > .input-group-text,
  2388. .input-group-sm > .btn {
  2389. padding: 0.25rem 0.5rem;
  2390. font-size: 0.875rem;
  2391. border-radius: 0.25rem;
  2392. }
  2393. .input-group-lg > .form-select, .input-group-lg > .datatable-selector,
  2394. .input-group-sm > .form-select,
  2395. .input-group-sm > .datatable-selector {
  2396. padding-right: 3rem;
  2397. }
  2398. .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2399. .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
  2400. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
  2401. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .datatable-input,
  2402. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select,
  2403. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .datatable-selector {
  2404. border-top-right-radius: 0;
  2405. border-bottom-right-radius: 0;
  2406. }
  2407. .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2408. .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
  2409. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
  2410. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .datatable-input,
  2411. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select,
  2412. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .datatable-selector {
  2413. border-top-right-radius: 0;
  2414. border-bottom-right-radius: 0;
  2415. }
  2416. .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  2417. margin-left: -1px;
  2418. border-top-left-radius: 0;
  2419. border-bottom-left-radius: 0;
  2420. }
  2421. .input-group > .form-floating:not(:first-child) > .form-control, .input-group > .form-floating:not(:first-child) > .datatable-input,
  2422. .input-group > .form-floating:not(:first-child) > .form-select,
  2423. .input-group > .form-floating:not(:first-child) > .datatable-selector {
  2424. border-top-left-radius: 0;
  2425. border-bottom-left-radius: 0;
  2426. }
  2427. .valid-feedback {
  2428. display: none;
  2429. width: 100%;
  2430. margin-top: 0.25rem;
  2431. font-size: 0.875em;
  2432. color: #198754;
  2433. }
  2434. .valid-tooltip {
  2435. position: absolute;
  2436. top: 100%;
  2437. z-index: 5;
  2438. display: none;
  2439. max-width: 100%;
  2440. padding: 0.25rem 0.5rem;
  2441. margin-top: 0.1rem;
  2442. font-size: 0.875rem;
  2443. color: #fff;
  2444. background-color: rgba(25, 135, 84, 0.9);
  2445. border-radius: 0.375rem;
  2446. }
  2447. .was-validated :valid ~ .valid-feedback,
  2448. .was-validated :valid ~ .valid-tooltip,
  2449. .is-valid ~ .valid-feedback,
  2450. .is-valid ~ .valid-tooltip {
  2451. display: block;
  2452. }
  2453. .was-validated .form-control:valid, .was-validated .datatable-input:valid, .form-control.is-valid, .is-valid.datatable-input {
  2454. border-color: #198754;
  2455. padding-right: calc(1.5em + 0.75rem);
  2456. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  2457. background-repeat: no-repeat;
  2458. background-position: right calc(0.375em + 0.1875rem) center;
  2459. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2460. }
  2461. .was-validated .form-control:valid:focus, .was-validated .datatable-input:valid:focus, .form-control.is-valid:focus, .is-valid.datatable-input:focus {
  2462. border-color: #198754;
  2463. box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
  2464. }
  2465. .was-validated textarea.form-control:valid, .was-validated textarea.datatable-input:valid, textarea.form-control.is-valid, textarea.is-valid.datatable-input {
  2466. padding-right: calc(1.5em + 0.75rem);
  2467. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2468. }
  2469. .was-validated .form-select:valid, .was-validated .datatable-selector:valid, .form-select.is-valid, .is-valid.datatable-selector {
  2470. border-color: #198754;
  2471. }
  2472. .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .datatable-selector:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .was-validated .datatable-selector:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .is-valid.datatable-selector:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"], .is-valid.datatable-selector:not([multiple])[size="1"] {
  2473. padding-right: 4.125rem;
  2474. background-image: 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"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  2475. background-position: right 0.75rem center, center right 2.25rem;
  2476. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2477. }
  2478. .was-validated .form-select:valid:focus, .was-validated .datatable-selector:valid:focus, .form-select.is-valid:focus, .is-valid.datatable-selector:focus {
  2479. border-color: #198754;
  2480. box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
  2481. }
  2482. .was-validated .form-control-color:valid, .form-control-color.is-valid {
  2483. width: calc(3rem + calc(1.5em + 0.75rem));
  2484. }
  2485. .was-validated .form-check-input:valid, .form-check-input.is-valid {
  2486. border-color: #198754;
  2487. }
  2488. .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  2489. background-color: #198754;
  2490. }
  2491. .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  2492. box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
  2493. }
  2494. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  2495. color: #198754;
  2496. }
  2497. .form-check-inline .form-check-input ~ .valid-feedback {
  2498. margin-left: 0.5em;
  2499. }
  2500. .was-validated .input-group > .form-control:not(:focus):valid, .was-validated .input-group > .datatable-input:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid, .input-group > .datatable-input:not(:focus).is-valid,
  2501. .was-validated .input-group > .form-select:not(:focus):valid,
  2502. .was-validated .input-group > .datatable-selector:not(:focus):valid,
  2503. .input-group > .form-select:not(:focus).is-valid,
  2504. .input-group > .datatable-selector:not(:focus).is-valid,
  2505. .was-validated .input-group > .form-floating:not(:focus-within):valid,
  2506. .input-group > .form-floating:not(:focus-within).is-valid {
  2507. z-index: 3;
  2508. }
  2509. .invalid-feedback {
  2510. display: none;
  2511. width: 100%;
  2512. margin-top: 0.25rem;
  2513. font-size: 0.875em;
  2514. color: #dc3545;
  2515. }
  2516. .invalid-tooltip {
  2517. position: absolute;
  2518. top: 100%;
  2519. z-index: 5;
  2520. display: none;
  2521. max-width: 100%;
  2522. padding: 0.25rem 0.5rem;
  2523. margin-top: 0.1rem;
  2524. font-size: 0.875rem;
  2525. color: #fff;
  2526. background-color: rgba(220, 53, 69, 0.9);
  2527. border-radius: 0.375rem;
  2528. }
  2529. .was-validated :invalid ~ .invalid-feedback,
  2530. .was-validated :invalid ~ .invalid-tooltip,
  2531. .is-invalid ~ .invalid-feedback,
  2532. .is-invalid ~ .invalid-tooltip {
  2533. display: block;
  2534. }
  2535. .was-validated .form-control:invalid, .was-validated .datatable-input:invalid, .form-control.is-invalid, .is-invalid.datatable-input {
  2536. border-color: #dc3545;
  2537. padding-right: calc(1.5em + 0.75rem);
  2538. 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");
  2539. background-repeat: no-repeat;
  2540. background-position: right calc(0.375em + 0.1875rem) center;
  2541. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2542. }
  2543. .was-validated .form-control:invalid:focus, .was-validated .datatable-input:invalid:focus, .form-control.is-invalid:focus, .is-invalid.datatable-input:focus {
  2544. border-color: #dc3545;
  2545. box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  2546. }
  2547. .was-validated textarea.form-control:invalid, .was-validated textarea.datatable-input:invalid, textarea.form-control.is-invalid, textarea.is-invalid.datatable-input {
  2548. padding-right: calc(1.5em + 0.75rem);
  2549. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2550. }
  2551. .was-validated .form-select:invalid, .was-validated .datatable-selector:invalid, .form-select.is-invalid, .is-invalid.datatable-selector {
  2552. border-color: #dc3545;
  2553. }
  2554. .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .datatable-selector:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .was-validated .datatable-selector:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .is-invalid.datatable-selector:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"], .is-invalid.datatable-selector:not([multiple])[size="1"] {
  2555. padding-right: 4.125rem;
  2556. background-image: 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"), 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");
  2557. background-position: right 0.75rem center, center right 2.25rem;
  2558. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2559. }
  2560. .was-validated .form-select:invalid:focus, .was-validated .datatable-selector:invalid:focus, .form-select.is-invalid:focus, .is-invalid.datatable-selector:focus {
  2561. border-color: #dc3545;
  2562. box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  2563. }
  2564. .was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  2565. width: calc(3rem + calc(1.5em + 0.75rem));
  2566. }
  2567. .was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  2568. border-color: #dc3545;
  2569. }
  2570. .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  2571. background-color: #dc3545;
  2572. }
  2573. .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  2574. box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  2575. }
  2576. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  2577. color: #dc3545;
  2578. }
  2579. .form-check-inline .form-check-input ~ .invalid-feedback {
  2580. margin-left: 0.5em;
  2581. }
  2582. .was-validated .input-group > .form-control:not(:focus):invalid, .was-validated .input-group > .datatable-input:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid, .input-group > .datatable-input:not(:focus).is-invalid,
  2583. .was-validated .input-group > .form-select:not(:focus):invalid,
  2584. .was-validated .input-group > .datatable-selector:not(:focus):invalid,
  2585. .input-group > .form-select:not(:focus).is-invalid,
  2586. .input-group > .datatable-selector:not(:focus).is-invalid,
  2587. .was-validated .input-group > .form-floating:not(:focus-within):invalid,
  2588. .input-group > .form-floating:not(:focus-within).is-invalid {
  2589. z-index: 4;
  2590. }
  2591. .btn {
  2592. --bs-btn-padding-x: 0.75rem;
  2593. --bs-btn-padding-y: 0.375rem;
  2594. --bs-btn-font-family: ;
  2595. --bs-btn-font-size: 1rem;
  2596. --bs-btn-font-weight: 400;
  2597. --bs-btn-line-height: 1.5;
  2598. --bs-btn-color: #212529;
  2599. --bs-btn-bg: transparent;
  2600. --bs-btn-border-width: 1px;
  2601. --bs-btn-border-color: transparent;
  2602. --bs-btn-border-radius: 0.375rem;
  2603. --bs-btn-hover-border-color: transparent;
  2604. --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  2605. --bs-btn-disabled-opacity: 0.65;
  2606. --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  2607. display: inline-block;
  2608. padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  2609. font-family: var(--bs-btn-font-family);
  2610. font-size: var(--bs-btn-font-size);
  2611. font-weight: var(--bs-btn-font-weight);
  2612. line-height: var(--bs-btn-line-height);
  2613. color: var(--bs-btn-color);
  2614. text-align: center;
  2615. text-decoration: none;
  2616. vertical-align: middle;
  2617. cursor: pointer;
  2618. -webkit-user-select: none;
  2619. -moz-user-select: none;
  2620. user-select: none;
  2621. border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  2622. border-radius: var(--bs-btn-border-radius);
  2623. background-color: var(--bs-btn-bg);
  2624. 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;
  2625. }
  2626. @media (prefers-reduced-motion: reduce) {
  2627. .btn {
  2628. transition: none;
  2629. }
  2630. }
  2631. .btn:hover {
  2632. color: var(--bs-btn-hover-color);
  2633. background-color: var(--bs-btn-hover-bg);
  2634. border-color: var(--bs-btn-hover-border-color);
  2635. }
  2636. .btn-check + .btn:hover {
  2637. color: var(--bs-btn-color);
  2638. background-color: var(--bs-btn-bg);
  2639. border-color: var(--bs-btn-border-color);
  2640. }
  2641. .btn:focus-visible {
  2642. color: var(--bs-btn-hover-color);
  2643. background-color: var(--bs-btn-hover-bg);
  2644. border-color: var(--bs-btn-hover-border-color);
  2645. outline: 0;
  2646. box-shadow: var(--bs-btn-focus-box-shadow);
  2647. }
  2648. .btn-check:focus-visible + .btn {
  2649. border-color: var(--bs-btn-hover-border-color);
  2650. outline: 0;
  2651. box-shadow: var(--bs-btn-focus-box-shadow);
  2652. }
  2653. .btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  2654. color: var(--bs-btn-active-color);
  2655. background-color: var(--bs-btn-active-bg);
  2656. border-color: var(--bs-btn-active-border-color);
  2657. }
  2658. .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 {
  2659. box-shadow: var(--bs-btn-focus-box-shadow);
  2660. }
  2661. .btn:disabled, .btn.disabled, fieldset:disabled .btn {
  2662. color: var(--bs-btn-disabled-color);
  2663. pointer-events: none;
  2664. background-color: var(--bs-btn-disabled-bg);
  2665. border-color: var(--bs-btn-disabled-border-color);
  2666. opacity: var(--bs-btn-disabled-opacity);
  2667. }
  2668. .btn-primary {
  2669. --bs-btn-color: #fff;
  2670. --bs-btn-bg: #0d6efd;
  2671. --bs-btn-border-color: #0d6efd;
  2672. --bs-btn-hover-color: #fff;
  2673. --bs-btn-hover-bg: #0b5ed7;
  2674. --bs-btn-hover-border-color: #0a58ca;
  2675. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  2676. --bs-btn-active-color: #fff;
  2677. --bs-btn-active-bg: #0a58ca;
  2678. --bs-btn-active-border-color: #0a53be;
  2679. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2680. --bs-btn-disabled-color: #fff;
  2681. --bs-btn-disabled-bg: #0d6efd;
  2682. --bs-btn-disabled-border-color: #0d6efd;
  2683. }
  2684. .btn-secondary {
  2685. --bs-btn-color: #fff;
  2686. --bs-btn-bg: #6c757d;
  2687. --bs-btn-border-color: #6c757d;
  2688. --bs-btn-hover-color: #fff;
  2689. --bs-btn-hover-bg: #5c636a;
  2690. --bs-btn-hover-border-color: #565e64;
  2691. --bs-btn-focus-shadow-rgb: 130, 138, 145;
  2692. --bs-btn-active-color: #fff;
  2693. --bs-btn-active-bg: #565e64;
  2694. --bs-btn-active-border-color: #51585e;
  2695. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2696. --bs-btn-disabled-color: #fff;
  2697. --bs-btn-disabled-bg: #6c757d;
  2698. --bs-btn-disabled-border-color: #6c757d;
  2699. }
  2700. .btn-success {
  2701. --bs-btn-color: #fff;
  2702. --bs-btn-bg: #198754;
  2703. --bs-btn-border-color: #198754;
  2704. --bs-btn-hover-color: #fff;
  2705. --bs-btn-hover-bg: #157347;
  2706. --bs-btn-hover-border-color: #146c43;
  2707. --bs-btn-focus-shadow-rgb: 60, 153, 110;
  2708. --bs-btn-active-color: #fff;
  2709. --bs-btn-active-bg: #146c43;
  2710. --bs-btn-active-border-color: #13653f;
  2711. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2712. --bs-btn-disabled-color: #fff;
  2713. --bs-btn-disabled-bg: #198754;
  2714. --bs-btn-disabled-border-color: #198754;
  2715. }
  2716. .btn-info {
  2717. --bs-btn-color: #000;
  2718. --bs-btn-bg: #0dcaf0;
  2719. --bs-btn-border-color: #0dcaf0;
  2720. --bs-btn-hover-color: #000;
  2721. --bs-btn-hover-bg: #31d2f2;
  2722. --bs-btn-hover-border-color: #25cff2;
  2723. --bs-btn-focus-shadow-rgb: 11, 172, 204;
  2724. --bs-btn-active-color: #000;
  2725. --bs-btn-active-bg: #3dd5f3;
  2726. --bs-btn-active-border-color: #25cff2;
  2727. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2728. --bs-btn-disabled-color: #000;
  2729. --bs-btn-disabled-bg: #0dcaf0;
  2730. --bs-btn-disabled-border-color: #0dcaf0;
  2731. }
  2732. .btn-warning {
  2733. --bs-btn-color: #000;
  2734. --bs-btn-bg: #ffc107;
  2735. --bs-btn-border-color: #ffc107;
  2736. --bs-btn-hover-color: #000;
  2737. --bs-btn-hover-bg: #ffca2c;
  2738. --bs-btn-hover-border-color: #ffc720;
  2739. --bs-btn-focus-shadow-rgb: 217, 164, 6;
  2740. --bs-btn-active-color: #000;
  2741. --bs-btn-active-bg: #ffcd39;
  2742. --bs-btn-active-border-color: #ffc720;
  2743. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2744. --bs-btn-disabled-color: #000;
  2745. --bs-btn-disabled-bg: #ffc107;
  2746. --bs-btn-disabled-border-color: #ffc107;
  2747. }
  2748. .btn-danger {
  2749. --bs-btn-color: #fff;
  2750. --bs-btn-bg: #dc3545;
  2751. --bs-btn-border-color: #dc3545;
  2752. --bs-btn-hover-color: #fff;
  2753. --bs-btn-hover-bg: #bb2d3b;
  2754. --bs-btn-hover-border-color: #b02a37;
  2755. --bs-btn-focus-shadow-rgb: 225, 83, 97;
  2756. --bs-btn-active-color: #fff;
  2757. --bs-btn-active-bg: #b02a37;
  2758. --bs-btn-active-border-color: #a52834;
  2759. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2760. --bs-btn-disabled-color: #fff;
  2761. --bs-btn-disabled-bg: #dc3545;
  2762. --bs-btn-disabled-border-color: #dc3545;
  2763. }
  2764. .btn-light {
  2765. --bs-btn-color: #000;
  2766. --bs-btn-bg: #f8f9fa;
  2767. --bs-btn-border-color: #f8f9fa;
  2768. --bs-btn-hover-color: #000;
  2769. --bs-btn-hover-bg: #d3d4d5;
  2770. --bs-btn-hover-border-color: #c6c7c8;
  2771. --bs-btn-focus-shadow-rgb: 211, 212, 213;
  2772. --bs-btn-active-color: #000;
  2773. --bs-btn-active-bg: #c6c7c8;
  2774. --bs-btn-active-border-color: #babbbc;
  2775. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2776. --bs-btn-disabled-color: #000;
  2777. --bs-btn-disabled-bg: #f8f9fa;
  2778. --bs-btn-disabled-border-color: #f8f9fa;
  2779. }
  2780. .btn-dark {
  2781. --bs-btn-color: #fff;
  2782. --bs-btn-bg: #212529;
  2783. --bs-btn-border-color: #212529;
  2784. --bs-btn-hover-color: #fff;
  2785. --bs-btn-hover-bg: #424649;
  2786. --bs-btn-hover-border-color: #373b3e;
  2787. --bs-btn-focus-shadow-rgb: 66, 70, 73;
  2788. --bs-btn-active-color: #fff;
  2789. --bs-btn-active-bg: #4d5154;
  2790. --bs-btn-active-border-color: #373b3e;
  2791. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2792. --bs-btn-disabled-color: #fff;
  2793. --bs-btn-disabled-bg: #212529;
  2794. --bs-btn-disabled-border-color: #212529;
  2795. }
  2796. .btn-outline-primary {
  2797. --bs-btn-color: #0d6efd;
  2798. --bs-btn-border-color: #0d6efd;
  2799. --bs-btn-hover-color: #fff;
  2800. --bs-btn-hover-bg: #0d6efd;
  2801. --bs-btn-hover-border-color: #0d6efd;
  2802. --bs-btn-focus-shadow-rgb: 13, 110, 253;
  2803. --bs-btn-active-color: #fff;
  2804. --bs-btn-active-bg: #0d6efd;
  2805. --bs-btn-active-border-color: #0d6efd;
  2806. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2807. --bs-btn-disabled-color: #0d6efd;
  2808. --bs-btn-disabled-bg: transparent;
  2809. --bs-btn-disabled-border-color: #0d6efd;
  2810. --bs-gradient: none;
  2811. }
  2812. .btn-outline-secondary {
  2813. --bs-btn-color: #6c757d;
  2814. --bs-btn-border-color: #6c757d;
  2815. --bs-btn-hover-color: #fff;
  2816. --bs-btn-hover-bg: #6c757d;
  2817. --bs-btn-hover-border-color: #6c757d;
  2818. --bs-btn-focus-shadow-rgb: 108, 117, 125;
  2819. --bs-btn-active-color: #fff;
  2820. --bs-btn-active-bg: #6c757d;
  2821. --bs-btn-active-border-color: #6c757d;
  2822. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2823. --bs-btn-disabled-color: #6c757d;
  2824. --bs-btn-disabled-bg: transparent;
  2825. --bs-btn-disabled-border-color: #6c757d;
  2826. --bs-gradient: none;
  2827. }
  2828. .btn-outline-success {
  2829. --bs-btn-color: #198754;
  2830. --bs-btn-border-color: #198754;
  2831. --bs-btn-hover-color: #fff;
  2832. --bs-btn-hover-bg: #198754;
  2833. --bs-btn-hover-border-color: #198754;
  2834. --bs-btn-focus-shadow-rgb: 25, 135, 84;
  2835. --bs-btn-active-color: #fff;
  2836. --bs-btn-active-bg: #198754;
  2837. --bs-btn-active-border-color: #198754;
  2838. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2839. --bs-btn-disabled-color: #198754;
  2840. --bs-btn-disabled-bg: transparent;
  2841. --bs-btn-disabled-border-color: #198754;
  2842. --bs-gradient: none;
  2843. }
  2844. .btn-outline-info {
  2845. --bs-btn-color: #0dcaf0;
  2846. --bs-btn-border-color: #0dcaf0;
  2847. --bs-btn-hover-color: #000;
  2848. --bs-btn-hover-bg: #0dcaf0;
  2849. --bs-btn-hover-border-color: #0dcaf0;
  2850. --bs-btn-focus-shadow-rgb: 13, 202, 240;
  2851. --bs-btn-active-color: #000;
  2852. --bs-btn-active-bg: #0dcaf0;
  2853. --bs-btn-active-border-color: #0dcaf0;
  2854. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2855. --bs-btn-disabled-color: #0dcaf0;
  2856. --bs-btn-disabled-bg: transparent;
  2857. --bs-btn-disabled-border-color: #0dcaf0;
  2858. --bs-gradient: none;
  2859. }
  2860. .btn-outline-warning {
  2861. --bs-btn-color: #ffc107;
  2862. --bs-btn-border-color: #ffc107;
  2863. --bs-btn-hover-color: #000;
  2864. --bs-btn-hover-bg: #ffc107;
  2865. --bs-btn-hover-border-color: #ffc107;
  2866. --bs-btn-focus-shadow-rgb: 255, 193, 7;
  2867. --bs-btn-active-color: #000;
  2868. --bs-btn-active-bg: #ffc107;
  2869. --bs-btn-active-border-color: #ffc107;
  2870. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2871. --bs-btn-disabled-color: #ffc107;
  2872. --bs-btn-disabled-bg: transparent;
  2873. --bs-btn-disabled-border-color: #ffc107;
  2874. --bs-gradient: none;
  2875. }
  2876. .btn-outline-danger {
  2877. --bs-btn-color: #dc3545;
  2878. --bs-btn-border-color: #dc3545;
  2879. --bs-btn-hover-color: #fff;
  2880. --bs-btn-hover-bg: #dc3545;
  2881. --bs-btn-hover-border-color: #dc3545;
  2882. --bs-btn-focus-shadow-rgb: 220, 53, 69;
  2883. --bs-btn-active-color: #fff;
  2884. --bs-btn-active-bg: #dc3545;
  2885. --bs-btn-active-border-color: #dc3545;
  2886. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2887. --bs-btn-disabled-color: #dc3545;
  2888. --bs-btn-disabled-bg: transparent;
  2889. --bs-btn-disabled-border-color: #dc3545;
  2890. --bs-gradient: none;
  2891. }
  2892. .btn-outline-light {
  2893. --bs-btn-color: #f8f9fa;
  2894. --bs-btn-border-color: #f8f9fa;
  2895. --bs-btn-hover-color: #000;
  2896. --bs-btn-hover-bg: #f8f9fa;
  2897. --bs-btn-hover-border-color: #f8f9fa;
  2898. --bs-btn-focus-shadow-rgb: 248, 249, 250;
  2899. --bs-btn-active-color: #000;
  2900. --bs-btn-active-bg: #f8f9fa;
  2901. --bs-btn-active-border-color: #f8f9fa;
  2902. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2903. --bs-btn-disabled-color: #f8f9fa;
  2904. --bs-btn-disabled-bg: transparent;
  2905. --bs-btn-disabled-border-color: #f8f9fa;
  2906. --bs-gradient: none;
  2907. }
  2908. .btn-outline-dark {
  2909. --bs-btn-color: #212529;
  2910. --bs-btn-border-color: #212529;
  2911. --bs-btn-hover-color: #fff;
  2912. --bs-btn-hover-bg: #212529;
  2913. --bs-btn-hover-border-color: #212529;
  2914. --bs-btn-focus-shadow-rgb: 33, 37, 41;
  2915. --bs-btn-active-color: #fff;
  2916. --bs-btn-active-bg: #212529;
  2917. --bs-btn-active-border-color: #212529;
  2918. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2919. --bs-btn-disabled-color: #212529;
  2920. --bs-btn-disabled-bg: transparent;
  2921. --bs-btn-disabled-border-color: #212529;
  2922. --bs-gradient: none;
  2923. }
  2924. .btn-link {
  2925. --bs-btn-font-weight: 400;
  2926. --bs-btn-color: var(--bs-link-color);
  2927. --bs-btn-bg: transparent;
  2928. --bs-btn-border-color: transparent;
  2929. --bs-btn-hover-color: var(--bs-link-hover-color);
  2930. --bs-btn-hover-border-color: transparent;
  2931. --bs-btn-active-color: var(--bs-link-hover-color);
  2932. --bs-btn-active-border-color: transparent;
  2933. --bs-btn-disabled-color: #6c757d;
  2934. --bs-btn-disabled-border-color: transparent;
  2935. --bs-btn-box-shadow: none;
  2936. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  2937. text-decoration: underline;
  2938. }
  2939. .btn-link:focus-visible {
  2940. color: var(--bs-btn-color);
  2941. }
  2942. .btn-link:hover {
  2943. color: var(--bs-btn-hover-color);
  2944. }
  2945. .btn-lg, .btn-group-lg > .btn {
  2946. --bs-btn-padding-y: 0.5rem;
  2947. --bs-btn-padding-x: 1rem;
  2948. --bs-btn-font-size: 1.25rem;
  2949. --bs-btn-border-radius: 0.5rem;
  2950. }
  2951. .btn-sm, .btn-group-sm > .btn {
  2952. --bs-btn-padding-y: 0.25rem;
  2953. --bs-btn-padding-x: 0.5rem;
  2954. --bs-btn-font-size: 0.875rem;
  2955. --bs-btn-border-radius: 0.25rem;
  2956. }
  2957. .fade {
  2958. transition: opacity 0.15s linear;
  2959. }
  2960. @media (prefers-reduced-motion: reduce) {
  2961. .fade {
  2962. transition: none;
  2963. }
  2964. }
  2965. .fade:not(.show) {
  2966. opacity: 0;
  2967. }
  2968. .collapse:not(.show) {
  2969. display: none;
  2970. }
  2971. .collapsing {
  2972. height: 0;
  2973. overflow: hidden;
  2974. transition: height 0.35s ease;
  2975. }
  2976. @media (prefers-reduced-motion: reduce) {
  2977. .collapsing {
  2978. transition: none;
  2979. }
  2980. }
  2981. .collapsing.collapse-horizontal {
  2982. width: 0;
  2983. height: auto;
  2984. transition: width 0.35s ease;
  2985. }
  2986. @media (prefers-reduced-motion: reduce) {
  2987. .collapsing.collapse-horizontal {
  2988. transition: none;
  2989. }
  2990. }
  2991. .dropup,
  2992. .dropend,
  2993. .dropdown,
  2994. .dropstart,
  2995. .dropup-center,
  2996. .dropdown-center {
  2997. position: relative;
  2998. }
  2999. .dropdown-toggle {
  3000. white-space: nowrap;
  3001. }
  3002. .dropdown-toggle::after {
  3003. display: inline-block;
  3004. margin-left: 0.255em;
  3005. vertical-align: 0.255em;
  3006. content: "";
  3007. border-top: 0.3em solid;
  3008. border-right: 0.3em solid transparent;
  3009. border-bottom: 0;
  3010. border-left: 0.3em solid transparent;
  3011. }
  3012. .dropdown-toggle:empty::after {
  3013. margin-left: 0;
  3014. }
  3015. .dropdown-menu {
  3016. --bs-dropdown-zindex: 1000;
  3017. --bs-dropdown-min-width: 10rem;
  3018. --bs-dropdown-padding-x: 0;
  3019. --bs-dropdown-padding-y: 0.5rem;
  3020. --bs-dropdown-spacer: 0.125rem;
  3021. --bs-dropdown-font-size: 1rem;
  3022. --bs-dropdown-color: #212529;
  3023. --bs-dropdown-bg: #fff;
  3024. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3025. --bs-dropdown-border-radius: 0.375rem;
  3026. --bs-dropdown-border-width: 1px;
  3027. --bs-dropdown-inner-border-radius: calc(0.375rem - 1px);
  3028. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3029. --bs-dropdown-divider-margin-y: 0.5rem;
  3030. --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  3031. --bs-dropdown-link-color: #212529;
  3032. --bs-dropdown-link-hover-color: #1e2125;
  3033. --bs-dropdown-link-hover-bg: #e9ecef;
  3034. --bs-dropdown-link-active-color: #fff;
  3035. --bs-dropdown-link-active-bg: #0d6efd;
  3036. --bs-dropdown-link-disabled-color: #adb5bd;
  3037. --bs-dropdown-item-padding-x: 1rem;
  3038. --bs-dropdown-item-padding-y: 0.25rem;
  3039. --bs-dropdown-header-color: #6c757d;
  3040. --bs-dropdown-header-padding-x: 1rem;
  3041. --bs-dropdown-header-padding-y: 0.5rem;
  3042. position: absolute;
  3043. z-index: var(--bs-dropdown-zindex);
  3044. display: none;
  3045. min-width: var(--bs-dropdown-min-width);
  3046. padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  3047. margin: 0;
  3048. font-size: var(--bs-dropdown-font-size);
  3049. color: var(--bs-dropdown-color);
  3050. text-align: left;
  3051. list-style: none;
  3052. background-color: var(--bs-dropdown-bg);
  3053. background-clip: padding-box;
  3054. border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  3055. border-radius: var(--bs-dropdown-border-radius);
  3056. }
  3057. .dropdown-menu[data-bs-popper] {
  3058. top: 100%;
  3059. left: 0;
  3060. margin-top: var(--bs-dropdown-spacer);
  3061. }
  3062. .dropdown-menu-start {
  3063. --bs-position: start;
  3064. }
  3065. .dropdown-menu-start[data-bs-popper] {
  3066. right: auto;
  3067. left: 0;
  3068. }
  3069. .dropdown-menu-end {
  3070. --bs-position: end;
  3071. }
  3072. .dropdown-menu-end[data-bs-popper] {
  3073. right: 0;
  3074. left: auto;
  3075. }
  3076. @media (min-width: 576px) {
  3077. .dropdown-menu-sm-start {
  3078. --bs-position: start;
  3079. }
  3080. .dropdown-menu-sm-start[data-bs-popper] {
  3081. right: auto;
  3082. left: 0;
  3083. }
  3084. .dropdown-menu-sm-end {
  3085. --bs-position: end;
  3086. }
  3087. .dropdown-menu-sm-end[data-bs-popper] {
  3088. right: 0;
  3089. left: auto;
  3090. }
  3091. }
  3092. @media (min-width: 768px) {
  3093. .dropdown-menu-md-start {
  3094. --bs-position: start;
  3095. }
  3096. .dropdown-menu-md-start[data-bs-popper] {
  3097. right: auto;
  3098. left: 0;
  3099. }
  3100. .dropdown-menu-md-end {
  3101. --bs-position: end;
  3102. }
  3103. .dropdown-menu-md-end[data-bs-popper] {
  3104. right: 0;
  3105. left: auto;
  3106. }
  3107. }
  3108. @media (min-width: 992px) {
  3109. .dropdown-menu-lg-start {
  3110. --bs-position: start;
  3111. }
  3112. .dropdown-menu-lg-start[data-bs-popper] {
  3113. right: auto;
  3114. left: 0;
  3115. }
  3116. .dropdown-menu-lg-end {
  3117. --bs-position: end;
  3118. }
  3119. .dropdown-menu-lg-end[data-bs-popper] {
  3120. right: 0;
  3121. left: auto;
  3122. }
  3123. }
  3124. @media (min-width: 1200px) {
  3125. .dropdown-menu-xl-start {
  3126. --bs-position: start;
  3127. }
  3128. .dropdown-menu-xl-start[data-bs-popper] {
  3129. right: auto;
  3130. left: 0;
  3131. }
  3132. .dropdown-menu-xl-end {
  3133. --bs-position: end;
  3134. }
  3135. .dropdown-menu-xl-end[data-bs-popper] {
  3136. right: 0;
  3137. left: auto;
  3138. }
  3139. }
  3140. @media (min-width: 1400px) {
  3141. .dropdown-menu-xxl-start {
  3142. --bs-position: start;
  3143. }
  3144. .dropdown-menu-xxl-start[data-bs-popper] {
  3145. right: auto;
  3146. left: 0;
  3147. }
  3148. .dropdown-menu-xxl-end {
  3149. --bs-position: end;
  3150. }
  3151. .dropdown-menu-xxl-end[data-bs-popper] {
  3152. right: 0;
  3153. left: auto;
  3154. }
  3155. }
  3156. .dropup .dropdown-menu[data-bs-popper] {
  3157. top: auto;
  3158. bottom: 100%;
  3159. margin-top: 0;
  3160. margin-bottom: var(--bs-dropdown-spacer);
  3161. }
  3162. .dropup .dropdown-toggle::after {
  3163. display: inline-block;
  3164. margin-left: 0.255em;
  3165. vertical-align: 0.255em;
  3166. content: "";
  3167. border-top: 0;
  3168. border-right: 0.3em solid transparent;
  3169. border-bottom: 0.3em solid;
  3170. border-left: 0.3em solid transparent;
  3171. }
  3172. .dropup .dropdown-toggle:empty::after {
  3173. margin-left: 0;
  3174. }
  3175. .dropend .dropdown-menu[data-bs-popper] {
  3176. top: 0;
  3177. right: auto;
  3178. left: 100%;
  3179. margin-top: 0;
  3180. margin-left: var(--bs-dropdown-spacer);
  3181. }
  3182. .dropend .dropdown-toggle::after {
  3183. display: inline-block;
  3184. margin-left: 0.255em;
  3185. vertical-align: 0.255em;
  3186. content: "";
  3187. border-top: 0.3em solid transparent;
  3188. border-right: 0;
  3189. border-bottom: 0.3em solid transparent;
  3190. border-left: 0.3em solid;
  3191. }
  3192. .dropend .dropdown-toggle:empty::after {
  3193. margin-left: 0;
  3194. }
  3195. .dropend .dropdown-toggle::after {
  3196. vertical-align: 0;
  3197. }
  3198. .dropstart .dropdown-menu[data-bs-popper] {
  3199. top: 0;
  3200. right: 100%;
  3201. left: auto;
  3202. margin-top: 0;
  3203. margin-right: var(--bs-dropdown-spacer);
  3204. }
  3205. .dropstart .dropdown-toggle::after {
  3206. display: inline-block;
  3207. margin-left: 0.255em;
  3208. vertical-align: 0.255em;
  3209. content: "";
  3210. }
  3211. .dropstart .dropdown-toggle::after {
  3212. display: none;
  3213. }
  3214. .dropstart .dropdown-toggle::before {
  3215. display: inline-block;
  3216. margin-right: 0.255em;
  3217. vertical-align: 0.255em;
  3218. content: "";
  3219. border-top: 0.3em solid transparent;
  3220. border-right: 0.3em solid;
  3221. border-bottom: 0.3em solid transparent;
  3222. }
  3223. .dropstart .dropdown-toggle:empty::after {
  3224. margin-left: 0;
  3225. }
  3226. .dropstart .dropdown-toggle::before {
  3227. vertical-align: 0;
  3228. }
  3229. .dropdown-divider {
  3230. height: 0;
  3231. margin: var(--bs-dropdown-divider-margin-y) 0;
  3232. overflow: hidden;
  3233. border-top: 1px solid var(--bs-dropdown-divider-bg);
  3234. opacity: 1;
  3235. }
  3236. .dropdown-item {
  3237. display: block;
  3238. width: 100%;
  3239. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3240. clear: both;
  3241. font-weight: 400;
  3242. color: var(--bs-dropdown-link-color);
  3243. text-align: inherit;
  3244. text-decoration: none;
  3245. white-space: nowrap;
  3246. background-color: transparent;
  3247. border: 0;
  3248. }
  3249. .dropdown-item:hover, .dropdown-item:focus {
  3250. color: var(--bs-dropdown-link-hover-color);
  3251. background-color: var(--bs-dropdown-link-hover-bg);
  3252. }
  3253. .dropdown-item.active, .dropdown-item:active {
  3254. color: var(--bs-dropdown-link-active-color);
  3255. text-decoration: none;
  3256. background-color: var(--bs-dropdown-link-active-bg);
  3257. }
  3258. .dropdown-item.disabled, .dropdown-item:disabled {
  3259. color: var(--bs-dropdown-link-disabled-color);
  3260. pointer-events: none;
  3261. background-color: transparent;
  3262. }
  3263. .dropdown-menu.show {
  3264. display: block;
  3265. }
  3266. .dropdown-header {
  3267. display: block;
  3268. padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  3269. margin-bottom: 0;
  3270. font-size: 0.875rem;
  3271. color: var(--bs-dropdown-header-color);
  3272. white-space: nowrap;
  3273. }
  3274. .dropdown-item-text {
  3275. display: block;
  3276. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3277. color: var(--bs-dropdown-link-color);
  3278. }
  3279. .dropdown-menu-dark {
  3280. --bs-dropdown-color: #dee2e6;
  3281. --bs-dropdown-bg: #343a40;
  3282. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3283. --bs-dropdown-box-shadow: ;
  3284. --bs-dropdown-link-color: #dee2e6;
  3285. --bs-dropdown-link-hover-color: #fff;
  3286. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3287. --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  3288. --bs-dropdown-link-active-color: #fff;
  3289. --bs-dropdown-link-active-bg: #0d6efd;
  3290. --bs-dropdown-link-disabled-color: #adb5bd;
  3291. --bs-dropdown-header-color: #adb5bd;
  3292. }
  3293. .btn-group,
  3294. .btn-group-vertical {
  3295. position: relative;
  3296. display: inline-flex;
  3297. vertical-align: middle;
  3298. }
  3299. .btn-group > .btn,
  3300. .btn-group-vertical > .btn {
  3301. position: relative;
  3302. flex: 1 1 auto;
  3303. }
  3304. .btn-group > .btn-check:checked + .btn,
  3305. .btn-group > .btn-check:focus + .btn,
  3306. .btn-group > .btn:hover,
  3307. .btn-group > .btn:focus,
  3308. .btn-group > .btn:active,
  3309. .btn-group > .btn.active,
  3310. .btn-group-vertical > .btn-check:checked + .btn,
  3311. .btn-group-vertical > .btn-check:focus + .btn,
  3312. .btn-group-vertical > .btn:hover,
  3313. .btn-group-vertical > .btn:focus,
  3314. .btn-group-vertical > .btn:active,
  3315. .btn-group-vertical > .btn.active {
  3316. z-index: 1;
  3317. }
  3318. .btn-toolbar {
  3319. display: flex;
  3320. flex-wrap: wrap;
  3321. justify-content: flex-start;
  3322. }
  3323. .btn-toolbar .input-group {
  3324. width: auto;
  3325. }
  3326. .btn-group {
  3327. border-radius: 0.375rem;
  3328. }
  3329. .btn-group > :not(.btn-check:first-child) + .btn,
  3330. .btn-group > .btn-group:not(:first-child) {
  3331. margin-left: -1px;
  3332. }
  3333. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  3334. .btn-group > .btn.dropdown-toggle-split:first-child,
  3335. .btn-group > .btn-group:not(:last-child) > .btn {
  3336. border-top-right-radius: 0;
  3337. border-bottom-right-radius: 0;
  3338. }
  3339. .btn-group > .btn:nth-child(n+3),
  3340. .btn-group > :not(.btn-check) + .btn,
  3341. .btn-group > .btn-group:not(:first-child) > .btn {
  3342. border-top-left-radius: 0;
  3343. border-bottom-left-radius: 0;
  3344. }
  3345. .dropdown-toggle-split {
  3346. padding-right: 0.5625rem;
  3347. padding-left: 0.5625rem;
  3348. }
  3349. .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  3350. margin-left: 0;
  3351. }
  3352. .dropstart .dropdown-toggle-split::before {
  3353. margin-right: 0;
  3354. }
  3355. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  3356. padding-right: 0.375rem;
  3357. padding-left: 0.375rem;
  3358. }
  3359. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  3360. padding-right: 0.75rem;
  3361. padding-left: 0.75rem;
  3362. }
  3363. .btn-group-vertical {
  3364. flex-direction: column;
  3365. align-items: flex-start;
  3366. justify-content: center;
  3367. }
  3368. .btn-group-vertical > .btn,
  3369. .btn-group-vertical > .btn-group {
  3370. width: 100%;
  3371. }
  3372. .btn-group-vertical > .btn:not(:first-child),
  3373. .btn-group-vertical > .btn-group:not(:first-child) {
  3374. margin-top: -1px;
  3375. }
  3376. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  3377. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  3378. border-bottom-right-radius: 0;
  3379. border-bottom-left-radius: 0;
  3380. }
  3381. .btn-group-vertical > .btn ~ .btn,
  3382. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  3383. border-top-left-radius: 0;
  3384. border-top-right-radius: 0;
  3385. }
  3386. .nav {
  3387. --bs-nav-link-padding-x: 1rem;
  3388. --bs-nav-link-padding-y: 0.5rem;
  3389. --bs-nav-link-font-weight: ;
  3390. --bs-nav-link-color: var(--bs-link-color);
  3391. --bs-nav-link-hover-color: var(--bs-link-hover-color);
  3392. --bs-nav-link-disabled-color: #6c757d;
  3393. display: flex;
  3394. flex-wrap: wrap;
  3395. padding-left: 0;
  3396. margin-bottom: 0;
  3397. list-style: none;
  3398. }
  3399. .nav-link {
  3400. display: block;
  3401. padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  3402. font-size: var(--bs-nav-link-font-size);
  3403. font-weight: var(--bs-nav-link-font-weight);
  3404. color: var(--bs-nav-link-color);
  3405. text-decoration: none;
  3406. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  3407. }
  3408. @media (prefers-reduced-motion: reduce) {
  3409. .nav-link {
  3410. transition: none;
  3411. }
  3412. }
  3413. .nav-link:hover, .nav-link:focus {
  3414. color: var(--bs-nav-link-hover-color);
  3415. }
  3416. .nav-link.disabled {
  3417. color: var(--bs-nav-link-disabled-color);
  3418. pointer-events: none;
  3419. cursor: default;
  3420. }
  3421. .nav-tabs {
  3422. --bs-nav-tabs-border-width: 1px;
  3423. --bs-nav-tabs-border-color: #dee2e6;
  3424. --bs-nav-tabs-border-radius: 0.375rem;
  3425. --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
  3426. --bs-nav-tabs-link-active-color: #495057;
  3427. --bs-nav-tabs-link-active-bg: #fff;
  3428. --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
  3429. border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
  3430. }
  3431. .nav-tabs .nav-link {
  3432. margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  3433. background: none;
  3434. border: var(--bs-nav-tabs-border-width) solid transparent;
  3435. border-top-left-radius: var(--bs-nav-tabs-border-radius);
  3436. border-top-right-radius: var(--bs-nav-tabs-border-radius);
  3437. }
  3438. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  3439. isolation: isolate;
  3440. border-color: var(--bs-nav-tabs-link-hover-border-color);
  3441. }
  3442. .nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
  3443. color: var(--bs-nav-link-disabled-color);
  3444. background-color: transparent;
  3445. border-color: transparent;
  3446. }
  3447. .nav-tabs .nav-link.active,
  3448. .nav-tabs .nav-item.show .nav-link {
  3449. color: var(--bs-nav-tabs-link-active-color);
  3450. background-color: var(--bs-nav-tabs-link-active-bg);
  3451. border-color: var(--bs-nav-tabs-link-active-border-color);
  3452. }
  3453. .nav-tabs .dropdown-menu {
  3454. margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  3455. border-top-left-radius: 0;
  3456. border-top-right-radius: 0;
  3457. }
  3458. .nav-pills {
  3459. --bs-nav-pills-border-radius: 0.375rem;
  3460. --bs-nav-pills-link-active-color: #fff;
  3461. --bs-nav-pills-link-active-bg: #0d6efd;
  3462. }
  3463. .nav-pills .nav-link {
  3464. background: none;
  3465. border: 0;
  3466. border-radius: var(--bs-nav-pills-border-radius);
  3467. }
  3468. .nav-pills .nav-link:disabled {
  3469. color: var(--bs-nav-link-disabled-color);
  3470. background-color: transparent;
  3471. border-color: transparent;
  3472. }
  3473. .nav-pills .nav-link.active,
  3474. .nav-pills .show > .nav-link {
  3475. color: var(--bs-nav-pills-link-active-color);
  3476. background-color: var(--bs-nav-pills-link-active-bg);
  3477. }
  3478. .nav-fill > .nav-link,
  3479. .nav-fill .nav-item {
  3480. flex: 1 1 auto;
  3481. text-align: center;
  3482. }
  3483. .nav-justified > .nav-link,
  3484. .nav-justified .nav-item {
  3485. flex-basis: 0;
  3486. flex-grow: 1;
  3487. text-align: center;
  3488. }
  3489. .nav-fill .nav-item .nav-link,
  3490. .nav-justified .nav-item .nav-link {
  3491. width: 100%;
  3492. }
  3493. .tab-content > .tab-pane {
  3494. display: none;
  3495. }
  3496. .tab-content > .active {
  3497. display: block;
  3498. }
  3499. .navbar {
  3500. --bs-navbar-padding-x: 0;
  3501. --bs-navbar-padding-y: 0.5rem;
  3502. --bs-navbar-color: rgba(0, 0, 0, 0.55);
  3503. --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
  3504. --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
  3505. --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
  3506. --bs-navbar-brand-padding-y: 0.3125rem;
  3507. --bs-navbar-brand-margin-end: 1rem;
  3508. --bs-navbar-brand-font-size: 1.25rem;
  3509. --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
  3510. --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  3511. --bs-navbar-nav-link-padding-x: 0.5rem;
  3512. --bs-navbar-toggler-padding-y: 0.25rem;
  3513. --bs-navbar-toggler-padding-x: 0.75rem;
  3514. --bs-navbar-toggler-font-size: 1.25rem;
  3515. --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  3516. --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
  3517. --bs-navbar-toggler-border-radius: 0.375rem;
  3518. --bs-navbar-toggler-focus-width: 0.25rem;
  3519. --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  3520. position: relative;
  3521. display: flex;
  3522. flex-wrap: wrap;
  3523. align-items: center;
  3524. justify-content: space-between;
  3525. padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
  3526. }
  3527. .navbar > .container,
  3528. .navbar > .container-fluid,
  3529. .navbar > .container-sm,
  3530. .navbar > .container-md,
  3531. .navbar > .container-lg,
  3532. .navbar > .container-xl,
  3533. .navbar > .container-xxl {
  3534. display: flex;
  3535. flex-wrap: inherit;
  3536. align-items: center;
  3537. justify-content: space-between;
  3538. }
  3539. .navbar-brand {
  3540. padding-top: var(--bs-navbar-brand-padding-y);
  3541. padding-bottom: var(--bs-navbar-brand-padding-y);
  3542. margin-right: var(--bs-navbar-brand-margin-end);
  3543. font-size: var(--bs-navbar-brand-font-size);
  3544. color: var(--bs-navbar-brand-color);
  3545. text-decoration: none;
  3546. white-space: nowrap;
  3547. }
  3548. .navbar-brand:hover, .navbar-brand:focus {
  3549. color: var(--bs-navbar-brand-hover-color);
  3550. }
  3551. .navbar-nav {
  3552. --bs-nav-link-padding-x: 0;
  3553. --bs-nav-link-padding-y: 0.5rem;
  3554. --bs-nav-link-font-weight: ;
  3555. --bs-nav-link-color: var(--bs-navbar-color);
  3556. --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  3557. --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  3558. display: flex;
  3559. flex-direction: column;
  3560. padding-left: 0;
  3561. margin-bottom: 0;
  3562. list-style: none;
  3563. }
  3564. .navbar-nav .show > .nav-link,
  3565. .navbar-nav .nav-link.active {
  3566. color: var(--bs-navbar-active-color);
  3567. }
  3568. .navbar-nav .dropdown-menu {
  3569. position: static;
  3570. }
  3571. .navbar-text {
  3572. padding-top: 0.5rem;
  3573. padding-bottom: 0.5rem;
  3574. color: var(--bs-navbar-color);
  3575. }
  3576. .navbar-text a,
  3577. .navbar-text a:hover,
  3578. .navbar-text a:focus {
  3579. color: var(--bs-navbar-active-color);
  3580. }
  3581. .navbar-collapse {
  3582. flex-basis: 100%;
  3583. flex-grow: 1;
  3584. align-items: center;
  3585. }
  3586. .navbar-toggler {
  3587. padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  3588. font-size: var(--bs-navbar-toggler-font-size);
  3589. line-height: 1;
  3590. color: var(--bs-navbar-color);
  3591. background-color: transparent;
  3592. border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  3593. border-radius: var(--bs-navbar-toggler-border-radius);
  3594. transition: var(--bs-navbar-toggler-transition);
  3595. }
  3596. @media (prefers-reduced-motion: reduce) {
  3597. .navbar-toggler {
  3598. transition: none;
  3599. }
  3600. }
  3601. .navbar-toggler:hover {
  3602. text-decoration: none;
  3603. }
  3604. .navbar-toggler:focus {
  3605. text-decoration: none;
  3606. outline: 0;
  3607. box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
  3608. }
  3609. .navbar-toggler-icon {
  3610. display: inline-block;
  3611. width: 1.5em;
  3612. height: 1.5em;
  3613. vertical-align: middle;
  3614. background-image: var(--bs-navbar-toggler-icon-bg);
  3615. background-repeat: no-repeat;
  3616. background-position: center;
  3617. background-size: 100%;
  3618. }
  3619. .navbar-nav-scroll {
  3620. max-height: var(--bs-scroll-height, 75vh);
  3621. overflow-y: auto;
  3622. }
  3623. @media (min-width: 576px) {
  3624. .navbar-expand-sm {
  3625. flex-wrap: nowrap;
  3626. justify-content: flex-start;
  3627. }
  3628. .navbar-expand-sm .navbar-nav {
  3629. flex-direction: row;
  3630. }
  3631. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3632. position: absolute;
  3633. }
  3634. .navbar-expand-sm .navbar-nav .nav-link {
  3635. padding-right: var(--bs-navbar-nav-link-padding-x);
  3636. padding-left: var(--bs-navbar-nav-link-padding-x);
  3637. }
  3638. .navbar-expand-sm .navbar-nav-scroll {
  3639. overflow: visible;
  3640. }
  3641. .navbar-expand-sm .navbar-collapse {
  3642. display: flex !important;
  3643. flex-basis: auto;
  3644. }
  3645. .navbar-expand-sm .navbar-toggler {
  3646. display: none;
  3647. }
  3648. .navbar-expand-sm .offcanvas {
  3649. position: static;
  3650. z-index: auto;
  3651. flex-grow: 1;
  3652. width: auto !important;
  3653. height: auto !important;
  3654. visibility: visible !important;
  3655. background-color: transparent !important;
  3656. border: 0 !important;
  3657. transform: none !important;
  3658. transition: none;
  3659. }
  3660. .navbar-expand-sm .offcanvas .offcanvas-header {
  3661. display: none;
  3662. }
  3663. .navbar-expand-sm .offcanvas .offcanvas-body {
  3664. display: flex;
  3665. flex-grow: 0;
  3666. padding: 0;
  3667. overflow-y: visible;
  3668. }
  3669. }
  3670. @media (min-width: 768px) {
  3671. .navbar-expand-md {
  3672. flex-wrap: nowrap;
  3673. justify-content: flex-start;
  3674. }
  3675. .navbar-expand-md .navbar-nav {
  3676. flex-direction: row;
  3677. }
  3678. .navbar-expand-md .navbar-nav .dropdown-menu {
  3679. position: absolute;
  3680. }
  3681. .navbar-expand-md .navbar-nav .nav-link {
  3682. padding-right: var(--bs-navbar-nav-link-padding-x);
  3683. padding-left: var(--bs-navbar-nav-link-padding-x);
  3684. }
  3685. .navbar-expand-md .navbar-nav-scroll {
  3686. overflow: visible;
  3687. }
  3688. .navbar-expand-md .navbar-collapse {
  3689. display: flex !important;
  3690. flex-basis: auto;
  3691. }
  3692. .navbar-expand-md .navbar-toggler {
  3693. display: none;
  3694. }
  3695. .navbar-expand-md .offcanvas {
  3696. position: static;
  3697. z-index: auto;
  3698. flex-grow: 1;
  3699. width: auto !important;
  3700. height: auto !important;
  3701. visibility: visible !important;
  3702. background-color: transparent !important;
  3703. border: 0 !important;
  3704. transform: none !important;
  3705. transition: none;
  3706. }
  3707. .navbar-expand-md .offcanvas .offcanvas-header {
  3708. display: none;
  3709. }
  3710. .navbar-expand-md .offcanvas .offcanvas-body {
  3711. display: flex;
  3712. flex-grow: 0;
  3713. padding: 0;
  3714. overflow-y: visible;
  3715. }
  3716. }
  3717. @media (min-width: 992px) {
  3718. .navbar-expand-lg {
  3719. flex-wrap: nowrap;
  3720. justify-content: flex-start;
  3721. }
  3722. .navbar-expand-lg .navbar-nav {
  3723. flex-direction: row;
  3724. }
  3725. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3726. position: absolute;
  3727. }
  3728. .navbar-expand-lg .navbar-nav .nav-link {
  3729. padding-right: var(--bs-navbar-nav-link-padding-x);
  3730. padding-left: var(--bs-navbar-nav-link-padding-x);
  3731. }
  3732. .navbar-expand-lg .navbar-nav-scroll {
  3733. overflow: visible;
  3734. }
  3735. .navbar-expand-lg .navbar-collapse {
  3736. display: flex !important;
  3737. flex-basis: auto;
  3738. }
  3739. .navbar-expand-lg .navbar-toggler {
  3740. display: none;
  3741. }
  3742. .navbar-expand-lg .offcanvas {
  3743. position: static;
  3744. z-index: auto;
  3745. flex-grow: 1;
  3746. width: auto !important;
  3747. height: auto !important;
  3748. visibility: visible !important;
  3749. background-color: transparent !important;
  3750. border: 0 !important;
  3751. transform: none !important;
  3752. transition: none;
  3753. }
  3754. .navbar-expand-lg .offcanvas .offcanvas-header {
  3755. display: none;
  3756. }
  3757. .navbar-expand-lg .offcanvas .offcanvas-body {
  3758. display: flex;
  3759. flex-grow: 0;
  3760. padding: 0;
  3761. overflow-y: visible;
  3762. }
  3763. }
  3764. @media (min-width: 1200px) {
  3765. .navbar-expand-xl {
  3766. flex-wrap: nowrap;
  3767. justify-content: flex-start;
  3768. }
  3769. .navbar-expand-xl .navbar-nav {
  3770. flex-direction: row;
  3771. }
  3772. .navbar-expand-xl .navbar-nav .dropdown-menu {
  3773. position: absolute;
  3774. }
  3775. .navbar-expand-xl .navbar-nav .nav-link {
  3776. padding-right: var(--bs-navbar-nav-link-padding-x);
  3777. padding-left: var(--bs-navbar-nav-link-padding-x);
  3778. }
  3779. .navbar-expand-xl .navbar-nav-scroll {
  3780. overflow: visible;
  3781. }
  3782. .navbar-expand-xl .navbar-collapse {
  3783. display: flex !important;
  3784. flex-basis: auto;
  3785. }
  3786. .navbar-expand-xl .navbar-toggler {
  3787. display: none;
  3788. }
  3789. .navbar-expand-xl .offcanvas {
  3790. position: static;
  3791. z-index: auto;
  3792. flex-grow: 1;
  3793. width: auto !important;
  3794. height: auto !important;
  3795. visibility: visible !important;
  3796. background-color: transparent !important;
  3797. border: 0 !important;
  3798. transform: none !important;
  3799. transition: none;
  3800. }
  3801. .navbar-expand-xl .offcanvas .offcanvas-header {
  3802. display: none;
  3803. }
  3804. .navbar-expand-xl .offcanvas .offcanvas-body {
  3805. display: flex;
  3806. flex-grow: 0;
  3807. padding: 0;
  3808. overflow-y: visible;
  3809. }
  3810. }
  3811. @media (min-width: 1400px) {
  3812. .navbar-expand-xxl {
  3813. flex-wrap: nowrap;
  3814. justify-content: flex-start;
  3815. }
  3816. .navbar-expand-xxl .navbar-nav {
  3817. flex-direction: row;
  3818. }
  3819. .navbar-expand-xxl .navbar-nav .dropdown-menu {
  3820. position: absolute;
  3821. }
  3822. .navbar-expand-xxl .navbar-nav .nav-link {
  3823. padding-right: var(--bs-navbar-nav-link-padding-x);
  3824. padding-left: var(--bs-navbar-nav-link-padding-x);
  3825. }
  3826. .navbar-expand-xxl .navbar-nav-scroll {
  3827. overflow: visible;
  3828. }
  3829. .navbar-expand-xxl .navbar-collapse {
  3830. display: flex !important;
  3831. flex-basis: auto;
  3832. }
  3833. .navbar-expand-xxl .navbar-toggler {
  3834. display: none;
  3835. }
  3836. .navbar-expand-xxl .offcanvas {
  3837. position: static;
  3838. z-index: auto;
  3839. flex-grow: 1;
  3840. width: auto !important;
  3841. height: auto !important;
  3842. visibility: visible !important;
  3843. background-color: transparent !important;
  3844. border: 0 !important;
  3845. transform: none !important;
  3846. transition: none;
  3847. }
  3848. .navbar-expand-xxl .offcanvas .offcanvas-header {
  3849. display: none;
  3850. }
  3851. .navbar-expand-xxl .offcanvas .offcanvas-body {
  3852. display: flex;
  3853. flex-grow: 0;
  3854. padding: 0;
  3855. overflow-y: visible;
  3856. }
  3857. }
  3858. .navbar-expand {
  3859. flex-wrap: nowrap;
  3860. justify-content: flex-start;
  3861. }
  3862. .navbar-expand .navbar-nav {
  3863. flex-direction: row;
  3864. }
  3865. .navbar-expand .navbar-nav .dropdown-menu {
  3866. position: absolute;
  3867. }
  3868. .navbar-expand .navbar-nav .nav-link {
  3869. padding-right: var(--bs-navbar-nav-link-padding-x);
  3870. padding-left: var(--bs-navbar-nav-link-padding-x);
  3871. }
  3872. .navbar-expand .navbar-nav-scroll {
  3873. overflow: visible;
  3874. }
  3875. .navbar-expand .navbar-collapse {
  3876. display: flex !important;
  3877. flex-basis: auto;
  3878. }
  3879. .navbar-expand .navbar-toggler {
  3880. display: none;
  3881. }
  3882. .navbar-expand .offcanvas {
  3883. position: static;
  3884. z-index: auto;
  3885. flex-grow: 1;
  3886. width: auto !important;
  3887. height: auto !important;
  3888. visibility: visible !important;
  3889. background-color: transparent !important;
  3890. border: 0 !important;
  3891. transform: none !important;
  3892. transition: none;
  3893. }
  3894. .navbar-expand .offcanvas .offcanvas-header {
  3895. display: none;
  3896. }
  3897. .navbar-expand .offcanvas .offcanvas-body {
  3898. display: flex;
  3899. flex-grow: 0;
  3900. padding: 0;
  3901. overflow-y: visible;
  3902. }
  3903. .navbar-dark {
  3904. --bs-navbar-color: rgba(255, 255, 255, 0.55);
  3905. --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  3906. --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  3907. --bs-navbar-active-color: #fff;
  3908. --bs-navbar-brand-color: #fff;
  3909. --bs-navbar-brand-hover-color: #fff;
  3910. --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  3911. --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");
  3912. }
  3913. .card {
  3914. --bs-card-spacer-y: 1rem;
  3915. --bs-card-spacer-x: 1rem;
  3916. --bs-card-title-spacer-y: 0.5rem;
  3917. --bs-card-border-width: 1px;
  3918. --bs-card-border-color: var(--bs-border-color-translucent);
  3919. --bs-card-border-radius: 0.375rem;
  3920. --bs-card-box-shadow: ;
  3921. --bs-card-inner-border-radius: calc(0.375rem - 1px);
  3922. --bs-card-cap-padding-y: 0.5rem;
  3923. --bs-card-cap-padding-x: 1rem;
  3924. --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  3925. --bs-card-cap-color: ;
  3926. --bs-card-height: ;
  3927. --bs-card-color: ;
  3928. --bs-card-bg: #fff;
  3929. --bs-card-img-overlay-padding: 1rem;
  3930. --bs-card-group-margin: 0.75rem;
  3931. position: relative;
  3932. display: flex;
  3933. flex-direction: column;
  3934. min-width: 0;
  3935. height: var(--bs-card-height);
  3936. word-wrap: break-word;
  3937. background-color: var(--bs-card-bg);
  3938. background-clip: border-box;
  3939. border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  3940. border-radius: var(--bs-card-border-radius);
  3941. }
  3942. .card > hr {
  3943. margin-right: 0;
  3944. margin-left: 0;
  3945. }
  3946. .card > .list-group {
  3947. border-top: inherit;
  3948. border-bottom: inherit;
  3949. }
  3950. .card > .list-group:first-child {
  3951. border-top-width: 0;
  3952. border-top-left-radius: var(--bs-card-inner-border-radius);
  3953. border-top-right-radius: var(--bs-card-inner-border-radius);
  3954. }
  3955. .card > .list-group:last-child {
  3956. border-bottom-width: 0;
  3957. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  3958. border-bottom-left-radius: var(--bs-card-inner-border-radius);
  3959. }
  3960. .card > .card-header + .list-group,
  3961. .card > .list-group + .card-footer {
  3962. border-top: 0;
  3963. }
  3964. .card-body {
  3965. flex: 1 1 auto;
  3966. padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  3967. color: var(--bs-card-color);
  3968. }
  3969. .card-title {
  3970. margin-bottom: var(--bs-card-title-spacer-y);
  3971. }
  3972. .card-subtitle {
  3973. margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  3974. margin-bottom: 0;
  3975. }
  3976. .card-text:last-child {
  3977. margin-bottom: 0;
  3978. }
  3979. .card-link + .card-link {
  3980. margin-left: var(--bs-card-spacer-x);
  3981. }
  3982. .card-header {
  3983. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  3984. margin-bottom: 0;
  3985. color: var(--bs-card-cap-color);
  3986. background-color: var(--bs-card-cap-bg);
  3987. border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
  3988. }
  3989. .card-header:first-child {
  3990. border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
  3991. }
  3992. .card-footer {
  3993. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  3994. color: var(--bs-card-cap-color);
  3995. background-color: var(--bs-card-cap-bg);
  3996. border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
  3997. }
  3998. .card-footer:last-child {
  3999. border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
  4000. }
  4001. .card-header-tabs {
  4002. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4003. margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  4004. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4005. border-bottom: 0;
  4006. }
  4007. .card-header-tabs .nav-link.active {
  4008. background-color: var(--bs-card-bg);
  4009. border-bottom-color: var(--bs-card-bg);
  4010. }
  4011. .card-header-pills {
  4012. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4013. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4014. }
  4015. .card-img-overlay {
  4016. position: absolute;
  4017. top: 0;
  4018. right: 0;
  4019. bottom: 0;
  4020. left: 0;
  4021. padding: var(--bs-card-img-overlay-padding);
  4022. border-radius: var(--bs-card-inner-border-radius);
  4023. }
  4024. .card-img,
  4025. .card-img-top,
  4026. .card-img-bottom {
  4027. width: 100%;
  4028. }
  4029. .card-img,
  4030. .card-img-top {
  4031. border-top-left-radius: var(--bs-card-inner-border-radius);
  4032. border-top-right-radius: var(--bs-card-inner-border-radius);
  4033. }
  4034. .card-img,
  4035. .card-img-bottom {
  4036. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  4037. border-bottom-left-radius: var(--bs-card-inner-border-radius);
  4038. }
  4039. .card-group > .card {
  4040. margin-bottom: var(--bs-card-group-margin);
  4041. }
  4042. @media (min-width: 576px) {
  4043. .card-group {
  4044. display: flex;
  4045. flex-flow: row wrap;
  4046. }
  4047. .card-group > .card {
  4048. flex: 1 0 0%;
  4049. margin-bottom: 0;
  4050. }
  4051. .card-group > .card + .card {
  4052. margin-left: 0;
  4053. border-left: 0;
  4054. }
  4055. .card-group > .card:not(:last-child) {
  4056. border-top-right-radius: 0;
  4057. border-bottom-right-radius: 0;
  4058. }
  4059. .card-group > .card:not(:last-child) .card-img-top,
  4060. .card-group > .card:not(:last-child) .card-header {
  4061. border-top-right-radius: 0;
  4062. }
  4063. .card-group > .card:not(:last-child) .card-img-bottom,
  4064. .card-group > .card:not(:last-child) .card-footer {
  4065. border-bottom-right-radius: 0;
  4066. }
  4067. .card-group > .card:not(:first-child) {
  4068. border-top-left-radius: 0;
  4069. border-bottom-left-radius: 0;
  4070. }
  4071. .card-group > .card:not(:first-child) .card-img-top,
  4072. .card-group > .card:not(:first-child) .card-header {
  4073. border-top-left-radius: 0;
  4074. }
  4075. .card-group > .card:not(:first-child) .card-img-bottom,
  4076. .card-group > .card:not(:first-child) .card-footer {
  4077. border-bottom-left-radius: 0;
  4078. }
  4079. }
  4080. .accordion {
  4081. --bs-accordion-color: #212529;
  4082. --bs-accordion-bg: #fff;
  4083. --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;
  4084. --bs-accordion-border-color: var(--bs-border-color);
  4085. --bs-accordion-border-width: 1px;
  4086. --bs-accordion-border-radius: 0.375rem;
  4087. --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  4088. --bs-accordion-btn-padding-x: 1.25rem;
  4089. --bs-accordion-btn-padding-y: 1rem;
  4090. --bs-accordion-btn-color: #212529;
  4091. --bs-accordion-btn-bg: var(--bs-accordion-bg);
  4092. --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  4093. --bs-accordion-btn-icon-width: 1.25rem;
  4094. --bs-accordion-btn-icon-transform: rotate(-180deg);
  4095. --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  4096. --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  4097. --bs-accordion-btn-focus-border-color: #86b7fe;
  4098. --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4099. --bs-accordion-body-padding-x: 1.25rem;
  4100. --bs-accordion-body-padding-y: 1rem;
  4101. --bs-accordion-active-color: #0c63e4;
  4102. --bs-accordion-active-bg: #e7f1ff;
  4103. }
  4104. .accordion-button {
  4105. position: relative;
  4106. display: flex;
  4107. align-items: center;
  4108. width: 100%;
  4109. padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  4110. font-size: 1rem;
  4111. color: var(--bs-accordion-btn-color);
  4112. text-align: left;
  4113. background-color: var(--bs-accordion-btn-bg);
  4114. border: 0;
  4115. border-radius: 0;
  4116. overflow-anchor: none;
  4117. transition: var(--bs-accordion-transition);
  4118. }
  4119. @media (prefers-reduced-motion: reduce) {
  4120. .accordion-button {
  4121. transition: none;
  4122. }
  4123. }
  4124. .accordion-button:not(.collapsed) {
  4125. color: var(--bs-accordion-active-color);
  4126. background-color: var(--bs-accordion-active-bg);
  4127. box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  4128. }
  4129. .accordion-button:not(.collapsed)::after {
  4130. background-image: var(--bs-accordion-btn-active-icon);
  4131. transform: var(--bs-accordion-btn-icon-transform);
  4132. }
  4133. .accordion-button::after {
  4134. flex-shrink: 0;
  4135. width: var(--bs-accordion-btn-icon-width);
  4136. height: var(--bs-accordion-btn-icon-width);
  4137. margin-left: auto;
  4138. content: "";
  4139. background-image: var(--bs-accordion-btn-icon);
  4140. background-repeat: no-repeat;
  4141. background-size: var(--bs-accordion-btn-icon-width);
  4142. transition: var(--bs-accordion-btn-icon-transition);
  4143. }
  4144. @media (prefers-reduced-motion: reduce) {
  4145. .accordion-button::after {
  4146. transition: none;
  4147. }
  4148. }
  4149. .accordion-button:hover {
  4150. z-index: 2;
  4151. }
  4152. .accordion-button:focus {
  4153. z-index: 3;
  4154. border-color: var(--bs-accordion-btn-focus-border-color);
  4155. outline: 0;
  4156. box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  4157. }
  4158. .accordion-header {
  4159. margin-bottom: 0;
  4160. }
  4161. .accordion-item {
  4162. color: var(--bs-accordion-color);
  4163. background-color: var(--bs-accordion-bg);
  4164. border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
  4165. }
  4166. .accordion-item:first-of-type {
  4167. border-top-left-radius: var(--bs-accordion-border-radius);
  4168. border-top-right-radius: var(--bs-accordion-border-radius);
  4169. }
  4170. .accordion-item:first-of-type .accordion-button {
  4171. border-top-left-radius: var(--bs-accordion-inner-border-radius);
  4172. border-top-right-radius: var(--bs-accordion-inner-border-radius);
  4173. }
  4174. .accordion-item:not(:first-of-type) {
  4175. border-top: 0;
  4176. }
  4177. .accordion-item:last-of-type {
  4178. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4179. border-bottom-left-radius: var(--bs-accordion-border-radius);
  4180. }
  4181. .accordion-item:last-of-type .accordion-button.collapsed {
  4182. border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  4183. border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
  4184. }
  4185. .accordion-item:last-of-type .accordion-collapse {
  4186. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4187. border-bottom-left-radius: var(--bs-accordion-border-radius);
  4188. }
  4189. .accordion-body {
  4190. padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  4191. }
  4192. .accordion-flush .accordion-collapse {
  4193. border-width: 0;
  4194. }
  4195. .accordion-flush .accordion-item {
  4196. border-right: 0;
  4197. border-left: 0;
  4198. border-radius: 0;
  4199. }
  4200. .accordion-flush .accordion-item:first-child {
  4201. border-top: 0;
  4202. }
  4203. .accordion-flush .accordion-item:last-child {
  4204. border-bottom: 0;
  4205. }
  4206. .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
  4207. border-radius: 0;
  4208. }
  4209. .breadcrumb {
  4210. --bs-breadcrumb-padding-x: 0;
  4211. --bs-breadcrumb-padding-y: 0;
  4212. --bs-breadcrumb-margin-bottom: 1rem;
  4213. --bs-breadcrumb-bg: ;
  4214. --bs-breadcrumb-border-radius: ;
  4215. --bs-breadcrumb-divider-color: #6c757d;
  4216. --bs-breadcrumb-item-padding-x: 0.5rem;
  4217. --bs-breadcrumb-item-active-color: #6c757d;
  4218. display: flex;
  4219. flex-wrap: wrap;
  4220. padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  4221. margin-bottom: var(--bs-breadcrumb-margin-bottom);
  4222. font-size: var(--bs-breadcrumb-font-size);
  4223. list-style: none;
  4224. background-color: var(--bs-breadcrumb-bg);
  4225. border-radius: var(--bs-breadcrumb-border-radius);
  4226. }
  4227. .breadcrumb-item + .breadcrumb-item {
  4228. padding-left: var(--bs-breadcrumb-item-padding-x);
  4229. }
  4230. .breadcrumb-item + .breadcrumb-item::before {
  4231. float: left;
  4232. padding-right: var(--bs-breadcrumb-item-padding-x);
  4233. color: var(--bs-breadcrumb-divider-color);
  4234. content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
  4235. }
  4236. .breadcrumb-item.active {
  4237. color: var(--bs-breadcrumb-item-active-color);
  4238. }
  4239. .pagination, .datatable-pagination ul {
  4240. --bs-pagination-padding-x: 0.75rem;
  4241. --bs-pagination-padding-y: 0.375rem;
  4242. --bs-pagination-font-size: 1rem;
  4243. --bs-pagination-color: var(--bs-link-color);
  4244. --bs-pagination-bg: #fff;
  4245. --bs-pagination-border-width: 1px;
  4246. --bs-pagination-border-color: #dee2e6;
  4247. --bs-pagination-border-radius: 0.375rem;
  4248. --bs-pagination-hover-color: var(--bs-link-hover-color);
  4249. --bs-pagination-hover-bg: #e9ecef;
  4250. --bs-pagination-hover-border-color: #dee2e6;
  4251. --bs-pagination-focus-color: var(--bs-link-hover-color);
  4252. --bs-pagination-focus-bg: #e9ecef;
  4253. --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4254. --bs-pagination-active-color: #fff;
  4255. --bs-pagination-active-bg: #0d6efd;
  4256. --bs-pagination-active-border-color: #0d6efd;
  4257. --bs-pagination-disabled-color: #6c757d;
  4258. --bs-pagination-disabled-bg: #fff;
  4259. --bs-pagination-disabled-border-color: #dee2e6;
  4260. display: flex;
  4261. padding-left: 0;
  4262. list-style: none;
  4263. }
  4264. .page-link, .datatable-pagination a {
  4265. position: relative;
  4266. display: block;
  4267. padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  4268. font-size: var(--bs-pagination-font-size);
  4269. color: var(--bs-pagination-color);
  4270. text-decoration: none;
  4271. background-color: var(--bs-pagination-bg);
  4272. border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  4273. 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;
  4274. }
  4275. @media (prefers-reduced-motion: reduce) {
  4276. .page-link, .datatable-pagination a {
  4277. transition: none;
  4278. }
  4279. }
  4280. .page-link:hover, .datatable-pagination a:hover {
  4281. z-index: 2;
  4282. color: var(--bs-pagination-hover-color);
  4283. background-color: var(--bs-pagination-hover-bg);
  4284. border-color: var(--bs-pagination-hover-border-color);
  4285. }
  4286. .page-link:focus, .datatable-pagination a:focus {
  4287. z-index: 3;
  4288. color: var(--bs-pagination-focus-color);
  4289. background-color: var(--bs-pagination-focus-bg);
  4290. outline: 0;
  4291. box-shadow: var(--bs-pagination-focus-box-shadow);
  4292. }
  4293. .page-link.active, .datatable-pagination a.active, .active > .page-link, .datatable-pagination .active > a {
  4294. z-index: 3;
  4295. color: var(--bs-pagination-active-color);
  4296. background-color: var(--bs-pagination-active-bg);
  4297. border-color: var(--bs-pagination-active-border-color);
  4298. }
  4299. .page-link.disabled, .datatable-pagination a.disabled, .disabled > .page-link, .datatable-pagination .disabled > a {
  4300. color: var(--bs-pagination-disabled-color);
  4301. pointer-events: none;
  4302. background-color: var(--bs-pagination-disabled-bg);
  4303. border-color: var(--bs-pagination-disabled-border-color);
  4304. }
  4305. .page-item:not(:first-child) .page-link, .page-item:not(:first-child) .datatable-pagination a, .datatable-pagination .page-item:not(:first-child) a, .datatable-pagination li:not(:first-child) .page-link, .datatable-pagination li:not(:first-child) a {
  4306. margin-left: -1px;
  4307. }
  4308. .page-item:first-child .page-link, .page-item:first-child .datatable-pagination a, .datatable-pagination .page-item:first-child a, .datatable-pagination li:first-child .page-link, .datatable-pagination li:first-child a {
  4309. border-top-left-radius: var(--bs-pagination-border-radius);
  4310. border-bottom-left-radius: var(--bs-pagination-border-radius);
  4311. }
  4312. .page-item:last-child .page-link, .page-item:last-child .datatable-pagination a, .datatable-pagination .page-item:last-child a, .datatable-pagination li:last-child .page-link, .datatable-pagination li:last-child a {
  4313. border-top-right-radius: var(--bs-pagination-border-radius);
  4314. border-bottom-right-radius: var(--bs-pagination-border-radius);
  4315. }
  4316. .pagination-lg {
  4317. --bs-pagination-padding-x: 1.5rem;
  4318. --bs-pagination-padding-y: 0.75rem;
  4319. --bs-pagination-font-size: 1.25rem;
  4320. --bs-pagination-border-radius: 0.5rem;
  4321. }
  4322. .pagination-sm {
  4323. --bs-pagination-padding-x: 0.5rem;
  4324. --bs-pagination-padding-y: 0.25rem;
  4325. --bs-pagination-font-size: 0.875rem;
  4326. --bs-pagination-border-radius: 0.25rem;
  4327. }
  4328. .badge {
  4329. --bs-badge-padding-x: 0.65em;
  4330. --bs-badge-padding-y: 0.35em;
  4331. --bs-badge-font-size: 0.75em;
  4332. --bs-badge-font-weight: 700;
  4333. --bs-badge-color: #fff;
  4334. --bs-badge-border-radius: 0.375rem;
  4335. display: inline-block;
  4336. padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  4337. font-size: var(--bs-badge-font-size);
  4338. font-weight: var(--bs-badge-font-weight);
  4339. line-height: 1;
  4340. color: var(--bs-badge-color);
  4341. text-align: center;
  4342. white-space: nowrap;
  4343. vertical-align: baseline;
  4344. border-radius: var(--bs-badge-border-radius);
  4345. }
  4346. .badge:empty {
  4347. display: none;
  4348. }
  4349. .btn .badge {
  4350. position: relative;
  4351. top: -1px;
  4352. }
  4353. .alert {
  4354. --bs-alert-bg: transparent;
  4355. --bs-alert-padding-x: 1rem;
  4356. --bs-alert-padding-y: 1rem;
  4357. --bs-alert-margin-bottom: 1rem;
  4358. --bs-alert-color: inherit;
  4359. --bs-alert-border-color: transparent;
  4360. --bs-alert-border: 1px solid var(--bs-alert-border-color);
  4361. --bs-alert-border-radius: 0.375rem;
  4362. position: relative;
  4363. padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  4364. margin-bottom: var(--bs-alert-margin-bottom);
  4365. color: var(--bs-alert-color);
  4366. background-color: var(--bs-alert-bg);
  4367. border: var(--bs-alert-border);
  4368. border-radius: var(--bs-alert-border-radius);
  4369. }
  4370. .alert-heading {
  4371. color: inherit;
  4372. }
  4373. .alert-link {
  4374. font-weight: 700;
  4375. }
  4376. .alert-dismissible {
  4377. padding-right: 3rem;
  4378. }
  4379. .alert-dismissible .btn-close {
  4380. position: absolute;
  4381. top: 0;
  4382. right: 0;
  4383. z-index: 2;
  4384. padding: 1.25rem 1rem;
  4385. }
  4386. .alert-primary {
  4387. --bs-alert-color: #084298;
  4388. --bs-alert-bg: #cfe2ff;
  4389. --bs-alert-border-color: #b6d4fe;
  4390. }
  4391. .alert-primary .alert-link {
  4392. color: #06357a;
  4393. }
  4394. .alert-secondary {
  4395. --bs-alert-color: #41464b;
  4396. --bs-alert-bg: #e2e3e5;
  4397. --bs-alert-border-color: #d3d6d8;
  4398. }
  4399. .alert-secondary .alert-link {
  4400. color: #34383c;
  4401. }
  4402. .alert-success {
  4403. --bs-alert-color: #0f5132;
  4404. --bs-alert-bg: #d1e7dd;
  4405. --bs-alert-border-color: #badbcc;
  4406. }
  4407. .alert-success .alert-link {
  4408. color: #0c4128;
  4409. }
  4410. .alert-info {
  4411. --bs-alert-color: #055160;
  4412. --bs-alert-bg: #cff4fc;
  4413. --bs-alert-border-color: #b6effb;
  4414. }
  4415. .alert-info .alert-link {
  4416. color: #04414d;
  4417. }
  4418. .alert-warning {
  4419. --bs-alert-color: #664d03;
  4420. --bs-alert-bg: #fff3cd;
  4421. --bs-alert-border-color: #ffecb5;
  4422. }
  4423. .alert-warning .alert-link {
  4424. color: #523e02;
  4425. }
  4426. .alert-danger {
  4427. --bs-alert-color: #842029;
  4428. --bs-alert-bg: #f8d7da;
  4429. --bs-alert-border-color: #f5c2c7;
  4430. }
  4431. .alert-danger .alert-link {
  4432. color: #6a1a21;
  4433. }
  4434. .alert-light {
  4435. --bs-alert-color: #636464;
  4436. --bs-alert-bg: #fefefe;
  4437. --bs-alert-border-color: #fdfdfe;
  4438. }
  4439. .alert-light .alert-link {
  4440. color: #4f5050;
  4441. }
  4442. .alert-dark {
  4443. --bs-alert-color: #141619;
  4444. --bs-alert-bg: #d3d3d4;
  4445. --bs-alert-border-color: #bcbebf;
  4446. }
  4447. .alert-dark .alert-link {
  4448. color: #101214;
  4449. }
  4450. @keyframes progress-bar-stripes {
  4451. 0% {
  4452. background-position-x: 1rem;
  4453. }
  4454. }
  4455. .progress {
  4456. --bs-progress-height: 1rem;
  4457. --bs-progress-font-size: 0.75rem;
  4458. --bs-progress-bg: #e9ecef;
  4459. --bs-progress-border-radius: 0.375rem;
  4460. --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  4461. --bs-progress-bar-color: #fff;
  4462. --bs-progress-bar-bg: #0d6efd;
  4463. --bs-progress-bar-transition: width 0.6s ease;
  4464. display: flex;
  4465. height: var(--bs-progress-height);
  4466. overflow: hidden;
  4467. font-size: var(--bs-progress-font-size);
  4468. background-color: var(--bs-progress-bg);
  4469. border-radius: var(--bs-progress-border-radius);
  4470. }
  4471. .progress-bar {
  4472. display: flex;
  4473. flex-direction: column;
  4474. justify-content: center;
  4475. overflow: hidden;
  4476. color: var(--bs-progress-bar-color);
  4477. text-align: center;
  4478. white-space: nowrap;
  4479. background-color: var(--bs-progress-bar-bg);
  4480. transition: var(--bs-progress-bar-transition);
  4481. }
  4482. @media (prefers-reduced-motion: reduce) {
  4483. .progress-bar {
  4484. transition: none;
  4485. }
  4486. }
  4487. .progress-bar-striped {
  4488. 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);
  4489. background-size: var(--bs-progress-height) var(--bs-progress-height);
  4490. }
  4491. .progress-bar-animated {
  4492. animation: 1s linear infinite progress-bar-stripes;
  4493. }
  4494. @media (prefers-reduced-motion: reduce) {
  4495. .progress-bar-animated {
  4496. animation: none;
  4497. }
  4498. }
  4499. .list-group {
  4500. --bs-list-group-color: #212529;
  4501. --bs-list-group-bg: #fff;
  4502. --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
  4503. --bs-list-group-border-width: 1px;
  4504. --bs-list-group-border-radius: 0.375rem;
  4505. --bs-list-group-item-padding-x: 1rem;
  4506. --bs-list-group-item-padding-y: 0.5rem;
  4507. --bs-list-group-action-color: #495057;
  4508. --bs-list-group-action-hover-color: #495057;
  4509. --bs-list-group-action-hover-bg: #f8f9fa;
  4510. --bs-list-group-action-active-color: #212529;
  4511. --bs-list-group-action-active-bg: #e9ecef;
  4512. --bs-list-group-disabled-color: #6c757d;
  4513. --bs-list-group-disabled-bg: #fff;
  4514. --bs-list-group-active-color: #fff;
  4515. --bs-list-group-active-bg: #0d6efd;
  4516. --bs-list-group-active-border-color: #0d6efd;
  4517. display: flex;
  4518. flex-direction: column;
  4519. padding-left: 0;
  4520. margin-bottom: 0;
  4521. border-radius: var(--bs-list-group-border-radius);
  4522. }
  4523. .list-group-numbered {
  4524. list-style-type: none;
  4525. counter-reset: section;
  4526. }
  4527. .list-group-numbered > .list-group-item::before {
  4528. content: counters(section, ".") ". ";
  4529. counter-increment: section;
  4530. }
  4531. .list-group-item-action {
  4532. width: 100%;
  4533. color: var(--bs-list-group-action-color);
  4534. text-align: inherit;
  4535. }
  4536. .list-group-item-action:hover, .list-group-item-action:focus {
  4537. z-index: 1;
  4538. color: var(--bs-list-group-action-hover-color);
  4539. text-decoration: none;
  4540. background-color: var(--bs-list-group-action-hover-bg);
  4541. }
  4542. .list-group-item-action:active {
  4543. color: var(--bs-list-group-action-active-color);
  4544. background-color: var(--bs-list-group-action-active-bg);
  4545. }
  4546. .list-group-item {
  4547. position: relative;
  4548. display: block;
  4549. padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  4550. color: var(--bs-list-group-color);
  4551. text-decoration: none;
  4552. background-color: var(--bs-list-group-bg);
  4553. border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
  4554. }
  4555. .list-group-item:first-child {
  4556. border-top-left-radius: inherit;
  4557. border-top-right-radius: inherit;
  4558. }
  4559. .list-group-item:last-child {
  4560. border-bottom-right-radius: inherit;
  4561. border-bottom-left-radius: inherit;
  4562. }
  4563. .list-group-item.disabled, .list-group-item:disabled {
  4564. color: var(--bs-list-group-disabled-color);
  4565. pointer-events: none;
  4566. background-color: var(--bs-list-group-disabled-bg);
  4567. }
  4568. .list-group-item.active {
  4569. z-index: 2;
  4570. color: var(--bs-list-group-active-color);
  4571. background-color: var(--bs-list-group-active-bg);
  4572. border-color: var(--bs-list-group-active-border-color);
  4573. }
  4574. .list-group-item + .list-group-item {
  4575. border-top-width: 0;
  4576. }
  4577. .list-group-item + .list-group-item.active {
  4578. margin-top: calc(-1 * var(--bs-list-group-border-width));
  4579. border-top-width: var(--bs-list-group-border-width);
  4580. }
  4581. .list-group-horizontal {
  4582. flex-direction: row;
  4583. }
  4584. .list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  4585. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4586. border-top-right-radius: 0;
  4587. }
  4588. .list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  4589. border-top-right-radius: var(--bs-list-group-border-radius);
  4590. border-bottom-left-radius: 0;
  4591. }
  4592. .list-group-horizontal > .list-group-item.active {
  4593. margin-top: 0;
  4594. }
  4595. .list-group-horizontal > .list-group-item + .list-group-item {
  4596. border-top-width: var(--bs-list-group-border-width);
  4597. border-left-width: 0;
  4598. }
  4599. .list-group-horizontal > .list-group-item + .list-group-item.active {
  4600. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4601. border-left-width: var(--bs-list-group-border-width);
  4602. }
  4603. @media (min-width: 576px) {
  4604. .list-group-horizontal-sm {
  4605. flex-direction: row;
  4606. }
  4607. .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
  4608. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4609. border-top-right-radius: 0;
  4610. }
  4611. .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
  4612. border-top-right-radius: var(--bs-list-group-border-radius);
  4613. border-bottom-left-radius: 0;
  4614. }
  4615. .list-group-horizontal-sm > .list-group-item.active {
  4616. margin-top: 0;
  4617. }
  4618. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  4619. border-top-width: var(--bs-list-group-border-width);
  4620. border-left-width: 0;
  4621. }
  4622. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  4623. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4624. border-left-width: var(--bs-list-group-border-width);
  4625. }
  4626. }
  4627. @media (min-width: 768px) {
  4628. .list-group-horizontal-md {
  4629. flex-direction: row;
  4630. }
  4631. .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
  4632. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4633. border-top-right-radius: 0;
  4634. }
  4635. .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
  4636. border-top-right-radius: var(--bs-list-group-border-radius);
  4637. border-bottom-left-radius: 0;
  4638. }
  4639. .list-group-horizontal-md > .list-group-item.active {
  4640. margin-top: 0;
  4641. }
  4642. .list-group-horizontal-md > .list-group-item + .list-group-item {
  4643. border-top-width: var(--bs-list-group-border-width);
  4644. border-left-width: 0;
  4645. }
  4646. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  4647. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4648. border-left-width: var(--bs-list-group-border-width);
  4649. }
  4650. }
  4651. @media (min-width: 992px) {
  4652. .list-group-horizontal-lg {
  4653. flex-direction: row;
  4654. }
  4655. .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
  4656. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4657. border-top-right-radius: 0;
  4658. }
  4659. .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
  4660. border-top-right-radius: var(--bs-list-group-border-radius);
  4661. border-bottom-left-radius: 0;
  4662. }
  4663. .list-group-horizontal-lg > .list-group-item.active {
  4664. margin-top: 0;
  4665. }
  4666. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  4667. border-top-width: var(--bs-list-group-border-width);
  4668. border-left-width: 0;
  4669. }
  4670. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  4671. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4672. border-left-width: var(--bs-list-group-border-width);
  4673. }
  4674. }
  4675. @media (min-width: 1200px) {
  4676. .list-group-horizontal-xl {
  4677. flex-direction: row;
  4678. }
  4679. .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
  4680. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4681. border-top-right-radius: 0;
  4682. }
  4683. .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
  4684. border-top-right-radius: var(--bs-list-group-border-radius);
  4685. border-bottom-left-radius: 0;
  4686. }
  4687. .list-group-horizontal-xl > .list-group-item.active {
  4688. margin-top: 0;
  4689. }
  4690. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  4691. border-top-width: var(--bs-list-group-border-width);
  4692. border-left-width: 0;
  4693. }
  4694. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  4695. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4696. border-left-width: var(--bs-list-group-border-width);
  4697. }
  4698. }
  4699. @media (min-width: 1400px) {
  4700. .list-group-horizontal-xxl {
  4701. flex-direction: row;
  4702. }
  4703. .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
  4704. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4705. border-top-right-radius: 0;
  4706. }
  4707. .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
  4708. border-top-right-radius: var(--bs-list-group-border-radius);
  4709. border-bottom-left-radius: 0;
  4710. }
  4711. .list-group-horizontal-xxl > .list-group-item.active {
  4712. margin-top: 0;
  4713. }
  4714. .list-group-horizontal-xxl > .list-group-item + .list-group-item {
  4715. border-top-width: var(--bs-list-group-border-width);
  4716. border-left-width: 0;
  4717. }
  4718. .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
  4719. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4720. border-left-width: var(--bs-list-group-border-width);
  4721. }
  4722. }
  4723. .list-group-flush {
  4724. border-radius: 0;
  4725. }
  4726. .list-group-flush > .list-group-item {
  4727. border-width: 0 0 var(--bs-list-group-border-width);
  4728. }
  4729. .list-group-flush > .list-group-item:last-child {
  4730. border-bottom-width: 0;
  4731. }
  4732. .list-group-item-primary {
  4733. color: #084298;
  4734. background-color: #cfe2ff;
  4735. }
  4736. .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  4737. color: #084298;
  4738. background-color: #bacbe6;
  4739. }
  4740. .list-group-item-primary.list-group-item-action.active {
  4741. color: #fff;
  4742. background-color: #084298;
  4743. border-color: #084298;
  4744. }
  4745. .list-group-item-secondary {
  4746. color: #41464b;
  4747. background-color: #e2e3e5;
  4748. }
  4749. .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  4750. color: #41464b;
  4751. background-color: #cbccce;
  4752. }
  4753. .list-group-item-secondary.list-group-item-action.active {
  4754. color: #fff;
  4755. background-color: #41464b;
  4756. border-color: #41464b;
  4757. }
  4758. .list-group-item-success {
  4759. color: #0f5132;
  4760. background-color: #d1e7dd;
  4761. }
  4762. .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  4763. color: #0f5132;
  4764. background-color: #bcd0c7;
  4765. }
  4766. .list-group-item-success.list-group-item-action.active {
  4767. color: #fff;
  4768. background-color: #0f5132;
  4769. border-color: #0f5132;
  4770. }
  4771. .list-group-item-info {
  4772. color: #055160;
  4773. background-color: #cff4fc;
  4774. }
  4775. .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  4776. color: #055160;
  4777. background-color: #badce3;
  4778. }
  4779. .list-group-item-info.list-group-item-action.active {
  4780. color: #fff;
  4781. background-color: #055160;
  4782. border-color: #055160;
  4783. }
  4784. .list-group-item-warning {
  4785. color: #664d03;
  4786. background-color: #fff3cd;
  4787. }
  4788. .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  4789. color: #664d03;
  4790. background-color: #e6dbb9;
  4791. }
  4792. .list-group-item-warning.list-group-item-action.active {
  4793. color: #fff;
  4794. background-color: #664d03;
  4795. border-color: #664d03;
  4796. }
  4797. .list-group-item-danger {
  4798. color: #842029;
  4799. background-color: #f8d7da;
  4800. }
  4801. .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  4802. color: #842029;
  4803. background-color: #dfc2c4;
  4804. }
  4805. .list-group-item-danger.list-group-item-action.active {
  4806. color: #fff;
  4807. background-color: #842029;
  4808. border-color: #842029;
  4809. }
  4810. .list-group-item-light {
  4811. color: #636464;
  4812. background-color: #fefefe;
  4813. }
  4814. .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  4815. color: #636464;
  4816. background-color: #e5e5e5;
  4817. }
  4818. .list-group-item-light.list-group-item-action.active {
  4819. color: #fff;
  4820. background-color: #636464;
  4821. border-color: #636464;
  4822. }
  4823. .list-group-item-dark {
  4824. color: #141619;
  4825. background-color: #d3d3d4;
  4826. }
  4827. .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  4828. color: #141619;
  4829. background-color: #bebebf;
  4830. }
  4831. .list-group-item-dark.list-group-item-action.active {
  4832. color: #fff;
  4833. background-color: #141619;
  4834. border-color: #141619;
  4835. }
  4836. .btn-close {
  4837. box-sizing: content-box;
  4838. width: 1em;
  4839. height: 1em;
  4840. padding: 0.25em 0.25em;
  4841. color: #000;
  4842. background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  4843. border: 0;
  4844. border-radius: 0.375rem;
  4845. opacity: 0.5;
  4846. }
  4847. .btn-close:hover {
  4848. color: #000;
  4849. text-decoration: none;
  4850. opacity: 0.75;
  4851. }
  4852. .btn-close:focus {
  4853. outline: 0;
  4854. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4855. opacity: 1;
  4856. }
  4857. .btn-close:disabled, .btn-close.disabled {
  4858. pointer-events: none;
  4859. -webkit-user-select: none;
  4860. -moz-user-select: none;
  4861. user-select: none;
  4862. opacity: 0.25;
  4863. }
  4864. .btn-close-white {
  4865. filter: invert(1) grayscale(100%) brightness(200%);
  4866. }
  4867. .toast {
  4868. --bs-toast-zindex: 1090;
  4869. --bs-toast-padding-x: 0.75rem;
  4870. --bs-toast-padding-y: 0.5rem;
  4871. --bs-toast-spacing: 1.5rem;
  4872. --bs-toast-max-width: 350px;
  4873. --bs-toast-font-size: 0.875rem;
  4874. --bs-toast-color: ;
  4875. --bs-toast-bg: rgba(255, 255, 255, 0.85);
  4876. --bs-toast-border-width: 1px;
  4877. --bs-toast-border-color: var(--bs-border-color-translucent);
  4878. --bs-toast-border-radius: 0.375rem;
  4879. --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  4880. --bs-toast-header-color: #6c757d;
  4881. --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
  4882. --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
  4883. width: var(--bs-toast-max-width);
  4884. max-width: 100%;
  4885. font-size: var(--bs-toast-font-size);
  4886. color: var(--bs-toast-color);
  4887. pointer-events: auto;
  4888. background-color: var(--bs-toast-bg);
  4889. background-clip: padding-box;
  4890. border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  4891. box-shadow: var(--bs-toast-box-shadow);
  4892. border-radius: var(--bs-toast-border-radius);
  4893. }
  4894. .toast.showing {
  4895. opacity: 0;
  4896. }
  4897. .toast:not(.show) {
  4898. display: none;
  4899. }
  4900. .toast-container {
  4901. --bs-toast-zindex: 1090;
  4902. position: absolute;
  4903. z-index: var(--bs-toast-zindex);
  4904. width: -moz-max-content;
  4905. width: max-content;
  4906. max-width: 100%;
  4907. pointer-events: none;
  4908. }
  4909. .toast-container > :not(:last-child) {
  4910. margin-bottom: var(--bs-toast-spacing);
  4911. }
  4912. .toast-header {
  4913. display: flex;
  4914. align-items: center;
  4915. padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  4916. color: var(--bs-toast-header-color);
  4917. background-color: var(--bs-toast-header-bg);
  4918. background-clip: padding-box;
  4919. border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  4920. border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  4921. border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  4922. }
  4923. .toast-header .btn-close {
  4924. margin-right: calc(-0.5 * var(--bs-toast-padding-x));
  4925. margin-left: var(--bs-toast-padding-x);
  4926. }
  4927. .toast-body {
  4928. padding: var(--bs-toast-padding-x);
  4929. word-wrap: break-word;
  4930. }
  4931. .modal {
  4932. --bs-modal-zindex: 1055;
  4933. --bs-modal-width: 500px;
  4934. --bs-modal-padding: 1rem;
  4935. --bs-modal-margin: 0.5rem;
  4936. --bs-modal-color: ;
  4937. --bs-modal-bg: #fff;
  4938. --bs-modal-border-color: var(--bs-border-color-translucent);
  4939. --bs-modal-border-width: 1px;
  4940. --bs-modal-border-radius: 0.5rem;
  4941. --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  4942. --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  4943. --bs-modal-header-padding-x: 1rem;
  4944. --bs-modal-header-padding-y: 1rem;
  4945. --bs-modal-header-padding: 1rem 1rem;
  4946. --bs-modal-header-border-color: var(--bs-border-color);
  4947. --bs-modal-header-border-width: 1px;
  4948. --bs-modal-title-line-height: 1.5;
  4949. --bs-modal-footer-gap: 0.5rem;
  4950. --bs-modal-footer-bg: ;
  4951. --bs-modal-footer-border-color: var(--bs-border-color);
  4952. --bs-modal-footer-border-width: 1px;
  4953. position: fixed;
  4954. top: 0;
  4955. left: 0;
  4956. z-index: var(--bs-modal-zindex);
  4957. display: none;
  4958. width: 100%;
  4959. height: 100%;
  4960. overflow-x: hidden;
  4961. overflow-y: auto;
  4962. outline: 0;
  4963. }
  4964. .modal-dialog {
  4965. position: relative;
  4966. width: auto;
  4967. margin: var(--bs-modal-margin);
  4968. pointer-events: none;
  4969. }
  4970. .modal.fade .modal-dialog {
  4971. transition: transform 0.3s ease-out;
  4972. transform: translate(0, -50px);
  4973. }
  4974. @media (prefers-reduced-motion: reduce) {
  4975. .modal.fade .modal-dialog {
  4976. transition: none;
  4977. }
  4978. }
  4979. .modal.show .modal-dialog {
  4980. transform: none;
  4981. }
  4982. .modal.modal-static .modal-dialog {
  4983. transform: scale(1.02);
  4984. }
  4985. .modal-dialog-scrollable {
  4986. height: calc(100% - var(--bs-modal-margin) * 2);
  4987. }
  4988. .modal-dialog-scrollable .modal-content {
  4989. max-height: 100%;
  4990. overflow: hidden;
  4991. }
  4992. .modal-dialog-scrollable .modal-body {
  4993. overflow-y: auto;
  4994. }
  4995. .modal-dialog-centered {
  4996. display: flex;
  4997. align-items: center;
  4998. min-height: calc(100% - var(--bs-modal-margin) * 2);
  4999. }
  5000. .modal-content {
  5001. position: relative;
  5002. display: flex;
  5003. flex-direction: column;
  5004. width: 100%;
  5005. color: var(--bs-modal-color);
  5006. pointer-events: auto;
  5007. background-color: var(--bs-modal-bg);
  5008. background-clip: padding-box;
  5009. border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  5010. border-radius: var(--bs-modal-border-radius);
  5011. outline: 0;
  5012. }
  5013. .modal-backdrop {
  5014. --bs-backdrop-zindex: 1050;
  5015. --bs-backdrop-bg: #000;
  5016. --bs-backdrop-opacity: 0.5;
  5017. position: fixed;
  5018. top: 0;
  5019. left: 0;
  5020. z-index: var(--bs-backdrop-zindex);
  5021. width: 100vw;
  5022. height: 100vh;
  5023. background-color: var(--bs-backdrop-bg);
  5024. }
  5025. .modal-backdrop.fade {
  5026. opacity: 0;
  5027. }
  5028. .modal-backdrop.show {
  5029. opacity: var(--bs-backdrop-opacity);
  5030. }
  5031. .modal-header {
  5032. display: flex;
  5033. flex-shrink: 0;
  5034. align-items: center;
  5035. justify-content: space-between;
  5036. padding: var(--bs-modal-header-padding);
  5037. border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  5038. border-top-left-radius: var(--bs-modal-inner-border-radius);
  5039. border-top-right-radius: var(--bs-modal-inner-border-radius);
  5040. }
  5041. .modal-header .btn-close {
  5042. padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  5043. margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
  5044. }
  5045. .modal-title {
  5046. margin-bottom: 0;
  5047. line-height: var(--bs-modal-title-line-height);
  5048. }
  5049. .modal-body {
  5050. position: relative;
  5051. flex: 1 1 auto;
  5052. padding: var(--bs-modal-padding);
  5053. }
  5054. .modal-footer {
  5055. display: flex;
  5056. flex-shrink: 0;
  5057. flex-wrap: wrap;
  5058. align-items: center;
  5059. justify-content: flex-end;
  5060. padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  5061. background-color: var(--bs-modal-footer-bg);
  5062. border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  5063. border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  5064. border-bottom-left-radius: var(--bs-modal-inner-border-radius);
  5065. }
  5066. .modal-footer > * {
  5067. margin: calc(var(--bs-modal-footer-gap) * 0.5);
  5068. }
  5069. @media (min-width: 576px) {
  5070. .modal {
  5071. --bs-modal-margin: 1.75rem;
  5072. --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  5073. }
  5074. .modal-dialog {
  5075. max-width: var(--bs-modal-width);
  5076. margin-right: auto;
  5077. margin-left: auto;
  5078. }
  5079. .modal-sm {
  5080. --bs-modal-width: 300px;
  5081. }
  5082. }
  5083. @media (min-width: 992px) {
  5084. .modal-lg,
  5085. .modal-xl {
  5086. --bs-modal-width: 800px;
  5087. }
  5088. }
  5089. @media (min-width: 1200px) {
  5090. .modal-xl {
  5091. --bs-modal-width: 1140px;
  5092. }
  5093. }
  5094. .modal-fullscreen {
  5095. width: 100vw;
  5096. max-width: none;
  5097. height: 100%;
  5098. margin: 0;
  5099. }
  5100. .modal-fullscreen .modal-content {
  5101. height: 100%;
  5102. border: 0;
  5103. border-radius: 0;
  5104. }
  5105. .modal-fullscreen .modal-header,
  5106. .modal-fullscreen .modal-footer {
  5107. border-radius: 0;
  5108. }
  5109. .modal-fullscreen .modal-body {
  5110. overflow-y: auto;
  5111. }
  5112. @media (max-width: 575.98px) {
  5113. .modal-fullscreen-sm-down {
  5114. width: 100vw;
  5115. max-width: none;
  5116. height: 100%;
  5117. margin: 0;
  5118. }
  5119. .modal-fullscreen-sm-down .modal-content {
  5120. height: 100%;
  5121. border: 0;
  5122. border-radius: 0;
  5123. }
  5124. .modal-fullscreen-sm-down .modal-header,
  5125. .modal-fullscreen-sm-down .modal-footer {
  5126. border-radius: 0;
  5127. }
  5128. .modal-fullscreen-sm-down .modal-body {
  5129. overflow-y: auto;
  5130. }
  5131. }
  5132. @media (max-width: 767.98px) {
  5133. .modal-fullscreen-md-down {
  5134. width: 100vw;
  5135. max-width: none;
  5136. height: 100%;
  5137. margin: 0;
  5138. }
  5139. .modal-fullscreen-md-down .modal-content {
  5140. height: 100%;
  5141. border: 0;
  5142. border-radius: 0;
  5143. }
  5144. .modal-fullscreen-md-down .modal-header,
  5145. .modal-fullscreen-md-down .modal-footer {
  5146. border-radius: 0;
  5147. }
  5148. .modal-fullscreen-md-down .modal-body {
  5149. overflow-y: auto;
  5150. }
  5151. }
  5152. @media (max-width: 991.98px) {
  5153. .modal-fullscreen-lg-down {
  5154. width: 100vw;
  5155. max-width: none;
  5156. height: 100%;
  5157. margin: 0;
  5158. }
  5159. .modal-fullscreen-lg-down .modal-content {
  5160. height: 100%;
  5161. border: 0;
  5162. border-radius: 0;
  5163. }
  5164. .modal-fullscreen-lg-down .modal-header,
  5165. .modal-fullscreen-lg-down .modal-footer {
  5166. border-radius: 0;
  5167. }
  5168. .modal-fullscreen-lg-down .modal-body {
  5169. overflow-y: auto;
  5170. }
  5171. }
  5172. @media (max-width: 1199.98px) {
  5173. .modal-fullscreen-xl-down {
  5174. width: 100vw;
  5175. max-width: none;
  5176. height: 100%;
  5177. margin: 0;
  5178. }
  5179. .modal-fullscreen-xl-down .modal-content {
  5180. height: 100%;
  5181. border: 0;
  5182. border-radius: 0;
  5183. }
  5184. .modal-fullscreen-xl-down .modal-header,
  5185. .modal-fullscreen-xl-down .modal-footer {
  5186. border-radius: 0;
  5187. }
  5188. .modal-fullscreen-xl-down .modal-body {
  5189. overflow-y: auto;
  5190. }
  5191. }
  5192. @media (max-width: 1399.98px) {
  5193. .modal-fullscreen-xxl-down {
  5194. width: 100vw;
  5195. max-width: none;
  5196. height: 100%;
  5197. margin: 0;
  5198. }
  5199. .modal-fullscreen-xxl-down .modal-content {
  5200. height: 100%;
  5201. border: 0;
  5202. border-radius: 0;
  5203. }
  5204. .modal-fullscreen-xxl-down .modal-header,
  5205. .modal-fullscreen-xxl-down .modal-footer {
  5206. border-radius: 0;
  5207. }
  5208. .modal-fullscreen-xxl-down .modal-body {
  5209. overflow-y: auto;
  5210. }
  5211. }
  5212. .tooltip {
  5213. --bs-tooltip-zindex: 1080;
  5214. --bs-tooltip-max-width: 200px;
  5215. --bs-tooltip-padding-x: 0.5rem;
  5216. --bs-tooltip-padding-y: 0.25rem;
  5217. --bs-tooltip-margin: ;
  5218. --bs-tooltip-font-size: 0.875rem;
  5219. --bs-tooltip-color: #fff;
  5220. --bs-tooltip-bg: #000;
  5221. --bs-tooltip-border-radius: 0.375rem;
  5222. --bs-tooltip-opacity: 0.9;
  5223. --bs-tooltip-arrow-width: 0.8rem;
  5224. --bs-tooltip-arrow-height: 0.4rem;
  5225. z-index: var(--bs-tooltip-zindex);
  5226. display: block;
  5227. padding: var(--bs-tooltip-arrow-height);
  5228. margin: var(--bs-tooltip-margin);
  5229. font-family: var(--bs-font-sans-serif);
  5230. font-style: normal;
  5231. font-weight: 400;
  5232. line-height: 1.5;
  5233. text-align: left;
  5234. text-align: start;
  5235. text-decoration: none;
  5236. text-shadow: none;
  5237. text-transform: none;
  5238. letter-spacing: normal;
  5239. word-break: normal;
  5240. white-space: normal;
  5241. word-spacing: normal;
  5242. line-break: auto;
  5243. font-size: var(--bs-tooltip-font-size);
  5244. word-wrap: break-word;
  5245. opacity: 0;
  5246. }
  5247. .tooltip.show {
  5248. opacity: var(--bs-tooltip-opacity);
  5249. }
  5250. .tooltip .tooltip-arrow {
  5251. display: block;
  5252. width: var(--bs-tooltip-arrow-width);
  5253. height: var(--bs-tooltip-arrow-height);
  5254. }
  5255. .tooltip .tooltip-arrow::before {
  5256. position: absolute;
  5257. content: "";
  5258. border-color: transparent;
  5259. border-style: solid;
  5260. }
  5261. .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  5262. bottom: 0;
  5263. }
  5264. .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  5265. top: -1px;
  5266. border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5267. border-top-color: var(--bs-tooltip-bg);
  5268. }
  5269. /* rtl:begin:ignore */
  5270. .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  5271. left: 0;
  5272. width: var(--bs-tooltip-arrow-height);
  5273. height: var(--bs-tooltip-arrow-width);
  5274. }
  5275. .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  5276. right: -1px;
  5277. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5278. border-right-color: var(--bs-tooltip-bg);
  5279. }
  5280. /* rtl:end:ignore */
  5281. .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  5282. top: 0;
  5283. }
  5284. .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  5285. bottom: -1px;
  5286. border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5287. border-bottom-color: var(--bs-tooltip-bg);
  5288. }
  5289. /* rtl:begin:ignore */
  5290. .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  5291. right: 0;
  5292. width: var(--bs-tooltip-arrow-height);
  5293. height: var(--bs-tooltip-arrow-width);
  5294. }
  5295. .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  5296. left: -1px;
  5297. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5298. border-left-color: var(--bs-tooltip-bg);
  5299. }
  5300. /* rtl:end:ignore */
  5301. .tooltip-inner {
  5302. max-width: var(--bs-tooltip-max-width);
  5303. padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  5304. color: var(--bs-tooltip-color);
  5305. text-align: center;
  5306. background-color: var(--bs-tooltip-bg);
  5307. border-radius: var(--bs-tooltip-border-radius);
  5308. }
  5309. .popover {
  5310. --bs-popover-zindex: 1070;
  5311. --bs-popover-max-width: 276px;
  5312. --bs-popover-font-size: 0.875rem;
  5313. --bs-popover-bg: #fff;
  5314. --bs-popover-border-width: 1px;
  5315. --bs-popover-border-color: var(--bs-border-color-translucent);
  5316. --bs-popover-border-radius: 0.5rem;
  5317. --bs-popover-inner-border-radius: calc(0.5rem - 1px);
  5318. --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  5319. --bs-popover-header-padding-x: 1rem;
  5320. --bs-popover-header-padding-y: 0.5rem;
  5321. --bs-popover-header-font-size: 1rem;
  5322. --bs-popover-header-color: ;
  5323. --bs-popover-header-bg: #f0f0f0;
  5324. --bs-popover-body-padding-x: 1rem;
  5325. --bs-popover-body-padding-y: 1rem;
  5326. --bs-popover-body-color: #212529;
  5327. --bs-popover-arrow-width: 1rem;
  5328. --bs-popover-arrow-height: 0.5rem;
  5329. --bs-popover-arrow-border: var(--bs-popover-border-color);
  5330. z-index: var(--bs-popover-zindex);
  5331. display: block;
  5332. max-width: var(--bs-popover-max-width);
  5333. font-family: var(--bs-font-sans-serif);
  5334. font-style: normal;
  5335. font-weight: 400;
  5336. line-height: 1.5;
  5337. text-align: left;
  5338. text-align: start;
  5339. text-decoration: none;
  5340. text-shadow: none;
  5341. text-transform: none;
  5342. letter-spacing: normal;
  5343. word-break: normal;
  5344. white-space: normal;
  5345. word-spacing: normal;
  5346. line-break: auto;
  5347. font-size: var(--bs-popover-font-size);
  5348. word-wrap: break-word;
  5349. background-color: var(--bs-popover-bg);
  5350. background-clip: padding-box;
  5351. border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5352. border-radius: var(--bs-popover-border-radius);
  5353. }
  5354. .popover .popover-arrow {
  5355. display: block;
  5356. width: var(--bs-popover-arrow-width);
  5357. height: var(--bs-popover-arrow-height);
  5358. }
  5359. .popover .popover-arrow::before, .popover .popover-arrow::after {
  5360. position: absolute;
  5361. display: block;
  5362. content: "";
  5363. border-color: transparent;
  5364. border-style: solid;
  5365. border-width: 0;
  5366. }
  5367. .bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  5368. bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5369. }
  5370. .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 {
  5371. border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  5372. }
  5373. .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  5374. bottom: 0;
  5375. border-top-color: var(--bs-popover-arrow-border);
  5376. }
  5377. .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  5378. bottom: var(--bs-popover-border-width);
  5379. border-top-color: var(--bs-popover-bg);
  5380. }
  5381. /* rtl:begin:ignore */
  5382. .bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  5383. left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5384. width: var(--bs-popover-arrow-height);
  5385. height: var(--bs-popover-arrow-width);
  5386. }
  5387. .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 {
  5388. border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  5389. }
  5390. .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  5391. left: 0;
  5392. border-right-color: var(--bs-popover-arrow-border);
  5393. }
  5394. .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  5395. left: var(--bs-popover-border-width);
  5396. border-right-color: var(--bs-popover-bg);
  5397. }
  5398. /* rtl:end:ignore */
  5399. .bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  5400. top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5401. }
  5402. .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 {
  5403. border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  5404. }
  5405. .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  5406. top: 0;
  5407. border-bottom-color: var(--bs-popover-arrow-border);
  5408. }
  5409. .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  5410. top: var(--bs-popover-border-width);
  5411. border-bottom-color: var(--bs-popover-bg);
  5412. }
  5413. .bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  5414. position: absolute;
  5415. top: 0;
  5416. left: 50%;
  5417. display: block;
  5418. width: var(--bs-popover-arrow-width);
  5419. margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  5420. content: "";
  5421. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
  5422. }
  5423. /* rtl:begin:ignore */
  5424. .bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  5425. right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5426. width: var(--bs-popover-arrow-height);
  5427. height: var(--bs-popover-arrow-width);
  5428. }
  5429. .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 {
  5430. border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  5431. }
  5432. .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  5433. right: 0;
  5434. border-left-color: var(--bs-popover-arrow-border);
  5435. }
  5436. .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  5437. right: var(--bs-popover-border-width);
  5438. border-left-color: var(--bs-popover-bg);
  5439. }
  5440. /* rtl:end:ignore */
  5441. .popover-header {
  5442. padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  5443. margin-bottom: 0;
  5444. font-size: var(--bs-popover-header-font-size);
  5445. color: var(--bs-popover-header-color);
  5446. background-color: var(--bs-popover-header-bg);
  5447. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5448. border-top-left-radius: var(--bs-popover-inner-border-radius);
  5449. border-top-right-radius: var(--bs-popover-inner-border-radius);
  5450. }
  5451. .popover-header:empty {
  5452. display: none;
  5453. }
  5454. .popover-body {
  5455. padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  5456. color: var(--bs-popover-body-color);
  5457. }
  5458. .carousel {
  5459. position: relative;
  5460. }
  5461. .carousel.pointer-event {
  5462. touch-action: pan-y;
  5463. }
  5464. .carousel-inner {
  5465. position: relative;
  5466. width: 100%;
  5467. overflow: hidden;
  5468. }
  5469. .carousel-inner::after {
  5470. display: block;
  5471. clear: both;
  5472. content: "";
  5473. }
  5474. .carousel-item {
  5475. position: relative;
  5476. display: none;
  5477. float: left;
  5478. width: 100%;
  5479. margin-right: -100%;
  5480. -webkit-backface-visibility: hidden;
  5481. backface-visibility: hidden;
  5482. transition: transform 0.6s ease-in-out;
  5483. }
  5484. @media (prefers-reduced-motion: reduce) {
  5485. .carousel-item {
  5486. transition: none;
  5487. }
  5488. }
  5489. .carousel-item.active,
  5490. .carousel-item-next,
  5491. .carousel-item-prev {
  5492. display: block;
  5493. }
  5494. .carousel-item-next:not(.carousel-item-start),
  5495. .active.carousel-item-end {
  5496. transform: translateX(100%);
  5497. }
  5498. .carousel-item-prev:not(.carousel-item-end),
  5499. .active.carousel-item-start {
  5500. transform: translateX(-100%);
  5501. }
  5502. .carousel-fade .carousel-item {
  5503. opacity: 0;
  5504. transition-property: opacity;
  5505. transform: none;
  5506. }
  5507. .carousel-fade .carousel-item.active,
  5508. .carousel-fade .carousel-item-next.carousel-item-start,
  5509. .carousel-fade .carousel-item-prev.carousel-item-end {
  5510. z-index: 1;
  5511. opacity: 1;
  5512. }
  5513. .carousel-fade .active.carousel-item-start,
  5514. .carousel-fade .active.carousel-item-end {
  5515. z-index: 0;
  5516. opacity: 0;
  5517. transition: opacity 0s 0.6s;
  5518. }
  5519. @media (prefers-reduced-motion: reduce) {
  5520. .carousel-fade .active.carousel-item-start,
  5521. .carousel-fade .active.carousel-item-end {
  5522. transition: none;
  5523. }
  5524. }
  5525. .carousel-control-prev,
  5526. .carousel-control-next {
  5527. position: absolute;
  5528. top: 0;
  5529. bottom: 0;
  5530. z-index: 1;
  5531. display: flex;
  5532. align-items: center;
  5533. justify-content: center;
  5534. width: 15%;
  5535. padding: 0;
  5536. color: #fff;
  5537. text-align: center;
  5538. background: none;
  5539. border: 0;
  5540. opacity: 0.5;
  5541. transition: opacity 0.15s ease;
  5542. }
  5543. @media (prefers-reduced-motion: reduce) {
  5544. .carousel-control-prev,
  5545. .carousel-control-next {
  5546. transition: none;
  5547. }
  5548. }
  5549. .carousel-control-prev:hover, .carousel-control-prev:focus,
  5550. .carousel-control-next:hover,
  5551. .carousel-control-next:focus {
  5552. color: #fff;
  5553. text-decoration: none;
  5554. outline: 0;
  5555. opacity: 0.9;
  5556. }
  5557. .carousel-control-prev {
  5558. left: 0;
  5559. }
  5560. .carousel-control-next {
  5561. right: 0;
  5562. }
  5563. .carousel-control-prev-icon,
  5564. .carousel-control-next-icon {
  5565. display: inline-block;
  5566. width: 2rem;
  5567. height: 2rem;
  5568. background-repeat: no-repeat;
  5569. background-position: 50%;
  5570. background-size: 100% 100%;
  5571. }
  5572. /* rtl:options: {
  5573. "autoRename": true,
  5574. "stringMap":[ {
  5575. "name" : "prev-next",
  5576. "search" : "prev",
  5577. "replace" : "next"
  5578. } ]
  5579. } */
  5580. .carousel-control-prev-icon {
  5581. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  5582. }
  5583. .carousel-control-next-icon {
  5584. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  5585. }
  5586. .carousel-indicators {
  5587. position: absolute;
  5588. right: 0;
  5589. bottom: 0;
  5590. left: 0;
  5591. z-index: 2;
  5592. display: flex;
  5593. justify-content: center;
  5594. padding: 0;
  5595. margin-right: 15%;
  5596. margin-bottom: 1rem;
  5597. margin-left: 15%;
  5598. list-style: none;
  5599. }
  5600. .carousel-indicators [data-bs-target] {
  5601. box-sizing: content-box;
  5602. flex: 0 1 auto;
  5603. width: 30px;
  5604. height: 3px;
  5605. padding: 0;
  5606. margin-right: 3px;
  5607. margin-left: 3px;
  5608. text-indent: -999px;
  5609. cursor: pointer;
  5610. background-color: #fff;
  5611. background-clip: padding-box;
  5612. border: 0;
  5613. border-top: 10px solid transparent;
  5614. border-bottom: 10px solid transparent;
  5615. opacity: 0.5;
  5616. transition: opacity 0.6s ease;
  5617. }
  5618. @media (prefers-reduced-motion: reduce) {
  5619. .carousel-indicators [data-bs-target] {
  5620. transition: none;
  5621. }
  5622. }
  5623. .carousel-indicators .active {
  5624. opacity: 1;
  5625. }
  5626. .carousel-caption {
  5627. position: absolute;
  5628. right: 15%;
  5629. bottom: 1.25rem;
  5630. left: 15%;
  5631. padding-top: 1.25rem;
  5632. padding-bottom: 1.25rem;
  5633. color: #fff;
  5634. text-align: center;
  5635. }
  5636. .carousel-dark .carousel-control-prev-icon,
  5637. .carousel-dark .carousel-control-next-icon {
  5638. filter: invert(1) grayscale(100);
  5639. }
  5640. .carousel-dark .carousel-indicators [data-bs-target] {
  5641. background-color: #000;
  5642. }
  5643. .carousel-dark .carousel-caption {
  5644. color: #000;
  5645. }
  5646. .spinner-grow,
  5647. .spinner-border {
  5648. display: inline-block;
  5649. width: var(--bs-spinner-width);
  5650. height: var(--bs-spinner-height);
  5651. vertical-align: var(--bs-spinner-vertical-align);
  5652. border-radius: 50%;
  5653. animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
  5654. }
  5655. @keyframes spinner-border {
  5656. to {
  5657. transform: rotate(360deg) /* rtl:ignore */;
  5658. }
  5659. }
  5660. .spinner-border {
  5661. --bs-spinner-width: 2rem;
  5662. --bs-spinner-height: 2rem;
  5663. --bs-spinner-vertical-align: -0.125em;
  5664. --bs-spinner-border-width: 0.25em;
  5665. --bs-spinner-animation-speed: 0.75s;
  5666. --bs-spinner-animation-name: spinner-border;
  5667. border: var(--bs-spinner-border-width) solid currentcolor;
  5668. border-right-color: transparent;
  5669. }
  5670. .spinner-border-sm {
  5671. --bs-spinner-width: 1rem;
  5672. --bs-spinner-height: 1rem;
  5673. --bs-spinner-border-width: 0.2em;
  5674. }
  5675. @keyframes spinner-grow {
  5676. 0% {
  5677. transform: scale(0);
  5678. }
  5679. 50% {
  5680. opacity: 1;
  5681. transform: none;
  5682. }
  5683. }
  5684. .spinner-grow {
  5685. --bs-spinner-width: 2rem;
  5686. --bs-spinner-height: 2rem;
  5687. --bs-spinner-vertical-align: -0.125em;
  5688. --bs-spinner-animation-speed: 0.75s;
  5689. --bs-spinner-animation-name: spinner-grow;
  5690. background-color: currentcolor;
  5691. opacity: 0;
  5692. }
  5693. .spinner-grow-sm {
  5694. --bs-spinner-width: 1rem;
  5695. --bs-spinner-height: 1rem;
  5696. }
  5697. @media (prefers-reduced-motion: reduce) {
  5698. .spinner-border,
  5699. .spinner-grow {
  5700. --bs-spinner-animation-speed: 1.5s;
  5701. }
  5702. }
  5703. .offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  5704. --bs-offcanvas-zindex: 1045;
  5705. --bs-offcanvas-width: 400px;
  5706. --bs-offcanvas-height: 30vh;
  5707. --bs-offcanvas-padding-x: 1rem;
  5708. --bs-offcanvas-padding-y: 1rem;
  5709. --bs-offcanvas-color: ;
  5710. --bs-offcanvas-bg: #fff;
  5711. --bs-offcanvas-border-width: 1px;
  5712. --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  5713. --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  5714. }
  5715. @media (max-width: 575.98px) {
  5716. .offcanvas-sm {
  5717. position: fixed;
  5718. bottom: 0;
  5719. z-index: var(--bs-offcanvas-zindex);
  5720. display: flex;
  5721. flex-direction: column;
  5722. max-width: 100%;
  5723. color: var(--bs-offcanvas-color);
  5724. visibility: hidden;
  5725. background-color: var(--bs-offcanvas-bg);
  5726. background-clip: padding-box;
  5727. outline: 0;
  5728. transition: transform 0.3s ease-in-out;
  5729. }
  5730. }
  5731. @media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  5732. .offcanvas-sm {
  5733. transition: none;
  5734. }
  5735. }
  5736. @media (max-width: 575.98px) {
  5737. .offcanvas-sm.offcanvas-start {
  5738. top: 0;
  5739. left: 0;
  5740. width: var(--bs-offcanvas-width);
  5741. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5742. transform: translateX(-100%);
  5743. }
  5744. }
  5745. @media (max-width: 575.98px) {
  5746. .offcanvas-sm.offcanvas-end {
  5747. top: 0;
  5748. right: 0;
  5749. width: var(--bs-offcanvas-width);
  5750. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5751. transform: translateX(100%);
  5752. }
  5753. }
  5754. @media (max-width: 575.98px) {
  5755. .offcanvas-sm.offcanvas-top {
  5756. top: 0;
  5757. right: 0;
  5758. left: 0;
  5759. height: var(--bs-offcanvas-height);
  5760. max-height: 100%;
  5761. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5762. transform: translateY(-100%);
  5763. }
  5764. }
  5765. @media (max-width: 575.98px) {
  5766. .offcanvas-sm.offcanvas-bottom {
  5767. right: 0;
  5768. left: 0;
  5769. height: var(--bs-offcanvas-height);
  5770. max-height: 100%;
  5771. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5772. transform: translateY(100%);
  5773. }
  5774. }
  5775. @media (max-width: 575.98px) {
  5776. .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
  5777. transform: none;
  5778. }
  5779. }
  5780. @media (max-width: 575.98px) {
  5781. .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
  5782. visibility: visible;
  5783. }
  5784. }
  5785. @media (min-width: 576px) {
  5786. .offcanvas-sm {
  5787. --bs-offcanvas-height: auto;
  5788. --bs-offcanvas-border-width: 0;
  5789. background-color: transparent !important;
  5790. }
  5791. .offcanvas-sm .offcanvas-header {
  5792. display: none;
  5793. }
  5794. .offcanvas-sm .offcanvas-body {
  5795. display: flex;
  5796. flex-grow: 0;
  5797. padding: 0;
  5798. overflow-y: visible;
  5799. background-color: transparent !important;
  5800. }
  5801. }
  5802. @media (max-width: 767.98px) {
  5803. .offcanvas-md {
  5804. position: fixed;
  5805. bottom: 0;
  5806. z-index: var(--bs-offcanvas-zindex);
  5807. display: flex;
  5808. flex-direction: column;
  5809. max-width: 100%;
  5810. color: var(--bs-offcanvas-color);
  5811. visibility: hidden;
  5812. background-color: var(--bs-offcanvas-bg);
  5813. background-clip: padding-box;
  5814. outline: 0;
  5815. transition: transform 0.3s ease-in-out;
  5816. }
  5817. }
  5818. @media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  5819. .offcanvas-md {
  5820. transition: none;
  5821. }
  5822. }
  5823. @media (max-width: 767.98px) {
  5824. .offcanvas-md.offcanvas-start {
  5825. top: 0;
  5826. left: 0;
  5827. width: var(--bs-offcanvas-width);
  5828. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5829. transform: translateX(-100%);
  5830. }
  5831. }
  5832. @media (max-width: 767.98px) {
  5833. .offcanvas-md.offcanvas-end {
  5834. top: 0;
  5835. right: 0;
  5836. width: var(--bs-offcanvas-width);
  5837. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5838. transform: translateX(100%);
  5839. }
  5840. }
  5841. @media (max-width: 767.98px) {
  5842. .offcanvas-md.offcanvas-top {
  5843. top: 0;
  5844. right: 0;
  5845. left: 0;
  5846. height: var(--bs-offcanvas-height);
  5847. max-height: 100%;
  5848. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5849. transform: translateY(-100%);
  5850. }
  5851. }
  5852. @media (max-width: 767.98px) {
  5853. .offcanvas-md.offcanvas-bottom {
  5854. right: 0;
  5855. left: 0;
  5856. height: var(--bs-offcanvas-height);
  5857. max-height: 100%;
  5858. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5859. transform: translateY(100%);
  5860. }
  5861. }
  5862. @media (max-width: 767.98px) {
  5863. .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
  5864. transform: none;
  5865. }
  5866. }
  5867. @media (max-width: 767.98px) {
  5868. .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
  5869. visibility: visible;
  5870. }
  5871. }
  5872. @media (min-width: 768px) {
  5873. .offcanvas-md {
  5874. --bs-offcanvas-height: auto;
  5875. --bs-offcanvas-border-width: 0;
  5876. background-color: transparent !important;
  5877. }
  5878. .offcanvas-md .offcanvas-header {
  5879. display: none;
  5880. }
  5881. .offcanvas-md .offcanvas-body {
  5882. display: flex;
  5883. flex-grow: 0;
  5884. padding: 0;
  5885. overflow-y: visible;
  5886. background-color: transparent !important;
  5887. }
  5888. }
  5889. @media (max-width: 991.98px) {
  5890. .offcanvas-lg {
  5891. position: fixed;
  5892. bottom: 0;
  5893. z-index: var(--bs-offcanvas-zindex);
  5894. display: flex;
  5895. flex-direction: column;
  5896. max-width: 100%;
  5897. color: var(--bs-offcanvas-color);
  5898. visibility: hidden;
  5899. background-color: var(--bs-offcanvas-bg);
  5900. background-clip: padding-box;
  5901. outline: 0;
  5902. transition: transform 0.3s ease-in-out;
  5903. }
  5904. }
  5905. @media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  5906. .offcanvas-lg {
  5907. transition: none;
  5908. }
  5909. }
  5910. @media (max-width: 991.98px) {
  5911. .offcanvas-lg.offcanvas-start {
  5912. top: 0;
  5913. left: 0;
  5914. width: var(--bs-offcanvas-width);
  5915. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5916. transform: translateX(-100%);
  5917. }
  5918. }
  5919. @media (max-width: 991.98px) {
  5920. .offcanvas-lg.offcanvas-end {
  5921. top: 0;
  5922. right: 0;
  5923. width: var(--bs-offcanvas-width);
  5924. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5925. transform: translateX(100%);
  5926. }
  5927. }
  5928. @media (max-width: 991.98px) {
  5929. .offcanvas-lg.offcanvas-top {
  5930. top: 0;
  5931. right: 0;
  5932. left: 0;
  5933. height: var(--bs-offcanvas-height);
  5934. max-height: 100%;
  5935. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5936. transform: translateY(-100%);
  5937. }
  5938. }
  5939. @media (max-width: 991.98px) {
  5940. .offcanvas-lg.offcanvas-bottom {
  5941. right: 0;
  5942. left: 0;
  5943. height: var(--bs-offcanvas-height);
  5944. max-height: 100%;
  5945. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5946. transform: translateY(100%);
  5947. }
  5948. }
  5949. @media (max-width: 991.98px) {
  5950. .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
  5951. transform: none;
  5952. }
  5953. }
  5954. @media (max-width: 991.98px) {
  5955. .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
  5956. visibility: visible;
  5957. }
  5958. }
  5959. @media (min-width: 992px) {
  5960. .offcanvas-lg {
  5961. --bs-offcanvas-height: auto;
  5962. --bs-offcanvas-border-width: 0;
  5963. background-color: transparent !important;
  5964. }
  5965. .offcanvas-lg .offcanvas-header {
  5966. display: none;
  5967. }
  5968. .offcanvas-lg .offcanvas-body {
  5969. display: flex;
  5970. flex-grow: 0;
  5971. padding: 0;
  5972. overflow-y: visible;
  5973. background-color: transparent !important;
  5974. }
  5975. }
  5976. @media (max-width: 1199.98px) {
  5977. .offcanvas-xl {
  5978. position: fixed;
  5979. bottom: 0;
  5980. z-index: var(--bs-offcanvas-zindex);
  5981. display: flex;
  5982. flex-direction: column;
  5983. max-width: 100%;
  5984. color: var(--bs-offcanvas-color);
  5985. visibility: hidden;
  5986. background-color: var(--bs-offcanvas-bg);
  5987. background-clip: padding-box;
  5988. outline: 0;
  5989. transition: transform 0.3s ease-in-out;
  5990. }
  5991. }
  5992. @media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  5993. .offcanvas-xl {
  5994. transition: none;
  5995. }
  5996. }
  5997. @media (max-width: 1199.98px) {
  5998. .offcanvas-xl.offcanvas-start {
  5999. top: 0;
  6000. left: 0;
  6001. width: var(--bs-offcanvas-width);
  6002. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6003. transform: translateX(-100%);
  6004. }
  6005. }
  6006. @media (max-width: 1199.98px) {
  6007. .offcanvas-xl.offcanvas-end {
  6008. top: 0;
  6009. right: 0;
  6010. width: var(--bs-offcanvas-width);
  6011. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6012. transform: translateX(100%);
  6013. }
  6014. }
  6015. @media (max-width: 1199.98px) {
  6016. .offcanvas-xl.offcanvas-top {
  6017. top: 0;
  6018. right: 0;
  6019. left: 0;
  6020. height: var(--bs-offcanvas-height);
  6021. max-height: 100%;
  6022. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6023. transform: translateY(-100%);
  6024. }
  6025. }
  6026. @media (max-width: 1199.98px) {
  6027. .offcanvas-xl.offcanvas-bottom {
  6028. right: 0;
  6029. left: 0;
  6030. height: var(--bs-offcanvas-height);
  6031. max-height: 100%;
  6032. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6033. transform: translateY(100%);
  6034. }
  6035. }
  6036. @media (max-width: 1199.98px) {
  6037. .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
  6038. transform: none;
  6039. }
  6040. }
  6041. @media (max-width: 1199.98px) {
  6042. .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
  6043. visibility: visible;
  6044. }
  6045. }
  6046. @media (min-width: 1200px) {
  6047. .offcanvas-xl {
  6048. --bs-offcanvas-height: auto;
  6049. --bs-offcanvas-border-width: 0;
  6050. background-color: transparent !important;
  6051. }
  6052. .offcanvas-xl .offcanvas-header {
  6053. display: none;
  6054. }
  6055. .offcanvas-xl .offcanvas-body {
  6056. display: flex;
  6057. flex-grow: 0;
  6058. padding: 0;
  6059. overflow-y: visible;
  6060. background-color: transparent !important;
  6061. }
  6062. }
  6063. @media (max-width: 1399.98px) {
  6064. .offcanvas-xxl {
  6065. position: fixed;
  6066. bottom: 0;
  6067. z-index: var(--bs-offcanvas-zindex);
  6068. display: flex;
  6069. flex-direction: column;
  6070. max-width: 100%;
  6071. color: var(--bs-offcanvas-color);
  6072. visibility: hidden;
  6073. background-color: var(--bs-offcanvas-bg);
  6074. background-clip: padding-box;
  6075. outline: 0;
  6076. transition: transform 0.3s ease-in-out;
  6077. }
  6078. }
  6079. @media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  6080. .offcanvas-xxl {
  6081. transition: none;
  6082. }
  6083. }
  6084. @media (max-width: 1399.98px) {
  6085. .offcanvas-xxl.offcanvas-start {
  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. }
  6093. @media (max-width: 1399.98px) {
  6094. .offcanvas-xxl.offcanvas-end {
  6095. top: 0;
  6096. right: 0;
  6097. width: var(--bs-offcanvas-width);
  6098. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6099. transform: translateX(100%);
  6100. }
  6101. }
  6102. @media (max-width: 1399.98px) {
  6103. .offcanvas-xxl.offcanvas-top {
  6104. top: 0;
  6105. right: 0;
  6106. left: 0;
  6107. height: var(--bs-offcanvas-height);
  6108. max-height: 100%;
  6109. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6110. transform: translateY(-100%);
  6111. }
  6112. }
  6113. @media (max-width: 1399.98px) {
  6114. .offcanvas-xxl.offcanvas-bottom {
  6115. right: 0;
  6116. left: 0;
  6117. height: var(--bs-offcanvas-height);
  6118. max-height: 100%;
  6119. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6120. transform: translateY(100%);
  6121. }
  6122. }
  6123. @media (max-width: 1399.98px) {
  6124. .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
  6125. transform: none;
  6126. }
  6127. }
  6128. @media (max-width: 1399.98px) {
  6129. .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
  6130. visibility: visible;
  6131. }
  6132. }
  6133. @media (min-width: 1400px) {
  6134. .offcanvas-xxl {
  6135. --bs-offcanvas-height: auto;
  6136. --bs-offcanvas-border-width: 0;
  6137. background-color: transparent !important;
  6138. }
  6139. .offcanvas-xxl .offcanvas-header {
  6140. display: none;
  6141. }
  6142. .offcanvas-xxl .offcanvas-body {
  6143. display: flex;
  6144. flex-grow: 0;
  6145. padding: 0;
  6146. overflow-y: visible;
  6147. background-color: transparent !important;
  6148. }
  6149. }
  6150. .offcanvas {
  6151. position: fixed;
  6152. bottom: 0;
  6153. z-index: var(--bs-offcanvas-zindex);
  6154. display: flex;
  6155. flex-direction: column;
  6156. max-width: 100%;
  6157. color: var(--bs-offcanvas-color);
  6158. visibility: hidden;
  6159. background-color: var(--bs-offcanvas-bg);
  6160. background-clip: padding-box;
  6161. outline: 0;
  6162. transition: transform 0.3s ease-in-out;
  6163. }
  6164. @media (prefers-reduced-motion: reduce) {
  6165. .offcanvas {
  6166. transition: none;
  6167. }
  6168. }
  6169. .offcanvas.offcanvas-start {
  6170. top: 0;
  6171. left: 0;
  6172. width: var(--bs-offcanvas-width);
  6173. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6174. transform: translateX(-100%);
  6175. }
  6176. .offcanvas.offcanvas-end {
  6177. top: 0;
  6178. right: 0;
  6179. width: var(--bs-offcanvas-width);
  6180. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6181. transform: translateX(100%);
  6182. }
  6183. .offcanvas.offcanvas-top {
  6184. top: 0;
  6185. right: 0;
  6186. left: 0;
  6187. height: var(--bs-offcanvas-height);
  6188. max-height: 100%;
  6189. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6190. transform: translateY(-100%);
  6191. }
  6192. .offcanvas.offcanvas-bottom {
  6193. right: 0;
  6194. left: 0;
  6195. height: var(--bs-offcanvas-height);
  6196. max-height: 100%;
  6197. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6198. transform: translateY(100%);
  6199. }
  6200. .offcanvas.showing, .offcanvas.show:not(.hiding) {
  6201. transform: none;
  6202. }
  6203. .offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  6204. visibility: visible;
  6205. }
  6206. .offcanvas-backdrop {
  6207. position: fixed;
  6208. top: 0;
  6209. left: 0;
  6210. z-index: 1040;
  6211. width: 100vw;
  6212. height: 100vh;
  6213. background-color: #000;
  6214. }
  6215. .offcanvas-backdrop.fade {
  6216. opacity: 0;
  6217. }
  6218. .offcanvas-backdrop.show {
  6219. opacity: 0.5;
  6220. }
  6221. .offcanvas-header {
  6222. display: flex;
  6223. align-items: center;
  6224. justify-content: space-between;
  6225. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6226. }
  6227. .offcanvas-header .btn-close {
  6228. padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  6229. margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  6230. margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  6231. margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
  6232. }
  6233. .offcanvas-title {
  6234. margin-bottom: 0;
  6235. line-height: 1.5;
  6236. }
  6237. .offcanvas-body {
  6238. flex-grow: 1;
  6239. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6240. overflow-y: auto;
  6241. }
  6242. .placeholder {
  6243. display: inline-block;
  6244. min-height: 1em;
  6245. vertical-align: middle;
  6246. cursor: wait;
  6247. background-color: currentcolor;
  6248. opacity: 0.5;
  6249. }
  6250. .placeholder.btn::before {
  6251. display: inline-block;
  6252. content: "";
  6253. }
  6254. .placeholder-xs {
  6255. min-height: 0.6em;
  6256. }
  6257. .placeholder-sm {
  6258. min-height: 0.8em;
  6259. }
  6260. .placeholder-lg {
  6261. min-height: 1.2em;
  6262. }
  6263. .placeholder-glow .placeholder {
  6264. animation: placeholder-glow 2s ease-in-out infinite;
  6265. }
  6266. @keyframes placeholder-glow {
  6267. 50% {
  6268. opacity: 0.2;
  6269. }
  6270. }
  6271. .placeholder-wave {
  6272. -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6273. mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6274. -webkit-mask-size: 200% 100%;
  6275. mask-size: 200% 100%;
  6276. animation: placeholder-wave 2s linear infinite;
  6277. }
  6278. @keyframes placeholder-wave {
  6279. 100% {
  6280. -webkit-mask-position: -200% 0%;
  6281. mask-position: -200% 0%;
  6282. }
  6283. }
  6284. .clearfix::after {
  6285. display: block;
  6286. clear: both;
  6287. content: "";
  6288. }
  6289. .text-bg-primary {
  6290. color: #fff !important;
  6291. background-color: RGBA(13, 110, 253, var(--bs-bg-opacity, 1)) !important;
  6292. }
  6293. .text-bg-secondary {
  6294. color: #fff !important;
  6295. background-color: RGBA(108, 117, 125, var(--bs-bg-opacity, 1)) !important;
  6296. }
  6297. .text-bg-success {
  6298. color: #fff !important;
  6299. background-color: RGBA(25, 135, 84, var(--bs-bg-opacity, 1)) !important;
  6300. }
  6301. .text-bg-info {
  6302. color: #000 !important;
  6303. background-color: RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important;
  6304. }
  6305. .text-bg-warning {
  6306. color: #000 !important;
  6307. background-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important;
  6308. }
  6309. .text-bg-danger {
  6310. color: #fff !important;
  6311. background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important;
  6312. }
  6313. .text-bg-light {
  6314. color: #000 !important;
  6315. background-color: RGBA(248, 249, 250, var(--bs-bg-opacity, 1)) !important;
  6316. }
  6317. .text-bg-dark {
  6318. color: #fff !important;
  6319. background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important;
  6320. }
  6321. .link-primary {
  6322. color: #0d6efd !important;
  6323. }
  6324. .link-primary:hover, .link-primary:focus {
  6325. color: #0a58ca !important;
  6326. }
  6327. .link-secondary {
  6328. color: #6c757d !important;
  6329. }
  6330. .link-secondary:hover, .link-secondary:focus {
  6331. color: #565e64 !important;
  6332. }
  6333. .link-success {
  6334. color: #198754 !important;
  6335. }
  6336. .link-success:hover, .link-success:focus {
  6337. color: #146c43 !important;
  6338. }
  6339. .link-info {
  6340. color: #0dcaf0 !important;
  6341. }
  6342. .link-info:hover, .link-info:focus {
  6343. color: #3dd5f3 !important;
  6344. }
  6345. .link-warning {
  6346. color: #ffc107 !important;
  6347. }
  6348. .link-warning:hover, .link-warning:focus {
  6349. color: #ffcd39 !important;
  6350. }
  6351. .link-danger {
  6352. color: #dc3545 !important;
  6353. }
  6354. .link-danger:hover, .link-danger:focus {
  6355. color: #b02a37 !important;
  6356. }
  6357. .link-light {
  6358. color: #f8f9fa !important;
  6359. }
  6360. .link-light:hover, .link-light:focus {
  6361. color: #f9fafb !important;
  6362. }
  6363. .link-dark {
  6364. color: #212529 !important;
  6365. }
  6366. .link-dark:hover, .link-dark:focus {
  6367. color: #1a1e21 !important;
  6368. }
  6369. .ratio {
  6370. position: relative;
  6371. width: 100%;
  6372. }
  6373. .ratio::before {
  6374. display: block;
  6375. padding-top: var(--bs-aspect-ratio);
  6376. content: "";
  6377. }
  6378. .ratio > * {
  6379. position: absolute;
  6380. top: 0;
  6381. left: 0;
  6382. width: 100%;
  6383. height: 100%;
  6384. }
  6385. .ratio-1x1 {
  6386. --bs-aspect-ratio: 100%;
  6387. }
  6388. .ratio-4x3 {
  6389. --bs-aspect-ratio: 75%;
  6390. }
  6391. .ratio-16x9 {
  6392. --bs-aspect-ratio: 56.25%;
  6393. }
  6394. .ratio-21x9 {
  6395. --bs-aspect-ratio: 42.8571428571%;
  6396. }
  6397. .fixed-top, .sb-nav-fixed #layoutSidenav #layoutSidenav_nav, .sb-nav-fixed .sb-topnav {
  6398. position: fixed;
  6399. top: 0;
  6400. right: 0;
  6401. left: 0;
  6402. z-index: 1030;
  6403. }
  6404. .fixed-bottom {
  6405. position: fixed;
  6406. right: 0;
  6407. bottom: 0;
  6408. left: 0;
  6409. z-index: 1030;
  6410. }
  6411. .sticky-top {
  6412. position: sticky;
  6413. top: 0;
  6414. z-index: 1020;
  6415. }
  6416. .sticky-bottom {
  6417. position: sticky;
  6418. bottom: 0;
  6419. z-index: 1020;
  6420. }
  6421. @media (min-width: 576px) {
  6422. .sticky-sm-top {
  6423. position: sticky;
  6424. top: 0;
  6425. z-index: 1020;
  6426. }
  6427. .sticky-sm-bottom {
  6428. position: sticky;
  6429. bottom: 0;
  6430. z-index: 1020;
  6431. }
  6432. }
  6433. @media (min-width: 768px) {
  6434. .sticky-md-top {
  6435. position: sticky;
  6436. top: 0;
  6437. z-index: 1020;
  6438. }
  6439. .sticky-md-bottom {
  6440. position: sticky;
  6441. bottom: 0;
  6442. z-index: 1020;
  6443. }
  6444. }
  6445. @media (min-width: 992px) {
  6446. .sticky-lg-top {
  6447. position: sticky;
  6448. top: 0;
  6449. z-index: 1020;
  6450. }
  6451. .sticky-lg-bottom {
  6452. position: sticky;
  6453. bottom: 0;
  6454. z-index: 1020;
  6455. }
  6456. }
  6457. @media (min-width: 1200px) {
  6458. .sticky-xl-top {
  6459. position: sticky;
  6460. top: 0;
  6461. z-index: 1020;
  6462. }
  6463. .sticky-xl-bottom {
  6464. position: sticky;
  6465. bottom: 0;
  6466. z-index: 1020;
  6467. }
  6468. }
  6469. @media (min-width: 1400px) {
  6470. .sticky-xxl-top {
  6471. position: sticky;
  6472. top: 0;
  6473. z-index: 1020;
  6474. }
  6475. .sticky-xxl-bottom {
  6476. position: sticky;
  6477. bottom: 0;
  6478. z-index: 1020;
  6479. }
  6480. }
  6481. .hstack {
  6482. display: flex;
  6483. flex-direction: row;
  6484. align-items: center;
  6485. align-self: stretch;
  6486. }
  6487. .vstack {
  6488. display: flex;
  6489. flex: 1 1 auto;
  6490. flex-direction: column;
  6491. align-self: stretch;
  6492. }
  6493. .visually-hidden,
  6494. .visually-hidden-focusable:not(:focus):not(:focus-within) {
  6495. position: absolute !important;
  6496. width: 1px !important;
  6497. height: 1px !important;
  6498. padding: 0 !important;
  6499. margin: -1px !important;
  6500. overflow: hidden !important;
  6501. clip: rect(0, 0, 0, 0) !important;
  6502. white-space: nowrap !important;
  6503. border: 0 !important;
  6504. }
  6505. .stretched-link::after {
  6506. position: absolute;
  6507. top: 0;
  6508. right: 0;
  6509. bottom: 0;
  6510. left: 0;
  6511. z-index: 1;
  6512. content: "";
  6513. }
  6514. .text-truncate {
  6515. overflow: hidden;
  6516. text-overflow: ellipsis;
  6517. white-space: nowrap;
  6518. }
  6519. .vr {
  6520. display: inline-block;
  6521. align-self: stretch;
  6522. width: 1px;
  6523. min-height: 1em;
  6524. background-color: currentcolor;
  6525. opacity: 0.25;
  6526. }
  6527. .align-baseline {
  6528. vertical-align: baseline !important;
  6529. }
  6530. .align-top {
  6531. vertical-align: top !important;
  6532. }
  6533. .align-middle {
  6534. vertical-align: middle !important;
  6535. }
  6536. .align-bottom {
  6537. vertical-align: bottom !important;
  6538. }
  6539. .align-text-bottom {
  6540. vertical-align: text-bottom !important;
  6541. }
  6542. .align-text-top {
  6543. vertical-align: text-top !important;
  6544. }
  6545. .float-start {
  6546. float: left !important;
  6547. }
  6548. .float-end {
  6549. float: right !important;
  6550. }
  6551. .float-none {
  6552. float: none !important;
  6553. }
  6554. .opacity-0 {
  6555. opacity: 0 !important;
  6556. }
  6557. .opacity-25 {
  6558. opacity: 0.25 !important;
  6559. }
  6560. .opacity-50 {
  6561. opacity: 0.5 !important;
  6562. }
  6563. .opacity-75 {
  6564. opacity: 0.75 !important;
  6565. }
  6566. .opacity-100 {
  6567. opacity: 1 !important;
  6568. }
  6569. .overflow-auto {
  6570. overflow: auto !important;
  6571. }
  6572. .overflow-hidden {
  6573. overflow: hidden !important;
  6574. }
  6575. .overflow-visible {
  6576. overflow: visible !important;
  6577. }
  6578. .overflow-scroll {
  6579. overflow: scroll !important;
  6580. }
  6581. .d-inline {
  6582. display: inline !important;
  6583. }
  6584. .d-inline-block {
  6585. display: inline-block !important;
  6586. }
  6587. .d-block {
  6588. display: block !important;
  6589. }
  6590. .d-grid {
  6591. display: grid !important;
  6592. }
  6593. .d-table {
  6594. display: table !important;
  6595. }
  6596. .d-table-row {
  6597. display: table-row !important;
  6598. }
  6599. .d-table-cell {
  6600. display: table-cell !important;
  6601. }
  6602. .d-flex {
  6603. display: flex !important;
  6604. }
  6605. .d-inline-flex {
  6606. display: inline-flex !important;
  6607. }
  6608. .d-none {
  6609. display: none !important;
  6610. }
  6611. .shadow {
  6612. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  6613. }
  6614. .shadow-sm {
  6615. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  6616. }
  6617. .shadow-lg {
  6618. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  6619. }
  6620. .shadow-none {
  6621. box-shadow: none !important;
  6622. }
  6623. .position-static {
  6624. position: static !important;
  6625. }
  6626. .position-relative {
  6627. position: relative !important;
  6628. }
  6629. .position-absolute {
  6630. position: absolute !important;
  6631. }
  6632. .position-fixed {
  6633. position: fixed !important;
  6634. }
  6635. .position-sticky {
  6636. position: sticky !important;
  6637. }
  6638. .top-0 {
  6639. top: 0 !important;
  6640. }
  6641. .top-50 {
  6642. top: 50% !important;
  6643. }
  6644. .top-100 {
  6645. top: 100% !important;
  6646. }
  6647. .bottom-0 {
  6648. bottom: 0 !important;
  6649. }
  6650. .bottom-50 {
  6651. bottom: 50% !important;
  6652. }
  6653. .bottom-100 {
  6654. bottom: 100% !important;
  6655. }
  6656. .start-0 {
  6657. left: 0 !important;
  6658. }
  6659. .start-50 {
  6660. left: 50% !important;
  6661. }
  6662. .start-100 {
  6663. left: 100% !important;
  6664. }
  6665. .end-0 {
  6666. right: 0 !important;
  6667. }
  6668. .end-50 {
  6669. right: 50% !important;
  6670. }
  6671. .end-100 {
  6672. right: 100% !important;
  6673. }
  6674. .translate-middle {
  6675. transform: translate(-50%, -50%) !important;
  6676. }
  6677. .translate-middle-x {
  6678. transform: translateX(-50%) !important;
  6679. }
  6680. .translate-middle-y {
  6681. transform: translateY(-50%) !important;
  6682. }
  6683. .border {
  6684. border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6685. }
  6686. .border-0 {
  6687. border: 0 !important;
  6688. }
  6689. .border-top {
  6690. border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6691. }
  6692. .border-top-0 {
  6693. border-top: 0 !important;
  6694. }
  6695. .border-end {
  6696. border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6697. }
  6698. .border-end-0 {
  6699. border-right: 0 !important;
  6700. }
  6701. .border-bottom {
  6702. border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6703. }
  6704. .border-bottom-0 {
  6705. border-bottom: 0 !important;
  6706. }
  6707. .border-start {
  6708. border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6709. }
  6710. .border-start-0 {
  6711. border-left: 0 !important;
  6712. }
  6713. .border-primary {
  6714. --bs-border-opacity: 1;
  6715. border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
  6716. }
  6717. .border-secondary {
  6718. --bs-border-opacity: 1;
  6719. border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
  6720. }
  6721. .border-success {
  6722. --bs-border-opacity: 1;
  6723. border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
  6724. }
  6725. .border-info {
  6726. --bs-border-opacity: 1;
  6727. border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
  6728. }
  6729. .border-warning {
  6730. --bs-border-opacity: 1;
  6731. border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
  6732. }
  6733. .border-danger {
  6734. --bs-border-opacity: 1;
  6735. border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
  6736. }
  6737. .border-light {
  6738. --bs-border-opacity: 1;
  6739. border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
  6740. }
  6741. .border-dark {
  6742. --bs-border-opacity: 1;
  6743. border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
  6744. }
  6745. .border-white {
  6746. --bs-border-opacity: 1;
  6747. border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
  6748. }
  6749. .border-1 {
  6750. --bs-border-width: 1px;
  6751. }
  6752. .border-2 {
  6753. --bs-border-width: 2px;
  6754. }
  6755. .border-3 {
  6756. --bs-border-width: 3px;
  6757. }
  6758. .border-4 {
  6759. --bs-border-width: 4px;
  6760. }
  6761. .border-5 {
  6762. --bs-border-width: 5px;
  6763. }
  6764. .border-opacity-10 {
  6765. --bs-border-opacity: 0.1;
  6766. }
  6767. .border-opacity-25 {
  6768. --bs-border-opacity: 0.25;
  6769. }
  6770. .border-opacity-50 {
  6771. --bs-border-opacity: 0.5;
  6772. }
  6773. .border-opacity-75 {
  6774. --bs-border-opacity: 0.75;
  6775. }
  6776. .border-opacity-100 {
  6777. --bs-border-opacity: 1;
  6778. }
  6779. .w-25 {
  6780. width: 25% !important;
  6781. }
  6782. .w-50 {
  6783. width: 50% !important;
  6784. }
  6785. .w-75 {
  6786. width: 75% !important;
  6787. }
  6788. .w-100 {
  6789. width: 100% !important;
  6790. }
  6791. .w-auto {
  6792. width: auto !important;
  6793. }
  6794. .mw-100 {
  6795. max-width: 100% !important;
  6796. }
  6797. .vw-100 {
  6798. width: 100vw !important;
  6799. }
  6800. .min-vw-100 {
  6801. min-width: 100vw !important;
  6802. }
  6803. .h-25 {
  6804. height: 25% !important;
  6805. }
  6806. .h-50 {
  6807. height: 50% !important;
  6808. }
  6809. .h-75 {
  6810. height: 75% !important;
  6811. }
  6812. .h-100 {
  6813. height: 100% !important;
  6814. }
  6815. .h-auto {
  6816. height: auto !important;
  6817. }
  6818. .mh-100 {
  6819. max-height: 100% !important;
  6820. }
  6821. .vh-100 {
  6822. height: 100vh !important;
  6823. }
  6824. .min-vh-100 {
  6825. min-height: 100vh !important;
  6826. }
  6827. .flex-fill {
  6828. flex: 1 1 auto !important;
  6829. }
  6830. .flex-row {
  6831. flex-direction: row !important;
  6832. }
  6833. .flex-column {
  6834. flex-direction: column !important;
  6835. }
  6836. .flex-row-reverse {
  6837. flex-direction: row-reverse !important;
  6838. }
  6839. .flex-column-reverse {
  6840. flex-direction: column-reverse !important;
  6841. }
  6842. .flex-grow-0 {
  6843. flex-grow: 0 !important;
  6844. }
  6845. .flex-grow-1 {
  6846. flex-grow: 1 !important;
  6847. }
  6848. .flex-shrink-0 {
  6849. flex-shrink: 0 !important;
  6850. }
  6851. .flex-shrink-1 {
  6852. flex-shrink: 1 !important;
  6853. }
  6854. .flex-wrap {
  6855. flex-wrap: wrap !important;
  6856. }
  6857. .flex-nowrap {
  6858. flex-wrap: nowrap !important;
  6859. }
  6860. .flex-wrap-reverse {
  6861. flex-wrap: wrap-reverse !important;
  6862. }
  6863. .justify-content-start {
  6864. justify-content: flex-start !important;
  6865. }
  6866. .justify-content-end {
  6867. justify-content: flex-end !important;
  6868. }
  6869. .justify-content-center {
  6870. justify-content: center !important;
  6871. }
  6872. .justify-content-between {
  6873. justify-content: space-between !important;
  6874. }
  6875. .justify-content-around {
  6876. justify-content: space-around !important;
  6877. }
  6878. .justify-content-evenly {
  6879. justify-content: space-evenly !important;
  6880. }
  6881. .align-items-start {
  6882. align-items: flex-start !important;
  6883. }
  6884. .align-items-end {
  6885. align-items: flex-end !important;
  6886. }
  6887. .align-items-center {
  6888. align-items: center !important;
  6889. }
  6890. .align-items-baseline {
  6891. align-items: baseline !important;
  6892. }
  6893. .align-items-stretch {
  6894. align-items: stretch !important;
  6895. }
  6896. .align-content-start {
  6897. align-content: flex-start !important;
  6898. }
  6899. .align-content-end {
  6900. align-content: flex-end !important;
  6901. }
  6902. .align-content-center {
  6903. align-content: center !important;
  6904. }
  6905. .align-content-between {
  6906. align-content: space-between !important;
  6907. }
  6908. .align-content-around {
  6909. align-content: space-around !important;
  6910. }
  6911. .align-content-stretch {
  6912. align-content: stretch !important;
  6913. }
  6914. .align-self-auto {
  6915. align-self: auto !important;
  6916. }
  6917. .align-self-start {
  6918. align-self: flex-start !important;
  6919. }
  6920. .align-self-end {
  6921. align-self: flex-end !important;
  6922. }
  6923. .align-self-center {
  6924. align-self: center !important;
  6925. }
  6926. .align-self-baseline {
  6927. align-self: baseline !important;
  6928. }
  6929. .align-self-stretch {
  6930. align-self: stretch !important;
  6931. }
  6932. .order-first {
  6933. order: -1 !important;
  6934. }
  6935. .order-0 {
  6936. order: 0 !important;
  6937. }
  6938. .order-1 {
  6939. order: 1 !important;
  6940. }
  6941. .order-2 {
  6942. order: 2 !important;
  6943. }
  6944. .order-3 {
  6945. order: 3 !important;
  6946. }
  6947. .order-4 {
  6948. order: 4 !important;
  6949. }
  6950. .order-5 {
  6951. order: 5 !important;
  6952. }
  6953. .order-last {
  6954. order: 6 !important;
  6955. }
  6956. .m-0 {
  6957. margin: 0 !important;
  6958. }
  6959. .m-1 {
  6960. margin: 0.25rem !important;
  6961. }
  6962. .m-2 {
  6963. margin: 0.5rem !important;
  6964. }
  6965. .m-3 {
  6966. margin: 1rem !important;
  6967. }
  6968. .m-4 {
  6969. margin: 1.5rem !important;
  6970. }
  6971. .m-5 {
  6972. margin: 3rem !important;
  6973. }
  6974. .m-auto {
  6975. margin: auto !important;
  6976. }
  6977. .mx-0 {
  6978. margin-right: 0 !important;
  6979. margin-left: 0 !important;
  6980. }
  6981. .mx-1 {
  6982. margin-right: 0.25rem !important;
  6983. margin-left: 0.25rem !important;
  6984. }
  6985. .mx-2 {
  6986. margin-right: 0.5rem !important;
  6987. margin-left: 0.5rem !important;
  6988. }
  6989. .mx-3 {
  6990. margin-right: 1rem !important;
  6991. margin-left: 1rem !important;
  6992. }
  6993. .mx-4 {
  6994. margin-right: 1.5rem !important;
  6995. margin-left: 1.5rem !important;
  6996. }
  6997. .mx-5 {
  6998. margin-right: 3rem !important;
  6999. margin-left: 3rem !important;
  7000. }
  7001. .mx-auto {
  7002. margin-right: auto !important;
  7003. margin-left: auto !important;
  7004. }
  7005. .my-0 {
  7006. margin-top: 0 !important;
  7007. margin-bottom: 0 !important;
  7008. }
  7009. .my-1 {
  7010. margin-top: 0.25rem !important;
  7011. margin-bottom: 0.25rem !important;
  7012. }
  7013. .my-2 {
  7014. margin-top: 0.5rem !important;
  7015. margin-bottom: 0.5rem !important;
  7016. }
  7017. .my-3 {
  7018. margin-top: 1rem !important;
  7019. margin-bottom: 1rem !important;
  7020. }
  7021. .my-4 {
  7022. margin-top: 1.5rem !important;
  7023. margin-bottom: 1.5rem !important;
  7024. }
  7025. .my-5 {
  7026. margin-top: 3rem !important;
  7027. margin-bottom: 3rem !important;
  7028. }
  7029. .my-auto {
  7030. margin-top: auto !important;
  7031. margin-bottom: auto !important;
  7032. }
  7033. .mt-0 {
  7034. margin-top: 0 !important;
  7035. }
  7036. .mt-1 {
  7037. margin-top: 0.25rem !important;
  7038. }
  7039. .mt-2 {
  7040. margin-top: 0.5rem !important;
  7041. }
  7042. .mt-3 {
  7043. margin-top: 1rem !important;
  7044. }
  7045. .mt-4 {
  7046. margin-top: 1.5rem !important;
  7047. }
  7048. .mt-5 {
  7049. margin-top: 3rem !important;
  7050. }
  7051. .mt-auto {
  7052. margin-top: auto !important;
  7053. }
  7054. .me-0 {
  7055. margin-right: 0 !important;
  7056. }
  7057. .me-1 {
  7058. margin-right: 0.25rem !important;
  7059. }
  7060. .me-2 {
  7061. margin-right: 0.5rem !important;
  7062. }
  7063. .me-3 {
  7064. margin-right: 1rem !important;
  7065. }
  7066. .me-4 {
  7067. margin-right: 1.5rem !important;
  7068. }
  7069. .me-5 {
  7070. margin-right: 3rem !important;
  7071. }
  7072. .me-auto {
  7073. margin-right: auto !important;
  7074. }
  7075. .mb-0 {
  7076. margin-bottom: 0 !important;
  7077. }
  7078. .mb-1 {
  7079. margin-bottom: 0.25rem !important;
  7080. }
  7081. .mb-2 {
  7082. margin-bottom: 0.5rem !important;
  7083. }
  7084. .mb-3 {
  7085. margin-bottom: 1rem !important;
  7086. }
  7087. .mb-4 {
  7088. margin-bottom: 1.5rem !important;
  7089. }
  7090. .mb-5 {
  7091. margin-bottom: 3rem !important;
  7092. }
  7093. .mb-auto {
  7094. margin-bottom: auto !important;
  7095. }
  7096. .ms-0 {
  7097. margin-left: 0 !important;
  7098. }
  7099. .ms-1 {
  7100. margin-left: 0.25rem !important;
  7101. }
  7102. .ms-2 {
  7103. margin-left: 0.5rem !important;
  7104. }
  7105. .ms-3 {
  7106. margin-left: 1rem !important;
  7107. }
  7108. .ms-4 {
  7109. margin-left: 1.5rem !important;
  7110. }
  7111. .ms-5 {
  7112. margin-left: 3rem !important;
  7113. }
  7114. .ms-auto {
  7115. margin-left: auto !important;
  7116. }
  7117. .p-0 {
  7118. padding: 0 !important;
  7119. }
  7120. .p-1 {
  7121. padding: 0.25rem !important;
  7122. }
  7123. .p-2 {
  7124. padding: 0.5rem !important;
  7125. }
  7126. .p-3 {
  7127. padding: 1rem !important;
  7128. }
  7129. .p-4 {
  7130. padding: 1.5rem !important;
  7131. }
  7132. .p-5 {
  7133. padding: 3rem !important;
  7134. }
  7135. .px-0 {
  7136. padding-right: 0 !important;
  7137. padding-left: 0 !important;
  7138. }
  7139. .px-1 {
  7140. padding-right: 0.25rem !important;
  7141. padding-left: 0.25rem !important;
  7142. }
  7143. .px-2 {
  7144. padding-right: 0.5rem !important;
  7145. padding-left: 0.5rem !important;
  7146. }
  7147. .px-3 {
  7148. padding-right: 1rem !important;
  7149. padding-left: 1rem !important;
  7150. }
  7151. .px-4 {
  7152. padding-right: 1.5rem !important;
  7153. padding-left: 1.5rem !important;
  7154. }
  7155. .px-5 {
  7156. padding-right: 3rem !important;
  7157. padding-left: 3rem !important;
  7158. }
  7159. .py-0 {
  7160. padding-top: 0 !important;
  7161. padding-bottom: 0 !important;
  7162. }
  7163. .py-1 {
  7164. padding-top: 0.25rem !important;
  7165. padding-bottom: 0.25rem !important;
  7166. }
  7167. .py-2 {
  7168. padding-top: 0.5rem !important;
  7169. padding-bottom: 0.5rem !important;
  7170. }
  7171. .py-3 {
  7172. padding-top: 1rem !important;
  7173. padding-bottom: 1rem !important;
  7174. }
  7175. .py-4 {
  7176. padding-top: 1.5rem !important;
  7177. padding-bottom: 1.5rem !important;
  7178. }
  7179. .py-5 {
  7180. padding-top: 3rem !important;
  7181. padding-bottom: 3rem !important;
  7182. }
  7183. .pt-0 {
  7184. padding-top: 0 !important;
  7185. }
  7186. .pt-1 {
  7187. padding-top: 0.25rem !important;
  7188. }
  7189. .pt-2 {
  7190. padding-top: 0.5rem !important;
  7191. }
  7192. .pt-3 {
  7193. padding-top: 1rem !important;
  7194. }
  7195. .pt-4 {
  7196. padding-top: 1.5rem !important;
  7197. }
  7198. .pt-5 {
  7199. padding-top: 3rem !important;
  7200. }
  7201. .pe-0 {
  7202. padding-right: 0 !important;
  7203. }
  7204. .pe-1 {
  7205. padding-right: 0.25rem !important;
  7206. }
  7207. .pe-2 {
  7208. padding-right: 0.5rem !important;
  7209. }
  7210. .pe-3 {
  7211. padding-right: 1rem !important;
  7212. }
  7213. .pe-4 {
  7214. padding-right: 1.5rem !important;
  7215. }
  7216. .pe-5 {
  7217. padding-right: 3rem !important;
  7218. }
  7219. .pb-0 {
  7220. padding-bottom: 0 !important;
  7221. }
  7222. .pb-1 {
  7223. padding-bottom: 0.25rem !important;
  7224. }
  7225. .pb-2 {
  7226. padding-bottom: 0.5rem !important;
  7227. }
  7228. .pb-3 {
  7229. padding-bottom: 1rem !important;
  7230. }
  7231. .pb-4 {
  7232. padding-bottom: 1.5rem !important;
  7233. }
  7234. .pb-5 {
  7235. padding-bottom: 3rem !important;
  7236. }
  7237. .ps-0 {
  7238. padding-left: 0 !important;
  7239. }
  7240. .ps-1 {
  7241. padding-left: 0.25rem !important;
  7242. }
  7243. .ps-2 {
  7244. padding-left: 0.5rem !important;
  7245. }
  7246. .ps-3 {
  7247. padding-left: 1rem !important;
  7248. }
  7249. .ps-4 {
  7250. padding-left: 1.5rem !important;
  7251. }
  7252. .ps-5 {
  7253. padding-left: 3rem !important;
  7254. }
  7255. .gap-0 {
  7256. gap: 0 !important;
  7257. }
  7258. .gap-1 {
  7259. gap: 0.25rem !important;
  7260. }
  7261. .gap-2 {
  7262. gap: 0.5rem !important;
  7263. }
  7264. .gap-3 {
  7265. gap: 1rem !important;
  7266. }
  7267. .gap-4 {
  7268. gap: 1.5rem !important;
  7269. }
  7270. .gap-5 {
  7271. gap: 3rem !important;
  7272. }
  7273. .font-monospace {
  7274. font-family: var(--bs-font-monospace) !important;
  7275. }
  7276. .fs-1 {
  7277. font-size: calc(1.375rem + 1.5vw) !important;
  7278. }
  7279. .fs-2 {
  7280. font-size: calc(1.325rem + 0.9vw) !important;
  7281. }
  7282. .fs-3 {
  7283. font-size: calc(1.3rem + 0.6vw) !important;
  7284. }
  7285. .fs-4 {
  7286. font-size: calc(1.275rem + 0.3vw) !important;
  7287. }
  7288. .fs-5 {
  7289. font-size: 1.25rem !important;
  7290. }
  7291. .fs-6 {
  7292. font-size: 1rem !important;
  7293. }
  7294. .fst-italic {
  7295. font-style: italic !important;
  7296. }
  7297. .fst-normal {
  7298. font-style: normal !important;
  7299. }
  7300. .fw-light {
  7301. font-weight: 300 !important;
  7302. }
  7303. .fw-lighter {
  7304. font-weight: lighter !important;
  7305. }
  7306. .fw-normal {
  7307. font-weight: 400 !important;
  7308. }
  7309. .fw-bold {
  7310. font-weight: 700 !important;
  7311. }
  7312. .fw-semibold {
  7313. font-weight: 600 !important;
  7314. }
  7315. .fw-bolder {
  7316. font-weight: bolder !important;
  7317. }
  7318. .lh-1 {
  7319. line-height: 1 !important;
  7320. }
  7321. .lh-sm {
  7322. line-height: 1.25 !important;
  7323. }
  7324. .lh-base {
  7325. line-height: 1.5 !important;
  7326. }
  7327. .lh-lg {
  7328. line-height: 2 !important;
  7329. }
  7330. .text-start {
  7331. text-align: left !important;
  7332. }
  7333. .text-end {
  7334. text-align: right !important;
  7335. }
  7336. .text-center {
  7337. text-align: center !important;
  7338. }
  7339. .text-decoration-none {
  7340. text-decoration: none !important;
  7341. }
  7342. .text-decoration-underline {
  7343. text-decoration: underline !important;
  7344. }
  7345. .text-decoration-line-through {
  7346. text-decoration: line-through !important;
  7347. }
  7348. .text-lowercase {
  7349. text-transform: lowercase !important;
  7350. }
  7351. .text-uppercase {
  7352. text-transform: uppercase !important;
  7353. }
  7354. .text-capitalize {
  7355. text-transform: capitalize !important;
  7356. }
  7357. .text-wrap {
  7358. white-space: normal !important;
  7359. }
  7360. .text-nowrap {
  7361. white-space: nowrap !important;
  7362. }
  7363. /* rtl:begin:remove */
  7364. .text-break {
  7365. word-wrap: break-word !important;
  7366. word-break: break-word !important;
  7367. }
  7368. /* rtl:end:remove */
  7369. .text-primary {
  7370. --bs-text-opacity: 1;
  7371. color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
  7372. }
  7373. .text-secondary {
  7374. --bs-text-opacity: 1;
  7375. color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
  7376. }
  7377. .text-success {
  7378. --bs-text-opacity: 1;
  7379. color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
  7380. }
  7381. .text-info {
  7382. --bs-text-opacity: 1;
  7383. color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
  7384. }
  7385. .text-warning {
  7386. --bs-text-opacity: 1;
  7387. color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
  7388. }
  7389. .text-danger {
  7390. --bs-text-opacity: 1;
  7391. color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
  7392. }
  7393. .text-light {
  7394. --bs-text-opacity: 1;
  7395. color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
  7396. }
  7397. .text-dark {
  7398. --bs-text-opacity: 1;
  7399. color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
  7400. }
  7401. .text-black {
  7402. --bs-text-opacity: 1;
  7403. color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
  7404. }
  7405. .text-white {
  7406. --bs-text-opacity: 1;
  7407. color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
  7408. }
  7409. .text-body {
  7410. --bs-text-opacity: 1;
  7411. color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
  7412. }
  7413. .text-muted {
  7414. --bs-text-opacity: 1;
  7415. color: #6c757d !important;
  7416. }
  7417. .text-black-50 {
  7418. --bs-text-opacity: 1;
  7419. color: rgba(0, 0, 0, 0.5) !important;
  7420. }
  7421. .text-white-50 {
  7422. --bs-text-opacity: 1;
  7423. color: rgba(255, 255, 255, 0.5) !important;
  7424. }
  7425. .text-reset {
  7426. --bs-text-opacity: 1;
  7427. color: inherit !important;
  7428. }
  7429. .text-opacity-25 {
  7430. --bs-text-opacity: 0.25;
  7431. }
  7432. .text-opacity-50 {
  7433. --bs-text-opacity: 0.5;
  7434. }
  7435. .text-opacity-75 {
  7436. --bs-text-opacity: 0.75;
  7437. }
  7438. .text-opacity-100 {
  7439. --bs-text-opacity: 1;
  7440. }
  7441. .bg-primary {
  7442. --bs-bg-opacity: 1;
  7443. background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
  7444. }
  7445. .bg-secondary {
  7446. --bs-bg-opacity: 1;
  7447. background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
  7448. }
  7449. .bg-success {
  7450. --bs-bg-opacity: 1;
  7451. background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
  7452. }
  7453. .bg-info {
  7454. --bs-bg-opacity: 1;
  7455. background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
  7456. }
  7457. .bg-warning {
  7458. --bs-bg-opacity: 1;
  7459. background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  7460. }
  7461. .bg-danger {
  7462. --bs-bg-opacity: 1;
  7463. background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
  7464. }
  7465. .bg-light {
  7466. --bs-bg-opacity: 1;
  7467. background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  7468. }
  7469. .bg-dark {
  7470. --bs-bg-opacity: 1;
  7471. background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  7472. }
  7473. .bg-black {
  7474. --bs-bg-opacity: 1;
  7475. background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
  7476. }
  7477. .bg-white {
  7478. --bs-bg-opacity: 1;
  7479. background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  7480. }
  7481. .bg-body {
  7482. --bs-bg-opacity: 1;
  7483. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  7484. }
  7485. .bg-transparent {
  7486. --bs-bg-opacity: 1;
  7487. background-color: transparent !important;
  7488. }
  7489. .bg-opacity-10 {
  7490. --bs-bg-opacity: 0.1;
  7491. }
  7492. .bg-opacity-25 {
  7493. --bs-bg-opacity: 0.25;
  7494. }
  7495. .bg-opacity-50 {
  7496. --bs-bg-opacity: 0.5;
  7497. }
  7498. .bg-opacity-75 {
  7499. --bs-bg-opacity: 0.75;
  7500. }
  7501. .bg-opacity-100 {
  7502. --bs-bg-opacity: 1;
  7503. }
  7504. .bg-gradient {
  7505. background-image: var(--bs-gradient) !important;
  7506. }
  7507. .user-select-all {
  7508. -webkit-user-select: all !important;
  7509. -moz-user-select: all !important;
  7510. user-select: all !important;
  7511. }
  7512. .user-select-auto {
  7513. -webkit-user-select: auto !important;
  7514. -moz-user-select: auto !important;
  7515. user-select: auto !important;
  7516. }
  7517. .user-select-none {
  7518. -webkit-user-select: none !important;
  7519. -moz-user-select: none !important;
  7520. user-select: none !important;
  7521. }
  7522. .pe-none {
  7523. pointer-events: none !important;
  7524. }
  7525. .pe-auto {
  7526. pointer-events: auto !important;
  7527. }
  7528. .rounded {
  7529. border-radius: var(--bs-border-radius) !important;
  7530. }
  7531. .rounded-0 {
  7532. border-radius: 0 !important;
  7533. }
  7534. .rounded-1 {
  7535. border-radius: var(--bs-border-radius-sm) !important;
  7536. }
  7537. .rounded-2 {
  7538. border-radius: var(--bs-border-radius) !important;
  7539. }
  7540. .rounded-3 {
  7541. border-radius: var(--bs-border-radius-lg) !important;
  7542. }
  7543. .rounded-4 {
  7544. border-radius: var(--bs-border-radius-xl) !important;
  7545. }
  7546. .rounded-5 {
  7547. border-radius: var(--bs-border-radius-2xl) !important;
  7548. }
  7549. .rounded-circle {
  7550. border-radius: 50% !important;
  7551. }
  7552. .rounded-pill {
  7553. border-radius: var(--bs-border-radius-pill) !important;
  7554. }
  7555. .rounded-top {
  7556. border-top-left-radius: var(--bs-border-radius) !important;
  7557. border-top-right-radius: var(--bs-border-radius) !important;
  7558. }
  7559. .rounded-end {
  7560. border-top-right-radius: var(--bs-border-radius) !important;
  7561. border-bottom-right-radius: var(--bs-border-radius) !important;
  7562. }
  7563. .rounded-bottom {
  7564. border-bottom-right-radius: var(--bs-border-radius) !important;
  7565. border-bottom-left-radius: var(--bs-border-radius) !important;
  7566. }
  7567. .rounded-start {
  7568. border-bottom-left-radius: var(--bs-border-radius) !important;
  7569. border-top-left-radius: var(--bs-border-radius) !important;
  7570. }
  7571. .visible {
  7572. visibility: visible !important;
  7573. }
  7574. .invisible {
  7575. visibility: hidden !important;
  7576. }
  7577. @media (min-width: 576px) {
  7578. .float-sm-start {
  7579. float: left !important;
  7580. }
  7581. .float-sm-end {
  7582. float: right !important;
  7583. }
  7584. .float-sm-none {
  7585. float: none !important;
  7586. }
  7587. .d-sm-inline {
  7588. display: inline !important;
  7589. }
  7590. .d-sm-inline-block {
  7591. display: inline-block !important;
  7592. }
  7593. .d-sm-block {
  7594. display: block !important;
  7595. }
  7596. .d-sm-grid {
  7597. display: grid !important;
  7598. }
  7599. .d-sm-table {
  7600. display: table !important;
  7601. }
  7602. .d-sm-table-row {
  7603. display: table-row !important;
  7604. }
  7605. .d-sm-table-cell {
  7606. display: table-cell !important;
  7607. }
  7608. .d-sm-flex {
  7609. display: flex !important;
  7610. }
  7611. .d-sm-inline-flex {
  7612. display: inline-flex !important;
  7613. }
  7614. .d-sm-none {
  7615. display: none !important;
  7616. }
  7617. .flex-sm-fill {
  7618. flex: 1 1 auto !important;
  7619. }
  7620. .flex-sm-row {
  7621. flex-direction: row !important;
  7622. }
  7623. .flex-sm-column {
  7624. flex-direction: column !important;
  7625. }
  7626. .flex-sm-row-reverse {
  7627. flex-direction: row-reverse !important;
  7628. }
  7629. .flex-sm-column-reverse {
  7630. flex-direction: column-reverse !important;
  7631. }
  7632. .flex-sm-grow-0 {
  7633. flex-grow: 0 !important;
  7634. }
  7635. .flex-sm-grow-1 {
  7636. flex-grow: 1 !important;
  7637. }
  7638. .flex-sm-shrink-0 {
  7639. flex-shrink: 0 !important;
  7640. }
  7641. .flex-sm-shrink-1 {
  7642. flex-shrink: 1 !important;
  7643. }
  7644. .flex-sm-wrap {
  7645. flex-wrap: wrap !important;
  7646. }
  7647. .flex-sm-nowrap {
  7648. flex-wrap: nowrap !important;
  7649. }
  7650. .flex-sm-wrap-reverse {
  7651. flex-wrap: wrap-reverse !important;
  7652. }
  7653. .justify-content-sm-start {
  7654. justify-content: flex-start !important;
  7655. }
  7656. .justify-content-sm-end {
  7657. justify-content: flex-end !important;
  7658. }
  7659. .justify-content-sm-center {
  7660. justify-content: center !important;
  7661. }
  7662. .justify-content-sm-between {
  7663. justify-content: space-between !important;
  7664. }
  7665. .justify-content-sm-around {
  7666. justify-content: space-around !important;
  7667. }
  7668. .justify-content-sm-evenly {
  7669. justify-content: space-evenly !important;
  7670. }
  7671. .align-items-sm-start {
  7672. align-items: flex-start !important;
  7673. }
  7674. .align-items-sm-end {
  7675. align-items: flex-end !important;
  7676. }
  7677. .align-items-sm-center {
  7678. align-items: center !important;
  7679. }
  7680. .align-items-sm-baseline {
  7681. align-items: baseline !important;
  7682. }
  7683. .align-items-sm-stretch {
  7684. align-items: stretch !important;
  7685. }
  7686. .align-content-sm-start {
  7687. align-content: flex-start !important;
  7688. }
  7689. .align-content-sm-end {
  7690. align-content: flex-end !important;
  7691. }
  7692. .align-content-sm-center {
  7693. align-content: center !important;
  7694. }
  7695. .align-content-sm-between {
  7696. align-content: space-between !important;
  7697. }
  7698. .align-content-sm-around {
  7699. align-content: space-around !important;
  7700. }
  7701. .align-content-sm-stretch {
  7702. align-content: stretch !important;
  7703. }
  7704. .align-self-sm-auto {
  7705. align-self: auto !important;
  7706. }
  7707. .align-self-sm-start {
  7708. align-self: flex-start !important;
  7709. }
  7710. .align-self-sm-end {
  7711. align-self: flex-end !important;
  7712. }
  7713. .align-self-sm-center {
  7714. align-self: center !important;
  7715. }
  7716. .align-self-sm-baseline {
  7717. align-self: baseline !important;
  7718. }
  7719. .align-self-sm-stretch {
  7720. align-self: stretch !important;
  7721. }
  7722. .order-sm-first {
  7723. order: -1 !important;
  7724. }
  7725. .order-sm-0 {
  7726. order: 0 !important;
  7727. }
  7728. .order-sm-1 {
  7729. order: 1 !important;
  7730. }
  7731. .order-sm-2 {
  7732. order: 2 !important;
  7733. }
  7734. .order-sm-3 {
  7735. order: 3 !important;
  7736. }
  7737. .order-sm-4 {
  7738. order: 4 !important;
  7739. }
  7740. .order-sm-5 {
  7741. order: 5 !important;
  7742. }
  7743. .order-sm-last {
  7744. order: 6 !important;
  7745. }
  7746. .m-sm-0 {
  7747. margin: 0 !important;
  7748. }
  7749. .m-sm-1 {
  7750. margin: 0.25rem !important;
  7751. }
  7752. .m-sm-2 {
  7753. margin: 0.5rem !important;
  7754. }
  7755. .m-sm-3 {
  7756. margin: 1rem !important;
  7757. }
  7758. .m-sm-4 {
  7759. margin: 1.5rem !important;
  7760. }
  7761. .m-sm-5 {
  7762. margin: 3rem !important;
  7763. }
  7764. .m-sm-auto {
  7765. margin: auto !important;
  7766. }
  7767. .mx-sm-0 {
  7768. margin-right: 0 !important;
  7769. margin-left: 0 !important;
  7770. }
  7771. .mx-sm-1 {
  7772. margin-right: 0.25rem !important;
  7773. margin-left: 0.25rem !important;
  7774. }
  7775. .mx-sm-2 {
  7776. margin-right: 0.5rem !important;
  7777. margin-left: 0.5rem !important;
  7778. }
  7779. .mx-sm-3 {
  7780. margin-right: 1rem !important;
  7781. margin-left: 1rem !important;
  7782. }
  7783. .mx-sm-4 {
  7784. margin-right: 1.5rem !important;
  7785. margin-left: 1.5rem !important;
  7786. }
  7787. .mx-sm-5 {
  7788. margin-right: 3rem !important;
  7789. margin-left: 3rem !important;
  7790. }
  7791. .mx-sm-auto {
  7792. margin-right: auto !important;
  7793. margin-left: auto !important;
  7794. }
  7795. .my-sm-0 {
  7796. margin-top: 0 !important;
  7797. margin-bottom: 0 !important;
  7798. }
  7799. .my-sm-1 {
  7800. margin-top: 0.25rem !important;
  7801. margin-bottom: 0.25rem !important;
  7802. }
  7803. .my-sm-2 {
  7804. margin-top: 0.5rem !important;
  7805. margin-bottom: 0.5rem !important;
  7806. }
  7807. .my-sm-3 {
  7808. margin-top: 1rem !important;
  7809. margin-bottom: 1rem !important;
  7810. }
  7811. .my-sm-4 {
  7812. margin-top: 1.5rem !important;
  7813. margin-bottom: 1.5rem !important;
  7814. }
  7815. .my-sm-5 {
  7816. margin-top: 3rem !important;
  7817. margin-bottom: 3rem !important;
  7818. }
  7819. .my-sm-auto {
  7820. margin-top: auto !important;
  7821. margin-bottom: auto !important;
  7822. }
  7823. .mt-sm-0 {
  7824. margin-top: 0 !important;
  7825. }
  7826. .mt-sm-1 {
  7827. margin-top: 0.25rem !important;
  7828. }
  7829. .mt-sm-2 {
  7830. margin-top: 0.5rem !important;
  7831. }
  7832. .mt-sm-3 {
  7833. margin-top: 1rem !important;
  7834. }
  7835. .mt-sm-4 {
  7836. margin-top: 1.5rem !important;
  7837. }
  7838. .mt-sm-5 {
  7839. margin-top: 3rem !important;
  7840. }
  7841. .mt-sm-auto {
  7842. margin-top: auto !important;
  7843. }
  7844. .me-sm-0 {
  7845. margin-right: 0 !important;
  7846. }
  7847. .me-sm-1 {
  7848. margin-right: 0.25rem !important;
  7849. }
  7850. .me-sm-2 {
  7851. margin-right: 0.5rem !important;
  7852. }
  7853. .me-sm-3 {
  7854. margin-right: 1rem !important;
  7855. }
  7856. .me-sm-4 {
  7857. margin-right: 1.5rem !important;
  7858. }
  7859. .me-sm-5 {
  7860. margin-right: 3rem !important;
  7861. }
  7862. .me-sm-auto {
  7863. margin-right: auto !important;
  7864. }
  7865. .mb-sm-0 {
  7866. margin-bottom: 0 !important;
  7867. }
  7868. .mb-sm-1 {
  7869. margin-bottom: 0.25rem !important;
  7870. }
  7871. .mb-sm-2 {
  7872. margin-bottom: 0.5rem !important;
  7873. }
  7874. .mb-sm-3 {
  7875. margin-bottom: 1rem !important;
  7876. }
  7877. .mb-sm-4 {
  7878. margin-bottom: 1.5rem !important;
  7879. }
  7880. .mb-sm-5 {
  7881. margin-bottom: 3rem !important;
  7882. }
  7883. .mb-sm-auto {
  7884. margin-bottom: auto !important;
  7885. }
  7886. .ms-sm-0 {
  7887. margin-left: 0 !important;
  7888. }
  7889. .ms-sm-1 {
  7890. margin-left: 0.25rem !important;
  7891. }
  7892. .ms-sm-2 {
  7893. margin-left: 0.5rem !important;
  7894. }
  7895. .ms-sm-3 {
  7896. margin-left: 1rem !important;
  7897. }
  7898. .ms-sm-4 {
  7899. margin-left: 1.5rem !important;
  7900. }
  7901. .ms-sm-5 {
  7902. margin-left: 3rem !important;
  7903. }
  7904. .ms-sm-auto {
  7905. margin-left: auto !important;
  7906. }
  7907. .p-sm-0 {
  7908. padding: 0 !important;
  7909. }
  7910. .p-sm-1 {
  7911. padding: 0.25rem !important;
  7912. }
  7913. .p-sm-2 {
  7914. padding: 0.5rem !important;
  7915. }
  7916. .p-sm-3 {
  7917. padding: 1rem !important;
  7918. }
  7919. .p-sm-4 {
  7920. padding: 1.5rem !important;
  7921. }
  7922. .p-sm-5 {
  7923. padding: 3rem !important;
  7924. }
  7925. .px-sm-0 {
  7926. padding-right: 0 !important;
  7927. padding-left: 0 !important;
  7928. }
  7929. .px-sm-1 {
  7930. padding-right: 0.25rem !important;
  7931. padding-left: 0.25rem !important;
  7932. }
  7933. .px-sm-2 {
  7934. padding-right: 0.5rem !important;
  7935. padding-left: 0.5rem !important;
  7936. }
  7937. .px-sm-3 {
  7938. padding-right: 1rem !important;
  7939. padding-left: 1rem !important;
  7940. }
  7941. .px-sm-4 {
  7942. padding-right: 1.5rem !important;
  7943. padding-left: 1.5rem !important;
  7944. }
  7945. .px-sm-5 {
  7946. padding-right: 3rem !important;
  7947. padding-left: 3rem !important;
  7948. }
  7949. .py-sm-0 {
  7950. padding-top: 0 !important;
  7951. padding-bottom: 0 !important;
  7952. }
  7953. .py-sm-1 {
  7954. padding-top: 0.25rem !important;
  7955. padding-bottom: 0.25rem !important;
  7956. }
  7957. .py-sm-2 {
  7958. padding-top: 0.5rem !important;
  7959. padding-bottom: 0.5rem !important;
  7960. }
  7961. .py-sm-3 {
  7962. padding-top: 1rem !important;
  7963. padding-bottom: 1rem !important;
  7964. }
  7965. .py-sm-4 {
  7966. padding-top: 1.5rem !important;
  7967. padding-bottom: 1.5rem !important;
  7968. }
  7969. .py-sm-5 {
  7970. padding-top: 3rem !important;
  7971. padding-bottom: 3rem !important;
  7972. }
  7973. .pt-sm-0 {
  7974. padding-top: 0 !important;
  7975. }
  7976. .pt-sm-1 {
  7977. padding-top: 0.25rem !important;
  7978. }
  7979. .pt-sm-2 {
  7980. padding-top: 0.5rem !important;
  7981. }
  7982. .pt-sm-3 {
  7983. padding-top: 1rem !important;
  7984. }
  7985. .pt-sm-4 {
  7986. padding-top: 1.5rem !important;
  7987. }
  7988. .pt-sm-5 {
  7989. padding-top: 3rem !important;
  7990. }
  7991. .pe-sm-0 {
  7992. padding-right: 0 !important;
  7993. }
  7994. .pe-sm-1 {
  7995. padding-right: 0.25rem !important;
  7996. }
  7997. .pe-sm-2 {
  7998. padding-right: 0.5rem !important;
  7999. }
  8000. .pe-sm-3 {
  8001. padding-right: 1rem !important;
  8002. }
  8003. .pe-sm-4 {
  8004. padding-right: 1.5rem !important;
  8005. }
  8006. .pe-sm-5 {
  8007. padding-right: 3rem !important;
  8008. }
  8009. .pb-sm-0 {
  8010. padding-bottom: 0 !important;
  8011. }
  8012. .pb-sm-1 {
  8013. padding-bottom: 0.25rem !important;
  8014. }
  8015. .pb-sm-2 {
  8016. padding-bottom: 0.5rem !important;
  8017. }
  8018. .pb-sm-3 {
  8019. padding-bottom: 1rem !important;
  8020. }
  8021. .pb-sm-4 {
  8022. padding-bottom: 1.5rem !important;
  8023. }
  8024. .pb-sm-5 {
  8025. padding-bottom: 3rem !important;
  8026. }
  8027. .ps-sm-0 {
  8028. padding-left: 0 !important;
  8029. }
  8030. .ps-sm-1 {
  8031. padding-left: 0.25rem !important;
  8032. }
  8033. .ps-sm-2 {
  8034. padding-left: 0.5rem !important;
  8035. }
  8036. .ps-sm-3 {
  8037. padding-left: 1rem !important;
  8038. }
  8039. .ps-sm-4 {
  8040. padding-left: 1.5rem !important;
  8041. }
  8042. .ps-sm-5 {
  8043. padding-left: 3rem !important;
  8044. }
  8045. .gap-sm-0 {
  8046. gap: 0 !important;
  8047. }
  8048. .gap-sm-1 {
  8049. gap: 0.25rem !important;
  8050. }
  8051. .gap-sm-2 {
  8052. gap: 0.5rem !important;
  8053. }
  8054. .gap-sm-3 {
  8055. gap: 1rem !important;
  8056. }
  8057. .gap-sm-4 {
  8058. gap: 1.5rem !important;
  8059. }
  8060. .gap-sm-5 {
  8061. gap: 3rem !important;
  8062. }
  8063. .text-sm-start {
  8064. text-align: left !important;
  8065. }
  8066. .text-sm-end {
  8067. text-align: right !important;
  8068. }
  8069. .text-sm-center {
  8070. text-align: center !important;
  8071. }
  8072. }
  8073. @media (min-width: 768px) {
  8074. .float-md-start {
  8075. float: left !important;
  8076. }
  8077. .float-md-end {
  8078. float: right !important;
  8079. }
  8080. .float-md-none {
  8081. float: none !important;
  8082. }
  8083. .d-md-inline {
  8084. display: inline !important;
  8085. }
  8086. .d-md-inline-block {
  8087. display: inline-block !important;
  8088. }
  8089. .d-md-block {
  8090. display: block !important;
  8091. }
  8092. .d-md-grid {
  8093. display: grid !important;
  8094. }
  8095. .d-md-table {
  8096. display: table !important;
  8097. }
  8098. .d-md-table-row {
  8099. display: table-row !important;
  8100. }
  8101. .d-md-table-cell {
  8102. display: table-cell !important;
  8103. }
  8104. .d-md-flex {
  8105. display: flex !important;
  8106. }
  8107. .d-md-inline-flex {
  8108. display: inline-flex !important;
  8109. }
  8110. .d-md-none {
  8111. display: none !important;
  8112. }
  8113. .flex-md-fill {
  8114. flex: 1 1 auto !important;
  8115. }
  8116. .flex-md-row {
  8117. flex-direction: row !important;
  8118. }
  8119. .flex-md-column {
  8120. flex-direction: column !important;
  8121. }
  8122. .flex-md-row-reverse {
  8123. flex-direction: row-reverse !important;
  8124. }
  8125. .flex-md-column-reverse {
  8126. flex-direction: column-reverse !important;
  8127. }
  8128. .flex-md-grow-0 {
  8129. flex-grow: 0 !important;
  8130. }
  8131. .flex-md-grow-1 {
  8132. flex-grow: 1 !important;
  8133. }
  8134. .flex-md-shrink-0 {
  8135. flex-shrink: 0 !important;
  8136. }
  8137. .flex-md-shrink-1 {
  8138. flex-shrink: 1 !important;
  8139. }
  8140. .flex-md-wrap {
  8141. flex-wrap: wrap !important;
  8142. }
  8143. .flex-md-nowrap {
  8144. flex-wrap: nowrap !important;
  8145. }
  8146. .flex-md-wrap-reverse {
  8147. flex-wrap: wrap-reverse !important;
  8148. }
  8149. .justify-content-md-start {
  8150. justify-content: flex-start !important;
  8151. }
  8152. .justify-content-md-end {
  8153. justify-content: flex-end !important;
  8154. }
  8155. .justify-content-md-center {
  8156. justify-content: center !important;
  8157. }
  8158. .justify-content-md-between {
  8159. justify-content: space-between !important;
  8160. }
  8161. .justify-content-md-around {
  8162. justify-content: space-around !important;
  8163. }
  8164. .justify-content-md-evenly {
  8165. justify-content: space-evenly !important;
  8166. }
  8167. .align-items-md-start {
  8168. align-items: flex-start !important;
  8169. }
  8170. .align-items-md-end {
  8171. align-items: flex-end !important;
  8172. }
  8173. .align-items-md-center {
  8174. align-items: center !important;
  8175. }
  8176. .align-items-md-baseline {
  8177. align-items: baseline !important;
  8178. }
  8179. .align-items-md-stretch {
  8180. align-items: stretch !important;
  8181. }
  8182. .align-content-md-start {
  8183. align-content: flex-start !important;
  8184. }
  8185. .align-content-md-end {
  8186. align-content: flex-end !important;
  8187. }
  8188. .align-content-md-center {
  8189. align-content: center !important;
  8190. }
  8191. .align-content-md-between {
  8192. align-content: space-between !important;
  8193. }
  8194. .align-content-md-around {
  8195. align-content: space-around !important;
  8196. }
  8197. .align-content-md-stretch {
  8198. align-content: stretch !important;
  8199. }
  8200. .align-self-md-auto {
  8201. align-self: auto !important;
  8202. }
  8203. .align-self-md-start {
  8204. align-self: flex-start !important;
  8205. }
  8206. .align-self-md-end {
  8207. align-self: flex-end !important;
  8208. }
  8209. .align-self-md-center {
  8210. align-self: center !important;
  8211. }
  8212. .align-self-md-baseline {
  8213. align-self: baseline !important;
  8214. }
  8215. .align-self-md-stretch {
  8216. align-self: stretch !important;
  8217. }
  8218. .order-md-first {
  8219. order: -1 !important;
  8220. }
  8221. .order-md-0 {
  8222. order: 0 !important;
  8223. }
  8224. .order-md-1 {
  8225. order: 1 !important;
  8226. }
  8227. .order-md-2 {
  8228. order: 2 !important;
  8229. }
  8230. .order-md-3 {
  8231. order: 3 !important;
  8232. }
  8233. .order-md-4 {
  8234. order: 4 !important;
  8235. }
  8236. .order-md-5 {
  8237. order: 5 !important;
  8238. }
  8239. .order-md-last {
  8240. order: 6 !important;
  8241. }
  8242. .m-md-0 {
  8243. margin: 0 !important;
  8244. }
  8245. .m-md-1 {
  8246. margin: 0.25rem !important;
  8247. }
  8248. .m-md-2 {
  8249. margin: 0.5rem !important;
  8250. }
  8251. .m-md-3 {
  8252. margin: 1rem !important;
  8253. }
  8254. .m-md-4 {
  8255. margin: 1.5rem !important;
  8256. }
  8257. .m-md-5 {
  8258. margin: 3rem !important;
  8259. }
  8260. .m-md-auto {
  8261. margin: auto !important;
  8262. }
  8263. .mx-md-0 {
  8264. margin-right: 0 !important;
  8265. margin-left: 0 !important;
  8266. }
  8267. .mx-md-1 {
  8268. margin-right: 0.25rem !important;
  8269. margin-left: 0.25rem !important;
  8270. }
  8271. .mx-md-2 {
  8272. margin-right: 0.5rem !important;
  8273. margin-left: 0.5rem !important;
  8274. }
  8275. .mx-md-3 {
  8276. margin-right: 1rem !important;
  8277. margin-left: 1rem !important;
  8278. }
  8279. .mx-md-4 {
  8280. margin-right: 1.5rem !important;
  8281. margin-left: 1.5rem !important;
  8282. }
  8283. .mx-md-5 {
  8284. margin-right: 3rem !important;
  8285. margin-left: 3rem !important;
  8286. }
  8287. .mx-md-auto {
  8288. margin-right: auto !important;
  8289. margin-left: auto !important;
  8290. }
  8291. .my-md-0 {
  8292. margin-top: 0 !important;
  8293. margin-bottom: 0 !important;
  8294. }
  8295. .my-md-1 {
  8296. margin-top: 0.25rem !important;
  8297. margin-bottom: 0.25rem !important;
  8298. }
  8299. .my-md-2 {
  8300. margin-top: 0.5rem !important;
  8301. margin-bottom: 0.5rem !important;
  8302. }
  8303. .my-md-3 {
  8304. margin-top: 1rem !important;
  8305. margin-bottom: 1rem !important;
  8306. }
  8307. .my-md-4 {
  8308. margin-top: 1.5rem !important;
  8309. margin-bottom: 1.5rem !important;
  8310. }
  8311. .my-md-5 {
  8312. margin-top: 3rem !important;
  8313. margin-bottom: 3rem !important;
  8314. }
  8315. .my-md-auto {
  8316. margin-top: auto !important;
  8317. margin-bottom: auto !important;
  8318. }
  8319. .mt-md-0 {
  8320. margin-top: 0 !important;
  8321. }
  8322. .mt-md-1 {
  8323. margin-top: 0.25rem !important;
  8324. }
  8325. .mt-md-2 {
  8326. margin-top: 0.5rem !important;
  8327. }
  8328. .mt-md-3 {
  8329. margin-top: 1rem !important;
  8330. }
  8331. .mt-md-4 {
  8332. margin-top: 1.5rem !important;
  8333. }
  8334. .mt-md-5 {
  8335. margin-top: 3rem !important;
  8336. }
  8337. .mt-md-auto {
  8338. margin-top: auto !important;
  8339. }
  8340. .me-md-0 {
  8341. margin-right: 0 !important;
  8342. }
  8343. .me-md-1 {
  8344. margin-right: 0.25rem !important;
  8345. }
  8346. .me-md-2 {
  8347. margin-right: 0.5rem !important;
  8348. }
  8349. .me-md-3 {
  8350. margin-right: 1rem !important;
  8351. }
  8352. .me-md-4 {
  8353. margin-right: 1.5rem !important;
  8354. }
  8355. .me-md-5 {
  8356. margin-right: 3rem !important;
  8357. }
  8358. .me-md-auto {
  8359. margin-right: auto !important;
  8360. }
  8361. .mb-md-0 {
  8362. margin-bottom: 0 !important;
  8363. }
  8364. .mb-md-1 {
  8365. margin-bottom: 0.25rem !important;
  8366. }
  8367. .mb-md-2 {
  8368. margin-bottom: 0.5rem !important;
  8369. }
  8370. .mb-md-3 {
  8371. margin-bottom: 1rem !important;
  8372. }
  8373. .mb-md-4 {
  8374. margin-bottom: 1.5rem !important;
  8375. }
  8376. .mb-md-5 {
  8377. margin-bottom: 3rem !important;
  8378. }
  8379. .mb-md-auto {
  8380. margin-bottom: auto !important;
  8381. }
  8382. .ms-md-0 {
  8383. margin-left: 0 !important;
  8384. }
  8385. .ms-md-1 {
  8386. margin-left: 0.25rem !important;
  8387. }
  8388. .ms-md-2 {
  8389. margin-left: 0.5rem !important;
  8390. }
  8391. .ms-md-3 {
  8392. margin-left: 1rem !important;
  8393. }
  8394. .ms-md-4 {
  8395. margin-left: 1.5rem !important;
  8396. }
  8397. .ms-md-5 {
  8398. margin-left: 3rem !important;
  8399. }
  8400. .ms-md-auto {
  8401. margin-left: auto !important;
  8402. }
  8403. .p-md-0 {
  8404. padding: 0 !important;
  8405. }
  8406. .p-md-1 {
  8407. padding: 0.25rem !important;
  8408. }
  8409. .p-md-2 {
  8410. padding: 0.5rem !important;
  8411. }
  8412. .p-md-3 {
  8413. padding: 1rem !important;
  8414. }
  8415. .p-md-4 {
  8416. padding: 1.5rem !important;
  8417. }
  8418. .p-md-5 {
  8419. padding: 3rem !important;
  8420. }
  8421. .px-md-0 {
  8422. padding-right: 0 !important;
  8423. padding-left: 0 !important;
  8424. }
  8425. .px-md-1 {
  8426. padding-right: 0.25rem !important;
  8427. padding-left: 0.25rem !important;
  8428. }
  8429. .px-md-2 {
  8430. padding-right: 0.5rem !important;
  8431. padding-left: 0.5rem !important;
  8432. }
  8433. .px-md-3 {
  8434. padding-right: 1rem !important;
  8435. padding-left: 1rem !important;
  8436. }
  8437. .px-md-4 {
  8438. padding-right: 1.5rem !important;
  8439. padding-left: 1.5rem !important;
  8440. }
  8441. .px-md-5 {
  8442. padding-right: 3rem !important;
  8443. padding-left: 3rem !important;
  8444. }
  8445. .py-md-0 {
  8446. padding-top: 0 !important;
  8447. padding-bottom: 0 !important;
  8448. }
  8449. .py-md-1 {
  8450. padding-top: 0.25rem !important;
  8451. padding-bottom: 0.25rem !important;
  8452. }
  8453. .py-md-2 {
  8454. padding-top: 0.5rem !important;
  8455. padding-bottom: 0.5rem !important;
  8456. }
  8457. .py-md-3 {
  8458. padding-top: 1rem !important;
  8459. padding-bottom: 1rem !important;
  8460. }
  8461. .py-md-4 {
  8462. padding-top: 1.5rem !important;
  8463. padding-bottom: 1.5rem !important;
  8464. }
  8465. .py-md-5 {
  8466. padding-top: 3rem !important;
  8467. padding-bottom: 3rem !important;
  8468. }
  8469. .pt-md-0 {
  8470. padding-top: 0 !important;
  8471. }
  8472. .pt-md-1 {
  8473. padding-top: 0.25rem !important;
  8474. }
  8475. .pt-md-2 {
  8476. padding-top: 0.5rem !important;
  8477. }
  8478. .pt-md-3 {
  8479. padding-top: 1rem !important;
  8480. }
  8481. .pt-md-4 {
  8482. padding-top: 1.5rem !important;
  8483. }
  8484. .pt-md-5 {
  8485. padding-top: 3rem !important;
  8486. }
  8487. .pe-md-0 {
  8488. padding-right: 0 !important;
  8489. }
  8490. .pe-md-1 {
  8491. padding-right: 0.25rem !important;
  8492. }
  8493. .pe-md-2 {
  8494. padding-right: 0.5rem !important;
  8495. }
  8496. .pe-md-3 {
  8497. padding-right: 1rem !important;
  8498. }
  8499. .pe-md-4 {
  8500. padding-right: 1.5rem !important;
  8501. }
  8502. .pe-md-5 {
  8503. padding-right: 3rem !important;
  8504. }
  8505. .pb-md-0 {
  8506. padding-bottom: 0 !important;
  8507. }
  8508. .pb-md-1 {
  8509. padding-bottom: 0.25rem !important;
  8510. }
  8511. .pb-md-2 {
  8512. padding-bottom: 0.5rem !important;
  8513. }
  8514. .pb-md-3 {
  8515. padding-bottom: 1rem !important;
  8516. }
  8517. .pb-md-4 {
  8518. padding-bottom: 1.5rem !important;
  8519. }
  8520. .pb-md-5 {
  8521. padding-bottom: 3rem !important;
  8522. }
  8523. .ps-md-0 {
  8524. padding-left: 0 !important;
  8525. }
  8526. .ps-md-1 {
  8527. padding-left: 0.25rem !important;
  8528. }
  8529. .ps-md-2 {
  8530. padding-left: 0.5rem !important;
  8531. }
  8532. .ps-md-3 {
  8533. padding-left: 1rem !important;
  8534. }
  8535. .ps-md-4 {
  8536. padding-left: 1.5rem !important;
  8537. }
  8538. .ps-md-5 {
  8539. padding-left: 3rem !important;
  8540. }
  8541. .gap-md-0 {
  8542. gap: 0 !important;
  8543. }
  8544. .gap-md-1 {
  8545. gap: 0.25rem !important;
  8546. }
  8547. .gap-md-2 {
  8548. gap: 0.5rem !important;
  8549. }
  8550. .gap-md-3 {
  8551. gap: 1rem !important;
  8552. }
  8553. .gap-md-4 {
  8554. gap: 1.5rem !important;
  8555. }
  8556. .gap-md-5 {
  8557. gap: 3rem !important;
  8558. }
  8559. .text-md-start {
  8560. text-align: left !important;
  8561. }
  8562. .text-md-end {
  8563. text-align: right !important;
  8564. }
  8565. .text-md-center {
  8566. text-align: center !important;
  8567. }
  8568. }
  8569. @media (min-width: 992px) {
  8570. .float-lg-start {
  8571. float: left !important;
  8572. }
  8573. .float-lg-end {
  8574. float: right !important;
  8575. }
  8576. .float-lg-none {
  8577. float: none !important;
  8578. }
  8579. .d-lg-inline {
  8580. display: inline !important;
  8581. }
  8582. .d-lg-inline-block {
  8583. display: inline-block !important;
  8584. }
  8585. .d-lg-block {
  8586. display: block !important;
  8587. }
  8588. .d-lg-grid {
  8589. display: grid !important;
  8590. }
  8591. .d-lg-table {
  8592. display: table !important;
  8593. }
  8594. .d-lg-table-row {
  8595. display: table-row !important;
  8596. }
  8597. .d-lg-table-cell {
  8598. display: table-cell !important;
  8599. }
  8600. .d-lg-flex {
  8601. display: flex !important;
  8602. }
  8603. .d-lg-inline-flex {
  8604. display: inline-flex !important;
  8605. }
  8606. .d-lg-none {
  8607. display: none !important;
  8608. }
  8609. .flex-lg-fill {
  8610. flex: 1 1 auto !important;
  8611. }
  8612. .flex-lg-row {
  8613. flex-direction: row !important;
  8614. }
  8615. .flex-lg-column {
  8616. flex-direction: column !important;
  8617. }
  8618. .flex-lg-row-reverse {
  8619. flex-direction: row-reverse !important;
  8620. }
  8621. .flex-lg-column-reverse {
  8622. flex-direction: column-reverse !important;
  8623. }
  8624. .flex-lg-grow-0 {
  8625. flex-grow: 0 !important;
  8626. }
  8627. .flex-lg-grow-1 {
  8628. flex-grow: 1 !important;
  8629. }
  8630. .flex-lg-shrink-0 {
  8631. flex-shrink: 0 !important;
  8632. }
  8633. .flex-lg-shrink-1 {
  8634. flex-shrink: 1 !important;
  8635. }
  8636. .flex-lg-wrap {
  8637. flex-wrap: wrap !important;
  8638. }
  8639. .flex-lg-nowrap {
  8640. flex-wrap: nowrap !important;
  8641. }
  8642. .flex-lg-wrap-reverse {
  8643. flex-wrap: wrap-reverse !important;
  8644. }
  8645. .justify-content-lg-start {
  8646. justify-content: flex-start !important;
  8647. }
  8648. .justify-content-lg-end {
  8649. justify-content: flex-end !important;
  8650. }
  8651. .justify-content-lg-center {
  8652. justify-content: center !important;
  8653. }
  8654. .justify-content-lg-between {
  8655. justify-content: space-between !important;
  8656. }
  8657. .justify-content-lg-around {
  8658. justify-content: space-around !important;
  8659. }
  8660. .justify-content-lg-evenly {
  8661. justify-content: space-evenly !important;
  8662. }
  8663. .align-items-lg-start {
  8664. align-items: flex-start !important;
  8665. }
  8666. .align-items-lg-end {
  8667. align-items: flex-end !important;
  8668. }
  8669. .align-items-lg-center {
  8670. align-items: center !important;
  8671. }
  8672. .align-items-lg-baseline {
  8673. align-items: baseline !important;
  8674. }
  8675. .align-items-lg-stretch {
  8676. align-items: stretch !important;
  8677. }
  8678. .align-content-lg-start {
  8679. align-content: flex-start !important;
  8680. }
  8681. .align-content-lg-end {
  8682. align-content: flex-end !important;
  8683. }
  8684. .align-content-lg-center {
  8685. align-content: center !important;
  8686. }
  8687. .align-content-lg-between {
  8688. align-content: space-between !important;
  8689. }
  8690. .align-content-lg-around {
  8691. align-content: space-around !important;
  8692. }
  8693. .align-content-lg-stretch {
  8694. align-content: stretch !important;
  8695. }
  8696. .align-self-lg-auto {
  8697. align-self: auto !important;
  8698. }
  8699. .align-self-lg-start {
  8700. align-self: flex-start !important;
  8701. }
  8702. .align-self-lg-end {
  8703. align-self: flex-end !important;
  8704. }
  8705. .align-self-lg-center {
  8706. align-self: center !important;
  8707. }
  8708. .align-self-lg-baseline {
  8709. align-self: baseline !important;
  8710. }
  8711. .align-self-lg-stretch {
  8712. align-self: stretch !important;
  8713. }
  8714. .order-lg-first {
  8715. order: -1 !important;
  8716. }
  8717. .order-lg-0 {
  8718. order: 0 !important;
  8719. }
  8720. .order-lg-1 {
  8721. order: 1 !important;
  8722. }
  8723. .order-lg-2 {
  8724. order: 2 !important;
  8725. }
  8726. .order-lg-3 {
  8727. order: 3 !important;
  8728. }
  8729. .order-lg-4 {
  8730. order: 4 !important;
  8731. }
  8732. .order-lg-5 {
  8733. order: 5 !important;
  8734. }
  8735. .order-lg-last {
  8736. order: 6 !important;
  8737. }
  8738. .m-lg-0 {
  8739. margin: 0 !important;
  8740. }
  8741. .m-lg-1 {
  8742. margin: 0.25rem !important;
  8743. }
  8744. .m-lg-2 {
  8745. margin: 0.5rem !important;
  8746. }
  8747. .m-lg-3 {
  8748. margin: 1rem !important;
  8749. }
  8750. .m-lg-4 {
  8751. margin: 1.5rem !important;
  8752. }
  8753. .m-lg-5 {
  8754. margin: 3rem !important;
  8755. }
  8756. .m-lg-auto {
  8757. margin: auto !important;
  8758. }
  8759. .mx-lg-0 {
  8760. margin-right: 0 !important;
  8761. margin-left: 0 !important;
  8762. }
  8763. .mx-lg-1 {
  8764. margin-right: 0.25rem !important;
  8765. margin-left: 0.25rem !important;
  8766. }
  8767. .mx-lg-2 {
  8768. margin-right: 0.5rem !important;
  8769. margin-left: 0.5rem !important;
  8770. }
  8771. .mx-lg-3 {
  8772. margin-right: 1rem !important;
  8773. margin-left: 1rem !important;
  8774. }
  8775. .mx-lg-4 {
  8776. margin-right: 1.5rem !important;
  8777. margin-left: 1.5rem !important;
  8778. }
  8779. .mx-lg-5 {
  8780. margin-right: 3rem !important;
  8781. margin-left: 3rem !important;
  8782. }
  8783. .mx-lg-auto {
  8784. margin-right: auto !important;
  8785. margin-left: auto !important;
  8786. }
  8787. .my-lg-0 {
  8788. margin-top: 0 !important;
  8789. margin-bottom: 0 !important;
  8790. }
  8791. .my-lg-1 {
  8792. margin-top: 0.25rem !important;
  8793. margin-bottom: 0.25rem !important;
  8794. }
  8795. .my-lg-2 {
  8796. margin-top: 0.5rem !important;
  8797. margin-bottom: 0.5rem !important;
  8798. }
  8799. .my-lg-3 {
  8800. margin-top: 1rem !important;
  8801. margin-bottom: 1rem !important;
  8802. }
  8803. .my-lg-4 {
  8804. margin-top: 1.5rem !important;
  8805. margin-bottom: 1.5rem !important;
  8806. }
  8807. .my-lg-5 {
  8808. margin-top: 3rem !important;
  8809. margin-bottom: 3rem !important;
  8810. }
  8811. .my-lg-auto {
  8812. margin-top: auto !important;
  8813. margin-bottom: auto !important;
  8814. }
  8815. .mt-lg-0 {
  8816. margin-top: 0 !important;
  8817. }
  8818. .mt-lg-1 {
  8819. margin-top: 0.25rem !important;
  8820. }
  8821. .mt-lg-2 {
  8822. margin-top: 0.5rem !important;
  8823. }
  8824. .mt-lg-3 {
  8825. margin-top: 1rem !important;
  8826. }
  8827. .mt-lg-4 {
  8828. margin-top: 1.5rem !important;
  8829. }
  8830. .mt-lg-5 {
  8831. margin-top: 3rem !important;
  8832. }
  8833. .mt-lg-auto {
  8834. margin-top: auto !important;
  8835. }
  8836. .me-lg-0 {
  8837. margin-right: 0 !important;
  8838. }
  8839. .me-lg-1 {
  8840. margin-right: 0.25rem !important;
  8841. }
  8842. .me-lg-2 {
  8843. margin-right: 0.5rem !important;
  8844. }
  8845. .me-lg-3 {
  8846. margin-right: 1rem !important;
  8847. }
  8848. .me-lg-4 {
  8849. margin-right: 1.5rem !important;
  8850. }
  8851. .me-lg-5 {
  8852. margin-right: 3rem !important;
  8853. }
  8854. .me-lg-auto {
  8855. margin-right: auto !important;
  8856. }
  8857. .mb-lg-0 {
  8858. margin-bottom: 0 !important;
  8859. }
  8860. .mb-lg-1 {
  8861. margin-bottom: 0.25rem !important;
  8862. }
  8863. .mb-lg-2 {
  8864. margin-bottom: 0.5rem !important;
  8865. }
  8866. .mb-lg-3 {
  8867. margin-bottom: 1rem !important;
  8868. }
  8869. .mb-lg-4 {
  8870. margin-bottom: 1.5rem !important;
  8871. }
  8872. .mb-lg-5 {
  8873. margin-bottom: 3rem !important;
  8874. }
  8875. .mb-lg-auto {
  8876. margin-bottom: auto !important;
  8877. }
  8878. .ms-lg-0 {
  8879. margin-left: 0 !important;
  8880. }
  8881. .ms-lg-1 {
  8882. margin-left: 0.25rem !important;
  8883. }
  8884. .ms-lg-2 {
  8885. margin-left: 0.5rem !important;
  8886. }
  8887. .ms-lg-3 {
  8888. margin-left: 1rem !important;
  8889. }
  8890. .ms-lg-4 {
  8891. margin-left: 1.5rem !important;
  8892. }
  8893. .ms-lg-5 {
  8894. margin-left: 3rem !important;
  8895. }
  8896. .ms-lg-auto {
  8897. margin-left: auto !important;
  8898. }
  8899. .p-lg-0 {
  8900. padding: 0 !important;
  8901. }
  8902. .p-lg-1 {
  8903. padding: 0.25rem !important;
  8904. }
  8905. .p-lg-2 {
  8906. padding: 0.5rem !important;
  8907. }
  8908. .p-lg-3 {
  8909. padding: 1rem !important;
  8910. }
  8911. .p-lg-4 {
  8912. padding: 1.5rem !important;
  8913. }
  8914. .p-lg-5 {
  8915. padding: 3rem !important;
  8916. }
  8917. .px-lg-0 {
  8918. padding-right: 0 !important;
  8919. padding-left: 0 !important;
  8920. }
  8921. .px-lg-1 {
  8922. padding-right: 0.25rem !important;
  8923. padding-left: 0.25rem !important;
  8924. }
  8925. .px-lg-2 {
  8926. padding-right: 0.5rem !important;
  8927. padding-left: 0.5rem !important;
  8928. }
  8929. .px-lg-3 {
  8930. padding-right: 1rem !important;
  8931. padding-left: 1rem !important;
  8932. }
  8933. .px-lg-4 {
  8934. padding-right: 1.5rem !important;
  8935. padding-left: 1.5rem !important;
  8936. }
  8937. .px-lg-5 {
  8938. padding-right: 3rem !important;
  8939. padding-left: 3rem !important;
  8940. }
  8941. .py-lg-0 {
  8942. padding-top: 0 !important;
  8943. padding-bottom: 0 !important;
  8944. }
  8945. .py-lg-1 {
  8946. padding-top: 0.25rem !important;
  8947. padding-bottom: 0.25rem !important;
  8948. }
  8949. .py-lg-2 {
  8950. padding-top: 0.5rem !important;
  8951. padding-bottom: 0.5rem !important;
  8952. }
  8953. .py-lg-3 {
  8954. padding-top: 1rem !important;
  8955. padding-bottom: 1rem !important;
  8956. }
  8957. .py-lg-4 {
  8958. padding-top: 1.5rem !important;
  8959. padding-bottom: 1.5rem !important;
  8960. }
  8961. .py-lg-5 {
  8962. padding-top: 3rem !important;
  8963. padding-bottom: 3rem !important;
  8964. }
  8965. .pt-lg-0 {
  8966. padding-top: 0 !important;
  8967. }
  8968. .pt-lg-1 {
  8969. padding-top: 0.25rem !important;
  8970. }
  8971. .pt-lg-2 {
  8972. padding-top: 0.5rem !important;
  8973. }
  8974. .pt-lg-3 {
  8975. padding-top: 1rem !important;
  8976. }
  8977. .pt-lg-4 {
  8978. padding-top: 1.5rem !important;
  8979. }
  8980. .pt-lg-5 {
  8981. padding-top: 3rem !important;
  8982. }
  8983. .pe-lg-0 {
  8984. padding-right: 0 !important;
  8985. }
  8986. .pe-lg-1 {
  8987. padding-right: 0.25rem !important;
  8988. }
  8989. .pe-lg-2 {
  8990. padding-right: 0.5rem !important;
  8991. }
  8992. .pe-lg-3 {
  8993. padding-right: 1rem !important;
  8994. }
  8995. .pe-lg-4 {
  8996. padding-right: 1.5rem !important;
  8997. }
  8998. .pe-lg-5 {
  8999. padding-right: 3rem !important;
  9000. }
  9001. .pb-lg-0 {
  9002. padding-bottom: 0 !important;
  9003. }
  9004. .pb-lg-1 {
  9005. padding-bottom: 0.25rem !important;
  9006. }
  9007. .pb-lg-2 {
  9008. padding-bottom: 0.5rem !important;
  9009. }
  9010. .pb-lg-3 {
  9011. padding-bottom: 1rem !important;
  9012. }
  9013. .pb-lg-4 {
  9014. padding-bottom: 1.5rem !important;
  9015. }
  9016. .pb-lg-5 {
  9017. padding-bottom: 3rem !important;
  9018. }
  9019. .ps-lg-0 {
  9020. padding-left: 0 !important;
  9021. }
  9022. .ps-lg-1 {
  9023. padding-left: 0.25rem !important;
  9024. }
  9025. .ps-lg-2 {
  9026. padding-left: 0.5rem !important;
  9027. }
  9028. .ps-lg-3 {
  9029. padding-left: 1rem !important;
  9030. }
  9031. .ps-lg-4 {
  9032. padding-left: 1.5rem !important;
  9033. }
  9034. .ps-lg-5 {
  9035. padding-left: 3rem !important;
  9036. }
  9037. .gap-lg-0 {
  9038. gap: 0 !important;
  9039. }
  9040. .gap-lg-1 {
  9041. gap: 0.25rem !important;
  9042. }
  9043. .gap-lg-2 {
  9044. gap: 0.5rem !important;
  9045. }
  9046. .gap-lg-3 {
  9047. gap: 1rem !important;
  9048. }
  9049. .gap-lg-4 {
  9050. gap: 1.5rem !important;
  9051. }
  9052. .gap-lg-5 {
  9053. gap: 3rem !important;
  9054. }
  9055. .text-lg-start {
  9056. text-align: left !important;
  9057. }
  9058. .text-lg-end {
  9059. text-align: right !important;
  9060. }
  9061. .text-lg-center {
  9062. text-align: center !important;
  9063. }
  9064. }
  9065. @media (min-width: 1200px) {
  9066. .float-xl-start {
  9067. float: left !important;
  9068. }
  9069. .float-xl-end {
  9070. float: right !important;
  9071. }
  9072. .float-xl-none {
  9073. float: none !important;
  9074. }
  9075. .d-xl-inline {
  9076. display: inline !important;
  9077. }
  9078. .d-xl-inline-block {
  9079. display: inline-block !important;
  9080. }
  9081. .d-xl-block {
  9082. display: block !important;
  9083. }
  9084. .d-xl-grid {
  9085. display: grid !important;
  9086. }
  9087. .d-xl-table {
  9088. display: table !important;
  9089. }
  9090. .d-xl-table-row {
  9091. display: table-row !important;
  9092. }
  9093. .d-xl-table-cell {
  9094. display: table-cell !important;
  9095. }
  9096. .d-xl-flex {
  9097. display: flex !important;
  9098. }
  9099. .d-xl-inline-flex {
  9100. display: inline-flex !important;
  9101. }
  9102. .d-xl-none {
  9103. display: none !important;
  9104. }
  9105. .flex-xl-fill {
  9106. flex: 1 1 auto !important;
  9107. }
  9108. .flex-xl-row {
  9109. flex-direction: row !important;
  9110. }
  9111. .flex-xl-column {
  9112. flex-direction: column !important;
  9113. }
  9114. .flex-xl-row-reverse {
  9115. flex-direction: row-reverse !important;
  9116. }
  9117. .flex-xl-column-reverse {
  9118. flex-direction: column-reverse !important;
  9119. }
  9120. .flex-xl-grow-0 {
  9121. flex-grow: 0 !important;
  9122. }
  9123. .flex-xl-grow-1 {
  9124. flex-grow: 1 !important;
  9125. }
  9126. .flex-xl-shrink-0 {
  9127. flex-shrink: 0 !important;
  9128. }
  9129. .flex-xl-shrink-1 {
  9130. flex-shrink: 1 !important;
  9131. }
  9132. .flex-xl-wrap {
  9133. flex-wrap: wrap !important;
  9134. }
  9135. .flex-xl-nowrap {
  9136. flex-wrap: nowrap !important;
  9137. }
  9138. .flex-xl-wrap-reverse {
  9139. flex-wrap: wrap-reverse !important;
  9140. }
  9141. .justify-content-xl-start {
  9142. justify-content: flex-start !important;
  9143. }
  9144. .justify-content-xl-end {
  9145. justify-content: flex-end !important;
  9146. }
  9147. .justify-content-xl-center {
  9148. justify-content: center !important;
  9149. }
  9150. .justify-content-xl-between {
  9151. justify-content: space-between !important;
  9152. }
  9153. .justify-content-xl-around {
  9154. justify-content: space-around !important;
  9155. }
  9156. .justify-content-xl-evenly {
  9157. justify-content: space-evenly !important;
  9158. }
  9159. .align-items-xl-start {
  9160. align-items: flex-start !important;
  9161. }
  9162. .align-items-xl-end {
  9163. align-items: flex-end !important;
  9164. }
  9165. .align-items-xl-center {
  9166. align-items: center !important;
  9167. }
  9168. .align-items-xl-baseline {
  9169. align-items: baseline !important;
  9170. }
  9171. .align-items-xl-stretch {
  9172. align-items: stretch !important;
  9173. }
  9174. .align-content-xl-start {
  9175. align-content: flex-start !important;
  9176. }
  9177. .align-content-xl-end {
  9178. align-content: flex-end !important;
  9179. }
  9180. .align-content-xl-center {
  9181. align-content: center !important;
  9182. }
  9183. .align-content-xl-between {
  9184. align-content: space-between !important;
  9185. }
  9186. .align-content-xl-around {
  9187. align-content: space-around !important;
  9188. }
  9189. .align-content-xl-stretch {
  9190. align-content: stretch !important;
  9191. }
  9192. .align-self-xl-auto {
  9193. align-self: auto !important;
  9194. }
  9195. .align-self-xl-start {
  9196. align-self: flex-start !important;
  9197. }
  9198. .align-self-xl-end {
  9199. align-self: flex-end !important;
  9200. }
  9201. .align-self-xl-center {
  9202. align-self: center !important;
  9203. }
  9204. .align-self-xl-baseline {
  9205. align-self: baseline !important;
  9206. }
  9207. .align-self-xl-stretch {
  9208. align-self: stretch !important;
  9209. }
  9210. .order-xl-first {
  9211. order: -1 !important;
  9212. }
  9213. .order-xl-0 {
  9214. order: 0 !important;
  9215. }
  9216. .order-xl-1 {
  9217. order: 1 !important;
  9218. }
  9219. .order-xl-2 {
  9220. order: 2 !important;
  9221. }
  9222. .order-xl-3 {
  9223. order: 3 !important;
  9224. }
  9225. .order-xl-4 {
  9226. order: 4 !important;
  9227. }
  9228. .order-xl-5 {
  9229. order: 5 !important;
  9230. }
  9231. .order-xl-last {
  9232. order: 6 !important;
  9233. }
  9234. .m-xl-0 {
  9235. margin: 0 !important;
  9236. }
  9237. .m-xl-1 {
  9238. margin: 0.25rem !important;
  9239. }
  9240. .m-xl-2 {
  9241. margin: 0.5rem !important;
  9242. }
  9243. .m-xl-3 {
  9244. margin: 1rem !important;
  9245. }
  9246. .m-xl-4 {
  9247. margin: 1.5rem !important;
  9248. }
  9249. .m-xl-5 {
  9250. margin: 3rem !important;
  9251. }
  9252. .m-xl-auto {
  9253. margin: auto !important;
  9254. }
  9255. .mx-xl-0 {
  9256. margin-right: 0 !important;
  9257. margin-left: 0 !important;
  9258. }
  9259. .mx-xl-1 {
  9260. margin-right: 0.25rem !important;
  9261. margin-left: 0.25rem !important;
  9262. }
  9263. .mx-xl-2 {
  9264. margin-right: 0.5rem !important;
  9265. margin-left: 0.5rem !important;
  9266. }
  9267. .mx-xl-3 {
  9268. margin-right: 1rem !important;
  9269. margin-left: 1rem !important;
  9270. }
  9271. .mx-xl-4 {
  9272. margin-right: 1.5rem !important;
  9273. margin-left: 1.5rem !important;
  9274. }
  9275. .mx-xl-5 {
  9276. margin-right: 3rem !important;
  9277. margin-left: 3rem !important;
  9278. }
  9279. .mx-xl-auto {
  9280. margin-right: auto !important;
  9281. margin-left: auto !important;
  9282. }
  9283. .my-xl-0 {
  9284. margin-top: 0 !important;
  9285. margin-bottom: 0 !important;
  9286. }
  9287. .my-xl-1 {
  9288. margin-top: 0.25rem !important;
  9289. margin-bottom: 0.25rem !important;
  9290. }
  9291. .my-xl-2 {
  9292. margin-top: 0.5rem !important;
  9293. margin-bottom: 0.5rem !important;
  9294. }
  9295. .my-xl-3 {
  9296. margin-top: 1rem !important;
  9297. margin-bottom: 1rem !important;
  9298. }
  9299. .my-xl-4 {
  9300. margin-top: 1.5rem !important;
  9301. margin-bottom: 1.5rem !important;
  9302. }
  9303. .my-xl-5 {
  9304. margin-top: 3rem !important;
  9305. margin-bottom: 3rem !important;
  9306. }
  9307. .my-xl-auto {
  9308. margin-top: auto !important;
  9309. margin-bottom: auto !important;
  9310. }
  9311. .mt-xl-0 {
  9312. margin-top: 0 !important;
  9313. }
  9314. .mt-xl-1 {
  9315. margin-top: 0.25rem !important;
  9316. }
  9317. .mt-xl-2 {
  9318. margin-top: 0.5rem !important;
  9319. }
  9320. .mt-xl-3 {
  9321. margin-top: 1rem !important;
  9322. }
  9323. .mt-xl-4 {
  9324. margin-top: 1.5rem !important;
  9325. }
  9326. .mt-xl-5 {
  9327. margin-top: 3rem !important;
  9328. }
  9329. .mt-xl-auto {
  9330. margin-top: auto !important;
  9331. }
  9332. .me-xl-0 {
  9333. margin-right: 0 !important;
  9334. }
  9335. .me-xl-1 {
  9336. margin-right: 0.25rem !important;
  9337. }
  9338. .me-xl-2 {
  9339. margin-right: 0.5rem !important;
  9340. }
  9341. .me-xl-3 {
  9342. margin-right: 1rem !important;
  9343. }
  9344. .me-xl-4 {
  9345. margin-right: 1.5rem !important;
  9346. }
  9347. .me-xl-5 {
  9348. margin-right: 3rem !important;
  9349. }
  9350. .me-xl-auto {
  9351. margin-right: auto !important;
  9352. }
  9353. .mb-xl-0 {
  9354. margin-bottom: 0 !important;
  9355. }
  9356. .mb-xl-1 {
  9357. margin-bottom: 0.25rem !important;
  9358. }
  9359. .mb-xl-2 {
  9360. margin-bottom: 0.5rem !important;
  9361. }
  9362. .mb-xl-3 {
  9363. margin-bottom: 1rem !important;
  9364. }
  9365. .mb-xl-4 {
  9366. margin-bottom: 1.5rem !important;
  9367. }
  9368. .mb-xl-5 {
  9369. margin-bottom: 3rem !important;
  9370. }
  9371. .mb-xl-auto {
  9372. margin-bottom: auto !important;
  9373. }
  9374. .ms-xl-0 {
  9375. margin-left: 0 !important;
  9376. }
  9377. .ms-xl-1 {
  9378. margin-left: 0.25rem !important;
  9379. }
  9380. .ms-xl-2 {
  9381. margin-left: 0.5rem !important;
  9382. }
  9383. .ms-xl-3 {
  9384. margin-left: 1rem !important;
  9385. }
  9386. .ms-xl-4 {
  9387. margin-left: 1.5rem !important;
  9388. }
  9389. .ms-xl-5 {
  9390. margin-left: 3rem !important;
  9391. }
  9392. .ms-xl-auto {
  9393. margin-left: auto !important;
  9394. }
  9395. .p-xl-0 {
  9396. padding: 0 !important;
  9397. }
  9398. .p-xl-1 {
  9399. padding: 0.25rem !important;
  9400. }
  9401. .p-xl-2 {
  9402. padding: 0.5rem !important;
  9403. }
  9404. .p-xl-3 {
  9405. padding: 1rem !important;
  9406. }
  9407. .p-xl-4 {
  9408. padding: 1.5rem !important;
  9409. }
  9410. .p-xl-5 {
  9411. padding: 3rem !important;
  9412. }
  9413. .px-xl-0 {
  9414. padding-right: 0 !important;
  9415. padding-left: 0 !important;
  9416. }
  9417. .px-xl-1 {
  9418. padding-right: 0.25rem !important;
  9419. padding-left: 0.25rem !important;
  9420. }
  9421. .px-xl-2 {
  9422. padding-right: 0.5rem !important;
  9423. padding-left: 0.5rem !important;
  9424. }
  9425. .px-xl-3 {
  9426. padding-right: 1rem !important;
  9427. padding-left: 1rem !important;
  9428. }
  9429. .px-xl-4 {
  9430. padding-right: 1.5rem !important;
  9431. padding-left: 1.5rem !important;
  9432. }
  9433. .px-xl-5 {
  9434. padding-right: 3rem !important;
  9435. padding-left: 3rem !important;
  9436. }
  9437. .py-xl-0 {
  9438. padding-top: 0 !important;
  9439. padding-bottom: 0 !important;
  9440. }
  9441. .py-xl-1 {
  9442. padding-top: 0.25rem !important;
  9443. padding-bottom: 0.25rem !important;
  9444. }
  9445. .py-xl-2 {
  9446. padding-top: 0.5rem !important;
  9447. padding-bottom: 0.5rem !important;
  9448. }
  9449. .py-xl-3 {
  9450. padding-top: 1rem !important;
  9451. padding-bottom: 1rem !important;
  9452. }
  9453. .py-xl-4 {
  9454. padding-top: 1.5rem !important;
  9455. padding-bottom: 1.5rem !important;
  9456. }
  9457. .py-xl-5 {
  9458. padding-top: 3rem !important;
  9459. padding-bottom: 3rem !important;
  9460. }
  9461. .pt-xl-0 {
  9462. padding-top: 0 !important;
  9463. }
  9464. .pt-xl-1 {
  9465. padding-top: 0.25rem !important;
  9466. }
  9467. .pt-xl-2 {
  9468. padding-top: 0.5rem !important;
  9469. }
  9470. .pt-xl-3 {
  9471. padding-top: 1rem !important;
  9472. }
  9473. .pt-xl-4 {
  9474. padding-top: 1.5rem !important;
  9475. }
  9476. .pt-xl-5 {
  9477. padding-top: 3rem !important;
  9478. }
  9479. .pe-xl-0 {
  9480. padding-right: 0 !important;
  9481. }
  9482. .pe-xl-1 {
  9483. padding-right: 0.25rem !important;
  9484. }
  9485. .pe-xl-2 {
  9486. padding-right: 0.5rem !important;
  9487. }
  9488. .pe-xl-3 {
  9489. padding-right: 1rem !important;
  9490. }
  9491. .pe-xl-4 {
  9492. padding-right: 1.5rem !important;
  9493. }
  9494. .pe-xl-5 {
  9495. padding-right: 3rem !important;
  9496. }
  9497. .pb-xl-0 {
  9498. padding-bottom: 0 !important;
  9499. }
  9500. .pb-xl-1 {
  9501. padding-bottom: 0.25rem !important;
  9502. }
  9503. .pb-xl-2 {
  9504. padding-bottom: 0.5rem !important;
  9505. }
  9506. .pb-xl-3 {
  9507. padding-bottom: 1rem !important;
  9508. }
  9509. .pb-xl-4 {
  9510. padding-bottom: 1.5rem !important;
  9511. }
  9512. .pb-xl-5 {
  9513. padding-bottom: 3rem !important;
  9514. }
  9515. .ps-xl-0 {
  9516. padding-left: 0 !important;
  9517. }
  9518. .ps-xl-1 {
  9519. padding-left: 0.25rem !important;
  9520. }
  9521. .ps-xl-2 {
  9522. padding-left: 0.5rem !important;
  9523. }
  9524. .ps-xl-3 {
  9525. padding-left: 1rem !important;
  9526. }
  9527. .ps-xl-4 {
  9528. padding-left: 1.5rem !important;
  9529. }
  9530. .ps-xl-5 {
  9531. padding-left: 3rem !important;
  9532. }
  9533. .gap-xl-0 {
  9534. gap: 0 !important;
  9535. }
  9536. .gap-xl-1 {
  9537. gap: 0.25rem !important;
  9538. }
  9539. .gap-xl-2 {
  9540. gap: 0.5rem !important;
  9541. }
  9542. .gap-xl-3 {
  9543. gap: 1rem !important;
  9544. }
  9545. .gap-xl-4 {
  9546. gap: 1.5rem !important;
  9547. }
  9548. .gap-xl-5 {
  9549. gap: 3rem !important;
  9550. }
  9551. .text-xl-start {
  9552. text-align: left !important;
  9553. }
  9554. .text-xl-end {
  9555. text-align: right !important;
  9556. }
  9557. .text-xl-center {
  9558. text-align: center !important;
  9559. }
  9560. }
  9561. @media (min-width: 1400px) {
  9562. .float-xxl-start {
  9563. float: left !important;
  9564. }
  9565. .float-xxl-end {
  9566. float: right !important;
  9567. }
  9568. .float-xxl-none {
  9569. float: none !important;
  9570. }
  9571. .d-xxl-inline {
  9572. display: inline !important;
  9573. }
  9574. .d-xxl-inline-block {
  9575. display: inline-block !important;
  9576. }
  9577. .d-xxl-block {
  9578. display: block !important;
  9579. }
  9580. .d-xxl-grid {
  9581. display: grid !important;
  9582. }
  9583. .d-xxl-table {
  9584. display: table !important;
  9585. }
  9586. .d-xxl-table-row {
  9587. display: table-row !important;
  9588. }
  9589. .d-xxl-table-cell {
  9590. display: table-cell !important;
  9591. }
  9592. .d-xxl-flex {
  9593. display: flex !important;
  9594. }
  9595. .d-xxl-inline-flex {
  9596. display: inline-flex !important;
  9597. }
  9598. .d-xxl-none {
  9599. display: none !important;
  9600. }
  9601. .flex-xxl-fill {
  9602. flex: 1 1 auto !important;
  9603. }
  9604. .flex-xxl-row {
  9605. flex-direction: row !important;
  9606. }
  9607. .flex-xxl-column {
  9608. flex-direction: column !important;
  9609. }
  9610. .flex-xxl-row-reverse {
  9611. flex-direction: row-reverse !important;
  9612. }
  9613. .flex-xxl-column-reverse {
  9614. flex-direction: column-reverse !important;
  9615. }
  9616. .flex-xxl-grow-0 {
  9617. flex-grow: 0 !important;
  9618. }
  9619. .flex-xxl-grow-1 {
  9620. flex-grow: 1 !important;
  9621. }
  9622. .flex-xxl-shrink-0 {
  9623. flex-shrink: 0 !important;
  9624. }
  9625. .flex-xxl-shrink-1 {
  9626. flex-shrink: 1 !important;
  9627. }
  9628. .flex-xxl-wrap {
  9629. flex-wrap: wrap !important;
  9630. }
  9631. .flex-xxl-nowrap {
  9632. flex-wrap: nowrap !important;
  9633. }
  9634. .flex-xxl-wrap-reverse {
  9635. flex-wrap: wrap-reverse !important;
  9636. }
  9637. .justify-content-xxl-start {
  9638. justify-content: flex-start !important;
  9639. }
  9640. .justify-content-xxl-end {
  9641. justify-content: flex-end !important;
  9642. }
  9643. .justify-content-xxl-center {
  9644. justify-content: center !important;
  9645. }
  9646. .justify-content-xxl-between {
  9647. justify-content: space-between !important;
  9648. }
  9649. .justify-content-xxl-around {
  9650. justify-content: space-around !important;
  9651. }
  9652. .justify-content-xxl-evenly {
  9653. justify-content: space-evenly !important;
  9654. }
  9655. .align-items-xxl-start {
  9656. align-items: flex-start !important;
  9657. }
  9658. .align-items-xxl-end {
  9659. align-items: flex-end !important;
  9660. }
  9661. .align-items-xxl-center {
  9662. align-items: center !important;
  9663. }
  9664. .align-items-xxl-baseline {
  9665. align-items: baseline !important;
  9666. }
  9667. .align-items-xxl-stretch {
  9668. align-items: stretch !important;
  9669. }
  9670. .align-content-xxl-start {
  9671. align-content: flex-start !important;
  9672. }
  9673. .align-content-xxl-end {
  9674. align-content: flex-end !important;
  9675. }
  9676. .align-content-xxl-center {
  9677. align-content: center !important;
  9678. }
  9679. .align-content-xxl-between {
  9680. align-content: space-between !important;
  9681. }
  9682. .align-content-xxl-around {
  9683. align-content: space-around !important;
  9684. }
  9685. .align-content-xxl-stretch {
  9686. align-content: stretch !important;
  9687. }
  9688. .align-self-xxl-auto {
  9689. align-self: auto !important;
  9690. }
  9691. .align-self-xxl-start {
  9692. align-self: flex-start !important;
  9693. }
  9694. .align-self-xxl-end {
  9695. align-self: flex-end !important;
  9696. }
  9697. .align-self-xxl-center {
  9698. align-self: center !important;
  9699. }
  9700. .align-self-xxl-baseline {
  9701. align-self: baseline !important;
  9702. }
  9703. .align-self-xxl-stretch {
  9704. align-self: stretch !important;
  9705. }
  9706. .order-xxl-first {
  9707. order: -1 !important;
  9708. }
  9709. .order-xxl-0 {
  9710. order: 0 !important;
  9711. }
  9712. .order-xxl-1 {
  9713. order: 1 !important;
  9714. }
  9715. .order-xxl-2 {
  9716. order: 2 !important;
  9717. }
  9718. .order-xxl-3 {
  9719. order: 3 !important;
  9720. }
  9721. .order-xxl-4 {
  9722. order: 4 !important;
  9723. }
  9724. .order-xxl-5 {
  9725. order: 5 !important;
  9726. }
  9727. .order-xxl-last {
  9728. order: 6 !important;
  9729. }
  9730. .m-xxl-0 {
  9731. margin: 0 !important;
  9732. }
  9733. .m-xxl-1 {
  9734. margin: 0.25rem !important;
  9735. }
  9736. .m-xxl-2 {
  9737. margin: 0.5rem !important;
  9738. }
  9739. .m-xxl-3 {
  9740. margin: 1rem !important;
  9741. }
  9742. .m-xxl-4 {
  9743. margin: 1.5rem !important;
  9744. }
  9745. .m-xxl-5 {
  9746. margin: 3rem !important;
  9747. }
  9748. .m-xxl-auto {
  9749. margin: auto !important;
  9750. }
  9751. .mx-xxl-0 {
  9752. margin-right: 0 !important;
  9753. margin-left: 0 !important;
  9754. }
  9755. .mx-xxl-1 {
  9756. margin-right: 0.25rem !important;
  9757. margin-left: 0.25rem !important;
  9758. }
  9759. .mx-xxl-2 {
  9760. margin-right: 0.5rem !important;
  9761. margin-left: 0.5rem !important;
  9762. }
  9763. .mx-xxl-3 {
  9764. margin-right: 1rem !important;
  9765. margin-left: 1rem !important;
  9766. }
  9767. .mx-xxl-4 {
  9768. margin-right: 1.5rem !important;
  9769. margin-left: 1.5rem !important;
  9770. }
  9771. .mx-xxl-5 {
  9772. margin-right: 3rem !important;
  9773. margin-left: 3rem !important;
  9774. }
  9775. .mx-xxl-auto {
  9776. margin-right: auto !important;
  9777. margin-left: auto !important;
  9778. }
  9779. .my-xxl-0 {
  9780. margin-top: 0 !important;
  9781. margin-bottom: 0 !important;
  9782. }
  9783. .my-xxl-1 {
  9784. margin-top: 0.25rem !important;
  9785. margin-bottom: 0.25rem !important;
  9786. }
  9787. .my-xxl-2 {
  9788. margin-top: 0.5rem !important;
  9789. margin-bottom: 0.5rem !important;
  9790. }
  9791. .my-xxl-3 {
  9792. margin-top: 1rem !important;
  9793. margin-bottom: 1rem !important;
  9794. }
  9795. .my-xxl-4 {
  9796. margin-top: 1.5rem !important;
  9797. margin-bottom: 1.5rem !important;
  9798. }
  9799. .my-xxl-5 {
  9800. margin-top: 3rem !important;
  9801. margin-bottom: 3rem !important;
  9802. }
  9803. .my-xxl-auto {
  9804. margin-top: auto !important;
  9805. margin-bottom: auto !important;
  9806. }
  9807. .mt-xxl-0 {
  9808. margin-top: 0 !important;
  9809. }
  9810. .mt-xxl-1 {
  9811. margin-top: 0.25rem !important;
  9812. }
  9813. .mt-xxl-2 {
  9814. margin-top: 0.5rem !important;
  9815. }
  9816. .mt-xxl-3 {
  9817. margin-top: 1rem !important;
  9818. }
  9819. .mt-xxl-4 {
  9820. margin-top: 1.5rem !important;
  9821. }
  9822. .mt-xxl-5 {
  9823. margin-top: 3rem !important;
  9824. }
  9825. .mt-xxl-auto {
  9826. margin-top: auto !important;
  9827. }
  9828. .me-xxl-0 {
  9829. margin-right: 0 !important;
  9830. }
  9831. .me-xxl-1 {
  9832. margin-right: 0.25rem !important;
  9833. }
  9834. .me-xxl-2 {
  9835. margin-right: 0.5rem !important;
  9836. }
  9837. .me-xxl-3 {
  9838. margin-right: 1rem !important;
  9839. }
  9840. .me-xxl-4 {
  9841. margin-right: 1.5rem !important;
  9842. }
  9843. .me-xxl-5 {
  9844. margin-right: 3rem !important;
  9845. }
  9846. .me-xxl-auto {
  9847. margin-right: auto !important;
  9848. }
  9849. .mb-xxl-0 {
  9850. margin-bottom: 0 !important;
  9851. }
  9852. .mb-xxl-1 {
  9853. margin-bottom: 0.25rem !important;
  9854. }
  9855. .mb-xxl-2 {
  9856. margin-bottom: 0.5rem !important;
  9857. }
  9858. .mb-xxl-3 {
  9859. margin-bottom: 1rem !important;
  9860. }
  9861. .mb-xxl-4 {
  9862. margin-bottom: 1.5rem !important;
  9863. }
  9864. .mb-xxl-5 {
  9865. margin-bottom: 3rem !important;
  9866. }
  9867. .mb-xxl-auto {
  9868. margin-bottom: auto !important;
  9869. }
  9870. .ms-xxl-0 {
  9871. margin-left: 0 !important;
  9872. }
  9873. .ms-xxl-1 {
  9874. margin-left: 0.25rem !important;
  9875. }
  9876. .ms-xxl-2 {
  9877. margin-left: 0.5rem !important;
  9878. }
  9879. .ms-xxl-3 {
  9880. margin-left: 1rem !important;
  9881. }
  9882. .ms-xxl-4 {
  9883. margin-left: 1.5rem !important;
  9884. }
  9885. .ms-xxl-5 {
  9886. margin-left: 3rem !important;
  9887. }
  9888. .ms-xxl-auto {
  9889. margin-left: auto !important;
  9890. }
  9891. .p-xxl-0 {
  9892. padding: 0 !important;
  9893. }
  9894. .p-xxl-1 {
  9895. padding: 0.25rem !important;
  9896. }
  9897. .p-xxl-2 {
  9898. padding: 0.5rem !important;
  9899. }
  9900. .p-xxl-3 {
  9901. padding: 1rem !important;
  9902. }
  9903. .p-xxl-4 {
  9904. padding: 1.5rem !important;
  9905. }
  9906. .p-xxl-5 {
  9907. padding: 3rem !important;
  9908. }
  9909. .px-xxl-0 {
  9910. padding-right: 0 !important;
  9911. padding-left: 0 !important;
  9912. }
  9913. .px-xxl-1 {
  9914. padding-right: 0.25rem !important;
  9915. padding-left: 0.25rem !important;
  9916. }
  9917. .px-xxl-2 {
  9918. padding-right: 0.5rem !important;
  9919. padding-left: 0.5rem !important;
  9920. }
  9921. .px-xxl-3 {
  9922. padding-right: 1rem !important;
  9923. padding-left: 1rem !important;
  9924. }
  9925. .px-xxl-4 {
  9926. padding-right: 1.5rem !important;
  9927. padding-left: 1.5rem !important;
  9928. }
  9929. .px-xxl-5 {
  9930. padding-right: 3rem !important;
  9931. padding-left: 3rem !important;
  9932. }
  9933. .py-xxl-0 {
  9934. padding-top: 0 !important;
  9935. padding-bottom: 0 !important;
  9936. }
  9937. .py-xxl-1 {
  9938. padding-top: 0.25rem !important;
  9939. padding-bottom: 0.25rem !important;
  9940. }
  9941. .py-xxl-2 {
  9942. padding-top: 0.5rem !important;
  9943. padding-bottom: 0.5rem !important;
  9944. }
  9945. .py-xxl-3 {
  9946. padding-top: 1rem !important;
  9947. padding-bottom: 1rem !important;
  9948. }
  9949. .py-xxl-4 {
  9950. padding-top: 1.5rem !important;
  9951. padding-bottom: 1.5rem !important;
  9952. }
  9953. .py-xxl-5 {
  9954. padding-top: 3rem !important;
  9955. padding-bottom: 3rem !important;
  9956. }
  9957. .pt-xxl-0 {
  9958. padding-top: 0 !important;
  9959. }
  9960. .pt-xxl-1 {
  9961. padding-top: 0.25rem !important;
  9962. }
  9963. .pt-xxl-2 {
  9964. padding-top: 0.5rem !important;
  9965. }
  9966. .pt-xxl-3 {
  9967. padding-top: 1rem !important;
  9968. }
  9969. .pt-xxl-4 {
  9970. padding-top: 1.5rem !important;
  9971. }
  9972. .pt-xxl-5 {
  9973. padding-top: 3rem !important;
  9974. }
  9975. .pe-xxl-0 {
  9976. padding-right: 0 !important;
  9977. }
  9978. .pe-xxl-1 {
  9979. padding-right: 0.25rem !important;
  9980. }
  9981. .pe-xxl-2 {
  9982. padding-right: 0.5rem !important;
  9983. }
  9984. .pe-xxl-3 {
  9985. padding-right: 1rem !important;
  9986. }
  9987. .pe-xxl-4 {
  9988. padding-right: 1.5rem !important;
  9989. }
  9990. .pe-xxl-5 {
  9991. padding-right: 3rem !important;
  9992. }
  9993. .pb-xxl-0 {
  9994. padding-bottom: 0 !important;
  9995. }
  9996. .pb-xxl-1 {
  9997. padding-bottom: 0.25rem !important;
  9998. }
  9999. .pb-xxl-2 {
  10000. padding-bottom: 0.5rem !important;
  10001. }
  10002. .pb-xxl-3 {
  10003. padding-bottom: 1rem !important;
  10004. }
  10005. .pb-xxl-4 {
  10006. padding-bottom: 1.5rem !important;
  10007. }
  10008. .pb-xxl-5 {
  10009. padding-bottom: 3rem !important;
  10010. }
  10011. .ps-xxl-0 {
  10012. padding-left: 0 !important;
  10013. }
  10014. .ps-xxl-1 {
  10015. padding-left: 0.25rem !important;
  10016. }
  10017. .ps-xxl-2 {
  10018. padding-left: 0.5rem !important;
  10019. }
  10020. .ps-xxl-3 {
  10021. padding-left: 1rem !important;
  10022. }
  10023. .ps-xxl-4 {
  10024. padding-left: 1.5rem !important;
  10025. }
  10026. .ps-xxl-5 {
  10027. padding-left: 3rem !important;
  10028. }
  10029. .gap-xxl-0 {
  10030. gap: 0 !important;
  10031. }
  10032. .gap-xxl-1 {
  10033. gap: 0.25rem !important;
  10034. }
  10035. .gap-xxl-2 {
  10036. gap: 0.5rem !important;
  10037. }
  10038. .gap-xxl-3 {
  10039. gap: 1rem !important;
  10040. }
  10041. .gap-xxl-4 {
  10042. gap: 1.5rem !important;
  10043. }
  10044. .gap-xxl-5 {
  10045. gap: 3rem !important;
  10046. }
  10047. .text-xxl-start {
  10048. text-align: left !important;
  10049. }
  10050. .text-xxl-end {
  10051. text-align: right !important;
  10052. }
  10053. .text-xxl-center {
  10054. text-align: center !important;
  10055. }
  10056. }
  10057. @media (min-width: 1200px) {
  10058. .fs-1 {
  10059. font-size: 2.5rem !important;
  10060. }
  10061. .fs-2 {
  10062. font-size: 2rem !important;
  10063. }
  10064. .fs-3 {
  10065. font-size: 1.75rem !important;
  10066. }
  10067. .fs-4 {
  10068. font-size: 1.5rem !important;
  10069. }
  10070. }
  10071. @media print {
  10072. .d-print-inline {
  10073. display: inline !important;
  10074. }
  10075. .d-print-inline-block {
  10076. display: inline-block !important;
  10077. }
  10078. .d-print-block {
  10079. display: block !important;
  10080. }
  10081. .d-print-grid {
  10082. display: grid !important;
  10083. }
  10084. .d-print-table {
  10085. display: table !important;
  10086. }
  10087. .d-print-table-row {
  10088. display: table-row !important;
  10089. }
  10090. .d-print-table-cell {
  10091. display: table-cell !important;
  10092. }
  10093. .d-print-flex {
  10094. display: flex !important;
  10095. }
  10096. .d-print-inline-flex {
  10097. display: inline-flex !important;
  10098. }
  10099. .d-print-none {
  10100. display: none !important;
  10101. }
  10102. }
  10103. html,
  10104. body {
  10105. height: 100%;
  10106. }
  10107. #layoutAuthentication {
  10108. display: flex;
  10109. flex-direction: column;
  10110. min-height: 100vh;
  10111. }
  10112. #layoutAuthentication #layoutAuthentication_content {
  10113. min-width: 0;
  10114. flex-grow: 1;
  10115. }
  10116. #layoutAuthentication #layoutAuthentication_footer {
  10117. min-width: 0;
  10118. }
  10119. #layoutSidenav {
  10120. display: flex;
  10121. }
  10122. #layoutSidenav #layoutSidenav_nav {
  10123. flex-basis: 225px;
  10124. flex-shrink: 0;
  10125. transition: transform 0.15s ease-in-out;
  10126. z-index: 1038;
  10127. transform: translateX(-225px);
  10128. }
  10129. #layoutSidenav #layoutSidenav_content {
  10130. position: relative;
  10131. display: flex;
  10132. flex-direction: column;
  10133. justify-content: space-between;
  10134. min-width: 0;
  10135. flex-grow: 1;
  10136. min-height: calc(100vh - 56px);
  10137. margin-left: -225px;
  10138. }
  10139. .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav {
  10140. transform: translateX(0);
  10141. }
  10142. .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
  10143. content: "";
  10144. display: block;
  10145. position: absolute;
  10146. top: 0;
  10147. left: 0;
  10148. width: 100%;
  10149. height: 100%;
  10150. background: #000;
  10151. z-index: 1037;
  10152. opacity: 0.5;
  10153. transition: opacity 0.3s ease-in-out;
  10154. }
  10155. @media (min-width: 992px) {
  10156. #layoutSidenav #layoutSidenav_nav {
  10157. transform: translateX(0);
  10158. }
  10159. #layoutSidenav #layoutSidenav_content {
  10160. margin-left: 0;
  10161. transition: margin 0.15s ease-in-out;
  10162. }
  10163. .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav {
  10164. transform: translateX(-225px);
  10165. }
  10166. .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content {
  10167. margin-left: -225px;
  10168. }
  10169. .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
  10170. display: none;
  10171. }
  10172. }
  10173. .sb-nav-fixed .sb-topnav {
  10174. z-index: 1039;
  10175. }
  10176. .sb-nav-fixed #layoutSidenav #layoutSidenav_nav {
  10177. width: 225px;
  10178. height: 100vh;
  10179. z-index: 1038;
  10180. }
  10181. .sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav {
  10182. padding-top: 56px;
  10183. }
  10184. .sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav .sb-sidenav-menu {
  10185. overflow-y: auto;
  10186. }
  10187. .sb-nav-fixed #layoutSidenav #layoutSidenav_content {
  10188. padding-left: 225px;
  10189. top: 56px;
  10190. }
  10191. #layoutError {
  10192. display: flex;
  10193. flex-direction: column;
  10194. min-height: 100vh;
  10195. }
  10196. #layoutError #layoutError_content {
  10197. min-width: 0;
  10198. flex-grow: 1;
  10199. }
  10200. #layoutError #layoutError_footer {
  10201. min-width: 0;
  10202. }
  10203. .img-error {
  10204. max-width: 20rem;
  10205. }
  10206. .nav .nav-link .sb-nav-link-icon,
  10207. .sb-sidenav-menu .nav-link .sb-nav-link-icon {
  10208. margin-right: 0.5rem;
  10209. }
  10210. .sb-topnav {
  10211. padding-left: 0;
  10212. height: 56px;
  10213. z-index: 1039;
  10214. }
  10215. .sb-topnav .navbar-brand {
  10216. width: 225px;
  10217. margin: 0;
  10218. }
  10219. .sb-topnav.navbar-dark #sidebarToggle {
  10220. color: rgba(255, 255, 255, 0.5);
  10221. }
  10222. .sb-topnav.navbar-light #sidebarToggle {
  10223. color: #212529;
  10224. }
  10225. .sb-sidenav {
  10226. display: flex;
  10227. flex-direction: column;
  10228. height: 100%;
  10229. flex-wrap: nowrap;
  10230. }
  10231. .sb-sidenav .sb-sidenav-menu {
  10232. flex-grow: 1;
  10233. }
  10234. .sb-sidenav .sb-sidenav-menu .nav {
  10235. flex-direction: column;
  10236. flex-wrap: nowrap;
  10237. }
  10238. .sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-heading {
  10239. padding: 1.75rem 1rem 0.75rem;
  10240. font-size: 0.75rem;
  10241. font-weight: bold;
  10242. text-transform: uppercase;
  10243. }
  10244. .sb-sidenav .sb-sidenav-menu .nav .nav-link {
  10245. display: flex;
  10246. align-items: center;
  10247. padding-top: 0.75rem;
  10248. padding-bottom: 0.75rem;
  10249. position: relative;
  10250. }
  10251. .sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-nav-link-icon {
  10252. font-size: 0.9rem;
  10253. }
  10254. .sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-sidenav-collapse-arrow {
  10255. display: inline-block;
  10256. margin-left: auto;
  10257. transition: transform 0.15s ease;
  10258. }
  10259. .sb-sidenav .sb-sidenav-menu .nav .nav-link.collapsed .sb-sidenav-collapse-arrow {
  10260. transform: rotate(-90deg);
  10261. }
  10262. .sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-nested {
  10263. margin-left: 1.5rem;
  10264. flex-direction: column;
  10265. }
  10266. .sb-sidenav .sb-sidenav-footer {
  10267. padding: 0.75rem;
  10268. flex-shrink: 0;
  10269. }
  10270. .sb-sidenav-dark {
  10271. background-color: #212529;
  10272. color: rgba(255, 255, 255, 0.5);
  10273. }
  10274. .sb-sidenav-dark .sb-sidenav-menu .sb-sidenav-menu-heading {
  10275. color: rgba(255, 255, 255, 0.25);
  10276. }
  10277. .sb-sidenav-dark .sb-sidenav-menu .nav-link {
  10278. color: rgba(255, 255, 255, 0.5);
  10279. }
  10280. .sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-nav-link-icon {
  10281. color: rgba(255, 255, 255, 0.25);
  10282. }
  10283. .sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow {
  10284. color: rgba(255, 255, 255, 0.25);
  10285. }
  10286. .sb-sidenav-dark .sb-sidenav-menu .nav-link:hover {
  10287. color: #fff;
  10288. }
  10289. .sb-sidenav-dark .sb-sidenav-menu .nav-link.active {
  10290. color: #fff;
  10291. }
  10292. .sb-sidenav-dark .sb-sidenav-menu .nav-link.active .sb-nav-link-icon {
  10293. color: #fff;
  10294. }
  10295. .sb-sidenav-dark .sb-sidenav-footer {
  10296. background-color: #343a40;
  10297. }
  10298. .sb-sidenav-light {
  10299. background-color: #f8f9fa;
  10300. color: #212529;
  10301. }
  10302. .sb-sidenav-light .sb-sidenav-menu .sb-sidenav-menu-heading {
  10303. color: #adb5bd;
  10304. }
  10305. .sb-sidenav-light .sb-sidenav-menu .nav-link {
  10306. color: #212529;
  10307. }
  10308. .sb-sidenav-light .sb-sidenav-menu .nav-link .sb-nav-link-icon {
  10309. color: #adb5bd;
  10310. }
  10311. .sb-sidenav-light .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow {
  10312. color: #adb5bd;
  10313. }
  10314. .sb-sidenav-light .sb-sidenav-menu .nav-link:hover {
  10315. color: #0d6efd;
  10316. }
  10317. .sb-sidenav-light .sb-sidenav-menu .nav-link.active {
  10318. color: #0d6efd;
  10319. }
  10320. .sb-sidenav-light .sb-sidenav-menu .nav-link.active .sb-nav-link-icon {
  10321. color: #0d6efd;
  10322. }
  10323. .sb-sidenav-light .sb-sidenav-footer {
  10324. background-color: #e9ecef;
  10325. }
  10326. .datatable-wrapper .datatable-container {
  10327. font-size: 0.875rem;
  10328. }
  10329. .datatable-wrapper.no-header .datatable-container {
  10330. border-top: none;
  10331. }
  10332. .datatable-wrapper.no-footer .datatable-container {
  10333. border-bottom: none;
  10334. }
  10335. .datatable-top {
  10336. padding: 0 0 1rem;
  10337. }
  10338. .datatable-bottom {
  10339. padding: 0;
  10340. }
  10341. .datatable-top > nav:first-child,
  10342. .datatable-top > div:first-child,
  10343. .datatable-bottom > nav:first-child,
  10344. .datatable-bottom > div:first-child {
  10345. float: left;
  10346. }
  10347. .datatable-top > nav:last-child,
  10348. .datatable-top > div:last-child,
  10349. .datatable-bottom > nav:last-child,
  10350. .datatable-bottom > div:last-child {
  10351. float: right;
  10352. }
  10353. .datatable-selector {
  10354. width: auto;
  10355. display: inline-block;
  10356. padding-left: 1.125rem;
  10357. padding-right: 2.125rem;
  10358. margin-right: 0.25rem;
  10359. }
  10360. .datatable-info {
  10361. margin: 7px 0;
  10362. }
  10363. /* PAGER */
  10364. .datatable-pagination a:hover {
  10365. background-color: #e9ecef;
  10366. }
  10367. .datatable-pagination .active a,
  10368. .datatable-pagination .active a:focus,
  10369. .datatable-pagination .active a:hover {
  10370. background-color: #0d6efd;
  10371. }
  10372. .datatable-pagination .ellipsis a,
  10373. .datatable-pagination .disabled a,
  10374. .datatable-pagination .disabled a:focus,
  10375. .datatable-pagination .disabled a:hover {
  10376. cursor: not-allowed;
  10377. }
  10378. .datatable-pagination .disabled a,
  10379. .datatable-pagination .disabled a:focus,
  10380. .datatable-pagination .disabled a:hover {
  10381. cursor: not-allowed;
  10382. opacity: 0.4;
  10383. }
  10384. .datatable-pagination .pager a {
  10385. font-weight: bold;
  10386. }
  10387. /* TABLE */
  10388. .datatable-table {
  10389. border-collapse: collapse;
  10390. }
  10391. .datatable-table > tbody > tr > td,
  10392. .datatable-table > tbody > tr > th,
  10393. .datatable-table > tfoot > tr > td,
  10394. .datatable-table > tfoot > tr > th,
  10395. .datatable-table > thead > tr > td,
  10396. .datatable-table > thead > tr > th {
  10397. vertical-align: top;
  10398. padding: 0.5rem 0.5rem;
  10399. }
  10400. .datatable-table > thead > tr > th {
  10401. vertical-align: bottom;
  10402. text-align: left;
  10403. border-bottom: none;
  10404. }
  10405. .datatable-table > tfoot > tr > th {
  10406. vertical-align: bottom;
  10407. text-align: left;
  10408. }
  10409. .datatable-table th {
  10410. vertical-align: bottom;
  10411. text-align: left;
  10412. }
  10413. .datatable-table th a {
  10414. text-decoration: none;
  10415. color: inherit;
  10416. }
  10417. .datatable-sorter {
  10418. display: inline-block;
  10419. height: 100%;
  10420. position: relative;
  10421. width: 100%;
  10422. padding-right: 1rem;
  10423. }
  10424. .datatable-sorter::before,
  10425. .datatable-sorter::after {
  10426. content: "";
  10427. height: 0;
  10428. width: 0;
  10429. position: absolute;
  10430. right: 4px;
  10431. border-left: 4px solid transparent;
  10432. border-right: 4px solid transparent;
  10433. opacity: 0.2;
  10434. }
  10435. .datatable-sorter::before {
  10436. bottom: 4px;
  10437. }
  10438. .datatable-sorter::after {
  10439. top: 0px;
  10440. }
  10441. .asc .datatable-sorter::after,
  10442. .desc .datatable-sorter::before {
  10443. opacity: 0.6;
  10444. }
  10445. .datatables-empty {
  10446. text-align: center;
  10447. }
  10448. .datatable-top::after,
  10449. .datatable-bottom::after {
  10450. clear: both;
  10451. content: " ";
  10452. display: table;
  10453. }
  10454. .datatable-pagination li.datatable-hidden {
  10455. visibility: visible;
  10456. }
  10457. .btn-datatable {
  10458. height: 20px !important;
  10459. width: 20px !important;
  10460. font-size: 0.75rem;
  10461. border-radius: 0.375rem !important;
  10462. }