styles.css 245 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256
  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. .popup {
  14. display: none;
  15. position: fixed;
  16. top: 50%;
  17. left: 50%;
  18. transform: translate(-50%, -50%);
  19. padding: 20px;
  20. background-color: #fff;
  21. box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  22. z-index: 1000;
  23. }
  24. :root {
  25. --bs-blue: #0d6efd;
  26. --bs-indigo: #6610f2;
  27. --bs-purple: #6f42c1;
  28. --bs-pink: #d63384;
  29. --bs-red: #dc3545;
  30. --bs-orange: #fd7e14;
  31. --bs-yellow: #ffc107;
  32. --bs-green: #198754;
  33. --bs-teal: #20c997;
  34. --bs-cyan: #0dcaf0;
  35. --bs-black: #000;
  36. --bs-white: #fff;
  37. --bs-gray: #6c757d;
  38. --bs-gray-dark: #343a40;
  39. --bs-gray-100: #f8f9fa;
  40. --bs-gray-200: #e9ecef;
  41. --bs-gray-300: #dee2e6;
  42. --bs-gray-400: #ced4da;
  43. --bs-gray-500: #adb5bd;
  44. --bs-gray-600: #6c757d;
  45. --bs-gray-700: #495057;
  46. --bs-gray-800: #343a40;
  47. --bs-gray-900: #212529;
  48. --bs-primary: #0d6efd;
  49. --bs-secondary: #6c757d;
  50. --bs-success: #198754;
  51. --bs-info: #0dcaf0;
  52. --bs-warning: #ffc107;
  53. --bs-danger: #dc3545;
  54. --bs-light: #f8f9fa;
  55. --bs-dark: #212529;
  56. --bs-primary-rgb: 13, 110, 253;
  57. --bs-secondary-rgb: 108, 117, 125;
  58. --bs-success-rgb: 25, 135, 84;
  59. --bs-info-rgb: 13, 202, 240;
  60. --bs-warning-rgb: 255, 193, 7;
  61. --bs-danger-rgb: 220, 53, 69;
  62. --bs-light-rgb: 248, 249, 250;
  63. --bs-dark-rgb: 33, 37, 41;
  64. --bs-white-rgb: 255, 255, 255;
  65. --bs-black-rgb: 0, 0, 0;
  66. --bs-body-color-rgb: 33, 37, 41;
  67. --bs-body-bg-rgb: 255, 255, 255;
  68. --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";
  69. --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  70. --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  71. --bs-body-font-family: var(--bs-font-sans-serif);
  72. --bs-body-font-size: 1rem;
  73. --bs-body-font-weight: 400;
  74. --bs-body-line-height: 1.5;
  75. --bs-body-color: #212529;
  76. --bs-body-bg: #fff;
  77. --bs-border-width: 1px;
  78. --bs-border-style: solid;
  79. --bs-border-color: #dee2e6;
  80. --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  81. --bs-border-radius: 0.375rem;
  82. --bs-border-radius-sm: 0.25rem;
  83. --bs-border-radius-lg: 0.5rem;
  84. --bs-border-radius-xl: 1rem;
  85. --bs-border-radius-2xl: 2rem;
  86. --bs-border-radius-pill: 50rem;
  87. --bs-link-color: #0d6efd;
  88. --bs-link-hover-color: #0a58ca;
  89. --bs-code-color: #d63384;
  90. --bs-highlight-bg: #fff3cd;
  91. }
  92. *,
  93. *::before,
  94. *::after {
  95. box-sizing: border-box;
  96. }
  97. @media (prefers-reduced-motion: no-preference) {
  98. :root {
  99. scroll-behavior: smooth;
  100. }
  101. }
  102. body {
  103. margin: 0;
  104. font-family: var(--bs-body-font-family);
  105. font-size: var(--bs-body-font-size);
  106. font-weight: var(--bs-body-font-weight);
  107. line-height: var(--bs-body-line-height);
  108. color: var(--bs-body-color);
  109. text-align: var(--bs-body-text-align);
  110. background-color: var(--bs-body-bg);
  111. -webkit-text-size-adjust: 100%;
  112. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  113. }
  114. hr {
  115. margin: 1rem 0;
  116. color: inherit;
  117. border: 0;
  118. border-top: 1px solid;
  119. opacity: 0.25;
  120. }
  121. h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  122. margin-top: 0;
  123. margin-bottom: 0.5rem;
  124. font-weight: 500;
  125. line-height: 1.2;
  126. }
  127. h1, .h1 {
  128. font-size: calc(1.375rem + 1.5vw);
  129. }
  130. @media (min-width: 1200px) {
  131. h1, .h1 {
  132. font-size: 2.5rem;
  133. }
  134. }
  135. h2, .h2 {
  136. font-size: calc(1.325rem + 0.9vw);
  137. }
  138. @media (min-width: 1200px) {
  139. h2, .h2 {
  140. font-size: 2rem;
  141. }
  142. }
  143. h3, .h3 {
  144. font-size: calc(1.3rem + 0.6vw);
  145. }
  146. @media (min-width: 1200px) {
  147. h3, .h3 {
  148. font-size: 1.75rem;
  149. }
  150. }
  151. h4, .h4 {
  152. font-size: calc(1.275rem + 0.3vw);
  153. }
  154. @media (min-width: 1200px) {
  155. h4, .h4 {
  156. font-size: 1.5rem;
  157. }
  158. }
  159. h5, .h5 {
  160. font-size: 1.25rem;
  161. }
  162. h6, .h6 {
  163. font-size: 1rem;
  164. }
  165. p {
  166. margin-top: 0;
  167. margin-bottom: 1rem;
  168. }
  169. abbr[title] {
  170. -webkit-text-decoration: underline dotted;
  171. text-decoration: underline dotted;
  172. cursor: help;
  173. -webkit-text-decoration-skip-ink: none;
  174. text-decoration-skip-ink: none;
  175. }
  176. address {
  177. margin-bottom: 1rem;
  178. font-style: normal;
  179. line-height: inherit;
  180. }
  181. ol,
  182. ul {
  183. padding-left: 2rem;
  184. }
  185. ol,
  186. ul,
  187. dl {
  188. margin-top: 0;
  189. margin-bottom: 1rem;
  190. }
  191. ol ol,
  192. ul ul,
  193. ol ul,
  194. ul ol {
  195. margin-bottom: 0;
  196. }
  197. dt {
  198. font-weight: 700;
  199. }
  200. dd {
  201. margin-bottom: 0.5rem;
  202. margin-left: 0;
  203. }
  204. blockquote {
  205. margin: 0 0 1rem;
  206. }
  207. b,
  208. strong {
  209. font-weight: bolder;
  210. }
  211. small, .small {
  212. font-size: 0.875em;
  213. }
  214. mark, .mark {
  215. padding: 0.1875em;
  216. background-color: var(--bs-highlight-bg);
  217. }
  218. sub,
  219. sup {
  220. position: relative;
  221. font-size: 0.75em;
  222. line-height: 0;
  223. vertical-align: baseline;
  224. }
  225. sub {
  226. bottom: -0.25em;
  227. }
  228. sup {
  229. top: -0.5em;
  230. }
  231. a {
  232. color: var(--bs-link-color);
  233. text-decoration: underline;
  234. }
  235. a:hover {
  236. color: var(--bs-link-hover-color);
  237. }
  238. a:not([href]):not([class]), a:not([href]):not([class]):hover {
  239. color: inherit;
  240. text-decoration: none;
  241. }
  242. pre,
  243. code,
  244. kbd,
  245. samp {
  246. font-family: var(--bs-font-monospace);
  247. font-size: 1em;
  248. }
  249. pre {
  250. display: block;
  251. margin-top: 0;
  252. margin-bottom: 1rem;
  253. overflow: auto;
  254. font-size: 0.875em;
  255. }
  256. pre code {
  257. font-size: inherit;
  258. color: inherit;
  259. word-break: normal;
  260. }
  261. code {
  262. font-size: 0.875em;
  263. color: var(--bs-code-color);
  264. word-wrap: break-word;
  265. }
  266. a > code {
  267. color: inherit;
  268. }
  269. kbd {
  270. padding: 0.1875rem 0.375rem;
  271. font-size: 0.875em;
  272. color: var(--bs-body-bg);
  273. background-color: var(--bs-body-color);
  274. border-radius: 0.25rem;
  275. }
  276. kbd kbd {
  277. padding: 0;
  278. font-size: 1em;
  279. }
  280. figure {
  281. margin: 0 0 1rem;
  282. }
  283. img,
  284. svg {
  285. vertical-align: middle;
  286. }
  287. table {
  288. caption-side: bottom;
  289. border-collapse: collapse;
  290. }
  291. caption {
  292. padding-top: 0.5rem;
  293. padding-bottom: 0.5rem;
  294. color: #6c757d;
  295. text-align: left;
  296. }
  297. th {
  298. text-align: inherit;
  299. text-align: -webkit-match-parent;
  300. }
  301. thead,
  302. tbody,
  303. tfoot,
  304. tr,
  305. td,
  306. th {
  307. border-color: inherit;
  308. border-style: solid;
  309. border-width: 0;
  310. }
  311. label {
  312. display: inline-block;
  313. }
  314. button {
  315. border-radius: 0;
  316. }
  317. button:focus:not(:focus-visible) {
  318. outline: 0;
  319. }
  320. input,
  321. button,
  322. select,
  323. optgroup,
  324. textarea {
  325. margin: 0;
  326. font-family: inherit;
  327. font-size: inherit;
  328. line-height: inherit;
  329. }
  330. button,
  331. select {
  332. text-transform: none;
  333. }
  334. [role=button] {
  335. cursor: pointer;
  336. }
  337. select {
  338. word-wrap: normal;
  339. }
  340. select:disabled {
  341. opacity: 1;
  342. }
  343. [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  344. display: none !important;
  345. }
  346. button,
  347. [type=button],
  348. [type=reset],
  349. [type=submit] {
  350. -webkit-appearance: button;
  351. }
  352. button:not(:disabled),
  353. [type=button]:not(:disabled),
  354. [type=reset]:not(:disabled),
  355. [type=submit]:not(:disabled) {
  356. cursor: pointer;
  357. }
  358. ::-moz-focus-inner {
  359. padding: 0;
  360. border-style: none;
  361. }
  362. textarea {
  363. resize: vertical;
  364. }
  365. fieldset {
  366. min-width: 0;
  367. padding: 0;
  368. margin: 0;
  369. border: 0;
  370. }
  371. legend {
  372. float: left;
  373. width: 100%;
  374. padding: 0;
  375. margin-bottom: 0.5rem;
  376. font-size: calc(1.275rem + 0.3vw);
  377. line-height: inherit;
  378. }
  379. @media (min-width: 1200px) {
  380. legend {
  381. font-size: 1.5rem;
  382. }
  383. }
  384. legend + * {
  385. clear: left;
  386. }
  387. ::-webkit-datetime-edit-fields-wrapper,
  388. ::-webkit-datetime-edit-text,
  389. ::-webkit-datetime-edit-minute,
  390. ::-webkit-datetime-edit-hour-field,
  391. ::-webkit-datetime-edit-day-field,
  392. ::-webkit-datetime-edit-month-field,
  393. ::-webkit-datetime-edit-year-field {
  394. padding: 0;
  395. }
  396. ::-webkit-inner-spin-button {
  397. height: auto;
  398. }
  399. [type=search] {
  400. outline-offset: -2px;
  401. -webkit-appearance: textfield;
  402. }
  403. /* rtl:raw:
  404. [type="tel"],
  405. [type="url"],
  406. [type="email"],
  407. [type="number"] {
  408. direction: ltr;
  409. }
  410. */
  411. ::-webkit-search-decoration {
  412. -webkit-appearance: none;
  413. }
  414. ::-webkit-color-swatch-wrapper {
  415. padding: 0;
  416. }
  417. ::file-selector-button {
  418. font: inherit;
  419. -webkit-appearance: button;
  420. }
  421. output {
  422. display: inline-block;
  423. }
  424. iframe {
  425. border: 0;
  426. }
  427. summary {
  428. display: list-item;
  429. cursor: pointer;
  430. }
  431. progress {
  432. vertical-align: baseline;
  433. }
  434. [hidden] {
  435. display: none !important;
  436. }
  437. .lead {
  438. font-size: 1.25rem;
  439. font-weight: 300;
  440. }
  441. .display-1 {
  442. font-size: calc(1.625rem + 4.5vw);
  443. font-weight: 300;
  444. line-height: 1.2;
  445. }
  446. @media (min-width: 1200px) {
  447. .display-1 {
  448. font-size: 5rem;
  449. }
  450. }
  451. .display-2 {
  452. font-size: calc(1.575rem + 3.9vw);
  453. font-weight: 300;
  454. line-height: 1.2;
  455. }
  456. @media (min-width: 1200px) {
  457. .display-2 {
  458. font-size: 4.5rem;
  459. }
  460. }
  461. .display-3 {
  462. font-size: calc(1.525rem + 3.3vw);
  463. font-weight: 300;
  464. line-height: 1.2;
  465. }
  466. @media (min-width: 1200px) {
  467. .display-3 {
  468. font-size: 4rem;
  469. }
  470. }
  471. .display-4 {
  472. font-size: calc(1.475rem + 2.7vw);
  473. font-weight: 300;
  474. line-height: 1.2;
  475. }
  476. @media (min-width: 1200px) {
  477. .display-4 {
  478. font-size: 3.5rem;
  479. }
  480. }
  481. .display-5 {
  482. font-size: calc(1.425rem + 2.1vw);
  483. font-weight: 300;
  484. line-height: 1.2;
  485. }
  486. @media (min-width: 1200px) {
  487. .display-5 {
  488. font-size: 3rem;
  489. }
  490. }
  491. .display-6 {
  492. font-size: calc(1.375rem + 1.5vw);
  493. font-weight: 300;
  494. line-height: 1.2;
  495. }
  496. @media (min-width: 1200px) {
  497. .display-6 {
  498. font-size: 2.5rem;
  499. }
  500. }
  501. .list-unstyled {
  502. padding-left: 0;
  503. list-style: none;
  504. }
  505. .list-inline {
  506. padding-left: 0;
  507. list-style: none;
  508. }
  509. .list-inline-item {
  510. display: inline-block;
  511. }
  512. .list-inline-item:not(:last-child) {
  513. margin-right: 0.5rem;
  514. }
  515. .initialism {
  516. font-size: 0.875em;
  517. text-transform: uppercase;
  518. }
  519. .blockquote {
  520. margin-bottom: 1rem;
  521. font-size: 1.25rem;
  522. }
  523. .blockquote > :last-child {
  524. margin-bottom: 0;
  525. }
  526. .blockquote-footer {
  527. margin-top: -1rem;
  528. margin-bottom: 1rem;
  529. font-size: 0.875em;
  530. color: #6c757d;
  531. }
  532. .blockquote-footer::before {
  533. content: "— ";
  534. }
  535. .img-fluid {
  536. max-width: 100%;
  537. height: auto;
  538. }
  539. .img-thumbnail {
  540. padding: 0.25rem;
  541. background-color: #fff;
  542. border: 1px solid var(--bs-border-color);
  543. border-radius: 0.375rem;
  544. max-width: 100%;
  545. height: auto;
  546. }
  547. .figure {
  548. display: inline-block;
  549. }
  550. .figure-img {
  551. margin-bottom: 0.5rem;
  552. line-height: 1;
  553. }
  554. .figure-caption {
  555. font-size: 0.875em;
  556. color: #6c757d;
  557. }
  558. .container,
  559. .container-fluid,
  560. .container-xxl,
  561. .container-xl,
  562. .container-lg,
  563. .container-md,
  564. .container-sm {
  565. --bs-gutter-x: 1.5rem;
  566. --bs-gutter-y: 0;
  567. width: 100%;
  568. padding-right: calc(var(--bs-gutter-x) * 0.5);
  569. padding-left: calc(var(--bs-gutter-x) * 0.5);
  570. margin-right: auto;
  571. margin-left: auto;
  572. }
  573. @media (min-width: 576px) {
  574. .container-sm, .container {
  575. max-width: 540px;
  576. }
  577. }
  578. @media (min-width: 768px) {
  579. .container-md, .container-sm, .container {
  580. max-width: 720px;
  581. }
  582. }
  583. @media (min-width: 992px) {
  584. .container-lg, .container-md, .container-sm, .container {
  585. max-width: 960px;
  586. }
  587. }
  588. @media (min-width: 1200px) {
  589. .container-xl, .container-lg, .container-md, .container-sm, .container {
  590. max-width: 1140px;
  591. }
  592. }
  593. @media (min-width: 1400px) {
  594. .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
  595. max-width: 1320px;
  596. }
  597. }
  598. .row {
  599. --bs-gutter-x: 1.5rem;
  600. --bs-gutter-y: 0;
  601. display: flex;
  602. flex-wrap: wrap;
  603. margin-top: calc(-1 * var(--bs-gutter-y));
  604. margin-right: calc(-0.5 * var(--bs-gutter-x));
  605. margin-left: calc(-0.5 * var(--bs-gutter-x));
  606. }
  607. .row > * {
  608. flex-shrink: 0;
  609. width: 100%;
  610. max-width: 100%;
  611. padding-right: calc(var(--bs-gutter-x) * 0.5);
  612. padding-left: calc(var(--bs-gutter-x) * 0.5);
  613. margin-top: var(--bs-gutter-y);
  614. }
  615. .col {
  616. flex: 1 0 0%;
  617. }
  618. .row-cols-auto > * {
  619. flex: 0 0 auto;
  620. width: auto;
  621. }
  622. .row-cols-1 > * {
  623. flex: 0 0 auto;
  624. width: 100%;
  625. }
  626. .row-cols-2 > * {
  627. flex: 0 0 auto;
  628. width: 50%;
  629. }
  630. .row-cols-3 > * {
  631. flex: 0 0 auto;
  632. width: 33.3333333333%;
  633. }
  634. .row-cols-4 > * {
  635. flex: 0 0 auto;
  636. width: 25%;
  637. }
  638. .row-cols-5 > * {
  639. flex: 0 0 auto;
  640. width: 20%;
  641. }
  642. .row-cols-6 > * {
  643. flex: 0 0 auto;
  644. width: 16.6666666667%;
  645. }
  646. .col-auto {
  647. flex: 0 0 auto;
  648. width: auto;
  649. }
  650. .col-1 {
  651. flex: 0 0 auto;
  652. width: 8.33333333%;
  653. }
  654. .col-2 {
  655. flex: 0 0 auto;
  656. width: 16.66666667%;
  657. }
  658. .col-3 {
  659. flex: 0 0 auto;
  660. width: 25%;
  661. }
  662. .col-4 {
  663. flex: 0 0 auto;
  664. width: 33.33333333%;
  665. }
  666. .col-5 {
  667. flex: 0 0 auto;
  668. width: 41.66666667%;
  669. }
  670. .col-6 {
  671. flex: 0 0 auto;
  672. width: 50%;
  673. }
  674. .col-7 {
  675. flex: 0 0 auto;
  676. width: 58.33333333%;
  677. }
  678. .col-8 {
  679. flex: 0 0 auto;
  680. width: 66.66666667%;
  681. }
  682. .col-9 {
  683. flex: 0 0 auto;
  684. width: 75%;
  685. }
  686. .col-10 {
  687. flex: 0 0 auto;
  688. width: 83.33333333%;
  689. }
  690. .col-11 {
  691. flex: 0 0 auto;
  692. width: 91.66666667%;
  693. }
  694. .col-12 {
  695. flex: 0 0 auto;
  696. width: 100%;
  697. }
  698. .offset-1 {
  699. margin-left: 8.33333333%;
  700. }
  701. .offset-2 {
  702. margin-left: 16.66666667%;
  703. }
  704. .offset-3 {
  705. margin-left: 25%;
  706. }
  707. .offset-4 {
  708. margin-left: 33.33333333%;
  709. }
  710. .offset-5 {
  711. margin-left: 41.66666667%;
  712. }
  713. .offset-6 {
  714. margin-left: 50%;
  715. }
  716. .offset-7 {
  717. margin-left: 58.33333333%;
  718. }
  719. .offset-8 {
  720. margin-left: 66.66666667%;
  721. }
  722. .offset-9 {
  723. margin-left: 75%;
  724. }
  725. .offset-10 {
  726. margin-left: 83.33333333%;
  727. }
  728. .offset-11 {
  729. margin-left: 91.66666667%;
  730. }
  731. .g-0,
  732. .gx-0 {
  733. --bs-gutter-x: 0;
  734. }
  735. .g-0,
  736. .gy-0 {
  737. --bs-gutter-y: 0;
  738. }
  739. .g-1,
  740. .gx-1 {
  741. --bs-gutter-x: 0.25rem;
  742. }
  743. .g-1,
  744. .gy-1 {
  745. --bs-gutter-y: 0.25rem;
  746. }
  747. .g-2,
  748. .gx-2 {
  749. --bs-gutter-x: 0.5rem;
  750. }
  751. .g-2,
  752. .gy-2 {
  753. --bs-gutter-y: 0.5rem;
  754. }
  755. .g-3,
  756. .gx-3 {
  757. --bs-gutter-x: 1rem;
  758. }
  759. .g-3,
  760. .gy-3 {
  761. --bs-gutter-y: 1rem;
  762. }
  763. .g-4,
  764. .gx-4 {
  765. --bs-gutter-x: 1.5rem;
  766. }
  767. .g-4,
  768. .gy-4 {
  769. --bs-gutter-y: 1.5rem;
  770. }
  771. .g-5,
  772. .gx-5 {
  773. --bs-gutter-x: 3rem;
  774. }
  775. .g-5,
  776. .gy-5 {
  777. --bs-gutter-y: 3rem;
  778. }
  779. @media (min-width: 576px) {
  780. .col-sm {
  781. flex: 1 0 0%;
  782. }
  783. .row-cols-sm-auto > * {
  784. flex: 0 0 auto;
  785. width: auto;
  786. }
  787. .row-cols-sm-1 > * {
  788. flex: 0 0 auto;
  789. width: 100%;
  790. }
  791. .row-cols-sm-2 > * {
  792. flex: 0 0 auto;
  793. width: 50%;
  794. }
  795. .row-cols-sm-3 > * {
  796. flex: 0 0 auto;
  797. width: 33.3333333333%;
  798. }
  799. .row-cols-sm-4 > * {
  800. flex: 0 0 auto;
  801. width: 25%;
  802. }
  803. .row-cols-sm-5 > * {
  804. flex: 0 0 auto;
  805. width: 20%;
  806. }
  807. .row-cols-sm-6 > * {
  808. flex: 0 0 auto;
  809. width: 16.6666666667%;
  810. }
  811. .col-sm-auto {
  812. flex: 0 0 auto;
  813. width: auto;
  814. }
  815. .col-sm-1 {
  816. flex: 0 0 auto;
  817. width: 8.33333333%;
  818. }
  819. .col-sm-2 {
  820. flex: 0 0 auto;
  821. width: 16.66666667%;
  822. }
  823. .col-sm-3 {
  824. flex: 0 0 auto;
  825. width: 25%;
  826. }
  827. .col-sm-4 {
  828. flex: 0 0 auto;
  829. width: 33.33333333%;
  830. }
  831. .col-sm-5 {
  832. flex: 0 0 auto;
  833. width: 41.66666667%;
  834. }
  835. .col-sm-6 {
  836. flex: 0 0 auto;
  837. width: 50%;
  838. }
  839. .col-sm-7 {
  840. flex: 0 0 auto;
  841. width: 58.33333333%;
  842. }
  843. .col-sm-8 {
  844. flex: 0 0 auto;
  845. width: 66.66666667%;
  846. }
  847. .col-sm-9 {
  848. flex: 0 0 auto;
  849. width: 75%;
  850. }
  851. .col-sm-10 {
  852. flex: 0 0 auto;
  853. width: 83.33333333%;
  854. }
  855. .col-sm-11 {
  856. flex: 0 0 auto;
  857. width: 91.66666667%;
  858. }
  859. .col-sm-12 {
  860. flex: 0 0 auto;
  861. width: 100%;
  862. }
  863. .offset-sm-0 {
  864. margin-left: 0;
  865. }
  866. .offset-sm-1 {
  867. margin-left: 8.33333333%;
  868. }
  869. .offset-sm-2 {
  870. margin-left: 16.66666667%;
  871. }
  872. .offset-sm-3 {
  873. margin-left: 25%;
  874. }
  875. .offset-sm-4 {
  876. margin-left: 33.33333333%;
  877. }
  878. .offset-sm-5 {
  879. margin-left: 41.66666667%;
  880. }
  881. .offset-sm-6 {
  882. margin-left: 50%;
  883. }
  884. .offset-sm-7 {
  885. margin-left: 58.33333333%;
  886. }
  887. .offset-sm-8 {
  888. margin-left: 66.66666667%;
  889. }
  890. .offset-sm-9 {
  891. margin-left: 75%;
  892. }
  893. .offset-sm-10 {
  894. margin-left: 83.33333333%;
  895. }
  896. .offset-sm-11 {
  897. margin-left: 91.66666667%;
  898. }
  899. .g-sm-0,
  900. .gx-sm-0 {
  901. --bs-gutter-x: 0;
  902. }
  903. .g-sm-0,
  904. .gy-sm-0 {
  905. --bs-gutter-y: 0;
  906. }
  907. .g-sm-1,
  908. .gx-sm-1 {
  909. --bs-gutter-x: 0.25rem;
  910. }
  911. .g-sm-1,
  912. .gy-sm-1 {
  913. --bs-gutter-y: 0.25rem;
  914. }
  915. .g-sm-2,
  916. .gx-sm-2 {
  917. --bs-gutter-x: 0.5rem;
  918. }
  919. .g-sm-2,
  920. .gy-sm-2 {
  921. --bs-gutter-y: 0.5rem;
  922. }
  923. .g-sm-3,
  924. .gx-sm-3 {
  925. --bs-gutter-x: 1rem;
  926. }
  927. .g-sm-3,
  928. .gy-sm-3 {
  929. --bs-gutter-y: 1rem;
  930. }
  931. .g-sm-4,
  932. .gx-sm-4 {
  933. --bs-gutter-x: 1.5rem;
  934. }
  935. .g-sm-4,
  936. .gy-sm-4 {
  937. --bs-gutter-y: 1.5rem;
  938. }
  939. .g-sm-5,
  940. .gx-sm-5 {
  941. --bs-gutter-x: 3rem;
  942. }
  943. .g-sm-5,
  944. .gy-sm-5 {
  945. --bs-gutter-y: 3rem;
  946. }
  947. }
  948. @media (min-width: 768px) {
  949. .col-md {
  950. flex: 1 0 0%;
  951. }
  952. .row-cols-md-auto > * {
  953. flex: 0 0 auto;
  954. width: auto;
  955. }
  956. .row-cols-md-1 > * {
  957. flex: 0 0 auto;
  958. width: 100%;
  959. }
  960. .row-cols-md-2 > * {
  961. flex: 0 0 auto;
  962. width: 50%;
  963. }
  964. .row-cols-md-3 > * {
  965. flex: 0 0 auto;
  966. width: 33.3333333333%;
  967. }
  968. .row-cols-md-4 > * {
  969. flex: 0 0 auto;
  970. width: 25%;
  971. }
  972. .row-cols-md-5 > * {
  973. flex: 0 0 auto;
  974. width: 20%;
  975. }
  976. .row-cols-md-6 > * {
  977. flex: 0 0 auto;
  978. width: 16.6666666667%;
  979. }
  980. .col-md-auto {
  981. flex: 0 0 auto;
  982. width: auto;
  983. }
  984. .col-md-1 {
  985. flex: 0 0 auto;
  986. width: 8.33333333%;
  987. }
  988. .col-md-2 {
  989. flex: 0 0 auto;
  990. width: 16.66666667%;
  991. }
  992. .col-md-3 {
  993. flex: 0 0 auto;
  994. width: 25%;
  995. }
  996. .col-md-4 {
  997. flex: 0 0 auto;
  998. width: 33.33333333%;
  999. }
  1000. .col-md-5 {
  1001. flex: 0 0 auto;
  1002. width: 41.66666667%;
  1003. }
  1004. .col-md-6 {
  1005. flex: 0 0 auto;
  1006. width: 50%;
  1007. }
  1008. .col-md-7 {
  1009. flex: 0 0 auto;
  1010. width: 58.33333333%;
  1011. }
  1012. .col-md-8 {
  1013. flex: 0 0 auto;
  1014. width: 66.66666667%;
  1015. }
  1016. .col-md-9 {
  1017. flex: 0 0 auto;
  1018. width: 75%;
  1019. }
  1020. .col-md-10 {
  1021. flex: 0 0 auto;
  1022. width: 83.33333333%;
  1023. }
  1024. .col-md-11 {
  1025. flex: 0 0 auto;
  1026. width: 91.66666667%;
  1027. }
  1028. .col-md-12 {
  1029. flex: 0 0 auto;
  1030. width: 100%;
  1031. }
  1032. .offset-md-0 {
  1033. margin-left: 0;
  1034. }
  1035. .offset-md-1 {
  1036. margin-left: 8.33333333%;
  1037. }
  1038. .offset-md-2 {
  1039. margin-left: 16.66666667%;
  1040. }
  1041. .offset-md-3 {
  1042. margin-left: 25%;
  1043. }
  1044. .offset-md-4 {
  1045. margin-left: 33.33333333%;
  1046. }
  1047. .offset-md-5 {
  1048. margin-left: 41.66666667%;
  1049. }
  1050. .offset-md-6 {
  1051. margin-left: 50%;
  1052. }
  1053. .offset-md-7 {
  1054. margin-left: 58.33333333%;
  1055. }
  1056. .offset-md-8 {
  1057. margin-left: 66.66666667%;
  1058. }
  1059. .offset-md-9 {
  1060. margin-left: 75%;
  1061. }
  1062. .offset-md-10 {
  1063. margin-left: 83.33333333%;
  1064. }
  1065. .offset-md-11 {
  1066. margin-left: 91.66666667%;
  1067. }
  1068. .g-md-0,
  1069. .gx-md-0 {
  1070. --bs-gutter-x: 0;
  1071. }
  1072. .g-md-0,
  1073. .gy-md-0 {
  1074. --bs-gutter-y: 0;
  1075. }
  1076. .g-md-1,
  1077. .gx-md-1 {
  1078. --bs-gutter-x: 0.25rem;
  1079. }
  1080. .g-md-1,
  1081. .gy-md-1 {
  1082. --bs-gutter-y: 0.25rem;
  1083. }
  1084. .g-md-2,
  1085. .gx-md-2 {
  1086. --bs-gutter-x: 0.5rem;
  1087. }
  1088. .g-md-2,
  1089. .gy-md-2 {
  1090. --bs-gutter-y: 0.5rem;
  1091. }
  1092. .g-md-3,
  1093. .gx-md-3 {
  1094. --bs-gutter-x: 1rem;
  1095. }
  1096. .g-md-3,
  1097. .gy-md-3 {
  1098. --bs-gutter-y: 1rem;
  1099. }
  1100. .g-md-4,
  1101. .gx-md-4 {
  1102. --bs-gutter-x: 1.5rem;
  1103. }
  1104. .g-md-4,
  1105. .gy-md-4 {
  1106. --bs-gutter-y: 1.5rem;
  1107. }
  1108. .g-md-5,
  1109. .gx-md-5 {
  1110. --bs-gutter-x: 3rem;
  1111. }
  1112. .g-md-5,
  1113. .gy-md-5 {
  1114. --bs-gutter-y: 3rem;
  1115. }
  1116. }
  1117. @media (min-width: 992px) {
  1118. .col-lg {
  1119. flex: 1 0 0%;
  1120. }
  1121. .row-cols-lg-auto > * {
  1122. flex: 0 0 auto;
  1123. width: auto;
  1124. }
  1125. .row-cols-lg-1 > * {
  1126. flex: 0 0 auto;
  1127. width: 100%;
  1128. }
  1129. .row-cols-lg-2 > * {
  1130. flex: 0 0 auto;
  1131. width: 50%;
  1132. }
  1133. .row-cols-lg-3 > * {
  1134. flex: 0 0 auto;
  1135. width: 33.3333333333%;
  1136. }
  1137. .row-cols-lg-4 > * {
  1138. flex: 0 0 auto;
  1139. width: 25%;
  1140. }
  1141. .row-cols-lg-5 > * {
  1142. flex: 0 0 auto;
  1143. width: 20%;
  1144. }
  1145. .row-cols-lg-6 > * {
  1146. flex: 0 0 auto;
  1147. width: 16.6666666667%;
  1148. }
  1149. .col-lg-auto {
  1150. flex: 0 0 auto;
  1151. width: auto;
  1152. }
  1153. .col-lg-1 {
  1154. flex: 0 0 auto;
  1155. width: 8.33333333%;
  1156. }
  1157. .col-lg-2 {
  1158. flex: 0 0 auto;
  1159. width: 16.66666667%;
  1160. }
  1161. .col-lg-3 {
  1162. flex: 0 0 auto;
  1163. width: 25%;
  1164. }
  1165. .col-lg-4 {
  1166. flex: 0 0 auto;
  1167. width: 33.33333333%;
  1168. }
  1169. .col-lg-5 {
  1170. flex: 0 0 auto;
  1171. width: 41.66666667%;
  1172. }
  1173. .col-lg-6 {
  1174. flex: 0 0 auto;
  1175. width: 50%;
  1176. }
  1177. .col-lg-7 {
  1178. flex: 0 0 auto;
  1179. width: 58.33333333%;
  1180. }
  1181. .col-lg-8 {
  1182. flex: 0 0 auto;
  1183. width: 66.66666667%;
  1184. }
  1185. .col-lg-9 {
  1186. flex: 0 0 auto;
  1187. width: 75%;
  1188. }
  1189. .col-lg-10 {
  1190. flex: 0 0 auto;
  1191. width: 83.33333333%;
  1192. }
  1193. .col-lg-11 {
  1194. flex: 0 0 auto;
  1195. width: 91.66666667%;
  1196. }
  1197. .col-lg-12 {
  1198. flex: 0 0 auto;
  1199. width: 100%;
  1200. }
  1201. .offset-lg-0 {
  1202. margin-left: 0;
  1203. }
  1204. .offset-lg-1 {
  1205. margin-left: 8.33333333%;
  1206. }
  1207. .offset-lg-2 {
  1208. margin-left: 16.66666667%;
  1209. }
  1210. .offset-lg-3 {
  1211. margin-left: 25%;
  1212. }
  1213. .offset-lg-4 {
  1214. margin-left: 33.33333333%;
  1215. }
  1216. .offset-lg-5 {
  1217. margin-left: 41.66666667%;
  1218. }
  1219. .offset-lg-6 {
  1220. margin-left: 50%;
  1221. }
  1222. .offset-lg-7 {
  1223. margin-left: 58.33333333%;
  1224. }
  1225. .offset-lg-8 {
  1226. margin-left: 66.66666667%;
  1227. }
  1228. .offset-lg-9 {
  1229. margin-left: 75%;
  1230. }
  1231. .offset-lg-10 {
  1232. margin-left: 83.33333333%;
  1233. }
  1234. .offset-lg-11 {
  1235. margin-left: 91.66666667%;
  1236. }
  1237. .g-lg-0,
  1238. .gx-lg-0 {
  1239. --bs-gutter-x: 0;
  1240. }
  1241. .g-lg-0,
  1242. .gy-lg-0 {
  1243. --bs-gutter-y: 0;
  1244. }
  1245. .g-lg-1,
  1246. .gx-lg-1 {
  1247. --bs-gutter-x: 0.25rem;
  1248. }
  1249. .g-lg-1,
  1250. .gy-lg-1 {
  1251. --bs-gutter-y: 0.25rem;
  1252. }
  1253. .g-lg-2,
  1254. .gx-lg-2 {
  1255. --bs-gutter-x: 0.5rem;
  1256. }
  1257. .g-lg-2,
  1258. .gy-lg-2 {
  1259. --bs-gutter-y: 0.5rem;
  1260. }
  1261. .g-lg-3,
  1262. .gx-lg-3 {
  1263. --bs-gutter-x: 1rem;
  1264. }
  1265. .g-lg-3,
  1266. .gy-lg-3 {
  1267. --bs-gutter-y: 1rem;
  1268. }
  1269. .g-lg-4,
  1270. .gx-lg-4 {
  1271. --bs-gutter-x: 1.5rem;
  1272. }
  1273. .g-lg-4,
  1274. .gy-lg-4 {
  1275. --bs-gutter-y: 1.5rem;
  1276. }
  1277. .g-lg-5,
  1278. .gx-lg-5 {
  1279. --bs-gutter-x: 3rem;
  1280. }
  1281. .g-lg-5,
  1282. .gy-lg-5 {
  1283. --bs-gutter-y: 3rem;
  1284. }
  1285. }
  1286. @media (min-width: 1200px) {
  1287. .col-xl {
  1288. flex: 1 0 0%;
  1289. }
  1290. .row-cols-xl-auto > * {
  1291. flex: 0 0 auto;
  1292. width: auto;
  1293. }
  1294. .row-cols-xl-1 > * {
  1295. flex: 0 0 auto;
  1296. width: 100%;
  1297. }
  1298. .row-cols-xl-2 > * {
  1299. flex: 0 0 auto;
  1300. width: 50%;
  1301. }
  1302. .row-cols-xl-3 > * {
  1303. flex: 0 0 auto;
  1304. width: 33.3333333333%;
  1305. }
  1306. .row-cols-xl-4 > * {
  1307. flex: 0 0 auto;
  1308. width: 25%;
  1309. }
  1310. .row-cols-xl-5 > * {
  1311. flex: 0 0 auto;
  1312. width: 20%;
  1313. }
  1314. .row-cols-xl-6 > * {
  1315. flex: 0 0 auto;
  1316. width: 16.6666666667%;
  1317. }
  1318. .col-xl-auto {
  1319. flex: 0 0 auto;
  1320. width: auto;
  1321. }
  1322. .col-xl-1 {
  1323. flex: 0 0 auto;
  1324. width: 8.33333333%;
  1325. }
  1326. .col-xl-2 {
  1327. flex: 0 0 auto;
  1328. width: 16.66666667%;
  1329. }
  1330. .col-xl-3 {
  1331. flex: 0 0 auto;
  1332. width: 25%;
  1333. }
  1334. .col-xl-4 {
  1335. flex: 0 0 auto;
  1336. width: 33.33333333%;
  1337. }
  1338. .col-xl-5 {
  1339. flex: 0 0 auto;
  1340. width: 41.66666667%;
  1341. }
  1342. .col-xl-6 {
  1343. flex: 0 0 auto;
  1344. width: 50%;
  1345. }
  1346. .col-xl-7 {
  1347. flex: 0 0 auto;
  1348. width: 58.33333333%;
  1349. }
  1350. .col-xl-8 {
  1351. flex: 0 0 auto;
  1352. width: 66.66666667%;
  1353. }
  1354. .col-xl-9 {
  1355. flex: 0 0 auto;
  1356. width: 75%;
  1357. }
  1358. .col-xl-10 {
  1359. flex: 0 0 auto;
  1360. width: 83.33333333%;
  1361. }
  1362. .col-xl-11 {
  1363. flex: 0 0 auto;
  1364. width: 91.66666667%;
  1365. }
  1366. .col-xl-12 {
  1367. flex: 0 0 auto;
  1368. width: 100%;
  1369. }
  1370. .offset-xl-0 {
  1371. margin-left: 0;
  1372. }
  1373. .offset-xl-1 {
  1374. margin-left: 8.33333333%;
  1375. }
  1376. .offset-xl-2 {
  1377. margin-left: 16.66666667%;
  1378. }
  1379. .offset-xl-3 {
  1380. margin-left: 25%;
  1381. }
  1382. .offset-xl-4 {
  1383. margin-left: 33.33333333%;
  1384. }
  1385. .offset-xl-5 {
  1386. margin-left: 41.66666667%;
  1387. }
  1388. .offset-xl-6 {
  1389. margin-left: 50%;
  1390. }
  1391. .offset-xl-7 {
  1392. margin-left: 58.33333333%;
  1393. }
  1394. .offset-xl-8 {
  1395. margin-left: 66.66666667%;
  1396. }
  1397. .offset-xl-9 {
  1398. margin-left: 75%;
  1399. }
  1400. .offset-xl-10 {
  1401. margin-left: 83.33333333%;
  1402. }
  1403. .offset-xl-11 {
  1404. margin-left: 91.66666667%;
  1405. }
  1406. .g-xl-0,
  1407. .gx-xl-0 {
  1408. --bs-gutter-x: 0;
  1409. }
  1410. .g-xl-0,
  1411. .gy-xl-0 {
  1412. --bs-gutter-y: 0;
  1413. }
  1414. .g-xl-1,
  1415. .gx-xl-1 {
  1416. --bs-gutter-x: 0.25rem;
  1417. }
  1418. .g-xl-1,
  1419. .gy-xl-1 {
  1420. --bs-gutter-y: 0.25rem;
  1421. }
  1422. .g-xl-2,
  1423. .gx-xl-2 {
  1424. --bs-gutter-x: 0.5rem;
  1425. }
  1426. .g-xl-2,
  1427. .gy-xl-2 {
  1428. --bs-gutter-y: 0.5rem;
  1429. }
  1430. .g-xl-3,
  1431. .gx-xl-3 {
  1432. --bs-gutter-x: 1rem;
  1433. }
  1434. .g-xl-3,
  1435. .gy-xl-3 {
  1436. --bs-gutter-y: 1rem;
  1437. }
  1438. .g-xl-4,
  1439. .gx-xl-4 {
  1440. --bs-gutter-x: 1.5rem;
  1441. }
  1442. .g-xl-4,
  1443. .gy-xl-4 {
  1444. --bs-gutter-y: 1.5rem;
  1445. }
  1446. .g-xl-5,
  1447. .gx-xl-5 {
  1448. --bs-gutter-x: 3rem;
  1449. }
  1450. .g-xl-5,
  1451. .gy-xl-5 {
  1452. --bs-gutter-y: 3rem;
  1453. }
  1454. }
  1455. @media (min-width: 1400px) {
  1456. .col-xxl {
  1457. flex: 1 0 0%;
  1458. }
  1459. .row-cols-xxl-auto > * {
  1460. flex: 0 0 auto;
  1461. width: auto;
  1462. }
  1463. .row-cols-xxl-1 > * {
  1464. flex: 0 0 auto;
  1465. width: 100%;
  1466. }
  1467. .row-cols-xxl-2 > * {
  1468. flex: 0 0 auto;
  1469. width: 50%;
  1470. }
  1471. .row-cols-xxl-3 > * {
  1472. flex: 0 0 auto;
  1473. width: 33.3333333333%;
  1474. }
  1475. .row-cols-xxl-4 > * {
  1476. flex: 0 0 auto;
  1477. width: 25%;
  1478. }
  1479. .row-cols-xxl-5 > * {
  1480. flex: 0 0 auto;
  1481. width: 20%;
  1482. }
  1483. .row-cols-xxl-6 > * {
  1484. flex: 0 0 auto;
  1485. width: 16.6666666667%;
  1486. }
  1487. .col-xxl-auto {
  1488. flex: 0 0 auto;
  1489. width: auto;
  1490. }
  1491. .col-xxl-1 {
  1492. flex: 0 0 auto;
  1493. width: 8.33333333%;
  1494. }
  1495. .col-xxl-2 {
  1496. flex: 0 0 auto;
  1497. width: 16.66666667%;
  1498. }
  1499. .col-xxl-3 {
  1500. flex: 0 0 auto;
  1501. width: 25%;
  1502. }
  1503. .col-xxl-4 {
  1504. flex: 0 0 auto;
  1505. width: 33.33333333%;
  1506. }
  1507. .col-xxl-5 {
  1508. flex: 0 0 auto;
  1509. width: 41.66666667%;
  1510. }
  1511. .col-xxl-6 {
  1512. flex: 0 0 auto;
  1513. width: 50%;
  1514. }
  1515. .col-xxl-7 {
  1516. flex: 0 0 auto;
  1517. width: 58.33333333%;
  1518. }
  1519. .col-xxl-8 {
  1520. flex: 0 0 auto;
  1521. width: 66.66666667%;
  1522. }
  1523. .col-xxl-9 {
  1524. flex: 0 0 auto;
  1525. width: 75%;
  1526. }
  1527. .col-xxl-10 {
  1528. flex: 0 0 auto;
  1529. width: 83.33333333%;
  1530. }
  1531. .col-xxl-11 {
  1532. flex: 0 0 auto;
  1533. width: 91.66666667%;
  1534. }
  1535. .col-xxl-12 {
  1536. flex: 0 0 auto;
  1537. width: 100%;
  1538. }
  1539. .offset-xxl-0 {
  1540. margin-left: 0;
  1541. }
  1542. .offset-xxl-1 {
  1543. margin-left: 8.33333333%;
  1544. }
  1545. .offset-xxl-2 {
  1546. margin-left: 16.66666667%;
  1547. }
  1548. .offset-xxl-3 {
  1549. margin-left: 25%;
  1550. }
  1551. .offset-xxl-4 {
  1552. margin-left: 33.33333333%;
  1553. }
  1554. .offset-xxl-5 {
  1555. margin-left: 41.66666667%;
  1556. }
  1557. .offset-xxl-6 {
  1558. margin-left: 50%;
  1559. }
  1560. .offset-xxl-7 {
  1561. margin-left: 58.33333333%;
  1562. }
  1563. .offset-xxl-8 {
  1564. margin-left: 66.66666667%;
  1565. }
  1566. .offset-xxl-9 {
  1567. margin-left: 75%;
  1568. }
  1569. .offset-xxl-10 {
  1570. margin-left: 83.33333333%;
  1571. }
  1572. .offset-xxl-11 {
  1573. margin-left: 91.66666667%;
  1574. }
  1575. .g-xxl-0,
  1576. .gx-xxl-0 {
  1577. --bs-gutter-x: 0;
  1578. }
  1579. .g-xxl-0,
  1580. .gy-xxl-0 {
  1581. --bs-gutter-y: 0;
  1582. }
  1583. .g-xxl-1,
  1584. .gx-xxl-1 {
  1585. --bs-gutter-x: 0.25rem;
  1586. }
  1587. .g-xxl-1,
  1588. .gy-xxl-1 {
  1589. --bs-gutter-y: 0.25rem;
  1590. }
  1591. .g-xxl-2,
  1592. .gx-xxl-2 {
  1593. --bs-gutter-x: 0.5rem;
  1594. }
  1595. .g-xxl-2,
  1596. .gy-xxl-2 {
  1597. --bs-gutter-y: 0.5rem;
  1598. }
  1599. .g-xxl-3,
  1600. .gx-xxl-3 {
  1601. --bs-gutter-x: 1rem;
  1602. }
  1603. .g-xxl-3,
  1604. .gy-xxl-3 {
  1605. --bs-gutter-y: 1rem;
  1606. }
  1607. .g-xxl-4,
  1608. .gx-xxl-4 {
  1609. --bs-gutter-x: 1.5rem;
  1610. }
  1611. .g-xxl-4,
  1612. .gy-xxl-4 {
  1613. --bs-gutter-y: 1.5rem;
  1614. }
  1615. .g-xxl-5,
  1616. .gx-xxl-5 {
  1617. --bs-gutter-x: 3rem;
  1618. }
  1619. .g-xxl-5,
  1620. .gy-xxl-5 {
  1621. --bs-gutter-y: 3rem;
  1622. }
  1623. }
  1624. .table, .datatable-table {
  1625. --bs-table-color: var(--bs-body-color);
  1626. --bs-table-bg: transparent;
  1627. --bs-table-border-color: var(--bs-border-color);
  1628. --bs-table-accent-bg: transparent;
  1629. --bs-table-striped-color: var(--bs-body-color);
  1630. --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  1631. --bs-table-active-color: var(--bs-body-color);
  1632. --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  1633. --bs-table-hover-color: var(--bs-body-color);
  1634. --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  1635. width: 100%;
  1636. margin-bottom: 1rem;
  1637. color: var(--bs-table-color);
  1638. vertical-align: top;
  1639. border-color: var(--bs-table-border-color);
  1640. }
  1641. .table > :not(caption) > * > *, .datatable-table > :not(caption) > * > * {
  1642. padding: 0.5rem 0.5rem;
  1643. background-color: var(--bs-table-bg);
  1644. border-bottom-width: 1px;
  1645. box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  1646. }
  1647. .table > tbody, .datatable-table > tbody {
  1648. vertical-align: inherit;
  1649. }
  1650. .table > thead, .datatable-table > thead {
  1651. vertical-align: bottom;
  1652. }
  1653. .table-group-divider {
  1654. border-top: 2px solid currentcolor;
  1655. }
  1656. .caption-top {
  1657. caption-side: top;
  1658. }
  1659. .table-sm > :not(caption) > * > * {
  1660. padding: 0.25rem 0.25rem;
  1661. }
  1662. .table-bordered > :not(caption) > *, .datatable-table > :not(caption) > * {
  1663. border-width: 1px 0;
  1664. }
  1665. .table-bordered > :not(caption) > * > *, .datatable-table > :not(caption) > * > * {
  1666. border-width: 0 1px;
  1667. }
  1668. .table-borderless > :not(caption) > * > * {
  1669. border-bottom-width: 0;
  1670. }
  1671. .table-borderless > :not(:first-child) {
  1672. border-top-width: 0;
  1673. }
  1674. .table-striped > tbody > tr:nth-of-type(odd) > * {
  1675. --bs-table-accent-bg: var(--bs-table-striped-bg);
  1676. color: var(--bs-table-striped-color);
  1677. }
  1678. .table-striped-columns > :not(caption) > tr > :nth-child(even) {
  1679. --bs-table-accent-bg: var(--bs-table-striped-bg);
  1680. color: var(--bs-table-striped-color);
  1681. }
  1682. .table-active {
  1683. --bs-table-accent-bg: var(--bs-table-active-bg);
  1684. color: var(--bs-table-active-color);
  1685. }
  1686. .table-hover > tbody > tr:hover > *, .datatable-table > tbody > tr:hover > * {
  1687. --bs-table-accent-bg: var(--bs-table-hover-bg);
  1688. color: var(--bs-table-hover-color);
  1689. }
  1690. .table-primary {
  1691. --bs-table-color: #000;
  1692. --bs-table-bg: #cfe2ff;
  1693. --bs-table-border-color: #bacbe6;
  1694. --bs-table-striped-bg: #c5d7f2;
  1695. --bs-table-striped-color: #000;
  1696. --bs-table-active-bg: #bacbe6;
  1697. --bs-table-active-color: #000;
  1698. --bs-table-hover-bg: #bfd1ec;
  1699. --bs-table-hover-color: #000;
  1700. color: var(--bs-table-color);
  1701. border-color: var(--bs-table-border-color);
  1702. }
  1703. .table-secondary {
  1704. --bs-table-color: #000;
  1705. --bs-table-bg: #e2e3e5;
  1706. --bs-table-border-color: #cbccce;
  1707. --bs-table-striped-bg: #d7d8da;
  1708. --bs-table-striped-color: #000;
  1709. --bs-table-active-bg: #cbccce;
  1710. --bs-table-active-color: #000;
  1711. --bs-table-hover-bg: #d1d2d4;
  1712. --bs-table-hover-color: #000;
  1713. color: var(--bs-table-color);
  1714. border-color: var(--bs-table-border-color);
  1715. }
  1716. .table-success {
  1717. --bs-table-color: #000;
  1718. --bs-table-bg: #d1e7dd;
  1719. --bs-table-border-color: #bcd0c7;
  1720. --bs-table-striped-bg: #c7dbd2;
  1721. --bs-table-striped-color: #000;
  1722. --bs-table-active-bg: #bcd0c7;
  1723. --bs-table-active-color: #000;
  1724. --bs-table-hover-bg: #c1d6cc;
  1725. --bs-table-hover-color: #000;
  1726. color: var(--bs-table-color);
  1727. border-color: var(--bs-table-border-color);
  1728. }
  1729. .table-info {
  1730. --bs-table-color: #000;
  1731. --bs-table-bg: #cff4fc;
  1732. --bs-table-border-color: #badce3;
  1733. --bs-table-striped-bg: #c5e8ef;
  1734. --bs-table-striped-color: #000;
  1735. --bs-table-active-bg: #badce3;
  1736. --bs-table-active-color: #000;
  1737. --bs-table-hover-bg: #bfe2e9;
  1738. --bs-table-hover-color: #000;
  1739. color: var(--bs-table-color);
  1740. border-color: var(--bs-table-border-color);
  1741. }
  1742. .table-warning {
  1743. --bs-table-color: #000;
  1744. --bs-table-bg: #fff3cd;
  1745. --bs-table-border-color: #e6dbb9;
  1746. --bs-table-striped-bg: #f2e7c3;
  1747. --bs-table-striped-color: #000;
  1748. --bs-table-active-bg: #e6dbb9;
  1749. --bs-table-active-color: #000;
  1750. --bs-table-hover-bg: #ece1be;
  1751. --bs-table-hover-color: #000;
  1752. color: var(--bs-table-color);
  1753. border-color: var(--bs-table-border-color);
  1754. }
  1755. .table-danger {
  1756. --bs-table-color: #000;
  1757. --bs-table-bg: #f8d7da;
  1758. --bs-table-border-color: #dfc2c4;
  1759. --bs-table-striped-bg: #eccccf;
  1760. --bs-table-striped-color: #000;
  1761. --bs-table-active-bg: #dfc2c4;
  1762. --bs-table-active-color: #000;
  1763. --bs-table-hover-bg: #e5c7ca;
  1764. --bs-table-hover-color: #000;
  1765. color: var(--bs-table-color);
  1766. border-color: var(--bs-table-border-color);
  1767. }
  1768. .table-light {
  1769. --bs-table-color: #000;
  1770. --bs-table-bg: #f8f9fa;
  1771. --bs-table-border-color: #dfe0e1;
  1772. --bs-table-striped-bg: #ecedee;
  1773. --bs-table-striped-color: #000;
  1774. --bs-table-active-bg: #dfe0e1;
  1775. --bs-table-active-color: #000;
  1776. --bs-table-hover-bg: #e5e6e7;
  1777. --bs-table-hover-color: #000;
  1778. color: var(--bs-table-color);
  1779. border-color: var(--bs-table-border-color);
  1780. }
  1781. .table-dark {
  1782. --bs-table-color: #fff;
  1783. --bs-table-bg: #212529;
  1784. --bs-table-border-color: #373b3e;
  1785. --bs-table-striped-bg: #2c3034;
  1786. --bs-table-striped-color: #fff;
  1787. --bs-table-active-bg: #373b3e;
  1788. --bs-table-active-color: #fff;
  1789. --bs-table-hover-bg: #323539;
  1790. --bs-table-hover-color: #fff;
  1791. color: var(--bs-table-color);
  1792. border-color: var(--bs-table-border-color);
  1793. }
  1794. .table-responsive, .datatable-wrapper .datatable-container {
  1795. overflow-x: auto;
  1796. -webkit-overflow-scrolling: touch;
  1797. }
  1798. @media (max-width: 575.98px) {
  1799. .table-responsive-sm {
  1800. overflow-x: auto;
  1801. -webkit-overflow-scrolling: touch;
  1802. }
  1803. }
  1804. @media (max-width: 767.98px) {
  1805. .table-responsive-md {
  1806. overflow-x: auto;
  1807. -webkit-overflow-scrolling: touch;
  1808. }
  1809. }
  1810. @media (max-width: 991.98px) {
  1811. .table-responsive-lg {
  1812. overflow-x: auto;
  1813. -webkit-overflow-scrolling: touch;
  1814. }
  1815. }
  1816. @media (max-width: 1199.98px) {
  1817. .table-responsive-xl {
  1818. overflow-x: auto;
  1819. -webkit-overflow-scrolling: touch;
  1820. }
  1821. }
  1822. @media (max-width: 1399.98px) {
  1823. .table-responsive-xxl {
  1824. overflow-x: auto;
  1825. -webkit-overflow-scrolling: touch;
  1826. }
  1827. }
  1828. .form-label {
  1829. margin-bottom: 0.5rem;
  1830. }
  1831. .col-form-label {
  1832. padding-top: calc(0.375rem + 1px);
  1833. padding-bottom: calc(0.375rem + 1px);
  1834. margin-bottom: 0;
  1835. font-size: inherit;
  1836. line-height: 1.5;
  1837. }
  1838. .col-form-label-lg {
  1839. padding-top: calc(0.5rem + 1px);
  1840. padding-bottom: calc(0.5rem + 1px);
  1841. font-size: 1.25rem;
  1842. }
  1843. .col-form-label-sm {
  1844. padding-top: calc(0.25rem + 1px);
  1845. padding-bottom: calc(0.25rem + 1px);
  1846. font-size: 0.875rem;
  1847. }
  1848. .form-text {
  1849. margin-top: 0.25rem;
  1850. font-size: 0.875em;
  1851. color: #6c757d;
  1852. }
  1853. .form-control, .datatable-input {
  1854. display: block;
  1855. width: 100%;
  1856. padding: 0.375rem 0.75rem;
  1857. font-size: 1rem;
  1858. font-weight: 400;
  1859. line-height: 1.5;
  1860. color: #212529;
  1861. background-color: #fff;
  1862. background-clip: padding-box;
  1863. border: 1px solid #ced4da;
  1864. -webkit-appearance: none;
  1865. -moz-appearance: none;
  1866. appearance: none;
  1867. border-radius: 0.375rem;
  1868. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  1869. }
  1870. @media (prefers-reduced-motion: reduce) {
  1871. .form-control, .datatable-input {
  1872. transition: none;
  1873. }
  1874. }
  1875. .form-control[type=file], [type=file].datatable-input {
  1876. overflow: hidden;
  1877. }
  1878. .form-control[type=file]:not(:disabled):not([readonly]), [type=file].datatable-input:not(:disabled):not([readonly]) {
  1879. cursor: pointer;
  1880. }
  1881. .form-control:focus, .datatable-input:focus {
  1882. color: #212529;
  1883. background-color: #fff;
  1884. border-color: #86b7fe;
  1885. outline: 0;
  1886. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  1887. }
  1888. .form-control::-webkit-date-and-time-value, .datatable-input::-webkit-date-and-time-value {
  1889. height: 1.5em;
  1890. }
  1891. .form-control::-moz-placeholder, .datatable-input::-moz-placeholder {
  1892. color: #6c757d;
  1893. opacity: 1;
  1894. }
  1895. .form-control::placeholder, .datatable-input::placeholder {
  1896. color: #6c757d;
  1897. opacity: 1;
  1898. }
  1899. .form-control:disabled, .datatable-input:disabled {
  1900. background-color: #e9ecef;
  1901. opacity: 1;
  1902. }
  1903. .form-control::file-selector-button, .datatable-input::file-selector-button {
  1904. padding: 0.375rem 0.75rem;
  1905. margin: -0.375rem -0.75rem;
  1906. -webkit-margin-end: 0.75rem;
  1907. margin-inline-end: 0.75rem;
  1908. color: #212529;
  1909. background-color: #e9ecef;
  1910. pointer-events: none;
  1911. border-color: inherit;
  1912. border-style: solid;
  1913. border-width: 0;
  1914. border-inline-end-width: 1px;
  1915. border-radius: 0;
  1916. 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;
  1917. }
  1918. @media (prefers-reduced-motion: reduce) {
  1919. .form-control::file-selector-button, .datatable-input::file-selector-button {
  1920. transition: none;
  1921. }
  1922. }
  1923. .form-control:hover:not(:disabled):not([readonly])::file-selector-button, .datatable-input:hover:not(:disabled):not([readonly])::file-selector-button {
  1924. background-color: #dde0e3;
  1925. }
  1926. .form-control-plaintext {
  1927. display: block;
  1928. width: 100%;
  1929. padding: 0.375rem 0;
  1930. margin-bottom: 0;
  1931. line-height: 1.5;
  1932. color: #212529;
  1933. background-color: transparent;
  1934. border: solid transparent;
  1935. border-width: 1px 0;
  1936. }
  1937. .form-control-plaintext:focus {
  1938. outline: 0;
  1939. }
  1940. .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  1941. padding-right: 0;
  1942. padding-left: 0;
  1943. }
  1944. .form-control-sm {
  1945. min-height: calc(1.5em + 0.5rem + 2px);
  1946. padding: 0.25rem 0.5rem;
  1947. font-size: 0.875rem;
  1948. border-radius: 0.25rem;
  1949. }
  1950. .form-control-sm::file-selector-button {
  1951. padding: 0.25rem 0.5rem;
  1952. margin: -0.25rem -0.5rem;
  1953. -webkit-margin-end: 0.5rem;
  1954. margin-inline-end: 0.5rem;
  1955. }
  1956. .form-control-lg {
  1957. min-height: calc(1.5em + 1rem + 2px);
  1958. padding: 0.5rem 1rem;
  1959. font-size: 1.25rem;
  1960. border-radius: 0.5rem;
  1961. }
  1962. .form-control-lg::file-selector-button {
  1963. padding: 0.5rem 1rem;
  1964. margin: -0.5rem -1rem;
  1965. -webkit-margin-end: 1rem;
  1966. margin-inline-end: 1rem;
  1967. }
  1968. textarea.form-control, textarea.datatable-input {
  1969. min-height: calc(1.5em + 0.75rem + 2px);
  1970. }
  1971. textarea.form-control-sm {
  1972. min-height: calc(1.5em + 0.5rem + 2px);
  1973. }
  1974. textarea.form-control-lg {
  1975. min-height: calc(1.5em + 1rem + 2px);
  1976. }
  1977. .form-control-color {
  1978. width: 3rem;
  1979. height: calc(1.5em + 0.75rem + 2px);
  1980. padding: 0.375rem;
  1981. }
  1982. .form-control-color:not(:disabled):not([readonly]) {
  1983. cursor: pointer;
  1984. }
  1985. .form-control-color::-moz-color-swatch {
  1986. border: 0 !important;
  1987. border-radius: 0.375rem;
  1988. }
  1989. .form-control-color::-webkit-color-swatch {
  1990. border-radius: 0.375rem;
  1991. }
  1992. .form-control-color.form-control-sm {
  1993. height: calc(1.5em + 0.5rem + 2px);
  1994. }
  1995. .form-control-color.form-control-lg {
  1996. height: calc(1.5em + 1rem + 2px);
  1997. }
  1998. .form-select, .datatable-selector {
  1999. display: block;
  2000. width: 100%;
  2001. padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  2002. -moz-padding-start: calc(0.75rem - 3px);
  2003. font-size: 1rem;
  2004. font-weight: 400;
  2005. line-height: 1.5;
  2006. color: #212529;
  2007. background-color: #fff;
  2008. 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");
  2009. background-repeat: no-repeat;
  2010. background-position: right 0.75rem center;
  2011. background-size: 16px 12px;
  2012. border: 1px solid #ced4da;
  2013. border-radius: 0.375rem;
  2014. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2015. -webkit-appearance: none;
  2016. -moz-appearance: none;
  2017. appearance: none;
  2018. }
  2019. @media (prefers-reduced-motion: reduce) {
  2020. .form-select, .datatable-selector {
  2021. transition: none;
  2022. }
  2023. }
  2024. .form-select:focus, .datatable-selector:focus {
  2025. border-color: #86b7fe;
  2026. outline: 0;
  2027. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2028. }
  2029. .form-select[multiple], [multiple].datatable-selector, .form-select[size]:not([size="1"]), [size].datatable-selector:not([size="1"]) {
  2030. padding-right: 0.75rem;
  2031. background-image: none;
  2032. }
  2033. .form-select:disabled, .datatable-selector:disabled {
  2034. background-color: #e9ecef;
  2035. }
  2036. .form-select:-moz-focusring, .datatable-selector:-moz-focusring {
  2037. color: transparent;
  2038. text-shadow: 0 0 0 #212529;
  2039. }
  2040. .form-select-sm {
  2041. padding-top: 0.25rem;
  2042. padding-bottom: 0.25rem;
  2043. padding-left: 0.5rem;
  2044. font-size: 0.875rem;
  2045. border-radius: 0.25rem;
  2046. }
  2047. .form-select-lg {
  2048. padding-top: 0.5rem;
  2049. padding-bottom: 0.5rem;
  2050. padding-left: 1rem;
  2051. font-size: 1.25rem;
  2052. border-radius: 0.5rem;
  2053. }
  2054. .form-check {
  2055. display: block;
  2056. min-height: 1.5rem;
  2057. padding-left: 1.5em;
  2058. margin-bottom: 0.125rem;
  2059. }
  2060. .form-check .form-check-input {
  2061. float: left;
  2062. margin-left: -1.5em;
  2063. }
  2064. .form-check-reverse {
  2065. padding-right: 1.5em;
  2066. padding-left: 0;
  2067. text-align: right;
  2068. }
  2069. .form-check-reverse .form-check-input {
  2070. float: right;
  2071. margin-right: -1.5em;
  2072. margin-left: 0;
  2073. }
  2074. .form-check-input {
  2075. width: 1em;
  2076. height: 1em;
  2077. margin-top: 0.25em;
  2078. vertical-align: top;
  2079. background-color: #fff;
  2080. background-repeat: no-repeat;
  2081. background-position: center;
  2082. background-size: contain;
  2083. border: 1px solid rgba(0, 0, 0, 0.25);
  2084. -webkit-appearance: none;
  2085. -moz-appearance: none;
  2086. appearance: none;
  2087. -webkit-print-color-adjust: exact;
  2088. print-color-adjust: exact;
  2089. }
  2090. .form-check-input[type=checkbox] {
  2091. border-radius: 0.25em;
  2092. }
  2093. .form-check-input[type=radio] {
  2094. border-radius: 50%;
  2095. }
  2096. .form-check-input:active {
  2097. filter: brightness(90%);
  2098. }
  2099. .form-check-input:focus {
  2100. border-color: #86b7fe;
  2101. outline: 0;
  2102. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2103. }
  2104. .form-check-input:checked {
  2105. background-color: #0d6efd;
  2106. border-color: #0d6efd;
  2107. }
  2108. .form-check-input:checked[type=checkbox] {
  2109. 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");
  2110. }
  2111. .form-check-input:checked[type=radio] {
  2112. 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");
  2113. }
  2114. .form-check-input[type=checkbox]:indeterminate {
  2115. background-color: #0d6efd;
  2116. border-color: #0d6efd;
  2117. 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");
  2118. }
  2119. .form-check-input:disabled {
  2120. pointer-events: none;
  2121. filter: none;
  2122. opacity: 0.5;
  2123. }
  2124. .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  2125. cursor: default;
  2126. opacity: 0.5;
  2127. }
  2128. .form-switch {
  2129. padding-left: 2.5em;
  2130. }
  2131. .form-switch .form-check-input {
  2132. width: 2em;
  2133. margin-left: -2.5em;
  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='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  2135. background-position: left center;
  2136. border-radius: 2em;
  2137. transition: background-position 0.15s ease-in-out;
  2138. }
  2139. @media (prefers-reduced-motion: reduce) {
  2140. .form-switch .form-check-input {
  2141. transition: none;
  2142. }
  2143. }
  2144. .form-switch .form-check-input:focus {
  2145. 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");
  2146. }
  2147. .form-switch .form-check-input:checked {
  2148. background-position: right center;
  2149. 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");
  2150. }
  2151. .form-switch.form-check-reverse {
  2152. padding-right: 2.5em;
  2153. padding-left: 0;
  2154. }
  2155. .form-switch.form-check-reverse .form-check-input {
  2156. margin-right: -2.5em;
  2157. margin-left: 0;
  2158. }
  2159. .form-check-inline {
  2160. display: inline-block;
  2161. margin-right: 1rem;
  2162. }
  2163. .btn-check {
  2164. position: absolute;
  2165. clip: rect(0, 0, 0, 0);
  2166. pointer-events: none;
  2167. }
  2168. .btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  2169. pointer-events: none;
  2170. filter: none;
  2171. opacity: 0.65;
  2172. }
  2173. .form-range {
  2174. width: 100%;
  2175. height: 1.5rem;
  2176. padding: 0;
  2177. background-color: transparent;
  2178. -webkit-appearance: none;
  2179. -moz-appearance: none;
  2180. appearance: none;
  2181. }
  2182. .form-range:focus {
  2183. outline: 0;
  2184. }
  2185. .form-range:focus::-webkit-slider-thumb {
  2186. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2187. }
  2188. .form-range:focus::-moz-range-thumb {
  2189. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  2190. }
  2191. .form-range::-moz-focus-outer {
  2192. border: 0;
  2193. }
  2194. .form-range::-webkit-slider-thumb {
  2195. width: 1rem;
  2196. height: 1rem;
  2197. margin-top: -0.25rem;
  2198. background-color: #0d6efd;
  2199. border: 0;
  2200. border-radius: 1rem;
  2201. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2202. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2203. -webkit-appearance: none;
  2204. appearance: none;
  2205. }
  2206. @media (prefers-reduced-motion: reduce) {
  2207. .form-range::-webkit-slider-thumb {
  2208. -webkit-transition: none;
  2209. transition: none;
  2210. }
  2211. }
  2212. .form-range::-webkit-slider-thumb:active {
  2213. background-color: #b6d4fe;
  2214. }
  2215. .form-range::-webkit-slider-runnable-track {
  2216. width: 100%;
  2217. height: 0.5rem;
  2218. color: transparent;
  2219. cursor: pointer;
  2220. background-color: #dee2e6;
  2221. border-color: transparent;
  2222. border-radius: 1rem;
  2223. }
  2224. .form-range::-moz-range-thumb {
  2225. width: 1rem;
  2226. height: 1rem;
  2227. background-color: #0d6efd;
  2228. border: 0;
  2229. border-radius: 1rem;
  2230. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2231. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2232. -moz-appearance: none;
  2233. appearance: none;
  2234. }
  2235. @media (prefers-reduced-motion: reduce) {
  2236. .form-range::-moz-range-thumb {
  2237. -moz-transition: none;
  2238. transition: none;
  2239. }
  2240. }
  2241. .form-range::-moz-range-thumb:active {
  2242. background-color: #b6d4fe;
  2243. }
  2244. .form-range::-moz-range-track {
  2245. width: 100%;
  2246. height: 0.5rem;
  2247. color: transparent;
  2248. cursor: pointer;
  2249. background-color: #dee2e6;
  2250. border-color: transparent;
  2251. border-radius: 1rem;
  2252. }
  2253. .form-range:disabled {
  2254. pointer-events: none;
  2255. }
  2256. .form-range:disabled::-webkit-slider-thumb {
  2257. background-color: #adb5bd;
  2258. }
  2259. .form-range:disabled::-moz-range-thumb {
  2260. background-color: #adb5bd;
  2261. }
  2262. .form-floating {
  2263. position: relative;
  2264. }
  2265. .form-floating > .form-control, .form-floating > .datatable-input,
  2266. .form-floating > .form-control-plaintext,
  2267. .form-floating > .form-select,
  2268. .form-floating > .datatable-selector {
  2269. height: calc(3.5rem + 2px);
  2270. line-height: 1.25;
  2271. }
  2272. .form-floating > label {
  2273. position: absolute;
  2274. top: 0;
  2275. left: 0;
  2276. width: 100%;
  2277. height: 100%;
  2278. padding: 1rem 0.75rem;
  2279. overflow: hidden;
  2280. text-align: start;
  2281. text-overflow: ellipsis;
  2282. white-space: nowrap;
  2283. pointer-events: none;
  2284. border: 1px solid transparent;
  2285. transform-origin: 0 0;
  2286. transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  2287. }
  2288. @media (prefers-reduced-motion: reduce) {
  2289. .form-floating > label {
  2290. transition: none;
  2291. }
  2292. }
  2293. .form-floating > .form-control, .form-floating > .datatable-input,
  2294. .form-floating > .form-control-plaintext {
  2295. padding: 1rem 0.75rem;
  2296. }
  2297. .form-floating > .form-control::-moz-placeholder, .form-floating > .datatable-input::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  2298. color: transparent;
  2299. }
  2300. .form-floating > .form-control::placeholder, .form-floating > .datatable-input::placeholder,
  2301. .form-floating > .form-control-plaintext::placeholder {
  2302. color: transparent;
  2303. }
  2304. .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) {
  2305. padding-top: 1.625rem;
  2306. padding-bottom: 0.625rem;
  2307. }
  2308. .form-floating > .form-control:focus, .form-floating > .datatable-input:focus, .form-floating > .form-control:not(:placeholder-shown), .form-floating > .datatable-input:not(:placeholder-shown),
  2309. .form-floating > .form-control-plaintext:focus,
  2310. .form-floating > .form-control-plaintext:not(:placeholder-shown) {
  2311. padding-top: 1.625rem;
  2312. padding-bottom: 0.625rem;
  2313. }
  2314. .form-floating > .form-control:-webkit-autofill, .form-floating > .datatable-input:-webkit-autofill,
  2315. .form-floating > .form-control-plaintext:-webkit-autofill {
  2316. padding-top: 1.625rem;
  2317. padding-bottom: 0.625rem;
  2318. }
  2319. .form-floating > .form-select, .form-floating > .datatable-selector {
  2320. padding-top: 1.625rem;
  2321. padding-bottom: 0.625rem;
  2322. }
  2323. .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label, .form-floating > .datatable-input:not(:-moz-placeholder-shown) ~ label {
  2324. opacity: 0.65;
  2325. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2326. }
  2327. .form-floating > .form-control:focus ~ label, .form-floating > .datatable-input:focus ~ label,
  2328. .form-floating > .form-control:not(:placeholder-shown) ~ label,
  2329. .form-floating > .datatable-input:not(:placeholder-shown) ~ label,
  2330. .form-floating > .form-control-plaintext ~ label,
  2331. .form-floating > .form-select ~ label,
  2332. .form-floating > .datatable-selector ~ label {
  2333. opacity: 0.65;
  2334. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2335. }
  2336. .form-floating > .form-control:-webkit-autofill ~ label, .form-floating > .datatable-input:-webkit-autofill ~ label {
  2337. opacity: 0.65;
  2338. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2339. }
  2340. .form-floating > .form-control-plaintext ~ label {
  2341. border-width: 1px 0;
  2342. }
  2343. .input-group {
  2344. position: relative;
  2345. display: flex;
  2346. flex-wrap: wrap;
  2347. align-items: stretch;
  2348. width: 100%;
  2349. }
  2350. .input-group > .form-control, .input-group > .datatable-input,
  2351. .input-group > .form-select,
  2352. .input-group > .datatable-selector,
  2353. .input-group > .form-floating {
  2354. position: relative;
  2355. flex: 1 1 auto;
  2356. width: 1%;
  2357. min-width: 0;
  2358. }
  2359. .input-group > .form-control:focus, .input-group > .datatable-input:focus,
  2360. .input-group > .form-select:focus,
  2361. .input-group > .datatable-selector:focus,
  2362. .input-group > .form-floating:focus-within {
  2363. z-index: 5;
  2364. }
  2365. .input-group .btn {
  2366. position: relative;
  2367. z-index: 2;
  2368. }
  2369. .input-group .btn:focus {
  2370. z-index: 5;
  2371. }
  2372. .input-group-text {
  2373. display: flex;
  2374. align-items: center;
  2375. padding: 0.375rem 0.75rem;
  2376. font-size: 1rem;
  2377. font-weight: 400;
  2378. line-height: 1.5;
  2379. color: #212529;
  2380. text-align: center;
  2381. white-space: nowrap;
  2382. background-color: #e9ecef;
  2383. border: 1px solid #ced4da;
  2384. border-radius: 0.375rem;
  2385. }
  2386. .input-group-lg > .form-control, .input-group-lg > .datatable-input,
  2387. .input-group-lg > .form-select,
  2388. .input-group-lg > .datatable-selector,
  2389. .input-group-lg > .input-group-text,
  2390. .input-group-lg > .btn {
  2391. padding: 0.5rem 1rem;
  2392. font-size: 1.25rem;
  2393. border-radius: 0.5rem;
  2394. }
  2395. .input-group-sm > .form-control, .input-group-sm > .datatable-input,
  2396. .input-group-sm > .form-select,
  2397. .input-group-sm > .datatable-selector,
  2398. .input-group-sm > .input-group-text,
  2399. .input-group-sm > .btn {
  2400. padding: 0.25rem 0.5rem;
  2401. font-size: 0.875rem;
  2402. border-radius: 0.25rem;
  2403. }
  2404. .input-group-lg > .form-select, .input-group-lg > .datatable-selector,
  2405. .input-group-sm > .form-select,
  2406. .input-group-sm > .datatable-selector {
  2407. padding-right: 3rem;
  2408. }
  2409. .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2410. .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
  2411. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
  2412. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .datatable-input,
  2413. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select,
  2414. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .datatable-selector {
  2415. border-top-right-radius: 0;
  2416. border-bottom-right-radius: 0;
  2417. }
  2418. .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2419. .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
  2420. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
  2421. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .datatable-input,
  2422. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select,
  2423. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .datatable-selector {
  2424. border-top-right-radius: 0;
  2425. border-bottom-right-radius: 0;
  2426. }
  2427. .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  2428. margin-left: -1px;
  2429. border-top-left-radius: 0;
  2430. border-bottom-left-radius: 0;
  2431. }
  2432. .input-group > .form-floating:not(:first-child) > .form-control, .input-group > .form-floating:not(:first-child) > .datatable-input,
  2433. .input-group > .form-floating:not(:first-child) > .form-select,
  2434. .input-group > .form-floating:not(:first-child) > .datatable-selector {
  2435. border-top-left-radius: 0;
  2436. border-bottom-left-radius: 0;
  2437. }
  2438. .valid-feedback {
  2439. display: none;
  2440. width: 100%;
  2441. margin-top: 0.25rem;
  2442. font-size: 0.875em;
  2443. color: #198754;
  2444. }
  2445. .valid-tooltip {
  2446. position: absolute;
  2447. top: 100%;
  2448. z-index: 5;
  2449. display: none;
  2450. max-width: 100%;
  2451. padding: 0.25rem 0.5rem;
  2452. margin-top: 0.1rem;
  2453. font-size: 0.875rem;
  2454. color: #fff;
  2455. background-color: rgba(25, 135, 84, 0.9);
  2456. border-radius: 0.375rem;
  2457. }
  2458. .was-validated :valid ~ .valid-feedback,
  2459. .was-validated :valid ~ .valid-tooltip,
  2460. .is-valid ~ .valid-feedback,
  2461. .is-valid ~ .valid-tooltip {
  2462. display: block;
  2463. }
  2464. .was-validated .form-control:valid, .was-validated .datatable-input:valid, .form-control.is-valid, .is-valid.datatable-input {
  2465. border-color: #198754;
  2466. padding-right: calc(1.5em + 0.75rem);
  2467. 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");
  2468. background-repeat: no-repeat;
  2469. background-position: right calc(0.375em + 0.1875rem) center;
  2470. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2471. }
  2472. .was-validated .form-control:valid:focus, .was-validated .datatable-input:valid:focus, .form-control.is-valid:focus, .is-valid.datatable-input:focus {
  2473. border-color: #198754;
  2474. box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
  2475. }
  2476. .was-validated textarea.form-control:valid, .was-validated textarea.datatable-input:valid, textarea.form-control.is-valid, textarea.is-valid.datatable-input {
  2477. padding-right: calc(1.5em + 0.75rem);
  2478. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2479. }
  2480. .was-validated .form-select:valid, .was-validated .datatable-selector:valid, .form-select.is-valid, .is-valid.datatable-selector {
  2481. border-color: #198754;
  2482. }
  2483. .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"] {
  2484. padding-right: 4.125rem;
  2485. 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");
  2486. background-position: right 0.75rem center, center right 2.25rem;
  2487. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2488. }
  2489. .was-validated .form-select:valid:focus, .was-validated .datatable-selector:valid:focus, .form-select.is-valid:focus, .is-valid.datatable-selector:focus {
  2490. border-color: #198754;
  2491. box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
  2492. }
  2493. .was-validated .form-control-color:valid, .form-control-color.is-valid {
  2494. width: calc(3rem + calc(1.5em + 0.75rem));
  2495. }
  2496. .was-validated .form-check-input:valid, .form-check-input.is-valid {
  2497. border-color: #198754;
  2498. }
  2499. .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  2500. background-color: #198754;
  2501. }
  2502. .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  2503. box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25);
  2504. }
  2505. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  2506. color: #198754;
  2507. }
  2508. .form-check-inline .form-check-input ~ .valid-feedback {
  2509. margin-left: 0.5em;
  2510. }
  2511. .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,
  2512. .was-validated .input-group > .form-select:not(:focus):valid,
  2513. .was-validated .input-group > .datatable-selector:not(:focus):valid,
  2514. .input-group > .form-select:not(:focus).is-valid,
  2515. .input-group > .datatable-selector:not(:focus).is-valid,
  2516. .was-validated .input-group > .form-floating:not(:focus-within):valid,
  2517. .input-group > .form-floating:not(:focus-within).is-valid {
  2518. z-index: 3;
  2519. }
  2520. .invalid-feedback {
  2521. display: none;
  2522. width: 100%;
  2523. margin-top: 0.25rem;
  2524. font-size: 0.875em;
  2525. color: #dc3545;
  2526. }
  2527. .invalid-tooltip {
  2528. position: absolute;
  2529. top: 100%;
  2530. z-index: 5;
  2531. display: none;
  2532. max-width: 100%;
  2533. padding: 0.25rem 0.5rem;
  2534. margin-top: 0.1rem;
  2535. font-size: 0.875rem;
  2536. color: #fff;
  2537. background-color: rgba(220, 53, 69, 0.9);
  2538. border-radius: 0.375rem;
  2539. }
  2540. .was-validated :invalid ~ .invalid-feedback,
  2541. .was-validated :invalid ~ .invalid-tooltip,
  2542. .is-invalid ~ .invalid-feedback,
  2543. .is-invalid ~ .invalid-tooltip {
  2544. display: block;
  2545. }
  2546. .was-validated .form-control:invalid, .was-validated .datatable-input:invalid, .form-control.is-invalid, .is-invalid.datatable-input {
  2547. border-color: #dc3545;
  2548. padding-right: calc(1.5em + 0.75rem);
  2549. 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");
  2550. background-repeat: no-repeat;
  2551. background-position: right calc(0.375em + 0.1875rem) center;
  2552. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2553. }
  2554. .was-validated .form-control:invalid:focus, .was-validated .datatable-input:invalid:focus, .form-control.is-invalid:focus, .is-invalid.datatable-input:focus {
  2555. border-color: #dc3545;
  2556. box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  2557. }
  2558. .was-validated textarea.form-control:invalid, .was-validated textarea.datatable-input:invalid, textarea.form-control.is-invalid, textarea.is-invalid.datatable-input {
  2559. padding-right: calc(1.5em + 0.75rem);
  2560. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2561. }
  2562. .was-validated .form-select:invalid, .was-validated .datatable-selector:invalid, .form-select.is-invalid, .is-invalid.datatable-selector {
  2563. border-color: #dc3545;
  2564. }
  2565. .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"] {
  2566. padding-right: 4.125rem;
  2567. 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");
  2568. background-position: right 0.75rem center, center right 2.25rem;
  2569. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2570. }
  2571. .was-validated .form-select:invalid:focus, .was-validated .datatable-selector:invalid:focus, .form-select.is-invalid:focus, .is-invalid.datatable-selector:focus {
  2572. border-color: #dc3545;
  2573. box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  2574. }
  2575. .was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  2576. width: calc(3rem + calc(1.5em + 0.75rem));
  2577. }
  2578. .was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  2579. border-color: #dc3545;
  2580. }
  2581. .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  2582. background-color: #dc3545;
  2583. }
  2584. .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  2585. box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
  2586. }
  2587. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  2588. color: #dc3545;
  2589. }
  2590. .form-check-inline .form-check-input ~ .invalid-feedback {
  2591. margin-left: 0.5em;
  2592. }
  2593. .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,
  2594. .was-validated .input-group > .form-select:not(:focus):invalid,
  2595. .was-validated .input-group > .datatable-selector:not(:focus):invalid,
  2596. .input-group > .form-select:not(:focus).is-invalid,
  2597. .input-group > .datatable-selector:not(:focus).is-invalid,
  2598. .was-validated .input-group > .form-floating:not(:focus-within):invalid,
  2599. .input-group > .form-floating:not(:focus-within).is-invalid {
  2600. z-index: 4;
  2601. }
  2602. .btn {
  2603. --bs-btn-padding-x: 0.75rem;
  2604. --bs-btn-padding-y: 0.375rem;
  2605. --bs-btn-font-family: ;
  2606. --bs-btn-font-size: 1rem;
  2607. --bs-btn-font-weight: 400;
  2608. --bs-btn-line-height: 1.5;
  2609. --bs-btn-color: #212529;
  2610. --bs-btn-bg: transparent;
  2611. --bs-btn-border-width: 1px;
  2612. --bs-btn-border-color: transparent;
  2613. --bs-btn-border-radius: 0.375rem;
  2614. --bs-btn-hover-border-color: transparent;
  2615. --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  2616. --bs-btn-disabled-opacity: 0.65;
  2617. --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  2618. display: inline-block;
  2619. padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  2620. font-family: var(--bs-btn-font-family);
  2621. font-size: var(--bs-btn-font-size);
  2622. font-weight: var(--bs-btn-font-weight);
  2623. line-height: var(--bs-btn-line-height);
  2624. color: var(--bs-btn-color);
  2625. text-align: center;
  2626. text-decoration: none;
  2627. vertical-align: middle;
  2628. cursor: pointer;
  2629. -webkit-user-select: none;
  2630. -moz-user-select: none;
  2631. user-select: none;
  2632. border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  2633. border-radius: var(--bs-btn-border-radius);
  2634. background-color: var(--bs-btn-bg);
  2635. 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;
  2636. }
  2637. @media (prefers-reduced-motion: reduce) {
  2638. .btn {
  2639. transition: none;
  2640. }
  2641. }
  2642. .btn:hover {
  2643. color: var(--bs-btn-hover-color);
  2644. background-color: var(--bs-btn-hover-bg);
  2645. border-color: var(--bs-btn-hover-border-color);
  2646. }
  2647. .btn-check + .btn:hover {
  2648. color: var(--bs-btn-color);
  2649. background-color: var(--bs-btn-bg);
  2650. border-color: var(--bs-btn-border-color);
  2651. }
  2652. .btn:focus-visible {
  2653. color: var(--bs-btn-hover-color);
  2654. background-color: var(--bs-btn-hover-bg);
  2655. border-color: var(--bs-btn-hover-border-color);
  2656. outline: 0;
  2657. box-shadow: var(--bs-btn-focus-box-shadow);
  2658. }
  2659. .btn-check:focus-visible + .btn {
  2660. border-color: var(--bs-btn-hover-border-color);
  2661. outline: 0;
  2662. box-shadow: var(--bs-btn-focus-box-shadow);
  2663. }
  2664. .btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  2665. color: var(--bs-btn-active-color);
  2666. background-color: var(--bs-btn-active-bg);
  2667. border-color: var(--bs-btn-active-border-color);
  2668. }
  2669. .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 {
  2670. box-shadow: var(--bs-btn-focus-box-shadow);
  2671. }
  2672. .btn:disabled, .btn.disabled, fieldset:disabled .btn {
  2673. color: var(--bs-btn-disabled-color);
  2674. pointer-events: none;
  2675. background-color: var(--bs-btn-disabled-bg);
  2676. border-color: var(--bs-btn-disabled-border-color);
  2677. opacity: var(--bs-btn-disabled-opacity);
  2678. }
  2679. .btn-primary {
  2680. --bs-btn-color: #fff;
  2681. --bs-btn-bg: #0d6efd;
  2682. --bs-btn-border-color: #0d6efd;
  2683. --bs-btn-hover-color: #fff;
  2684. --bs-btn-hover-bg: #0b5ed7;
  2685. --bs-btn-hover-border-color: #0a58ca;
  2686. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  2687. --bs-btn-active-color: #fff;
  2688. --bs-btn-active-bg: #0a58ca;
  2689. --bs-btn-active-border-color: #0a53be;
  2690. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2691. --bs-btn-disabled-color: #fff;
  2692. --bs-btn-disabled-bg: #0d6efd;
  2693. --bs-btn-disabled-border-color: #0d6efd;
  2694. }
  2695. .btn-secondary {
  2696. --bs-btn-color: #fff;
  2697. --bs-btn-bg: #6c757d;
  2698. --bs-btn-border-color: #6c757d;
  2699. --bs-btn-hover-color: #fff;
  2700. --bs-btn-hover-bg: #5c636a;
  2701. --bs-btn-hover-border-color: #565e64;
  2702. --bs-btn-focus-shadow-rgb: 130, 138, 145;
  2703. --bs-btn-active-color: #fff;
  2704. --bs-btn-active-bg: #565e64;
  2705. --bs-btn-active-border-color: #51585e;
  2706. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2707. --bs-btn-disabled-color: #fff;
  2708. --bs-btn-disabled-bg: #6c757d;
  2709. --bs-btn-disabled-border-color: #6c757d;
  2710. }
  2711. .btn-success {
  2712. --bs-btn-color: #fff;
  2713. --bs-btn-bg: #198754;
  2714. --bs-btn-border-color: #198754;
  2715. --bs-btn-hover-color: #fff;
  2716. --bs-btn-hover-bg: #157347;
  2717. --bs-btn-hover-border-color: #146c43;
  2718. --bs-btn-focus-shadow-rgb: 60, 153, 110;
  2719. --bs-btn-active-color: #fff;
  2720. --bs-btn-active-bg: #146c43;
  2721. --bs-btn-active-border-color: #13653f;
  2722. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2723. --bs-btn-disabled-color: #fff;
  2724. --bs-btn-disabled-bg: #198754;
  2725. --bs-btn-disabled-border-color: #198754;
  2726. }
  2727. .btn-info {
  2728. --bs-btn-color: #000;
  2729. --bs-btn-bg: #0dcaf0;
  2730. --bs-btn-border-color: #0dcaf0;
  2731. --bs-btn-hover-color: #000;
  2732. --bs-btn-hover-bg: #31d2f2;
  2733. --bs-btn-hover-border-color: #25cff2;
  2734. --bs-btn-focus-shadow-rgb: 11, 172, 204;
  2735. --bs-btn-active-color: #000;
  2736. --bs-btn-active-bg: #3dd5f3;
  2737. --bs-btn-active-border-color: #25cff2;
  2738. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2739. --bs-btn-disabled-color: #000;
  2740. --bs-btn-disabled-bg: #0dcaf0;
  2741. --bs-btn-disabled-border-color: #0dcaf0;
  2742. }
  2743. .btn-warning {
  2744. --bs-btn-color: #000;
  2745. --bs-btn-bg: #ffc107;
  2746. --bs-btn-border-color: #ffc107;
  2747. --bs-btn-hover-color: #000;
  2748. --bs-btn-hover-bg: #ffca2c;
  2749. --bs-btn-hover-border-color: #ffc720;
  2750. --bs-btn-focus-shadow-rgb: 217, 164, 6;
  2751. --bs-btn-active-color: #000;
  2752. --bs-btn-active-bg: #ffcd39;
  2753. --bs-btn-active-border-color: #ffc720;
  2754. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2755. --bs-btn-disabled-color: #000;
  2756. --bs-btn-disabled-bg: #ffc107;
  2757. --bs-btn-disabled-border-color: #ffc107;
  2758. }
  2759. .btn-danger {
  2760. --bs-btn-color: #fff;
  2761. --bs-btn-bg: #dc3545;
  2762. --bs-btn-border-color: #dc3545;
  2763. --bs-btn-hover-color: #fff;
  2764. --bs-btn-hover-bg: #bb2d3b;
  2765. --bs-btn-hover-border-color: #b02a37;
  2766. --bs-btn-focus-shadow-rgb: 225, 83, 97;
  2767. --bs-btn-active-color: #fff;
  2768. --bs-btn-active-bg: #b02a37;
  2769. --bs-btn-active-border-color: #a52834;
  2770. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2771. --bs-btn-disabled-color: #fff;
  2772. --bs-btn-disabled-bg: #dc3545;
  2773. --bs-btn-disabled-border-color: #dc3545;
  2774. }
  2775. .btn-light {
  2776. --bs-btn-color: #000;
  2777. --bs-btn-bg: #f8f9fa;
  2778. --bs-btn-border-color: #f8f9fa;
  2779. --bs-btn-hover-color: #000;
  2780. --bs-btn-hover-bg: #d3d4d5;
  2781. --bs-btn-hover-border-color: #c6c7c8;
  2782. --bs-btn-focus-shadow-rgb: 211, 212, 213;
  2783. --bs-btn-active-color: #000;
  2784. --bs-btn-active-bg: #c6c7c8;
  2785. --bs-btn-active-border-color: #babbbc;
  2786. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2787. --bs-btn-disabled-color: #000;
  2788. --bs-btn-disabled-bg: #f8f9fa;
  2789. --bs-btn-disabled-border-color: #f8f9fa;
  2790. }
  2791. .btn-dark {
  2792. --bs-btn-color: #fff;
  2793. --bs-btn-bg: #212529;
  2794. --bs-btn-border-color: #212529;
  2795. --bs-btn-hover-color: #fff;
  2796. --bs-btn-hover-bg: #424649;
  2797. --bs-btn-hover-border-color: #373b3e;
  2798. --bs-btn-focus-shadow-rgb: 66, 70, 73;
  2799. --bs-btn-active-color: #fff;
  2800. --bs-btn-active-bg: #4d5154;
  2801. --bs-btn-active-border-color: #373b3e;
  2802. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2803. --bs-btn-disabled-color: #fff;
  2804. --bs-btn-disabled-bg: #212529;
  2805. --bs-btn-disabled-border-color: #212529;
  2806. }
  2807. .btn-outline-primary {
  2808. --bs-btn-color: #0d6efd;
  2809. --bs-btn-border-color: #0d6efd;
  2810. --bs-btn-hover-color: #fff;
  2811. --bs-btn-hover-bg: #0d6efd;
  2812. --bs-btn-hover-border-color: #0d6efd;
  2813. --bs-btn-focus-shadow-rgb: 13, 110, 253;
  2814. --bs-btn-active-color: #fff;
  2815. --bs-btn-active-bg: #0d6efd;
  2816. --bs-btn-active-border-color: #0d6efd;
  2817. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2818. --bs-btn-disabled-color: #0d6efd;
  2819. --bs-btn-disabled-bg: transparent;
  2820. --bs-btn-disabled-border-color: #0d6efd;
  2821. --bs-gradient: none;
  2822. }
  2823. .btn-outline-secondary {
  2824. --bs-btn-color: #6c757d;
  2825. --bs-btn-border-color: #6c757d;
  2826. --bs-btn-hover-color: #fff;
  2827. --bs-btn-hover-bg: #6c757d;
  2828. --bs-btn-hover-border-color: #6c757d;
  2829. --bs-btn-focus-shadow-rgb: 108, 117, 125;
  2830. --bs-btn-active-color: #fff;
  2831. --bs-btn-active-bg: #6c757d;
  2832. --bs-btn-active-border-color: #6c757d;
  2833. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2834. --bs-btn-disabled-color: #6c757d;
  2835. --bs-btn-disabled-bg: transparent;
  2836. --bs-btn-disabled-border-color: #6c757d;
  2837. --bs-gradient: none;
  2838. }
  2839. .btn-outline-success {
  2840. --bs-btn-color: #198754;
  2841. --bs-btn-border-color: #198754;
  2842. --bs-btn-hover-color: #fff;
  2843. --bs-btn-hover-bg: #198754;
  2844. --bs-btn-hover-border-color: #198754;
  2845. --bs-btn-focus-shadow-rgb: 25, 135, 84;
  2846. --bs-btn-active-color: #fff;
  2847. --bs-btn-active-bg: #198754;
  2848. --bs-btn-active-border-color: #198754;
  2849. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2850. --bs-btn-disabled-color: #198754;
  2851. --bs-btn-disabled-bg: transparent;
  2852. --bs-btn-disabled-border-color: #198754;
  2853. --bs-gradient: none;
  2854. }
  2855. .btn-outline-info {
  2856. --bs-btn-color: #0dcaf0;
  2857. --bs-btn-border-color: #0dcaf0;
  2858. --bs-btn-hover-color: #000;
  2859. --bs-btn-hover-bg: #0dcaf0;
  2860. --bs-btn-hover-border-color: #0dcaf0;
  2861. --bs-btn-focus-shadow-rgb: 13, 202, 240;
  2862. --bs-btn-active-color: #000;
  2863. --bs-btn-active-bg: #0dcaf0;
  2864. --bs-btn-active-border-color: #0dcaf0;
  2865. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2866. --bs-btn-disabled-color: #0dcaf0;
  2867. --bs-btn-disabled-bg: transparent;
  2868. --bs-btn-disabled-border-color: #0dcaf0;
  2869. --bs-gradient: none;
  2870. }
  2871. .btn-outline-warning {
  2872. --bs-btn-color: #ffc107;
  2873. --bs-btn-border-color: #ffc107;
  2874. --bs-btn-hover-color: #000;
  2875. --bs-btn-hover-bg: #ffc107;
  2876. --bs-btn-hover-border-color: #ffc107;
  2877. --bs-btn-focus-shadow-rgb: 255, 193, 7;
  2878. --bs-btn-active-color: #000;
  2879. --bs-btn-active-bg: #ffc107;
  2880. --bs-btn-active-border-color: #ffc107;
  2881. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2882. --bs-btn-disabled-color: #ffc107;
  2883. --bs-btn-disabled-bg: transparent;
  2884. --bs-btn-disabled-border-color: #ffc107;
  2885. --bs-gradient: none;
  2886. }
  2887. .btn-outline-danger {
  2888. --bs-btn-color: #dc3545;
  2889. --bs-btn-border-color: #dc3545;
  2890. --bs-btn-hover-color: #fff;
  2891. --bs-btn-hover-bg: #dc3545;
  2892. --bs-btn-hover-border-color: #dc3545;
  2893. --bs-btn-focus-shadow-rgb: 220, 53, 69;
  2894. --bs-btn-active-color: #fff;
  2895. --bs-btn-active-bg: #dc3545;
  2896. --bs-btn-active-border-color: #dc3545;
  2897. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2898. --bs-btn-disabled-color: #dc3545;
  2899. --bs-btn-disabled-bg: transparent;
  2900. --bs-btn-disabled-border-color: #dc3545;
  2901. --bs-gradient: none;
  2902. }
  2903. .btn-outline-light {
  2904. --bs-btn-color: #f8f9fa;
  2905. --bs-btn-border-color: #f8f9fa;
  2906. --bs-btn-hover-color: #000;
  2907. --bs-btn-hover-bg: #f8f9fa;
  2908. --bs-btn-hover-border-color: #f8f9fa;
  2909. --bs-btn-focus-shadow-rgb: 248, 249, 250;
  2910. --bs-btn-active-color: #000;
  2911. --bs-btn-active-bg: #f8f9fa;
  2912. --bs-btn-active-border-color: #f8f9fa;
  2913. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2914. --bs-btn-disabled-color: #f8f9fa;
  2915. --bs-btn-disabled-bg: transparent;
  2916. --bs-btn-disabled-border-color: #f8f9fa;
  2917. --bs-gradient: none;
  2918. }
  2919. .btn-outline-dark {
  2920. --bs-btn-color: #212529;
  2921. --bs-btn-border-color: #212529;
  2922. --bs-btn-hover-color: #fff;
  2923. --bs-btn-hover-bg: #212529;
  2924. --bs-btn-hover-border-color: #212529;
  2925. --bs-btn-focus-shadow-rgb: 33, 37, 41;
  2926. --bs-btn-active-color: #fff;
  2927. --bs-btn-active-bg: #212529;
  2928. --bs-btn-active-border-color: #212529;
  2929. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2930. --bs-btn-disabled-color: #212529;
  2931. --bs-btn-disabled-bg: transparent;
  2932. --bs-btn-disabled-border-color: #212529;
  2933. --bs-gradient: none;
  2934. }
  2935. .btn-link {
  2936. --bs-btn-font-weight: 400;
  2937. --bs-btn-color: var(--bs-link-color);
  2938. --bs-btn-bg: transparent;
  2939. --bs-btn-border-color: transparent;
  2940. --bs-btn-hover-color: var(--bs-link-hover-color);
  2941. --bs-btn-hover-border-color: transparent;
  2942. --bs-btn-active-color: var(--bs-link-hover-color);
  2943. --bs-btn-active-border-color: transparent;
  2944. --bs-btn-disabled-color: #6c757d;
  2945. --bs-btn-disabled-border-color: transparent;
  2946. --bs-btn-box-shadow: none;
  2947. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  2948. text-decoration: underline;
  2949. }
  2950. .btn-link:focus-visible {
  2951. color: var(--bs-btn-color);
  2952. }
  2953. .btn-link:hover {
  2954. color: var(--bs-btn-hover-color);
  2955. }
  2956. .btn-lg, .btn-group-lg > .btn {
  2957. --bs-btn-padding-y: 0.5rem;
  2958. --bs-btn-padding-x: 1rem;
  2959. --bs-btn-font-size: 1.25rem;
  2960. --bs-btn-border-radius: 0.5rem;
  2961. }
  2962. .btn-sm, .btn-group-sm > .btn {
  2963. --bs-btn-padding-y: 0.25rem;
  2964. --bs-btn-padding-x: 0.5rem;
  2965. --bs-btn-font-size: 0.875rem;
  2966. --bs-btn-border-radius: 0.25rem;
  2967. }
  2968. .fade {
  2969. transition: opacity 0.15s linear;
  2970. }
  2971. @media (prefers-reduced-motion: reduce) {
  2972. .fade {
  2973. transition: none;
  2974. }
  2975. }
  2976. .fade:not(.show) {
  2977. opacity: 0;
  2978. }
  2979. .collapse:not(.show) {
  2980. display: none;
  2981. }
  2982. .collapsing {
  2983. height: 0;
  2984. overflow: hidden;
  2985. transition: height 0.35s ease;
  2986. }
  2987. @media (prefers-reduced-motion: reduce) {
  2988. .collapsing {
  2989. transition: none;
  2990. }
  2991. }
  2992. .collapsing.collapse-horizontal {
  2993. width: 0;
  2994. height: auto;
  2995. transition: width 0.35s ease;
  2996. }
  2997. @media (prefers-reduced-motion: reduce) {
  2998. .collapsing.collapse-horizontal {
  2999. transition: none;
  3000. }
  3001. }
  3002. .dropup,
  3003. .dropend,
  3004. .dropdown,
  3005. .dropstart,
  3006. .dropup-center,
  3007. .dropdown-center {
  3008. position: relative;
  3009. }
  3010. .dropdown-toggle {
  3011. white-space: nowrap;
  3012. }
  3013. .dropdown-toggle::after {
  3014. display: inline-block;
  3015. margin-left: 0.255em;
  3016. vertical-align: 0.255em;
  3017. content: "";
  3018. border-top: 0.3em solid;
  3019. border-right: 0.3em solid transparent;
  3020. border-bottom: 0;
  3021. border-left: 0.3em solid transparent;
  3022. }
  3023. .dropdown-toggle:empty::after {
  3024. margin-left: 0;
  3025. }
  3026. .dropdown-menu {
  3027. --bs-dropdown-zindex: 1000;
  3028. --bs-dropdown-min-width: 10rem;
  3029. --bs-dropdown-padding-x: 0;
  3030. --bs-dropdown-padding-y: 0.5rem;
  3031. --bs-dropdown-spacer: 0.125rem;
  3032. --bs-dropdown-font-size: 1rem;
  3033. --bs-dropdown-color: #212529;
  3034. --bs-dropdown-bg: #fff;
  3035. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3036. --bs-dropdown-border-radius: 0.375rem;
  3037. --bs-dropdown-border-width: 1px;
  3038. --bs-dropdown-inner-border-radius: calc(0.375rem - 1px);
  3039. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3040. --bs-dropdown-divider-margin-y: 0.5rem;
  3041. --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  3042. --bs-dropdown-link-color: #212529;
  3043. --bs-dropdown-link-hover-color: #1e2125;
  3044. --bs-dropdown-link-hover-bg: #e9ecef;
  3045. --bs-dropdown-link-active-color: #fff;
  3046. --bs-dropdown-link-active-bg: #0d6efd;
  3047. --bs-dropdown-link-disabled-color: #adb5bd;
  3048. --bs-dropdown-item-padding-x: 1rem;
  3049. --bs-dropdown-item-padding-y: 0.25rem;
  3050. --bs-dropdown-header-color: #6c757d;
  3051. --bs-dropdown-header-padding-x: 1rem;
  3052. --bs-dropdown-header-padding-y: 0.5rem;
  3053. position: absolute;
  3054. z-index: var(--bs-dropdown-zindex);
  3055. display: none;
  3056. min-width: var(--bs-dropdown-min-width);
  3057. padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  3058. margin: 0;
  3059. font-size: var(--bs-dropdown-font-size);
  3060. color: var(--bs-dropdown-color);
  3061. text-align: left;
  3062. list-style: none;
  3063. background-color: var(--bs-dropdown-bg);
  3064. background-clip: padding-box;
  3065. border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  3066. border-radius: var(--bs-dropdown-border-radius);
  3067. }
  3068. .dropdown-menu[data-bs-popper] {
  3069. top: 100%;
  3070. left: 0;
  3071. margin-top: var(--bs-dropdown-spacer);
  3072. }
  3073. .dropdown-menu-start {
  3074. --bs-position: start;
  3075. }
  3076. .dropdown-menu-start[data-bs-popper] {
  3077. right: auto;
  3078. left: 0;
  3079. }
  3080. .dropdown-menu-end {
  3081. --bs-position: end;
  3082. }
  3083. .dropdown-menu-end[data-bs-popper] {
  3084. right: 0;
  3085. left: auto;
  3086. }
  3087. @media (min-width: 576px) {
  3088. .dropdown-menu-sm-start {
  3089. --bs-position: start;
  3090. }
  3091. .dropdown-menu-sm-start[data-bs-popper] {
  3092. right: auto;
  3093. left: 0;
  3094. }
  3095. .dropdown-menu-sm-end {
  3096. --bs-position: end;
  3097. }
  3098. .dropdown-menu-sm-end[data-bs-popper] {
  3099. right: 0;
  3100. left: auto;
  3101. }
  3102. }
  3103. @media (min-width: 768px) {
  3104. .dropdown-menu-md-start {
  3105. --bs-position: start;
  3106. }
  3107. .dropdown-menu-md-start[data-bs-popper] {
  3108. right: auto;
  3109. left: 0;
  3110. }
  3111. .dropdown-menu-md-end {
  3112. --bs-position: end;
  3113. }
  3114. .dropdown-menu-md-end[data-bs-popper] {
  3115. right: 0;
  3116. left: auto;
  3117. }
  3118. }
  3119. @media (min-width: 992px) {
  3120. .dropdown-menu-lg-start {
  3121. --bs-position: start;
  3122. }
  3123. .dropdown-menu-lg-start[data-bs-popper] {
  3124. right: auto;
  3125. left: 0;
  3126. }
  3127. .dropdown-menu-lg-end {
  3128. --bs-position: end;
  3129. }
  3130. .dropdown-menu-lg-end[data-bs-popper] {
  3131. right: 0;
  3132. left: auto;
  3133. }
  3134. }
  3135. @media (min-width: 1200px) {
  3136. .dropdown-menu-xl-start {
  3137. --bs-position: start;
  3138. }
  3139. .dropdown-menu-xl-start[data-bs-popper] {
  3140. right: auto;
  3141. left: 0;
  3142. }
  3143. .dropdown-menu-xl-end {
  3144. --bs-position: end;
  3145. }
  3146. .dropdown-menu-xl-end[data-bs-popper] {
  3147. right: 0;
  3148. left: auto;
  3149. }
  3150. }
  3151. @media (min-width: 1400px) {
  3152. .dropdown-menu-xxl-start {
  3153. --bs-position: start;
  3154. }
  3155. .dropdown-menu-xxl-start[data-bs-popper] {
  3156. right: auto;
  3157. left: 0;
  3158. }
  3159. .dropdown-menu-xxl-end {
  3160. --bs-position: end;
  3161. }
  3162. .dropdown-menu-xxl-end[data-bs-popper] {
  3163. right: 0;
  3164. left: auto;
  3165. }
  3166. }
  3167. .dropup .dropdown-menu[data-bs-popper] {
  3168. top: auto;
  3169. bottom: 100%;
  3170. margin-top: 0;
  3171. margin-bottom: var(--bs-dropdown-spacer);
  3172. }
  3173. .dropup .dropdown-toggle::after {
  3174. display: inline-block;
  3175. margin-left: 0.255em;
  3176. vertical-align: 0.255em;
  3177. content: "";
  3178. border-top: 0;
  3179. border-right: 0.3em solid transparent;
  3180. border-bottom: 0.3em solid;
  3181. border-left: 0.3em solid transparent;
  3182. }
  3183. .dropup .dropdown-toggle:empty::after {
  3184. margin-left: 0;
  3185. }
  3186. .dropend .dropdown-menu[data-bs-popper] {
  3187. top: 0;
  3188. right: auto;
  3189. left: 100%;
  3190. margin-top: 0;
  3191. margin-left: var(--bs-dropdown-spacer);
  3192. }
  3193. .dropend .dropdown-toggle::after {
  3194. display: inline-block;
  3195. margin-left: 0.255em;
  3196. vertical-align: 0.255em;
  3197. content: "";
  3198. border-top: 0.3em solid transparent;
  3199. border-right: 0;
  3200. border-bottom: 0.3em solid transparent;
  3201. border-left: 0.3em solid;
  3202. }
  3203. .dropend .dropdown-toggle:empty::after {
  3204. margin-left: 0;
  3205. }
  3206. .dropend .dropdown-toggle::after {
  3207. vertical-align: 0;
  3208. }
  3209. .dropstart .dropdown-menu[data-bs-popper] {
  3210. top: 0;
  3211. right: 100%;
  3212. left: auto;
  3213. margin-top: 0;
  3214. margin-right: var(--bs-dropdown-spacer);
  3215. }
  3216. .dropstart .dropdown-toggle::after {
  3217. display: inline-block;
  3218. margin-left: 0.255em;
  3219. vertical-align: 0.255em;
  3220. content: "";
  3221. }
  3222. .dropstart .dropdown-toggle::after {
  3223. display: none;
  3224. }
  3225. .dropstart .dropdown-toggle::before {
  3226. display: inline-block;
  3227. margin-right: 0.255em;
  3228. vertical-align: 0.255em;
  3229. content: "";
  3230. border-top: 0.3em solid transparent;
  3231. border-right: 0.3em solid;
  3232. border-bottom: 0.3em solid transparent;
  3233. }
  3234. .dropstart .dropdown-toggle:empty::after {
  3235. margin-left: 0;
  3236. }
  3237. .dropstart .dropdown-toggle::before {
  3238. vertical-align: 0;
  3239. }
  3240. .dropdown-divider {
  3241. height: 0;
  3242. margin: var(--bs-dropdown-divider-margin-y) 0;
  3243. overflow: hidden;
  3244. border-top: 1px solid var(--bs-dropdown-divider-bg);
  3245. opacity: 1;
  3246. }
  3247. .dropdown-item {
  3248. display: block;
  3249. width: 100%;
  3250. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3251. clear: both;
  3252. font-weight: 400;
  3253. color: var(--bs-dropdown-link-color);
  3254. text-align: inherit;
  3255. text-decoration: none;
  3256. white-space: nowrap;
  3257. background-color: transparent;
  3258. border: 0;
  3259. }
  3260. .dropdown-item:hover, .dropdown-item:focus {
  3261. color: var(--bs-dropdown-link-hover-color);
  3262. background-color: var(--bs-dropdown-link-hover-bg);
  3263. }
  3264. .dropdown-item.active, .dropdown-item:active {
  3265. color: var(--bs-dropdown-link-active-color);
  3266. text-decoration: none;
  3267. background-color: var(--bs-dropdown-link-active-bg);
  3268. }
  3269. .dropdown-item.disabled, .dropdown-item:disabled {
  3270. color: var(--bs-dropdown-link-disabled-color);
  3271. pointer-events: none;
  3272. background-color: transparent;
  3273. }
  3274. .dropdown-menu.show {
  3275. display: block;
  3276. }
  3277. .dropdown-header {
  3278. display: block;
  3279. padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  3280. margin-bottom: 0;
  3281. font-size: 0.875rem;
  3282. color: var(--bs-dropdown-header-color);
  3283. white-space: nowrap;
  3284. }
  3285. .dropdown-item-text {
  3286. display: block;
  3287. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3288. color: var(--bs-dropdown-link-color);
  3289. }
  3290. .dropdown-menu-dark {
  3291. --bs-dropdown-color: #dee2e6;
  3292. --bs-dropdown-bg: #343a40;
  3293. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3294. --bs-dropdown-box-shadow: ;
  3295. --bs-dropdown-link-color: #dee2e6;
  3296. --bs-dropdown-link-hover-color: #fff;
  3297. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3298. --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  3299. --bs-dropdown-link-active-color: #fff;
  3300. --bs-dropdown-link-active-bg: #0d6efd;
  3301. --bs-dropdown-link-disabled-color: #adb5bd;
  3302. --bs-dropdown-header-color: #adb5bd;
  3303. }
  3304. .btn-group,
  3305. .btn-group-vertical {
  3306. position: relative;
  3307. display: inline-flex;
  3308. vertical-align: middle;
  3309. }
  3310. .btn-group > .btn,
  3311. .btn-group-vertical > .btn {
  3312. position: relative;
  3313. flex: 1 1 auto;
  3314. }
  3315. .btn-group > .btn-check:checked + .btn,
  3316. .btn-group > .btn-check:focus + .btn,
  3317. .btn-group > .btn:hover,
  3318. .btn-group > .btn:focus,
  3319. .btn-group > .btn:active,
  3320. .btn-group > .btn.active,
  3321. .btn-group-vertical > .btn-check:checked + .btn,
  3322. .btn-group-vertical > .btn-check:focus + .btn,
  3323. .btn-group-vertical > .btn:hover,
  3324. .btn-group-vertical > .btn:focus,
  3325. .btn-group-vertical > .btn:active,
  3326. .btn-group-vertical > .btn.active {
  3327. z-index: 1;
  3328. }
  3329. .btn-toolbar {
  3330. display: flex;
  3331. flex-wrap: wrap;
  3332. justify-content: flex-start;
  3333. }
  3334. .btn-toolbar .input-group {
  3335. width: auto;
  3336. }
  3337. .btn-group {
  3338. border-radius: 0.375rem;
  3339. }
  3340. .btn-group > :not(.btn-check:first-child) + .btn,
  3341. .btn-group > .btn-group:not(:first-child) {
  3342. margin-left: -1px;
  3343. }
  3344. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  3345. .btn-group > .btn.dropdown-toggle-split:first-child,
  3346. .btn-group > .btn-group:not(:last-child) > .btn {
  3347. border-top-right-radius: 0;
  3348. border-bottom-right-radius: 0;
  3349. }
  3350. .btn-group > .btn:nth-child(n+3),
  3351. .btn-group > :not(.btn-check) + .btn,
  3352. .btn-group > .btn-group:not(:first-child) > .btn {
  3353. border-top-left-radius: 0;
  3354. border-bottom-left-radius: 0;
  3355. }
  3356. .dropdown-toggle-split {
  3357. padding-right: 0.5625rem;
  3358. padding-left: 0.5625rem;
  3359. }
  3360. .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  3361. margin-left: 0;
  3362. }
  3363. .dropstart .dropdown-toggle-split::before {
  3364. margin-right: 0;
  3365. }
  3366. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  3367. padding-right: 0.375rem;
  3368. padding-left: 0.375rem;
  3369. }
  3370. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  3371. padding-right: 0.75rem;
  3372. padding-left: 0.75rem;
  3373. }
  3374. .btn-group-vertical {
  3375. flex-direction: column;
  3376. align-items: flex-start;
  3377. justify-content: center;
  3378. }
  3379. .btn-group-vertical > .btn,
  3380. .btn-group-vertical > .btn-group {
  3381. width: 100%;
  3382. }
  3383. .btn-group-vertical > .btn:not(:first-child),
  3384. .btn-group-vertical > .btn-group:not(:first-child) {
  3385. margin-top: -1px;
  3386. }
  3387. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  3388. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  3389. border-bottom-right-radius: 0;
  3390. border-bottom-left-radius: 0;
  3391. }
  3392. .btn-group-vertical > .btn ~ .btn,
  3393. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  3394. border-top-left-radius: 0;
  3395. border-top-right-radius: 0;
  3396. }
  3397. .nav {
  3398. --bs-nav-link-padding-x: 1rem;
  3399. --bs-nav-link-padding-y: 0.5rem;
  3400. --bs-nav-link-font-weight: ;
  3401. --bs-nav-link-color: var(--bs-link-color);
  3402. --bs-nav-link-hover-color: var(--bs-link-hover-color);
  3403. --bs-nav-link-disabled-color: #6c757d;
  3404. display: flex;
  3405. flex-wrap: wrap;
  3406. padding-left: 0;
  3407. margin-bottom: 0;
  3408. list-style: none;
  3409. }
  3410. .nav-link {
  3411. display: block;
  3412. padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  3413. font-size: var(--bs-nav-link-font-size);
  3414. font-weight: var(--bs-nav-link-font-weight);
  3415. color: var(--bs-nav-link-color);
  3416. text-decoration: none;
  3417. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  3418. }
  3419. @media (prefers-reduced-motion: reduce) {
  3420. .nav-link {
  3421. transition: none;
  3422. }
  3423. }
  3424. .nav-link:hover, .nav-link:focus {
  3425. color: var(--bs-nav-link-hover-color);
  3426. }
  3427. .nav-link.disabled {
  3428. color: var(--bs-nav-link-disabled-color);
  3429. pointer-events: none;
  3430. cursor: default;
  3431. }
  3432. .nav-tabs {
  3433. --bs-nav-tabs-border-width: 1px;
  3434. --bs-nav-tabs-border-color: #dee2e6;
  3435. --bs-nav-tabs-border-radius: 0.375rem;
  3436. --bs-nav-tabs-link-hover-border-color: #e9ecef #e9ecef #dee2e6;
  3437. --bs-nav-tabs-link-active-color: #495057;
  3438. --bs-nav-tabs-link-active-bg: #fff;
  3439. --bs-nav-tabs-link-active-border-color: #dee2e6 #dee2e6 #fff;
  3440. border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
  3441. }
  3442. .nav-tabs .nav-link {
  3443. margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  3444. background: none;
  3445. border: var(--bs-nav-tabs-border-width) solid transparent;
  3446. border-top-left-radius: var(--bs-nav-tabs-border-radius);
  3447. border-top-right-radius: var(--bs-nav-tabs-border-radius);
  3448. }
  3449. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  3450. isolation: isolate;
  3451. border-color: var(--bs-nav-tabs-link-hover-border-color);
  3452. }
  3453. .nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
  3454. color: var(--bs-nav-link-disabled-color);
  3455. background-color: transparent;
  3456. border-color: transparent;
  3457. }
  3458. .nav-tabs .nav-link.active,
  3459. .nav-tabs .nav-item.show .nav-link {
  3460. color: var(--bs-nav-tabs-link-active-color);
  3461. background-color: var(--bs-nav-tabs-link-active-bg);
  3462. border-color: var(--bs-nav-tabs-link-active-border-color);
  3463. }
  3464. .nav-tabs .dropdown-menu {
  3465. margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  3466. border-top-left-radius: 0;
  3467. border-top-right-radius: 0;
  3468. }
  3469. .nav-pills {
  3470. --bs-nav-pills-border-radius: 0.375rem;
  3471. --bs-nav-pills-link-active-color: #fff;
  3472. --bs-nav-pills-link-active-bg: #0d6efd;
  3473. }
  3474. .nav-pills .nav-link {
  3475. background: none;
  3476. border: 0;
  3477. border-radius: var(--bs-nav-pills-border-radius);
  3478. }
  3479. .nav-pills .nav-link:disabled {
  3480. color: var(--bs-nav-link-disabled-color);
  3481. background-color: transparent;
  3482. border-color: transparent;
  3483. }
  3484. .nav-pills .nav-link.active,
  3485. .nav-pills .show > .nav-link {
  3486. color: var(--bs-nav-pills-link-active-color);
  3487. background-color: var(--bs-nav-pills-link-active-bg);
  3488. }
  3489. .nav-fill > .nav-link,
  3490. .nav-fill .nav-item {
  3491. flex: 1 1 auto;
  3492. text-align: center;
  3493. }
  3494. .nav-justified > .nav-link,
  3495. .nav-justified .nav-item {
  3496. flex-basis: 0;
  3497. flex-grow: 1;
  3498. text-align: center;
  3499. }
  3500. .nav-fill .nav-item .nav-link,
  3501. .nav-justified .nav-item .nav-link {
  3502. width: 100%;
  3503. }
  3504. .tab-content > .tab-pane {
  3505. display: none;
  3506. }
  3507. .tab-content > .active {
  3508. display: block;
  3509. }
  3510. .navbar {
  3511. --bs-navbar-padding-x: 0;
  3512. --bs-navbar-padding-y: 0.5rem;
  3513. --bs-navbar-color: rgba(0, 0, 0, 0.55);
  3514. --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
  3515. --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
  3516. --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
  3517. --bs-navbar-brand-padding-y: 0.3125rem;
  3518. --bs-navbar-brand-margin-end: 1rem;
  3519. --bs-navbar-brand-font-size: 1.25rem;
  3520. --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
  3521. --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  3522. --bs-navbar-nav-link-padding-x: 0.5rem;
  3523. --bs-navbar-toggler-padding-y: 0.25rem;
  3524. --bs-navbar-toggler-padding-x: 0.75rem;
  3525. --bs-navbar-toggler-font-size: 1.25rem;
  3526. --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");
  3527. --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
  3528. --bs-navbar-toggler-border-radius: 0.375rem;
  3529. --bs-navbar-toggler-focus-width: 0.25rem;
  3530. --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  3531. position: relative;
  3532. display: flex;
  3533. flex-wrap: wrap;
  3534. align-items: center;
  3535. justify-content: space-between;
  3536. padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
  3537. }
  3538. .navbar > .container,
  3539. .navbar > .container-fluid,
  3540. .navbar > .container-sm,
  3541. .navbar > .container-md,
  3542. .navbar > .container-lg,
  3543. .navbar > .container-xl,
  3544. .navbar > .container-xxl {
  3545. display: flex;
  3546. flex-wrap: inherit;
  3547. align-items: center;
  3548. justify-content: space-between;
  3549. }
  3550. .navbar-brand {
  3551. padding-top: var(--bs-navbar-brand-padding-y);
  3552. padding-bottom: var(--bs-navbar-brand-padding-y);
  3553. margin-right: var(--bs-navbar-brand-margin-end);
  3554. font-size: var(--bs-navbar-brand-font-size);
  3555. color: var(--bs-navbar-brand-color);
  3556. text-decoration: none;
  3557. white-space: nowrap;
  3558. }
  3559. .navbar-brand:hover, .navbar-brand:focus {
  3560. color: var(--bs-navbar-brand-hover-color);
  3561. }
  3562. .navbar-nav {
  3563. --bs-nav-link-padding-x: 0;
  3564. --bs-nav-link-padding-y: 0.5rem;
  3565. --bs-nav-link-font-weight: ;
  3566. --bs-nav-link-color: var(--bs-navbar-color);
  3567. --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  3568. --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  3569. display: flex;
  3570. flex-direction: column;
  3571. padding-left: 0;
  3572. margin-bottom: 0;
  3573. list-style: none;
  3574. }
  3575. .navbar-nav .show > .nav-link,
  3576. .navbar-nav .nav-link.active {
  3577. color: var(--bs-navbar-active-color);
  3578. }
  3579. .navbar-nav .dropdown-menu {
  3580. position: static;
  3581. }
  3582. .navbar-text {
  3583. padding-top: 0.5rem;
  3584. padding-bottom: 0.5rem;
  3585. color: var(--bs-navbar-color);
  3586. }
  3587. .navbar-text a,
  3588. .navbar-text a:hover,
  3589. .navbar-text a:focus {
  3590. color: var(--bs-navbar-active-color);
  3591. }
  3592. .navbar-collapse {
  3593. flex-basis: 100%;
  3594. flex-grow: 1;
  3595. align-items: center;
  3596. }
  3597. .navbar-toggler {
  3598. padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  3599. font-size: var(--bs-navbar-toggler-font-size);
  3600. line-height: 1;
  3601. color: var(--bs-navbar-color);
  3602. background-color: transparent;
  3603. border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  3604. border-radius: var(--bs-navbar-toggler-border-radius);
  3605. transition: var(--bs-navbar-toggler-transition);
  3606. }
  3607. @media (prefers-reduced-motion: reduce) {
  3608. .navbar-toggler {
  3609. transition: none;
  3610. }
  3611. }
  3612. .navbar-toggler:hover {
  3613. text-decoration: none;
  3614. }
  3615. .navbar-toggler:focus {
  3616. text-decoration: none;
  3617. outline: 0;
  3618. box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
  3619. }
  3620. .navbar-toggler-icon {
  3621. display: inline-block;
  3622. width: 1.5em;
  3623. height: 1.5em;
  3624. vertical-align: middle;
  3625. background-image: var(--bs-navbar-toggler-icon-bg);
  3626. background-repeat: no-repeat;
  3627. background-position: center;
  3628. background-size: 100%;
  3629. }
  3630. .navbar-nav-scroll {
  3631. max-height: var(--bs-scroll-height, 75vh);
  3632. overflow-y: auto;
  3633. }
  3634. @media (min-width: 576px) {
  3635. .navbar-expand-sm {
  3636. flex-wrap: nowrap;
  3637. justify-content: flex-start;
  3638. }
  3639. .navbar-expand-sm .navbar-nav {
  3640. flex-direction: row;
  3641. }
  3642. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3643. position: absolute;
  3644. }
  3645. .navbar-expand-sm .navbar-nav .nav-link {
  3646. padding-right: var(--bs-navbar-nav-link-padding-x);
  3647. padding-left: var(--bs-navbar-nav-link-padding-x);
  3648. }
  3649. .navbar-expand-sm .navbar-nav-scroll {
  3650. overflow: visible;
  3651. }
  3652. .navbar-expand-sm .navbar-collapse {
  3653. display: flex !important;
  3654. flex-basis: auto;
  3655. }
  3656. .navbar-expand-sm .navbar-toggler {
  3657. display: none;
  3658. }
  3659. .navbar-expand-sm .offcanvas {
  3660. position: static;
  3661. z-index: auto;
  3662. flex-grow: 1;
  3663. width: auto !important;
  3664. height: auto !important;
  3665. visibility: visible !important;
  3666. background-color: transparent !important;
  3667. border: 0 !important;
  3668. transform: none !important;
  3669. transition: none;
  3670. }
  3671. .navbar-expand-sm .offcanvas .offcanvas-header {
  3672. display: none;
  3673. }
  3674. .navbar-expand-sm .offcanvas .offcanvas-body {
  3675. display: flex;
  3676. flex-grow: 0;
  3677. padding: 0;
  3678. overflow-y: visible;
  3679. }
  3680. }
  3681. @media (min-width: 768px) {
  3682. .navbar-expand-md {
  3683. flex-wrap: nowrap;
  3684. justify-content: flex-start;
  3685. }
  3686. .navbar-expand-md .navbar-nav {
  3687. flex-direction: row;
  3688. }
  3689. .navbar-expand-md .navbar-nav .dropdown-menu {
  3690. position: absolute;
  3691. }
  3692. .navbar-expand-md .navbar-nav .nav-link {
  3693. padding-right: var(--bs-navbar-nav-link-padding-x);
  3694. padding-left: var(--bs-navbar-nav-link-padding-x);
  3695. }
  3696. .navbar-expand-md .navbar-nav-scroll {
  3697. overflow: visible;
  3698. }
  3699. .navbar-expand-md .navbar-collapse {
  3700. display: flex !important;
  3701. flex-basis: auto;
  3702. }
  3703. .navbar-expand-md .navbar-toggler {
  3704. display: none;
  3705. }
  3706. .navbar-expand-md .offcanvas {
  3707. position: static;
  3708. z-index: auto;
  3709. flex-grow: 1;
  3710. width: auto !important;
  3711. height: auto !important;
  3712. visibility: visible !important;
  3713. background-color: transparent !important;
  3714. border: 0 !important;
  3715. transform: none !important;
  3716. transition: none;
  3717. }
  3718. .navbar-expand-md .offcanvas .offcanvas-header {
  3719. display: none;
  3720. }
  3721. .navbar-expand-md .offcanvas .offcanvas-body {
  3722. display: flex;
  3723. flex-grow: 0;
  3724. padding: 0;
  3725. overflow-y: visible;
  3726. }
  3727. }
  3728. @media (min-width: 992px) {
  3729. .navbar-expand-lg {
  3730. flex-wrap: nowrap;
  3731. justify-content: flex-start;
  3732. }
  3733. .navbar-expand-lg .navbar-nav {
  3734. flex-direction: row;
  3735. }
  3736. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3737. position: absolute;
  3738. }
  3739. .navbar-expand-lg .navbar-nav .nav-link {
  3740. padding-right: var(--bs-navbar-nav-link-padding-x);
  3741. padding-left: var(--bs-navbar-nav-link-padding-x);
  3742. }
  3743. .navbar-expand-lg .navbar-nav-scroll {
  3744. overflow: visible;
  3745. }
  3746. .navbar-expand-lg .navbar-collapse {
  3747. display: flex !important;
  3748. flex-basis: auto;
  3749. }
  3750. .navbar-expand-lg .navbar-toggler {
  3751. display: none;
  3752. }
  3753. .navbar-expand-lg .offcanvas {
  3754. position: static;
  3755. z-index: auto;
  3756. flex-grow: 1;
  3757. width: auto !important;
  3758. height: auto !important;
  3759. visibility: visible !important;
  3760. background-color: transparent !important;
  3761. border: 0 !important;
  3762. transform: none !important;
  3763. transition: none;
  3764. }
  3765. .navbar-expand-lg .offcanvas .offcanvas-header {
  3766. display: none;
  3767. }
  3768. .navbar-expand-lg .offcanvas .offcanvas-body {
  3769. display: flex;
  3770. flex-grow: 0;
  3771. padding: 0;
  3772. overflow-y: visible;
  3773. }
  3774. }
  3775. @media (min-width: 1200px) {
  3776. .navbar-expand-xl {
  3777. flex-wrap: nowrap;
  3778. justify-content: flex-start;
  3779. }
  3780. .navbar-expand-xl .navbar-nav {
  3781. flex-direction: row;
  3782. }
  3783. .navbar-expand-xl .navbar-nav .dropdown-menu {
  3784. position: absolute;
  3785. }
  3786. .navbar-expand-xl .navbar-nav .nav-link {
  3787. padding-right: var(--bs-navbar-nav-link-padding-x);
  3788. padding-left: var(--bs-navbar-nav-link-padding-x);
  3789. }
  3790. .navbar-expand-xl .navbar-nav-scroll {
  3791. overflow: visible;
  3792. }
  3793. .navbar-expand-xl .navbar-collapse {
  3794. display: flex !important;
  3795. flex-basis: auto;
  3796. }
  3797. .navbar-expand-xl .navbar-toggler {
  3798. display: none;
  3799. }
  3800. .navbar-expand-xl .offcanvas {
  3801. position: static;
  3802. z-index: auto;
  3803. flex-grow: 1;
  3804. width: auto !important;
  3805. height: auto !important;
  3806. visibility: visible !important;
  3807. background-color: transparent !important;
  3808. border: 0 !important;
  3809. transform: none !important;
  3810. transition: none;
  3811. }
  3812. .navbar-expand-xl .offcanvas .offcanvas-header {
  3813. display: none;
  3814. }
  3815. .navbar-expand-xl .offcanvas .offcanvas-body {
  3816. display: flex;
  3817. flex-grow: 0;
  3818. padding: 0;
  3819. overflow-y: visible;
  3820. }
  3821. }
  3822. @media (min-width: 1400px) {
  3823. .navbar-expand-xxl {
  3824. flex-wrap: nowrap;
  3825. justify-content: flex-start;
  3826. }
  3827. .navbar-expand-xxl .navbar-nav {
  3828. flex-direction: row;
  3829. }
  3830. .navbar-expand-xxl .navbar-nav .dropdown-menu {
  3831. position: absolute;
  3832. }
  3833. .navbar-expand-xxl .navbar-nav .nav-link {
  3834. padding-right: var(--bs-navbar-nav-link-padding-x);
  3835. padding-left: var(--bs-navbar-nav-link-padding-x);
  3836. }
  3837. .navbar-expand-xxl .navbar-nav-scroll {
  3838. overflow: visible;
  3839. }
  3840. .navbar-expand-xxl .navbar-collapse {
  3841. display: flex !important;
  3842. flex-basis: auto;
  3843. }
  3844. .navbar-expand-xxl .navbar-toggler {
  3845. display: none;
  3846. }
  3847. .navbar-expand-xxl .offcanvas {
  3848. position: static;
  3849. z-index: auto;
  3850. flex-grow: 1;
  3851. width: auto !important;
  3852. height: auto !important;
  3853. visibility: visible !important;
  3854. background-color: transparent !important;
  3855. border: 0 !important;
  3856. transform: none !important;
  3857. transition: none;
  3858. }
  3859. .navbar-expand-xxl .offcanvas .offcanvas-header {
  3860. display: none;
  3861. }
  3862. .navbar-expand-xxl .offcanvas .offcanvas-body {
  3863. display: flex;
  3864. flex-grow: 0;
  3865. padding: 0;
  3866. overflow-y: visible;
  3867. }
  3868. }
  3869. .navbar-expand {
  3870. flex-wrap: nowrap;
  3871. justify-content: flex-start;
  3872. }
  3873. .navbar-expand .navbar-nav {
  3874. flex-direction: row;
  3875. }
  3876. .navbar-expand .navbar-nav .dropdown-menu {
  3877. position: absolute;
  3878. }
  3879. .navbar-expand .navbar-nav .nav-link {
  3880. padding-right: var(--bs-navbar-nav-link-padding-x);
  3881. padding-left: var(--bs-navbar-nav-link-padding-x);
  3882. }
  3883. .navbar-expand .navbar-nav-scroll {
  3884. overflow: visible;
  3885. }
  3886. .navbar-expand .navbar-collapse {
  3887. display: flex !important;
  3888. flex-basis: auto;
  3889. }
  3890. .navbar-expand .navbar-toggler {
  3891. display: none;
  3892. }
  3893. .navbar-expand .offcanvas {
  3894. position: static;
  3895. z-index: auto;
  3896. flex-grow: 1;
  3897. width: auto !important;
  3898. height: auto !important;
  3899. visibility: visible !important;
  3900. background-color: transparent !important;
  3901. border: 0 !important;
  3902. transform: none !important;
  3903. transition: none;
  3904. }
  3905. .navbar-expand .offcanvas .offcanvas-header {
  3906. display: none;
  3907. }
  3908. .navbar-expand .offcanvas .offcanvas-body {
  3909. display: flex;
  3910. flex-grow: 0;
  3911. padding: 0;
  3912. overflow-y: visible;
  3913. }
  3914. .navbar-dark {
  3915. --bs-navbar-color: rgba(255, 255, 255, 0.55);
  3916. --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  3917. --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  3918. --bs-navbar-active-color: #fff;
  3919. --bs-navbar-brand-color: #fff;
  3920. --bs-navbar-brand-hover-color: #fff;
  3921. --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  3922. --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");
  3923. }
  3924. .card {
  3925. --bs-card-spacer-y: 1rem;
  3926. --bs-card-spacer-x: 1rem;
  3927. --bs-card-title-spacer-y: 0.5rem;
  3928. --bs-card-border-width: 1px;
  3929. --bs-card-border-color: var(--bs-border-color-translucent);
  3930. --bs-card-border-radius: 0.375rem;
  3931. --bs-card-box-shadow: ;
  3932. --bs-card-inner-border-radius: calc(0.375rem - 1px);
  3933. --bs-card-cap-padding-y: 0.5rem;
  3934. --bs-card-cap-padding-x: 1rem;
  3935. --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  3936. --bs-card-cap-color: ;
  3937. --bs-card-height: ;
  3938. --bs-card-color: ;
  3939. --bs-card-bg: #fff;
  3940. --bs-card-img-overlay-padding: 1rem;
  3941. --bs-card-group-margin: 0.75rem;
  3942. position: relative;
  3943. display: flex;
  3944. flex-direction: column;
  3945. min-width: 0;
  3946. height: var(--bs-card-height);
  3947. word-wrap: break-word;
  3948. background-color: var(--bs-card-bg);
  3949. background-clip: border-box;
  3950. border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  3951. border-radius: var(--bs-card-border-radius);
  3952. }
  3953. .card > hr {
  3954. margin-right: 0;
  3955. margin-left: 0;
  3956. }
  3957. .card > .list-group {
  3958. border-top: inherit;
  3959. border-bottom: inherit;
  3960. }
  3961. .card > .list-group:first-child {
  3962. border-top-width: 0;
  3963. border-top-left-radius: var(--bs-card-inner-border-radius);
  3964. border-top-right-radius: var(--bs-card-inner-border-radius);
  3965. }
  3966. .card > .list-group:last-child {
  3967. border-bottom-width: 0;
  3968. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  3969. border-bottom-left-radius: var(--bs-card-inner-border-radius);
  3970. }
  3971. .card > .card-header + .list-group,
  3972. .card > .list-group + .card-footer {
  3973. border-top: 0;
  3974. }
  3975. .card-body {
  3976. flex: 1 1 auto;
  3977. padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  3978. color: var(--bs-card-color);
  3979. }
  3980. .card-title {
  3981. margin-bottom: var(--bs-card-title-spacer-y);
  3982. }
  3983. .card-subtitle {
  3984. margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  3985. margin-bottom: 0;
  3986. }
  3987. .card-text:last-child {
  3988. margin-bottom: 0;
  3989. }
  3990. .card-link + .card-link {
  3991. margin-left: var(--bs-card-spacer-x);
  3992. }
  3993. .card-header {
  3994. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  3995. margin-bottom: 0;
  3996. color: var(--bs-card-cap-color);
  3997. background-color: var(--bs-card-cap-bg);
  3998. border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
  3999. }
  4000. .card-header:first-child {
  4001. border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
  4002. }
  4003. .card-footer {
  4004. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  4005. color: var(--bs-card-cap-color);
  4006. background-color: var(--bs-card-cap-bg);
  4007. border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4008. }
  4009. .card-footer:last-child {
  4010. border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
  4011. }
  4012. .card-header-tabs {
  4013. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4014. margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  4015. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4016. border-bottom: 0;
  4017. }
  4018. .card-header-tabs .nav-link.active {
  4019. background-color: var(--bs-card-bg);
  4020. border-bottom-color: var(--bs-card-bg);
  4021. }
  4022. .card-header-pills {
  4023. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4024. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4025. }
  4026. .card-img-overlay {
  4027. position: absolute;
  4028. top: 0;
  4029. right: 0;
  4030. bottom: 0;
  4031. left: 0;
  4032. padding: var(--bs-card-img-overlay-padding);
  4033. border-radius: var(--bs-card-inner-border-radius);
  4034. }
  4035. .card-img,
  4036. .card-img-top,
  4037. .card-img-bottom {
  4038. width: 100%;
  4039. }
  4040. .card-img,
  4041. .card-img-top {
  4042. border-top-left-radius: var(--bs-card-inner-border-radius);
  4043. border-top-right-radius: var(--bs-card-inner-border-radius);
  4044. }
  4045. .card-img,
  4046. .card-img-bottom {
  4047. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  4048. border-bottom-left-radius: var(--bs-card-inner-border-radius);
  4049. }
  4050. .card-group > .card {
  4051. margin-bottom: var(--bs-card-group-margin);
  4052. }
  4053. @media (min-width: 576px) {
  4054. .card-group {
  4055. display: flex;
  4056. flex-flow: row wrap;
  4057. }
  4058. .card-group > .card {
  4059. flex: 1 0 0%;
  4060. margin-bottom: 0;
  4061. }
  4062. .card-group > .card + .card {
  4063. margin-left: 0;
  4064. border-left: 0;
  4065. }
  4066. .card-group > .card:not(:last-child) {
  4067. border-top-right-radius: 0;
  4068. border-bottom-right-radius: 0;
  4069. }
  4070. .card-group > .card:not(:last-child) .card-img-top,
  4071. .card-group > .card:not(:last-child) .card-header {
  4072. border-top-right-radius: 0;
  4073. }
  4074. .card-group > .card:not(:last-child) .card-img-bottom,
  4075. .card-group > .card:not(:last-child) .card-footer {
  4076. border-bottom-right-radius: 0;
  4077. }
  4078. .card-group > .card:not(:first-child) {
  4079. border-top-left-radius: 0;
  4080. border-bottom-left-radius: 0;
  4081. }
  4082. .card-group > .card:not(:first-child) .card-img-top,
  4083. .card-group > .card:not(:first-child) .card-header {
  4084. border-top-left-radius: 0;
  4085. }
  4086. .card-group > .card:not(:first-child) .card-img-bottom,
  4087. .card-group > .card:not(:first-child) .card-footer {
  4088. border-bottom-left-radius: 0;
  4089. }
  4090. }
  4091. .accordion {
  4092. --bs-accordion-color: #212529;
  4093. --bs-accordion-bg: #fff;
  4094. --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;
  4095. --bs-accordion-border-color: var(--bs-border-color);
  4096. --bs-accordion-border-width: 1px;
  4097. --bs-accordion-border-radius: 0.375rem;
  4098. --bs-accordion-inner-border-radius: calc(0.375rem - 1px);
  4099. --bs-accordion-btn-padding-x: 1.25rem;
  4100. --bs-accordion-btn-padding-y: 1rem;
  4101. --bs-accordion-btn-color: #212529;
  4102. --bs-accordion-btn-bg: var(--bs-accordion-bg);
  4103. --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");
  4104. --bs-accordion-btn-icon-width: 1.25rem;
  4105. --bs-accordion-btn-icon-transform: rotate(-180deg);
  4106. --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  4107. --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");
  4108. --bs-accordion-btn-focus-border-color: #86b7fe;
  4109. --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4110. --bs-accordion-body-padding-x: 1.25rem;
  4111. --bs-accordion-body-padding-y: 1rem;
  4112. --bs-accordion-active-color: #0c63e4;
  4113. --bs-accordion-active-bg: #e7f1ff;
  4114. }
  4115. .accordion-button {
  4116. position: relative;
  4117. display: flex;
  4118. align-items: center;
  4119. width: 100%;
  4120. padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  4121. font-size: 1rem;
  4122. color: var(--bs-accordion-btn-color);
  4123. text-align: left;
  4124. background-color: var(--bs-accordion-btn-bg);
  4125. border: 0;
  4126. border-radius: 0;
  4127. overflow-anchor: none;
  4128. transition: var(--bs-accordion-transition);
  4129. }
  4130. @media (prefers-reduced-motion: reduce) {
  4131. .accordion-button {
  4132. transition: none;
  4133. }
  4134. }
  4135. .accordion-button:not(.collapsed) {
  4136. color: var(--bs-accordion-active-color);
  4137. background-color: var(--bs-accordion-active-bg);
  4138. box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  4139. }
  4140. .accordion-button:not(.collapsed)::after {
  4141. background-image: var(--bs-accordion-btn-active-icon);
  4142. transform: var(--bs-accordion-btn-icon-transform);
  4143. }
  4144. .accordion-button::after {
  4145. flex-shrink: 0;
  4146. width: var(--bs-accordion-btn-icon-width);
  4147. height: var(--bs-accordion-btn-icon-width);
  4148. margin-left: auto;
  4149. content: "";
  4150. background-image: var(--bs-accordion-btn-icon);
  4151. background-repeat: no-repeat;
  4152. background-size: var(--bs-accordion-btn-icon-width);
  4153. transition: var(--bs-accordion-btn-icon-transition);
  4154. }
  4155. @media (prefers-reduced-motion: reduce) {
  4156. .accordion-button::after {
  4157. transition: none;
  4158. }
  4159. }
  4160. .accordion-button:hover {
  4161. z-index: 2;
  4162. }
  4163. .accordion-button:focus {
  4164. z-index: 3;
  4165. border-color: var(--bs-accordion-btn-focus-border-color);
  4166. outline: 0;
  4167. box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  4168. }
  4169. .accordion-header {
  4170. margin-bottom: 0;
  4171. }
  4172. .accordion-item {
  4173. color: var(--bs-accordion-color);
  4174. background-color: var(--bs-accordion-bg);
  4175. border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
  4176. }
  4177. .accordion-item:first-of-type {
  4178. border-top-left-radius: var(--bs-accordion-border-radius);
  4179. border-top-right-radius: var(--bs-accordion-border-radius);
  4180. }
  4181. .accordion-item:first-of-type .accordion-button {
  4182. border-top-left-radius: var(--bs-accordion-inner-border-radius);
  4183. border-top-right-radius: var(--bs-accordion-inner-border-radius);
  4184. }
  4185. .accordion-item:not(:first-of-type) {
  4186. border-top: 0;
  4187. }
  4188. .accordion-item:last-of-type {
  4189. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4190. border-bottom-left-radius: var(--bs-accordion-border-radius);
  4191. }
  4192. .accordion-item:last-of-type .accordion-button.collapsed {
  4193. border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  4194. border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
  4195. }
  4196. .accordion-item:last-of-type .accordion-collapse {
  4197. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4198. border-bottom-left-radius: var(--bs-accordion-border-radius);
  4199. }
  4200. .accordion-body {
  4201. padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  4202. }
  4203. .accordion-flush .accordion-collapse {
  4204. border-width: 0;
  4205. }
  4206. .accordion-flush .accordion-item {
  4207. border-right: 0;
  4208. border-left: 0;
  4209. border-radius: 0;
  4210. }
  4211. .accordion-flush .accordion-item:first-child {
  4212. border-top: 0;
  4213. }
  4214. .accordion-flush .accordion-item:last-child {
  4215. border-bottom: 0;
  4216. }
  4217. .accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
  4218. border-radius: 0;
  4219. }
  4220. .breadcrumb {
  4221. --bs-breadcrumb-padding-x: 0;
  4222. --bs-breadcrumb-padding-y: 0;
  4223. --bs-breadcrumb-margin-bottom: 1rem;
  4224. --bs-breadcrumb-bg: ;
  4225. --bs-breadcrumb-border-radius: ;
  4226. --bs-breadcrumb-divider-color: #6c757d;
  4227. --bs-breadcrumb-item-padding-x: 0.5rem;
  4228. --bs-breadcrumb-item-active-color: #6c757d;
  4229. display: flex;
  4230. flex-wrap: wrap;
  4231. padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  4232. margin-bottom: var(--bs-breadcrumb-margin-bottom);
  4233. font-size: var(--bs-breadcrumb-font-size);
  4234. list-style: none;
  4235. background-color: var(--bs-breadcrumb-bg);
  4236. border-radius: var(--bs-breadcrumb-border-radius);
  4237. }
  4238. .breadcrumb-item + .breadcrumb-item {
  4239. padding-left: var(--bs-breadcrumb-item-padding-x);
  4240. }
  4241. .breadcrumb-item + .breadcrumb-item::before {
  4242. float: left;
  4243. padding-right: var(--bs-breadcrumb-item-padding-x);
  4244. color: var(--bs-breadcrumb-divider-color);
  4245. content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
  4246. }
  4247. .breadcrumb-item.active {
  4248. color: var(--bs-breadcrumb-item-active-color);
  4249. }
  4250. .pagination, .datatable-pagination ul {
  4251. --bs-pagination-padding-x: 0.75rem;
  4252. --bs-pagination-padding-y: 0.375rem;
  4253. --bs-pagination-font-size: 1rem;
  4254. --bs-pagination-color: var(--bs-link-color);
  4255. --bs-pagination-bg: #fff;
  4256. --bs-pagination-border-width: 1px;
  4257. --bs-pagination-border-color: #dee2e6;
  4258. --bs-pagination-border-radius: 0.375rem;
  4259. --bs-pagination-hover-color: var(--bs-link-hover-color);
  4260. --bs-pagination-hover-bg: #e9ecef;
  4261. --bs-pagination-hover-border-color: #dee2e6;
  4262. --bs-pagination-focus-color: var(--bs-link-hover-color);
  4263. --bs-pagination-focus-bg: #e9ecef;
  4264. --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4265. --bs-pagination-active-color: #fff;
  4266. --bs-pagination-active-bg: #0d6efd;
  4267. --bs-pagination-active-border-color: #0d6efd;
  4268. --bs-pagination-disabled-color: #6c757d;
  4269. --bs-pagination-disabled-bg: #fff;
  4270. --bs-pagination-disabled-border-color: #dee2e6;
  4271. display: flex;
  4272. padding-left: 0;
  4273. list-style: none;
  4274. }
  4275. .page-link, .datatable-pagination a {
  4276. position: relative;
  4277. display: block;
  4278. padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  4279. font-size: var(--bs-pagination-font-size);
  4280. color: var(--bs-pagination-color);
  4281. text-decoration: none;
  4282. background-color: var(--bs-pagination-bg);
  4283. border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  4284. 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;
  4285. }
  4286. @media (prefers-reduced-motion: reduce) {
  4287. .page-link, .datatable-pagination a {
  4288. transition: none;
  4289. }
  4290. }
  4291. .page-link:hover, .datatable-pagination a:hover {
  4292. z-index: 2;
  4293. color: var(--bs-pagination-hover-color);
  4294. background-color: var(--bs-pagination-hover-bg);
  4295. border-color: var(--bs-pagination-hover-border-color);
  4296. }
  4297. .page-link:focus, .datatable-pagination a:focus {
  4298. z-index: 3;
  4299. color: var(--bs-pagination-focus-color);
  4300. background-color: var(--bs-pagination-focus-bg);
  4301. outline: 0;
  4302. box-shadow: var(--bs-pagination-focus-box-shadow);
  4303. }
  4304. .page-link.active, .datatable-pagination a.active, .active > .page-link, .datatable-pagination .active > a {
  4305. z-index: 3;
  4306. color: var(--bs-pagination-active-color);
  4307. background-color: var(--bs-pagination-active-bg);
  4308. border-color: var(--bs-pagination-active-border-color);
  4309. }
  4310. .page-link.disabled, .datatable-pagination a.disabled, .disabled > .page-link, .datatable-pagination .disabled > a {
  4311. color: var(--bs-pagination-disabled-color);
  4312. pointer-events: none;
  4313. background-color: var(--bs-pagination-disabled-bg);
  4314. border-color: var(--bs-pagination-disabled-border-color);
  4315. }
  4316. .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 {
  4317. margin-left: -1px;
  4318. }
  4319. .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 {
  4320. border-top-left-radius: var(--bs-pagination-border-radius);
  4321. border-bottom-left-radius: var(--bs-pagination-border-radius);
  4322. }
  4323. .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 {
  4324. border-top-right-radius: var(--bs-pagination-border-radius);
  4325. border-bottom-right-radius: var(--bs-pagination-border-radius);
  4326. }
  4327. .pagination-lg {
  4328. --bs-pagination-padding-x: 1.5rem;
  4329. --bs-pagination-padding-y: 0.75rem;
  4330. --bs-pagination-font-size: 1.25rem;
  4331. --bs-pagination-border-radius: 0.5rem;
  4332. }
  4333. .pagination-sm {
  4334. --bs-pagination-padding-x: 0.5rem;
  4335. --bs-pagination-padding-y: 0.25rem;
  4336. --bs-pagination-font-size: 0.875rem;
  4337. --bs-pagination-border-radius: 0.25rem;
  4338. }
  4339. .badge {
  4340. --bs-badge-padding-x: 0.65em;
  4341. --bs-badge-padding-y: 0.35em;
  4342. --bs-badge-font-size: 0.75em;
  4343. --bs-badge-font-weight: 700;
  4344. --bs-badge-color: #fff;
  4345. --bs-badge-border-radius: 0.375rem;
  4346. display: inline-block;
  4347. padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  4348. font-size: var(--bs-badge-font-size);
  4349. font-weight: var(--bs-badge-font-weight);
  4350. line-height: 1;
  4351. color: var(--bs-badge-color);
  4352. text-align: center;
  4353. white-space: nowrap;
  4354. vertical-align: baseline;
  4355. border-radius: var(--bs-badge-border-radius);
  4356. }
  4357. .badge:empty {
  4358. display: none;
  4359. }
  4360. .btn .badge {
  4361. position: relative;
  4362. top: -1px;
  4363. }
  4364. .alert {
  4365. --bs-alert-bg: transparent;
  4366. --bs-alert-padding-x: 1rem;
  4367. --bs-alert-padding-y: 1rem;
  4368. --bs-alert-margin-bottom: 1rem;
  4369. --bs-alert-color: inherit;
  4370. --bs-alert-border-color: transparent;
  4371. --bs-alert-border: 1px solid var(--bs-alert-border-color);
  4372. --bs-alert-border-radius: 0.375rem;
  4373. position: relative;
  4374. padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  4375. margin-bottom: var(--bs-alert-margin-bottom);
  4376. color: var(--bs-alert-color);
  4377. background-color: var(--bs-alert-bg);
  4378. border: var(--bs-alert-border);
  4379. border-radius: var(--bs-alert-border-radius);
  4380. }
  4381. .alert-heading {
  4382. color: inherit;
  4383. }
  4384. .alert-link {
  4385. font-weight: 700;
  4386. }
  4387. .alert-dismissible {
  4388. padding-right: 3rem;
  4389. }
  4390. .alert-dismissible .btn-close {
  4391. position: absolute;
  4392. top: 0;
  4393. right: 0;
  4394. z-index: 2;
  4395. padding: 1.25rem 1rem;
  4396. }
  4397. .alert-primary {
  4398. --bs-alert-color: #084298;
  4399. --bs-alert-bg: #cfe2ff;
  4400. --bs-alert-border-color: #b6d4fe;
  4401. }
  4402. .alert-primary .alert-link {
  4403. color: #06357a;
  4404. }
  4405. .alert-secondary {
  4406. --bs-alert-color: #41464b;
  4407. --bs-alert-bg: #e2e3e5;
  4408. --bs-alert-border-color: #d3d6d8;
  4409. }
  4410. .alert-secondary .alert-link {
  4411. color: #34383c;
  4412. }
  4413. .alert-success {
  4414. --bs-alert-color: #0f5132;
  4415. --bs-alert-bg: #d1e7dd;
  4416. --bs-alert-border-color: #badbcc;
  4417. }
  4418. .alert-success .alert-link {
  4419. color: #0c4128;
  4420. }
  4421. .alert-info {
  4422. --bs-alert-color: #055160;
  4423. --bs-alert-bg: #cff4fc;
  4424. --bs-alert-border-color: #b6effb;
  4425. }
  4426. .alert-info .alert-link {
  4427. color: #04414d;
  4428. }
  4429. .alert-warning {
  4430. --bs-alert-color: #664d03;
  4431. --bs-alert-bg: #fff3cd;
  4432. --bs-alert-border-color: #ffecb5;
  4433. }
  4434. .alert-warning .alert-link {
  4435. color: #523e02;
  4436. }
  4437. .alert-danger {
  4438. --bs-alert-color: #842029;
  4439. --bs-alert-bg: #f8d7da;
  4440. --bs-alert-border-color: #f5c2c7;
  4441. }
  4442. .alert-danger .alert-link {
  4443. color: #6a1a21;
  4444. }
  4445. .alert-light {
  4446. --bs-alert-color: #636464;
  4447. --bs-alert-bg: #fefefe;
  4448. --bs-alert-border-color: #fdfdfe;
  4449. }
  4450. .alert-light .alert-link {
  4451. color: #4f5050;
  4452. }
  4453. .alert-dark {
  4454. --bs-alert-color: #141619;
  4455. --bs-alert-bg: #d3d3d4;
  4456. --bs-alert-border-color: #bcbebf;
  4457. }
  4458. .alert-dark .alert-link {
  4459. color: #101214;
  4460. }
  4461. @keyframes progress-bar-stripes {
  4462. 0% {
  4463. background-position-x: 1rem;
  4464. }
  4465. }
  4466. .progress {
  4467. --bs-progress-height: 1rem;
  4468. --bs-progress-font-size: 0.75rem;
  4469. --bs-progress-bg: #e9ecef;
  4470. --bs-progress-border-radius: 0.375rem;
  4471. --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  4472. --bs-progress-bar-color: #fff;
  4473. --bs-progress-bar-bg: #0d6efd;
  4474. --bs-progress-bar-transition: width 0.6s ease;
  4475. display: flex;
  4476. height: var(--bs-progress-height);
  4477. overflow: hidden;
  4478. font-size: var(--bs-progress-font-size);
  4479. background-color: var(--bs-progress-bg);
  4480. border-radius: var(--bs-progress-border-radius);
  4481. }
  4482. .progress-bar {
  4483. display: flex;
  4484. flex-direction: column;
  4485. justify-content: center;
  4486. overflow: hidden;
  4487. color: var(--bs-progress-bar-color);
  4488. text-align: center;
  4489. white-space: nowrap;
  4490. background-color: var(--bs-progress-bar-bg);
  4491. transition: var(--bs-progress-bar-transition);
  4492. }
  4493. @media (prefers-reduced-motion: reduce) {
  4494. .progress-bar {
  4495. transition: none;
  4496. }
  4497. }
  4498. .progress-bar-striped {
  4499. 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);
  4500. background-size: var(--bs-progress-height) var(--bs-progress-height);
  4501. }
  4502. .progress-bar-animated {
  4503. animation: 1s linear infinite progress-bar-stripes;
  4504. }
  4505. @media (prefers-reduced-motion: reduce) {
  4506. .progress-bar-animated {
  4507. animation: none;
  4508. }
  4509. }
  4510. .list-group {
  4511. --bs-list-group-color: #212529;
  4512. --bs-list-group-bg: #fff;
  4513. --bs-list-group-border-color: rgba(0, 0, 0, 0.125);
  4514. --bs-list-group-border-width: 1px;
  4515. --bs-list-group-border-radius: 0.375rem;
  4516. --bs-list-group-item-padding-x: 1rem;
  4517. --bs-list-group-item-padding-y: 0.5rem;
  4518. --bs-list-group-action-color: #495057;
  4519. --bs-list-group-action-hover-color: #495057;
  4520. --bs-list-group-action-hover-bg: #f8f9fa;
  4521. --bs-list-group-action-active-color: #212529;
  4522. --bs-list-group-action-active-bg: #e9ecef;
  4523. --bs-list-group-disabled-color: #6c757d;
  4524. --bs-list-group-disabled-bg: #fff;
  4525. --bs-list-group-active-color: #fff;
  4526. --bs-list-group-active-bg: #0d6efd;
  4527. --bs-list-group-active-border-color: #0d6efd;
  4528. display: flex;
  4529. flex-direction: column;
  4530. padding-left: 0;
  4531. margin-bottom: 0;
  4532. border-radius: var(--bs-list-group-border-radius);
  4533. }
  4534. .list-group-numbered {
  4535. list-style-type: none;
  4536. counter-reset: section;
  4537. }
  4538. .list-group-numbered > .list-group-item::before {
  4539. content: counters(section, ".") ". ";
  4540. counter-increment: section;
  4541. }
  4542. .list-group-item-action {
  4543. width: 100%;
  4544. color: var(--bs-list-group-action-color);
  4545. text-align: inherit;
  4546. }
  4547. .list-group-item-action:hover, .list-group-item-action:focus {
  4548. z-index: 1;
  4549. color: var(--bs-list-group-action-hover-color);
  4550. text-decoration: none;
  4551. background-color: var(--bs-list-group-action-hover-bg);
  4552. }
  4553. .list-group-item-action:active {
  4554. color: var(--bs-list-group-action-active-color);
  4555. background-color: var(--bs-list-group-action-active-bg);
  4556. }
  4557. .list-group-item {
  4558. position: relative;
  4559. display: block;
  4560. padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  4561. color: var(--bs-list-group-color);
  4562. text-decoration: none;
  4563. background-color: var(--bs-list-group-bg);
  4564. border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
  4565. }
  4566. .list-group-item:first-child {
  4567. border-top-left-radius: inherit;
  4568. border-top-right-radius: inherit;
  4569. }
  4570. .list-group-item:last-child {
  4571. border-bottom-right-radius: inherit;
  4572. border-bottom-left-radius: inherit;
  4573. }
  4574. .list-group-item.disabled, .list-group-item:disabled {
  4575. color: var(--bs-list-group-disabled-color);
  4576. pointer-events: none;
  4577. background-color: var(--bs-list-group-disabled-bg);
  4578. }
  4579. .list-group-item.active {
  4580. z-index: 2;
  4581. color: var(--bs-list-group-active-color);
  4582. background-color: var(--bs-list-group-active-bg);
  4583. border-color: var(--bs-list-group-active-border-color);
  4584. }
  4585. .list-group-item + .list-group-item {
  4586. border-top-width: 0;
  4587. }
  4588. .list-group-item + .list-group-item.active {
  4589. margin-top: calc(-1 * var(--bs-list-group-border-width));
  4590. border-top-width: var(--bs-list-group-border-width);
  4591. }
  4592. .list-group-horizontal {
  4593. flex-direction: row;
  4594. }
  4595. .list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  4596. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4597. border-top-right-radius: 0;
  4598. }
  4599. .list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  4600. border-top-right-radius: var(--bs-list-group-border-radius);
  4601. border-bottom-left-radius: 0;
  4602. }
  4603. .list-group-horizontal > .list-group-item.active {
  4604. margin-top: 0;
  4605. }
  4606. .list-group-horizontal > .list-group-item + .list-group-item {
  4607. border-top-width: var(--bs-list-group-border-width);
  4608. border-left-width: 0;
  4609. }
  4610. .list-group-horizontal > .list-group-item + .list-group-item.active {
  4611. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4612. border-left-width: var(--bs-list-group-border-width);
  4613. }
  4614. @media (min-width: 576px) {
  4615. .list-group-horizontal-sm {
  4616. flex-direction: row;
  4617. }
  4618. .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
  4619. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4620. border-top-right-radius: 0;
  4621. }
  4622. .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
  4623. border-top-right-radius: var(--bs-list-group-border-radius);
  4624. border-bottom-left-radius: 0;
  4625. }
  4626. .list-group-horizontal-sm > .list-group-item.active {
  4627. margin-top: 0;
  4628. }
  4629. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  4630. border-top-width: var(--bs-list-group-border-width);
  4631. border-left-width: 0;
  4632. }
  4633. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  4634. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4635. border-left-width: var(--bs-list-group-border-width);
  4636. }
  4637. }
  4638. @media (min-width: 768px) {
  4639. .list-group-horizontal-md {
  4640. flex-direction: row;
  4641. }
  4642. .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
  4643. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4644. border-top-right-radius: 0;
  4645. }
  4646. .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
  4647. border-top-right-radius: var(--bs-list-group-border-radius);
  4648. border-bottom-left-radius: 0;
  4649. }
  4650. .list-group-horizontal-md > .list-group-item.active {
  4651. margin-top: 0;
  4652. }
  4653. .list-group-horizontal-md > .list-group-item + .list-group-item {
  4654. border-top-width: var(--bs-list-group-border-width);
  4655. border-left-width: 0;
  4656. }
  4657. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  4658. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4659. border-left-width: var(--bs-list-group-border-width);
  4660. }
  4661. }
  4662. @media (min-width: 992px) {
  4663. .list-group-horizontal-lg {
  4664. flex-direction: row;
  4665. }
  4666. .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
  4667. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4668. border-top-right-radius: 0;
  4669. }
  4670. .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
  4671. border-top-right-radius: var(--bs-list-group-border-radius);
  4672. border-bottom-left-radius: 0;
  4673. }
  4674. .list-group-horizontal-lg > .list-group-item.active {
  4675. margin-top: 0;
  4676. }
  4677. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  4678. border-top-width: var(--bs-list-group-border-width);
  4679. border-left-width: 0;
  4680. }
  4681. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  4682. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4683. border-left-width: var(--bs-list-group-border-width);
  4684. }
  4685. }
  4686. @media (min-width: 1200px) {
  4687. .list-group-horizontal-xl {
  4688. flex-direction: row;
  4689. }
  4690. .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
  4691. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4692. border-top-right-radius: 0;
  4693. }
  4694. .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
  4695. border-top-right-radius: var(--bs-list-group-border-radius);
  4696. border-bottom-left-radius: 0;
  4697. }
  4698. .list-group-horizontal-xl > .list-group-item.active {
  4699. margin-top: 0;
  4700. }
  4701. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  4702. border-top-width: var(--bs-list-group-border-width);
  4703. border-left-width: 0;
  4704. }
  4705. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  4706. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4707. border-left-width: var(--bs-list-group-border-width);
  4708. }
  4709. }
  4710. @media (min-width: 1400px) {
  4711. .list-group-horizontal-xxl {
  4712. flex-direction: row;
  4713. }
  4714. .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
  4715. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4716. border-top-right-radius: 0;
  4717. }
  4718. .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
  4719. border-top-right-radius: var(--bs-list-group-border-radius);
  4720. border-bottom-left-radius: 0;
  4721. }
  4722. .list-group-horizontal-xxl > .list-group-item.active {
  4723. margin-top: 0;
  4724. }
  4725. .list-group-horizontal-xxl > .list-group-item + .list-group-item {
  4726. border-top-width: var(--bs-list-group-border-width);
  4727. border-left-width: 0;
  4728. }
  4729. .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
  4730. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4731. border-left-width: var(--bs-list-group-border-width);
  4732. }
  4733. }
  4734. .list-group-flush {
  4735. border-radius: 0;
  4736. }
  4737. .list-group-flush > .list-group-item {
  4738. border-width: 0 0 var(--bs-list-group-border-width);
  4739. }
  4740. .list-group-flush > .list-group-item:last-child {
  4741. border-bottom-width: 0;
  4742. }
  4743. .list-group-item-primary {
  4744. color: #084298;
  4745. background-color: #cfe2ff;
  4746. }
  4747. .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  4748. color: #084298;
  4749. background-color: #bacbe6;
  4750. }
  4751. .list-group-item-primary.list-group-item-action.active {
  4752. color: #fff;
  4753. background-color: #084298;
  4754. border-color: #084298;
  4755. }
  4756. .list-group-item-secondary {
  4757. color: #41464b;
  4758. background-color: #e2e3e5;
  4759. }
  4760. .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  4761. color: #41464b;
  4762. background-color: #cbccce;
  4763. }
  4764. .list-group-item-secondary.list-group-item-action.active {
  4765. color: #fff;
  4766. background-color: #41464b;
  4767. border-color: #41464b;
  4768. }
  4769. .list-group-item-success {
  4770. color: #0f5132;
  4771. background-color: #d1e7dd;
  4772. }
  4773. .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  4774. color: #0f5132;
  4775. background-color: #bcd0c7;
  4776. }
  4777. .list-group-item-success.list-group-item-action.active {
  4778. color: #fff;
  4779. background-color: #0f5132;
  4780. border-color: #0f5132;
  4781. }
  4782. .list-group-item-info {
  4783. color: #055160;
  4784. background-color: #cff4fc;
  4785. }
  4786. .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  4787. color: #055160;
  4788. background-color: #badce3;
  4789. }
  4790. .list-group-item-info.list-group-item-action.active {
  4791. color: #fff;
  4792. background-color: #055160;
  4793. border-color: #055160;
  4794. }
  4795. .list-group-item-warning {
  4796. color: #664d03;
  4797. background-color: #fff3cd;
  4798. }
  4799. .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  4800. color: #664d03;
  4801. background-color: #e6dbb9;
  4802. }
  4803. .list-group-item-warning.list-group-item-action.active {
  4804. color: #fff;
  4805. background-color: #664d03;
  4806. border-color: #664d03;
  4807. }
  4808. .list-group-item-danger {
  4809. color: #842029;
  4810. background-color: #f8d7da;
  4811. }
  4812. .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  4813. color: #842029;
  4814. background-color: #dfc2c4;
  4815. }
  4816. .list-group-item-danger.list-group-item-action.active {
  4817. color: #fff;
  4818. background-color: #842029;
  4819. border-color: #842029;
  4820. }
  4821. .list-group-item-light {
  4822. color: #636464;
  4823. background-color: #fefefe;
  4824. }
  4825. .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  4826. color: #636464;
  4827. background-color: #e5e5e5;
  4828. }
  4829. .list-group-item-light.list-group-item-action.active {
  4830. color: #fff;
  4831. background-color: #636464;
  4832. border-color: #636464;
  4833. }
  4834. .list-group-item-dark {
  4835. color: #141619;
  4836. background-color: #d3d3d4;
  4837. }
  4838. .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  4839. color: #141619;
  4840. background-color: #bebebf;
  4841. }
  4842. .list-group-item-dark.list-group-item-action.active {
  4843. color: #fff;
  4844. background-color: #141619;
  4845. border-color: #141619;
  4846. }
  4847. .btn-close {
  4848. box-sizing: content-box;
  4849. width: 1em;
  4850. height: 1em;
  4851. padding: 0.25em 0.25em;
  4852. color: #000;
  4853. 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;
  4854. border: 0;
  4855. border-radius: 0.375rem;
  4856. opacity: 0.5;
  4857. }
  4858. .btn-close:hover {
  4859. color: #000;
  4860. text-decoration: none;
  4861. opacity: 0.75;
  4862. }
  4863. .btn-close:focus {
  4864. outline: 0;
  4865. box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4866. opacity: 1;
  4867. }
  4868. .btn-close:disabled, .btn-close.disabled {
  4869. pointer-events: none;
  4870. -webkit-user-select: none;
  4871. -moz-user-select: none;
  4872. user-select: none;
  4873. opacity: 0.25;
  4874. }
  4875. .btn-close-white {
  4876. filter: invert(1) grayscale(100%) brightness(200%);
  4877. }
  4878. .toast {
  4879. --bs-toast-zindex: 1090;
  4880. --bs-toast-padding-x: 0.75rem;
  4881. --bs-toast-padding-y: 0.5rem;
  4882. --bs-toast-spacing: 1.5rem;
  4883. --bs-toast-max-width: 350px;
  4884. --bs-toast-font-size: 0.875rem;
  4885. --bs-toast-color: ;
  4886. --bs-toast-bg: rgba(255, 255, 255, 0.85);
  4887. --bs-toast-border-width: 1px;
  4888. --bs-toast-border-color: var(--bs-border-color-translucent);
  4889. --bs-toast-border-radius: 0.375rem;
  4890. --bs-toast-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  4891. --bs-toast-header-color: #6c757d;
  4892. --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
  4893. --bs-toast-header-border-color: rgba(0, 0, 0, 0.05);
  4894. width: var(--bs-toast-max-width);
  4895. max-width: 100%;
  4896. font-size: var(--bs-toast-font-size);
  4897. color: var(--bs-toast-color);
  4898. pointer-events: auto;
  4899. background-color: var(--bs-toast-bg);
  4900. background-clip: padding-box;
  4901. border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  4902. box-shadow: var(--bs-toast-box-shadow);
  4903. border-radius: var(--bs-toast-border-radius);
  4904. }
  4905. .toast.showing {
  4906. opacity: 0;
  4907. }
  4908. .toast:not(.show) {
  4909. display: none;
  4910. }
  4911. .toast-container {
  4912. --bs-toast-zindex: 1090;
  4913. position: absolute;
  4914. z-index: var(--bs-toast-zindex);
  4915. width: -moz-max-content;
  4916. width: max-content;
  4917. max-width: 100%;
  4918. pointer-events: none;
  4919. }
  4920. .toast-container > :not(:last-child) {
  4921. margin-bottom: var(--bs-toast-spacing);
  4922. }
  4923. .toast-header {
  4924. display: flex;
  4925. align-items: center;
  4926. padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  4927. color: var(--bs-toast-header-color);
  4928. background-color: var(--bs-toast-header-bg);
  4929. background-clip: padding-box;
  4930. border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  4931. border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  4932. border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  4933. }
  4934. .toast-header .btn-close {
  4935. margin-right: calc(-0.5 * var(--bs-toast-padding-x));
  4936. margin-left: var(--bs-toast-padding-x);
  4937. }
  4938. .toast-body {
  4939. padding: var(--bs-toast-padding-x);
  4940. word-wrap: break-word;
  4941. }
  4942. .modal {
  4943. --bs-modal-zindex: 1055;
  4944. --bs-modal-width: 500px;
  4945. --bs-modal-padding: 1rem;
  4946. --bs-modal-margin: 0.5rem;
  4947. --bs-modal-color: ;
  4948. --bs-modal-bg: #fff;
  4949. --bs-modal-border-color: var(--bs-border-color-translucent);
  4950. --bs-modal-border-width: 1px;
  4951. --bs-modal-border-radius: 0.5rem;
  4952. --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  4953. --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  4954. --bs-modal-header-padding-x: 1rem;
  4955. --bs-modal-header-padding-y: 1rem;
  4956. --bs-modal-header-padding: 1rem 1rem;
  4957. --bs-modal-header-border-color: var(--bs-border-color);
  4958. --bs-modal-header-border-width: 1px;
  4959. --bs-modal-title-line-height: 1.5;
  4960. --bs-modal-footer-gap: 0.5rem;
  4961. --bs-modal-footer-bg: ;
  4962. --bs-modal-footer-border-color: var(--bs-border-color);
  4963. --bs-modal-footer-border-width: 1px;
  4964. position: fixed;
  4965. top: 0;
  4966. left: 0;
  4967. z-index: var(--bs-modal-zindex);
  4968. display: none;
  4969. width: 100%;
  4970. height: 100%;
  4971. overflow-x: hidden;
  4972. overflow-y: auto;
  4973. outline: 0;
  4974. }
  4975. .modal-dialog {
  4976. position: relative;
  4977. width: auto;
  4978. margin: var(--bs-modal-margin);
  4979. pointer-events: none;
  4980. }
  4981. .modal.fade .modal-dialog {
  4982. transition: transform 0.3s ease-out;
  4983. transform: translate(0, -50px);
  4984. }
  4985. @media (prefers-reduced-motion: reduce) {
  4986. .modal.fade .modal-dialog {
  4987. transition: none;
  4988. }
  4989. }
  4990. .modal.show .modal-dialog {
  4991. transform: none;
  4992. }
  4993. .modal.modal-static .modal-dialog {
  4994. transform: scale(1.02);
  4995. }
  4996. .modal-dialog-scrollable {
  4997. height: calc(100% - var(--bs-modal-margin) * 2);
  4998. }
  4999. .modal-dialog-scrollable .modal-content {
  5000. max-height: 100%;
  5001. overflow: hidden;
  5002. }
  5003. .modal-dialog-scrollable .modal-body {
  5004. overflow-y: auto;
  5005. }
  5006. .modal-dialog-centered {
  5007. display: flex;
  5008. align-items: center;
  5009. min-height: calc(100% - var(--bs-modal-margin) * 2);
  5010. }
  5011. .modal-content {
  5012. position: relative;
  5013. display: flex;
  5014. flex-direction: column;
  5015. width: 100%;
  5016. color: var(--bs-modal-color);
  5017. pointer-events: auto;
  5018. background-color: var(--bs-modal-bg);
  5019. background-clip: padding-box;
  5020. border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  5021. border-radius: var(--bs-modal-border-radius);
  5022. outline: 0;
  5023. }
  5024. .modal-backdrop {
  5025. --bs-backdrop-zindex: 1050;
  5026. --bs-backdrop-bg: #000;
  5027. --bs-backdrop-opacity: 0.5;
  5028. position: fixed;
  5029. top: 0;
  5030. left: 0;
  5031. z-index: var(--bs-backdrop-zindex);
  5032. width: 100vw;
  5033. height: 100vh;
  5034. background-color: var(--bs-backdrop-bg);
  5035. }
  5036. .modal-backdrop.fade {
  5037. opacity: 0;
  5038. }
  5039. .modal-backdrop.show {
  5040. opacity: var(--bs-backdrop-opacity);
  5041. }
  5042. .modal-header {
  5043. display: flex;
  5044. flex-shrink: 0;
  5045. align-items: center;
  5046. justify-content: space-between;
  5047. padding: var(--bs-modal-header-padding);
  5048. border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  5049. border-top-left-radius: var(--bs-modal-inner-border-radius);
  5050. border-top-right-radius: var(--bs-modal-inner-border-radius);
  5051. }
  5052. .modal-header .btn-close {
  5053. padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  5054. 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;
  5055. }
  5056. .modal-title {
  5057. margin-bottom: 0;
  5058. line-height: var(--bs-modal-title-line-height);
  5059. }
  5060. .modal-body {
  5061. position: relative;
  5062. flex: 1 1 auto;
  5063. padding: var(--bs-modal-padding);
  5064. }
  5065. .modal-footer {
  5066. display: flex;
  5067. flex-shrink: 0;
  5068. flex-wrap: wrap;
  5069. align-items: center;
  5070. justify-content: flex-end;
  5071. padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  5072. background-color: var(--bs-modal-footer-bg);
  5073. border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  5074. border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  5075. border-bottom-left-radius: var(--bs-modal-inner-border-radius);
  5076. }
  5077. .modal-footer > * {
  5078. margin: calc(var(--bs-modal-footer-gap) * 0.5);
  5079. }
  5080. @media (min-width: 576px) {
  5081. .modal {
  5082. --bs-modal-margin: 1.75rem;
  5083. --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  5084. }
  5085. .modal-dialog {
  5086. max-width: var(--bs-modal-width);
  5087. margin-right: auto;
  5088. margin-left: auto;
  5089. }
  5090. .modal-sm {
  5091. --bs-modal-width: 300px;
  5092. }
  5093. }
  5094. @media (min-width: 992px) {
  5095. .modal-lg,
  5096. .modal-xl {
  5097. --bs-modal-width: 800px;
  5098. }
  5099. }
  5100. @media (min-width: 1200px) {
  5101. .modal-xl {
  5102. --bs-modal-width: 1140px;
  5103. }
  5104. }
  5105. .modal-fullscreen {
  5106. width: 100vw;
  5107. max-width: none;
  5108. height: 100%;
  5109. margin: 0;
  5110. }
  5111. .modal-fullscreen .modal-content {
  5112. height: 100%;
  5113. border: 0;
  5114. border-radius: 0;
  5115. }
  5116. .modal-fullscreen .modal-header,
  5117. .modal-fullscreen .modal-footer {
  5118. border-radius: 0;
  5119. }
  5120. .modal-fullscreen .modal-body {
  5121. overflow-y: auto;
  5122. }
  5123. @media (max-width: 575.98px) {
  5124. .modal-fullscreen-sm-down {
  5125. width: 100vw;
  5126. max-width: none;
  5127. height: 100%;
  5128. margin: 0;
  5129. }
  5130. .modal-fullscreen-sm-down .modal-content {
  5131. height: 100%;
  5132. border: 0;
  5133. border-radius: 0;
  5134. }
  5135. .modal-fullscreen-sm-down .modal-header,
  5136. .modal-fullscreen-sm-down .modal-footer {
  5137. border-radius: 0;
  5138. }
  5139. .modal-fullscreen-sm-down .modal-body {
  5140. overflow-y: auto;
  5141. }
  5142. }
  5143. @media (max-width: 767.98px) {
  5144. .modal-fullscreen-md-down {
  5145. width: 100vw;
  5146. max-width: none;
  5147. height: 100%;
  5148. margin: 0;
  5149. }
  5150. .modal-fullscreen-md-down .modal-content {
  5151. height: 100%;
  5152. border: 0;
  5153. border-radius: 0;
  5154. }
  5155. .modal-fullscreen-md-down .modal-header,
  5156. .modal-fullscreen-md-down .modal-footer {
  5157. border-radius: 0;
  5158. }
  5159. .modal-fullscreen-md-down .modal-body {
  5160. overflow-y: auto;
  5161. }
  5162. }
  5163. @media (max-width: 991.98px) {
  5164. .modal-fullscreen-lg-down {
  5165. width: 100vw;
  5166. max-width: none;
  5167. height: 100%;
  5168. margin: 0;
  5169. }
  5170. .modal-fullscreen-lg-down .modal-content {
  5171. height: 100%;
  5172. border: 0;
  5173. border-radius: 0;
  5174. }
  5175. .modal-fullscreen-lg-down .modal-header,
  5176. .modal-fullscreen-lg-down .modal-footer {
  5177. border-radius: 0;
  5178. }
  5179. .modal-fullscreen-lg-down .modal-body {
  5180. overflow-y: auto;
  5181. }
  5182. }
  5183. @media (max-width: 1199.98px) {
  5184. .modal-fullscreen-xl-down {
  5185. width: 100vw;
  5186. max-width: none;
  5187. height: 100%;
  5188. margin: 0;
  5189. }
  5190. .modal-fullscreen-xl-down .modal-content {
  5191. height: 100%;
  5192. border: 0;
  5193. border-radius: 0;
  5194. }
  5195. .modal-fullscreen-xl-down .modal-header,
  5196. .modal-fullscreen-xl-down .modal-footer {
  5197. border-radius: 0;
  5198. }
  5199. .modal-fullscreen-xl-down .modal-body {
  5200. overflow-y: auto;
  5201. }
  5202. }
  5203. @media (max-width: 1399.98px) {
  5204. .modal-fullscreen-xxl-down {
  5205. width: 100vw;
  5206. max-width: none;
  5207. height: 100%;
  5208. margin: 0;
  5209. }
  5210. .modal-fullscreen-xxl-down .modal-content {
  5211. height: 100%;
  5212. border: 0;
  5213. border-radius: 0;
  5214. }
  5215. .modal-fullscreen-xxl-down .modal-header,
  5216. .modal-fullscreen-xxl-down .modal-footer {
  5217. border-radius: 0;
  5218. }
  5219. .modal-fullscreen-xxl-down .modal-body {
  5220. overflow-y: auto;
  5221. }
  5222. }
  5223. .tooltip {
  5224. --bs-tooltip-zindex: 1080;
  5225. --bs-tooltip-max-width: 200px;
  5226. --bs-tooltip-padding-x: 0.5rem;
  5227. --bs-tooltip-padding-y: 0.25rem;
  5228. --bs-tooltip-margin: ;
  5229. --bs-tooltip-font-size: 0.875rem;
  5230. --bs-tooltip-color: #fff;
  5231. --bs-tooltip-bg: #000;
  5232. --bs-tooltip-border-radius: 0.375rem;
  5233. --bs-tooltip-opacity: 0.9;
  5234. --bs-tooltip-arrow-width: 0.8rem;
  5235. --bs-tooltip-arrow-height: 0.4rem;
  5236. z-index: var(--bs-tooltip-zindex);
  5237. display: block;
  5238. padding: var(--bs-tooltip-arrow-height);
  5239. margin: var(--bs-tooltip-margin);
  5240. font-family: var(--bs-font-sans-serif);
  5241. font-style: normal;
  5242. font-weight: 400;
  5243. line-height: 1.5;
  5244. text-align: left;
  5245. text-align: start;
  5246. text-decoration: none;
  5247. text-shadow: none;
  5248. text-transform: none;
  5249. letter-spacing: normal;
  5250. word-break: normal;
  5251. white-space: normal;
  5252. word-spacing: normal;
  5253. line-break: auto;
  5254. font-size: var(--bs-tooltip-font-size);
  5255. word-wrap: break-word;
  5256. opacity: 0;
  5257. }
  5258. .tooltip.show {
  5259. opacity: var(--bs-tooltip-opacity);
  5260. }
  5261. .tooltip .tooltip-arrow {
  5262. display: block;
  5263. width: var(--bs-tooltip-arrow-width);
  5264. height: var(--bs-tooltip-arrow-height);
  5265. }
  5266. .tooltip .tooltip-arrow::before {
  5267. position: absolute;
  5268. content: "";
  5269. border-color: transparent;
  5270. border-style: solid;
  5271. }
  5272. .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  5273. bottom: 0;
  5274. }
  5275. .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  5276. top: -1px;
  5277. border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5278. border-top-color: var(--bs-tooltip-bg);
  5279. }
  5280. /* rtl:begin:ignore */
  5281. .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  5282. left: 0;
  5283. width: var(--bs-tooltip-arrow-height);
  5284. height: var(--bs-tooltip-arrow-width);
  5285. }
  5286. .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  5287. right: -1px;
  5288. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5289. border-right-color: var(--bs-tooltip-bg);
  5290. }
  5291. /* rtl:end:ignore */
  5292. .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  5293. top: 0;
  5294. }
  5295. .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  5296. bottom: -1px;
  5297. border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5298. border-bottom-color: var(--bs-tooltip-bg);
  5299. }
  5300. /* rtl:begin:ignore */
  5301. .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  5302. right: 0;
  5303. width: var(--bs-tooltip-arrow-height);
  5304. height: var(--bs-tooltip-arrow-width);
  5305. }
  5306. .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  5307. left: -1px;
  5308. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5309. border-left-color: var(--bs-tooltip-bg);
  5310. }
  5311. /* rtl:end:ignore */
  5312. .tooltip-inner {
  5313. max-width: var(--bs-tooltip-max-width);
  5314. padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  5315. color: var(--bs-tooltip-color);
  5316. text-align: center;
  5317. background-color: var(--bs-tooltip-bg);
  5318. border-radius: var(--bs-tooltip-border-radius);
  5319. }
  5320. .popover {
  5321. --bs-popover-zindex: 1070;
  5322. --bs-popover-max-width: 276px;
  5323. --bs-popover-font-size: 0.875rem;
  5324. --bs-popover-bg: #fff;
  5325. --bs-popover-border-width: 1px;
  5326. --bs-popover-border-color: var(--bs-border-color-translucent);
  5327. --bs-popover-border-radius: 0.5rem;
  5328. --bs-popover-inner-border-radius: calc(0.5rem - 1px);
  5329. --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  5330. --bs-popover-header-padding-x: 1rem;
  5331. --bs-popover-header-padding-y: 0.5rem;
  5332. --bs-popover-header-font-size: 1rem;
  5333. --bs-popover-header-color: ;
  5334. --bs-popover-header-bg: #f0f0f0;
  5335. --bs-popover-body-padding-x: 1rem;
  5336. --bs-popover-body-padding-y: 1rem;
  5337. --bs-popover-body-color: #212529;
  5338. --bs-popover-arrow-width: 1rem;
  5339. --bs-popover-arrow-height: 0.5rem;
  5340. --bs-popover-arrow-border: var(--bs-popover-border-color);
  5341. z-index: var(--bs-popover-zindex);
  5342. display: block;
  5343. max-width: var(--bs-popover-max-width);
  5344. font-family: var(--bs-font-sans-serif);
  5345. font-style: normal;
  5346. font-weight: 400;
  5347. line-height: 1.5;
  5348. text-align: left;
  5349. text-align: start;
  5350. text-decoration: none;
  5351. text-shadow: none;
  5352. text-transform: none;
  5353. letter-spacing: normal;
  5354. word-break: normal;
  5355. white-space: normal;
  5356. word-spacing: normal;
  5357. line-break: auto;
  5358. font-size: var(--bs-popover-font-size);
  5359. word-wrap: break-word;
  5360. background-color: var(--bs-popover-bg);
  5361. background-clip: padding-box;
  5362. border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5363. border-radius: var(--bs-popover-border-radius);
  5364. }
  5365. .popover .popover-arrow {
  5366. display: block;
  5367. width: var(--bs-popover-arrow-width);
  5368. height: var(--bs-popover-arrow-height);
  5369. }
  5370. .popover .popover-arrow::before, .popover .popover-arrow::after {
  5371. position: absolute;
  5372. display: block;
  5373. content: "";
  5374. border-color: transparent;
  5375. border-style: solid;
  5376. border-width: 0;
  5377. }
  5378. .bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  5379. bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5380. }
  5381. .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 {
  5382. border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  5383. }
  5384. .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  5385. bottom: 0;
  5386. border-top-color: var(--bs-popover-arrow-border);
  5387. }
  5388. .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  5389. bottom: var(--bs-popover-border-width);
  5390. border-top-color: var(--bs-popover-bg);
  5391. }
  5392. /* rtl:begin:ignore */
  5393. .bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  5394. left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5395. width: var(--bs-popover-arrow-height);
  5396. height: var(--bs-popover-arrow-width);
  5397. }
  5398. .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 {
  5399. border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  5400. }
  5401. .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  5402. left: 0;
  5403. border-right-color: var(--bs-popover-arrow-border);
  5404. }
  5405. .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  5406. left: var(--bs-popover-border-width);
  5407. border-right-color: var(--bs-popover-bg);
  5408. }
  5409. /* rtl:end:ignore */
  5410. .bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  5411. top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5412. }
  5413. .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 {
  5414. border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  5415. }
  5416. .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  5417. top: 0;
  5418. border-bottom-color: var(--bs-popover-arrow-border);
  5419. }
  5420. .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  5421. top: var(--bs-popover-border-width);
  5422. border-bottom-color: var(--bs-popover-bg);
  5423. }
  5424. .bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  5425. position: absolute;
  5426. top: 0;
  5427. left: 50%;
  5428. display: block;
  5429. width: var(--bs-popover-arrow-width);
  5430. margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  5431. content: "";
  5432. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
  5433. }
  5434. /* rtl:begin:ignore */
  5435. .bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  5436. right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5437. width: var(--bs-popover-arrow-height);
  5438. height: var(--bs-popover-arrow-width);
  5439. }
  5440. .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 {
  5441. border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  5442. }
  5443. .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  5444. right: 0;
  5445. border-left-color: var(--bs-popover-arrow-border);
  5446. }
  5447. .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  5448. right: var(--bs-popover-border-width);
  5449. border-left-color: var(--bs-popover-bg);
  5450. }
  5451. /* rtl:end:ignore */
  5452. .popover-header {
  5453. padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  5454. margin-bottom: 0;
  5455. font-size: var(--bs-popover-header-font-size);
  5456. color: var(--bs-popover-header-color);
  5457. background-color: var(--bs-popover-header-bg);
  5458. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5459. border-top-left-radius: var(--bs-popover-inner-border-radius);
  5460. border-top-right-radius: var(--bs-popover-inner-border-radius);
  5461. }
  5462. .popover-header:empty {
  5463. display: none;
  5464. }
  5465. .popover-body {
  5466. padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  5467. color: var(--bs-popover-body-color);
  5468. }
  5469. .carousel {
  5470. position: relative;
  5471. }
  5472. .carousel.pointer-event {
  5473. touch-action: pan-y;
  5474. }
  5475. .carousel-inner {
  5476. position: relative;
  5477. width: 100%;
  5478. overflow: hidden;
  5479. }
  5480. .carousel-inner::after {
  5481. display: block;
  5482. clear: both;
  5483. content: "";
  5484. }
  5485. .carousel-item {
  5486. position: relative;
  5487. display: none;
  5488. float: left;
  5489. width: 100%;
  5490. margin-right: -100%;
  5491. -webkit-backface-visibility: hidden;
  5492. backface-visibility: hidden;
  5493. transition: transform 0.6s ease-in-out;
  5494. }
  5495. @media (prefers-reduced-motion: reduce) {
  5496. .carousel-item {
  5497. transition: none;
  5498. }
  5499. }
  5500. .carousel-item.active,
  5501. .carousel-item-next,
  5502. .carousel-item-prev {
  5503. display: block;
  5504. }
  5505. .carousel-item-next:not(.carousel-item-start),
  5506. .active.carousel-item-end {
  5507. transform: translateX(100%);
  5508. }
  5509. .carousel-item-prev:not(.carousel-item-end),
  5510. .active.carousel-item-start {
  5511. transform: translateX(-100%);
  5512. }
  5513. .carousel-fade .carousel-item {
  5514. opacity: 0;
  5515. transition-property: opacity;
  5516. transform: none;
  5517. }
  5518. .carousel-fade .carousel-item.active,
  5519. .carousel-fade .carousel-item-next.carousel-item-start,
  5520. .carousel-fade .carousel-item-prev.carousel-item-end {
  5521. z-index: 1;
  5522. opacity: 1;
  5523. }
  5524. .carousel-fade .active.carousel-item-start,
  5525. .carousel-fade .active.carousel-item-end {
  5526. z-index: 0;
  5527. opacity: 0;
  5528. transition: opacity 0s 0.6s;
  5529. }
  5530. @media (prefers-reduced-motion: reduce) {
  5531. .carousel-fade .active.carousel-item-start,
  5532. .carousel-fade .active.carousel-item-end {
  5533. transition: none;
  5534. }
  5535. }
  5536. .carousel-control-prev,
  5537. .carousel-control-next {
  5538. position: absolute;
  5539. top: 0;
  5540. bottom: 0;
  5541. z-index: 1;
  5542. display: flex;
  5543. align-items: center;
  5544. justify-content: center;
  5545. width: 15%;
  5546. padding: 0;
  5547. color: #fff;
  5548. text-align: center;
  5549. background: none;
  5550. border: 0;
  5551. opacity: 0.5;
  5552. transition: opacity 0.15s ease;
  5553. }
  5554. @media (prefers-reduced-motion: reduce) {
  5555. .carousel-control-prev,
  5556. .carousel-control-next {
  5557. transition: none;
  5558. }
  5559. }
  5560. .carousel-control-prev:hover, .carousel-control-prev:focus,
  5561. .carousel-control-next:hover,
  5562. .carousel-control-next:focus {
  5563. color: #fff;
  5564. text-decoration: none;
  5565. outline: 0;
  5566. opacity: 0.9;
  5567. }
  5568. .carousel-control-prev {
  5569. left: 0;
  5570. }
  5571. .carousel-control-next {
  5572. right: 0;
  5573. }
  5574. .carousel-control-prev-icon,
  5575. .carousel-control-next-icon {
  5576. display: inline-block;
  5577. width: 2rem;
  5578. height: 2rem;
  5579. background-repeat: no-repeat;
  5580. background-position: 50%;
  5581. background-size: 100% 100%;
  5582. }
  5583. /* rtl:options: {
  5584. "autoRename": true,
  5585. "stringMap":[ {
  5586. "name" : "prev-next",
  5587. "search" : "prev",
  5588. "replace" : "next"
  5589. } ]
  5590. } */
  5591. .carousel-control-prev-icon {
  5592. 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");
  5593. }
  5594. .carousel-control-next-icon {
  5595. 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");
  5596. }
  5597. .carousel-indicators {
  5598. position: absolute;
  5599. right: 0;
  5600. bottom: 0;
  5601. left: 0;
  5602. z-index: 2;
  5603. display: flex;
  5604. justify-content: center;
  5605. padding: 0;
  5606. margin-right: 15%;
  5607. margin-bottom: 1rem;
  5608. margin-left: 15%;
  5609. list-style: none;
  5610. }
  5611. .carousel-indicators [data-bs-target] {
  5612. box-sizing: content-box;
  5613. flex: 0 1 auto;
  5614. width: 30px;
  5615. height: 3px;
  5616. padding: 0;
  5617. margin-right: 3px;
  5618. margin-left: 3px;
  5619. text-indent: -999px;
  5620. cursor: pointer;
  5621. background-color: #fff;
  5622. background-clip: padding-box;
  5623. border: 0;
  5624. border-top: 10px solid transparent;
  5625. border-bottom: 10px solid transparent;
  5626. opacity: 0.5;
  5627. transition: opacity 0.6s ease;
  5628. }
  5629. @media (prefers-reduced-motion: reduce) {
  5630. .carousel-indicators [data-bs-target] {
  5631. transition: none;
  5632. }
  5633. }
  5634. .carousel-indicators .active {
  5635. opacity: 1;
  5636. }
  5637. .carousel-caption {
  5638. position: absolute;
  5639. right: 15%;
  5640. bottom: 1.25rem;
  5641. left: 15%;
  5642. padding-top: 1.25rem;
  5643. padding-bottom: 1.25rem;
  5644. color: #fff;
  5645. text-align: center;
  5646. }
  5647. .carousel-dark .carousel-control-prev-icon,
  5648. .carousel-dark .carousel-control-next-icon {
  5649. filter: invert(1) grayscale(100);
  5650. }
  5651. .carousel-dark .carousel-indicators [data-bs-target] {
  5652. background-color: #000;
  5653. }
  5654. .carousel-dark .carousel-caption {
  5655. color: #000;
  5656. }
  5657. .spinner-grow,
  5658. .spinner-border {
  5659. display: inline-block;
  5660. width: var(--bs-spinner-width);
  5661. height: var(--bs-spinner-height);
  5662. vertical-align: var(--bs-spinner-vertical-align);
  5663. border-radius: 50%;
  5664. animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
  5665. }
  5666. @keyframes spinner-border {
  5667. to {
  5668. transform: rotate(360deg) /* rtl:ignore */;
  5669. }
  5670. }
  5671. .spinner-border {
  5672. --bs-spinner-width: 2rem;
  5673. --bs-spinner-height: 2rem;
  5674. --bs-spinner-vertical-align: -0.125em;
  5675. --bs-spinner-border-width: 0.25em;
  5676. --bs-spinner-animation-speed: 0.75s;
  5677. --bs-spinner-animation-name: spinner-border;
  5678. border: var(--bs-spinner-border-width) solid currentcolor;
  5679. border-right-color: transparent;
  5680. }
  5681. .spinner-border-sm {
  5682. --bs-spinner-width: 1rem;
  5683. --bs-spinner-height: 1rem;
  5684. --bs-spinner-border-width: 0.2em;
  5685. }
  5686. @keyframes spinner-grow {
  5687. 0% {
  5688. transform: scale(0);
  5689. }
  5690. 50% {
  5691. opacity: 1;
  5692. transform: none;
  5693. }
  5694. }
  5695. .spinner-grow {
  5696. --bs-spinner-width: 2rem;
  5697. --bs-spinner-height: 2rem;
  5698. --bs-spinner-vertical-align: -0.125em;
  5699. --bs-spinner-animation-speed: 0.75s;
  5700. --bs-spinner-animation-name: spinner-grow;
  5701. background-color: currentcolor;
  5702. opacity: 0;
  5703. }
  5704. .spinner-grow-sm {
  5705. --bs-spinner-width: 1rem;
  5706. --bs-spinner-height: 1rem;
  5707. }
  5708. @media (prefers-reduced-motion: reduce) {
  5709. .spinner-border,
  5710. .spinner-grow {
  5711. --bs-spinner-animation-speed: 1.5s;
  5712. }
  5713. }
  5714. .offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  5715. --bs-offcanvas-zindex: 1045;
  5716. --bs-offcanvas-width: 400px;
  5717. --bs-offcanvas-height: 30vh;
  5718. --bs-offcanvas-padding-x: 1rem;
  5719. --bs-offcanvas-padding-y: 1rem;
  5720. --bs-offcanvas-color: ;
  5721. --bs-offcanvas-bg: #fff;
  5722. --bs-offcanvas-border-width: 1px;
  5723. --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  5724. --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  5725. }
  5726. @media (max-width: 575.98px) {
  5727. .offcanvas-sm {
  5728. position: fixed;
  5729. bottom: 0;
  5730. z-index: var(--bs-offcanvas-zindex);
  5731. display: flex;
  5732. flex-direction: column;
  5733. max-width: 100%;
  5734. color: var(--bs-offcanvas-color);
  5735. visibility: hidden;
  5736. background-color: var(--bs-offcanvas-bg);
  5737. background-clip: padding-box;
  5738. outline: 0;
  5739. transition: transform 0.3s ease-in-out;
  5740. }
  5741. }
  5742. @media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  5743. .offcanvas-sm {
  5744. transition: none;
  5745. }
  5746. }
  5747. @media (max-width: 575.98px) {
  5748. .offcanvas-sm.offcanvas-start {
  5749. top: 0;
  5750. left: 0;
  5751. width: var(--bs-offcanvas-width);
  5752. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5753. transform: translateX(-100%);
  5754. }
  5755. }
  5756. @media (max-width: 575.98px) {
  5757. .offcanvas-sm.offcanvas-end {
  5758. top: 0;
  5759. right: 0;
  5760. width: var(--bs-offcanvas-width);
  5761. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5762. transform: translateX(100%);
  5763. }
  5764. }
  5765. @media (max-width: 575.98px) {
  5766. .offcanvas-sm.offcanvas-top {
  5767. top: 0;
  5768. right: 0;
  5769. left: 0;
  5770. height: var(--bs-offcanvas-height);
  5771. max-height: 100%;
  5772. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5773. transform: translateY(-100%);
  5774. }
  5775. }
  5776. @media (max-width: 575.98px) {
  5777. .offcanvas-sm.offcanvas-bottom {
  5778. right: 0;
  5779. left: 0;
  5780. height: var(--bs-offcanvas-height);
  5781. max-height: 100%;
  5782. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5783. transform: translateY(100%);
  5784. }
  5785. }
  5786. @media (max-width: 575.98px) {
  5787. .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
  5788. transform: none;
  5789. }
  5790. }
  5791. @media (max-width: 575.98px) {
  5792. .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
  5793. visibility: visible;
  5794. }
  5795. }
  5796. @media (min-width: 576px) {
  5797. .offcanvas-sm {
  5798. --bs-offcanvas-height: auto;
  5799. --bs-offcanvas-border-width: 0;
  5800. background-color: transparent !important;
  5801. }
  5802. .offcanvas-sm .offcanvas-header {
  5803. display: none;
  5804. }
  5805. .offcanvas-sm .offcanvas-body {
  5806. display: flex;
  5807. flex-grow: 0;
  5808. padding: 0;
  5809. overflow-y: visible;
  5810. background-color: transparent !important;
  5811. }
  5812. }
  5813. @media (max-width: 767.98px) {
  5814. .offcanvas-md {
  5815. position: fixed;
  5816. bottom: 0;
  5817. z-index: var(--bs-offcanvas-zindex);
  5818. display: flex;
  5819. flex-direction: column;
  5820. max-width: 100%;
  5821. color: var(--bs-offcanvas-color);
  5822. visibility: hidden;
  5823. background-color: var(--bs-offcanvas-bg);
  5824. background-clip: padding-box;
  5825. outline: 0;
  5826. transition: transform 0.3s ease-in-out;
  5827. }
  5828. }
  5829. @media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  5830. .offcanvas-md {
  5831. transition: none;
  5832. }
  5833. }
  5834. @media (max-width: 767.98px) {
  5835. .offcanvas-md.offcanvas-start {
  5836. top: 0;
  5837. left: 0;
  5838. width: var(--bs-offcanvas-width);
  5839. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5840. transform: translateX(-100%);
  5841. }
  5842. }
  5843. @media (max-width: 767.98px) {
  5844. .offcanvas-md.offcanvas-end {
  5845. top: 0;
  5846. right: 0;
  5847. width: var(--bs-offcanvas-width);
  5848. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5849. transform: translateX(100%);
  5850. }
  5851. }
  5852. @media (max-width: 767.98px) {
  5853. .offcanvas-md.offcanvas-top {
  5854. top: 0;
  5855. right: 0;
  5856. left: 0;
  5857. height: var(--bs-offcanvas-height);
  5858. max-height: 100%;
  5859. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5860. transform: translateY(-100%);
  5861. }
  5862. }
  5863. @media (max-width: 767.98px) {
  5864. .offcanvas-md.offcanvas-bottom {
  5865. right: 0;
  5866. left: 0;
  5867. height: var(--bs-offcanvas-height);
  5868. max-height: 100%;
  5869. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5870. transform: translateY(100%);
  5871. }
  5872. }
  5873. @media (max-width: 767.98px) {
  5874. .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
  5875. transform: none;
  5876. }
  5877. }
  5878. @media (max-width: 767.98px) {
  5879. .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
  5880. visibility: visible;
  5881. }
  5882. }
  5883. @media (min-width: 768px) {
  5884. .offcanvas-md {
  5885. --bs-offcanvas-height: auto;
  5886. --bs-offcanvas-border-width: 0;
  5887. background-color: transparent !important;
  5888. }
  5889. .offcanvas-md .offcanvas-header {
  5890. display: none;
  5891. }
  5892. .offcanvas-md .offcanvas-body {
  5893. display: flex;
  5894. flex-grow: 0;
  5895. padding: 0;
  5896. overflow-y: visible;
  5897. background-color: transparent !important;
  5898. }
  5899. }
  5900. @media (max-width: 991.98px) {
  5901. .offcanvas-lg {
  5902. position: fixed;
  5903. bottom: 0;
  5904. z-index: var(--bs-offcanvas-zindex);
  5905. display: flex;
  5906. flex-direction: column;
  5907. max-width: 100%;
  5908. color: var(--bs-offcanvas-color);
  5909. visibility: hidden;
  5910. background-color: var(--bs-offcanvas-bg);
  5911. background-clip: padding-box;
  5912. outline: 0;
  5913. transition: transform 0.3s ease-in-out;
  5914. }
  5915. }
  5916. @media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  5917. .offcanvas-lg {
  5918. transition: none;
  5919. }
  5920. }
  5921. @media (max-width: 991.98px) {
  5922. .offcanvas-lg.offcanvas-start {
  5923. top: 0;
  5924. left: 0;
  5925. width: var(--bs-offcanvas-width);
  5926. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5927. transform: translateX(-100%);
  5928. }
  5929. }
  5930. @media (max-width: 991.98px) {
  5931. .offcanvas-lg.offcanvas-end {
  5932. top: 0;
  5933. right: 0;
  5934. width: var(--bs-offcanvas-width);
  5935. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5936. transform: translateX(100%);
  5937. }
  5938. }
  5939. @media (max-width: 991.98px) {
  5940. .offcanvas-lg.offcanvas-top {
  5941. top: 0;
  5942. right: 0;
  5943. left: 0;
  5944. height: var(--bs-offcanvas-height);
  5945. max-height: 100%;
  5946. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5947. transform: translateY(-100%);
  5948. }
  5949. }
  5950. @media (max-width: 991.98px) {
  5951. .offcanvas-lg.offcanvas-bottom {
  5952. right: 0;
  5953. left: 0;
  5954. height: var(--bs-offcanvas-height);
  5955. max-height: 100%;
  5956. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5957. transform: translateY(100%);
  5958. }
  5959. }
  5960. @media (max-width: 991.98px) {
  5961. .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
  5962. transform: none;
  5963. }
  5964. }
  5965. @media (max-width: 991.98px) {
  5966. .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
  5967. visibility: visible;
  5968. }
  5969. }
  5970. @media (min-width: 992px) {
  5971. .offcanvas-lg {
  5972. --bs-offcanvas-height: auto;
  5973. --bs-offcanvas-border-width: 0;
  5974. background-color: transparent !important;
  5975. }
  5976. .offcanvas-lg .offcanvas-header {
  5977. display: none;
  5978. }
  5979. .offcanvas-lg .offcanvas-body {
  5980. display: flex;
  5981. flex-grow: 0;
  5982. padding: 0;
  5983. overflow-y: visible;
  5984. background-color: transparent !important;
  5985. }
  5986. }
  5987. @media (max-width: 1199.98px) {
  5988. .offcanvas-xl {
  5989. position: fixed;
  5990. bottom: 0;
  5991. z-index: var(--bs-offcanvas-zindex);
  5992. display: flex;
  5993. flex-direction: column;
  5994. max-width: 100%;
  5995. color: var(--bs-offcanvas-color);
  5996. visibility: hidden;
  5997. background-color: var(--bs-offcanvas-bg);
  5998. background-clip: padding-box;
  5999. outline: 0;
  6000. transition: transform 0.3s ease-in-out;
  6001. }
  6002. }
  6003. @media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  6004. .offcanvas-xl {
  6005. transition: none;
  6006. }
  6007. }
  6008. @media (max-width: 1199.98px) {
  6009. .offcanvas-xl.offcanvas-start {
  6010. top: 0;
  6011. left: 0;
  6012. width: var(--bs-offcanvas-width);
  6013. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6014. transform: translateX(-100%);
  6015. }
  6016. }
  6017. @media (max-width: 1199.98px) {
  6018. .offcanvas-xl.offcanvas-end {
  6019. top: 0;
  6020. right: 0;
  6021. width: var(--bs-offcanvas-width);
  6022. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6023. transform: translateX(100%);
  6024. }
  6025. }
  6026. @media (max-width: 1199.98px) {
  6027. .offcanvas-xl.offcanvas-top {
  6028. top: 0;
  6029. right: 0;
  6030. left: 0;
  6031. height: var(--bs-offcanvas-height);
  6032. max-height: 100%;
  6033. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6034. transform: translateY(-100%);
  6035. }
  6036. }
  6037. @media (max-width: 1199.98px) {
  6038. .offcanvas-xl.offcanvas-bottom {
  6039. right: 0;
  6040. left: 0;
  6041. height: var(--bs-offcanvas-height);
  6042. max-height: 100%;
  6043. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6044. transform: translateY(100%);
  6045. }
  6046. }
  6047. @media (max-width: 1199.98px) {
  6048. .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
  6049. transform: none;
  6050. }
  6051. }
  6052. @media (max-width: 1199.98px) {
  6053. .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
  6054. visibility: visible;
  6055. }
  6056. }
  6057. @media (min-width: 1200px) {
  6058. .offcanvas-xl {
  6059. --bs-offcanvas-height: auto;
  6060. --bs-offcanvas-border-width: 0;
  6061. background-color: transparent !important;
  6062. }
  6063. .offcanvas-xl .offcanvas-header {
  6064. display: none;
  6065. }
  6066. .offcanvas-xl .offcanvas-body {
  6067. display: flex;
  6068. flex-grow: 0;
  6069. padding: 0;
  6070. overflow-y: visible;
  6071. background-color: transparent !important;
  6072. }
  6073. }
  6074. @media (max-width: 1399.98px) {
  6075. .offcanvas-xxl {
  6076. position: fixed;
  6077. bottom: 0;
  6078. z-index: var(--bs-offcanvas-zindex);
  6079. display: flex;
  6080. flex-direction: column;
  6081. max-width: 100%;
  6082. color: var(--bs-offcanvas-color);
  6083. visibility: hidden;
  6084. background-color: var(--bs-offcanvas-bg);
  6085. background-clip: padding-box;
  6086. outline: 0;
  6087. transition: transform 0.3s ease-in-out;
  6088. }
  6089. }
  6090. @media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  6091. .offcanvas-xxl {
  6092. transition: none;
  6093. }
  6094. }
  6095. @media (max-width: 1399.98px) {
  6096. .offcanvas-xxl.offcanvas-start {
  6097. top: 0;
  6098. left: 0;
  6099. width: var(--bs-offcanvas-width);
  6100. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6101. transform: translateX(-100%);
  6102. }
  6103. }
  6104. @media (max-width: 1399.98px) {
  6105. .offcanvas-xxl.offcanvas-end {
  6106. top: 0;
  6107. right: 0;
  6108. width: var(--bs-offcanvas-width);
  6109. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6110. transform: translateX(100%);
  6111. }
  6112. }
  6113. @media (max-width: 1399.98px) {
  6114. .offcanvas-xxl.offcanvas-top {
  6115. top: 0;
  6116. right: 0;
  6117. left: 0;
  6118. height: var(--bs-offcanvas-height);
  6119. max-height: 100%;
  6120. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6121. transform: translateY(-100%);
  6122. }
  6123. }
  6124. @media (max-width: 1399.98px) {
  6125. .offcanvas-xxl.offcanvas-bottom {
  6126. right: 0;
  6127. left: 0;
  6128. height: var(--bs-offcanvas-height);
  6129. max-height: 100%;
  6130. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6131. transform: translateY(100%);
  6132. }
  6133. }
  6134. @media (max-width: 1399.98px) {
  6135. .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
  6136. transform: none;
  6137. }
  6138. }
  6139. @media (max-width: 1399.98px) {
  6140. .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
  6141. visibility: visible;
  6142. }
  6143. }
  6144. @media (min-width: 1400px) {
  6145. .offcanvas-xxl {
  6146. --bs-offcanvas-height: auto;
  6147. --bs-offcanvas-border-width: 0;
  6148. background-color: transparent !important;
  6149. }
  6150. .offcanvas-xxl .offcanvas-header {
  6151. display: none;
  6152. }
  6153. .offcanvas-xxl .offcanvas-body {
  6154. display: flex;
  6155. flex-grow: 0;
  6156. padding: 0;
  6157. overflow-y: visible;
  6158. background-color: transparent !important;
  6159. }
  6160. }
  6161. .offcanvas {
  6162. position: fixed;
  6163. bottom: 0;
  6164. z-index: var(--bs-offcanvas-zindex);
  6165. display: flex;
  6166. flex-direction: column;
  6167. max-width: 100%;
  6168. color: var(--bs-offcanvas-color);
  6169. visibility: hidden;
  6170. background-color: var(--bs-offcanvas-bg);
  6171. background-clip: padding-box;
  6172. outline: 0;
  6173. transition: transform 0.3s ease-in-out;
  6174. }
  6175. @media (prefers-reduced-motion: reduce) {
  6176. .offcanvas {
  6177. transition: none;
  6178. }
  6179. }
  6180. .offcanvas.offcanvas-start {
  6181. top: 0;
  6182. left: 0;
  6183. width: var(--bs-offcanvas-width);
  6184. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6185. transform: translateX(-100%);
  6186. }
  6187. .offcanvas.offcanvas-end {
  6188. top: 0;
  6189. right: 0;
  6190. width: var(--bs-offcanvas-width);
  6191. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6192. transform: translateX(100%);
  6193. }
  6194. .offcanvas.offcanvas-top {
  6195. top: 0;
  6196. right: 0;
  6197. left: 0;
  6198. height: var(--bs-offcanvas-height);
  6199. max-height: 100%;
  6200. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6201. transform: translateY(-100%);
  6202. }
  6203. .offcanvas.offcanvas-bottom {
  6204. right: 0;
  6205. left: 0;
  6206. height: var(--bs-offcanvas-height);
  6207. max-height: 100%;
  6208. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6209. transform: translateY(100%);
  6210. }
  6211. .offcanvas.showing, .offcanvas.show:not(.hiding) {
  6212. transform: none;
  6213. }
  6214. .offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  6215. visibility: visible;
  6216. }
  6217. .offcanvas-backdrop {
  6218. position: fixed;
  6219. top: 0;
  6220. left: 0;
  6221. z-index: 1040;
  6222. width: 100vw;
  6223. height: 100vh;
  6224. background-color: #000;
  6225. }
  6226. .offcanvas-backdrop.fade {
  6227. opacity: 0;
  6228. }
  6229. .offcanvas-backdrop.show {
  6230. opacity: 0.5;
  6231. }
  6232. .offcanvas-header {
  6233. display: flex;
  6234. align-items: center;
  6235. justify-content: space-between;
  6236. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6237. }
  6238. .offcanvas-header .btn-close {
  6239. padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  6240. margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  6241. margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  6242. margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
  6243. }
  6244. .offcanvas-title {
  6245. margin-bottom: 0;
  6246. line-height: 1.5;
  6247. }
  6248. .offcanvas-body {
  6249. flex-grow: 1;
  6250. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6251. overflow-y: auto;
  6252. }
  6253. .placeholder {
  6254. display: inline-block;
  6255. min-height: 1em;
  6256. vertical-align: middle;
  6257. cursor: wait;
  6258. background-color: currentcolor;
  6259. opacity: 0.5;
  6260. }
  6261. .placeholder.btn::before {
  6262. display: inline-block;
  6263. content: "";
  6264. }
  6265. .placeholder-xs {
  6266. min-height: 0.6em;
  6267. }
  6268. .placeholder-sm {
  6269. min-height: 0.8em;
  6270. }
  6271. .placeholder-lg {
  6272. min-height: 1.2em;
  6273. }
  6274. .placeholder-glow .placeholder {
  6275. animation: placeholder-glow 2s ease-in-out infinite;
  6276. }
  6277. @keyframes placeholder-glow {
  6278. 50% {
  6279. opacity: 0.2;
  6280. }
  6281. }
  6282. .placeholder-wave {
  6283. -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6284. mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6285. -webkit-mask-size: 200% 100%;
  6286. mask-size: 200% 100%;
  6287. animation: placeholder-wave 2s linear infinite;
  6288. }
  6289. @keyframes placeholder-wave {
  6290. 100% {
  6291. -webkit-mask-position: -200% 0%;
  6292. mask-position: -200% 0%;
  6293. }
  6294. }
  6295. .clearfix::after {
  6296. display: block;
  6297. clear: both;
  6298. content: "";
  6299. }
  6300. .text-bg-primary {
  6301. color: #fff !important;
  6302. background-color: RGBA(13, 110, 253, var(--bs-bg-opacity, 1)) !important;
  6303. }
  6304. .text-bg-secondary {
  6305. color: #fff !important;
  6306. background-color: RGBA(108, 117, 125, var(--bs-bg-opacity, 1)) !important;
  6307. }
  6308. .text-bg-success {
  6309. color: #fff !important;
  6310. background-color: RGBA(25, 135, 84, var(--bs-bg-opacity, 1)) !important;
  6311. }
  6312. .text-bg-info {
  6313. color: #000 !important;
  6314. background-color: RGBA(13, 202, 240, var(--bs-bg-opacity, 1)) !important;
  6315. }
  6316. .text-bg-warning {
  6317. color: #000 !important;
  6318. background-color: RGBA(255, 193, 7, var(--bs-bg-opacity, 1)) !important;
  6319. }
  6320. .text-bg-danger {
  6321. color: #fff !important;
  6322. background-color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1)) !important;
  6323. }
  6324. .text-bg-light {
  6325. color: #000 !important;
  6326. background-color: RGBA(248, 249, 250, var(--bs-bg-opacity, 1)) !important;
  6327. }
  6328. .text-bg-dark {
  6329. color: #fff !important;
  6330. background-color: RGBA(33, 37, 41, var(--bs-bg-opacity, 1)) !important;
  6331. }
  6332. .link-primary {
  6333. color: #0d6efd !important;
  6334. }
  6335. .link-primary:hover, .link-primary:focus {
  6336. color: #0a58ca !important;
  6337. }
  6338. .link-secondary {
  6339. color: #6c757d !important;
  6340. }
  6341. .link-secondary:hover, .link-secondary:focus {
  6342. color: #565e64 !important;
  6343. }
  6344. .link-success {
  6345. color: #198754 !important;
  6346. }
  6347. .link-success:hover, .link-success:focus {
  6348. color: #146c43 !important;
  6349. }
  6350. .link-info {
  6351. color: #0dcaf0 !important;
  6352. }
  6353. .link-info:hover, .link-info:focus {
  6354. color: #3dd5f3 !important;
  6355. }
  6356. .link-warning {
  6357. color: #ffc107 !important;
  6358. }
  6359. .link-warning:hover, .link-warning:focus {
  6360. color: #ffcd39 !important;
  6361. }
  6362. .link-danger {
  6363. color: #dc3545 !important;
  6364. }
  6365. .link-danger:hover, .link-danger:focus {
  6366. color: #b02a37 !important;
  6367. }
  6368. .link-light {
  6369. color: #f8f9fa !important;
  6370. }
  6371. .link-light:hover, .link-light:focus {
  6372. color: #f9fafb !important;
  6373. }
  6374. .link-dark {
  6375. color: #212529 !important;
  6376. }
  6377. .link-dark:hover, .link-dark:focus {
  6378. color: #1a1e21 !important;
  6379. }
  6380. .ratio {
  6381. position: relative;
  6382. width: 100%;
  6383. }
  6384. .ratio::before {
  6385. display: block;
  6386. padding-top: var(--bs-aspect-ratio);
  6387. content: "";
  6388. }
  6389. .ratio > * {
  6390. position: absolute;
  6391. top: 0;
  6392. left: 0;
  6393. width: 100%;
  6394. height: 100%;
  6395. }
  6396. .ratio-1x1 {
  6397. --bs-aspect-ratio: 100%;
  6398. }
  6399. .ratio-4x3 {
  6400. --bs-aspect-ratio: 75%;
  6401. }
  6402. .ratio-16x9 {
  6403. --bs-aspect-ratio: 56.25%;
  6404. }
  6405. .ratio-21x9 {
  6406. --bs-aspect-ratio: 42.8571428571%;
  6407. }
  6408. .fixed-top, .sb-nav-fixed #layoutSidenav #layoutSidenav_nav, .sb-nav-fixed .sb-topnav {
  6409. position: fixed;
  6410. top: 0;
  6411. right: 0;
  6412. left: 0;
  6413. z-index: 1030;
  6414. }
  6415. .fixed-bottom {
  6416. position: fixed;
  6417. right: 0;
  6418. bottom: 0;
  6419. left: 0;
  6420. z-index: 1030;
  6421. }
  6422. .sticky-top {
  6423. position: sticky;
  6424. top: 0;
  6425. z-index: 1020;
  6426. }
  6427. .sticky-bottom {
  6428. position: sticky;
  6429. bottom: 0;
  6430. z-index: 1020;
  6431. }
  6432. @media (min-width: 576px) {
  6433. .sticky-sm-top {
  6434. position: sticky;
  6435. top: 0;
  6436. z-index: 1020;
  6437. }
  6438. .sticky-sm-bottom {
  6439. position: sticky;
  6440. bottom: 0;
  6441. z-index: 1020;
  6442. }
  6443. }
  6444. @media (min-width: 768px) {
  6445. .sticky-md-top {
  6446. position: sticky;
  6447. top: 0;
  6448. z-index: 1020;
  6449. }
  6450. .sticky-md-bottom {
  6451. position: sticky;
  6452. bottom: 0;
  6453. z-index: 1020;
  6454. }
  6455. }
  6456. @media (min-width: 992px) {
  6457. .sticky-lg-top {
  6458. position: sticky;
  6459. top: 0;
  6460. z-index: 1020;
  6461. }
  6462. .sticky-lg-bottom {
  6463. position: sticky;
  6464. bottom: 0;
  6465. z-index: 1020;
  6466. }
  6467. }
  6468. @media (min-width: 1200px) {
  6469. .sticky-xl-top {
  6470. position: sticky;
  6471. top: 0;
  6472. z-index: 1020;
  6473. }
  6474. .sticky-xl-bottom {
  6475. position: sticky;
  6476. bottom: 0;
  6477. z-index: 1020;
  6478. }
  6479. }
  6480. @media (min-width: 1400px) {
  6481. .sticky-xxl-top {
  6482. position: sticky;
  6483. top: 0;
  6484. z-index: 1020;
  6485. }
  6486. .sticky-xxl-bottom {
  6487. position: sticky;
  6488. bottom: 0;
  6489. z-index: 1020;
  6490. }
  6491. }
  6492. .hstack {
  6493. display: flex;
  6494. flex-direction: row;
  6495. align-items: center;
  6496. align-self: stretch;
  6497. }
  6498. .vstack {
  6499. display: flex;
  6500. flex: 1 1 auto;
  6501. flex-direction: column;
  6502. align-self: stretch;
  6503. }
  6504. .visually-hidden,
  6505. .visually-hidden-focusable:not(:focus):not(:focus-within) {
  6506. position: absolute !important;
  6507. width: 1px !important;
  6508. height: 1px !important;
  6509. padding: 0 !important;
  6510. margin: -1px !important;
  6511. overflow: hidden !important;
  6512. clip: rect(0, 0, 0, 0) !important;
  6513. white-space: nowrap !important;
  6514. border: 0 !important;
  6515. }
  6516. .stretched-link::after {
  6517. position: absolute;
  6518. top: 0;
  6519. right: 0;
  6520. bottom: 0;
  6521. left: 0;
  6522. z-index: 1;
  6523. content: "";
  6524. }
  6525. .text-truncate {
  6526. overflow: hidden;
  6527. text-overflow: ellipsis;
  6528. white-space: nowrap;
  6529. }
  6530. .vr {
  6531. display: inline-block;
  6532. align-self: stretch;
  6533. width: 1px;
  6534. min-height: 1em;
  6535. background-color: currentcolor;
  6536. opacity: 0.25;
  6537. }
  6538. .align-baseline {
  6539. vertical-align: baseline !important;
  6540. }
  6541. .align-top {
  6542. vertical-align: top !important;
  6543. }
  6544. .align-middle {
  6545. vertical-align: middle !important;
  6546. }
  6547. .align-bottom {
  6548. vertical-align: bottom !important;
  6549. }
  6550. .align-text-bottom {
  6551. vertical-align: text-bottom !important;
  6552. }
  6553. .align-text-top {
  6554. vertical-align: text-top !important;
  6555. }
  6556. .float-start {
  6557. float: left !important;
  6558. }
  6559. .float-end {
  6560. float: right !important;
  6561. }
  6562. .float-none {
  6563. float: none !important;
  6564. }
  6565. .opacity-0 {
  6566. opacity: 0 !important;
  6567. }
  6568. .opacity-25 {
  6569. opacity: 0.25 !important;
  6570. }
  6571. .opacity-50 {
  6572. opacity: 0.5 !important;
  6573. }
  6574. .opacity-75 {
  6575. opacity: 0.75 !important;
  6576. }
  6577. .opacity-100 {
  6578. opacity: 1 !important;
  6579. }
  6580. .overflow-auto {
  6581. overflow: auto !important;
  6582. }
  6583. .overflow-hidden {
  6584. overflow: hidden !important;
  6585. }
  6586. .overflow-visible {
  6587. overflow: visible !important;
  6588. }
  6589. .overflow-scroll {
  6590. overflow: scroll !important;
  6591. }
  6592. .d-inline {
  6593. display: inline !important;
  6594. }
  6595. .d-inline-block {
  6596. display: inline-block !important;
  6597. }
  6598. .d-block {
  6599. display: block !important;
  6600. }
  6601. .d-grid {
  6602. display: grid !important;
  6603. }
  6604. .d-table {
  6605. display: table !important;
  6606. }
  6607. .d-table-row {
  6608. display: table-row !important;
  6609. }
  6610. .d-table-cell {
  6611. display: table-cell !important;
  6612. }
  6613. .d-flex {
  6614. display: flex !important;
  6615. }
  6616. .d-inline-flex {
  6617. display: inline-flex !important;
  6618. }
  6619. .d-none {
  6620. display: none !important;
  6621. }
  6622. .shadow {
  6623. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  6624. }
  6625. .shadow-sm {
  6626. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  6627. }
  6628. .shadow-lg {
  6629. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  6630. }
  6631. .shadow-none {
  6632. box-shadow: none !important;
  6633. }
  6634. .position-static {
  6635. position: static !important;
  6636. }
  6637. .position-relative {
  6638. position: relative !important;
  6639. }
  6640. .position-absolute {
  6641. position: absolute !important;
  6642. }
  6643. .position-fixed {
  6644. position: fixed !important;
  6645. }
  6646. .position-sticky {
  6647. position: sticky !important;
  6648. }
  6649. .top-0 {
  6650. top: 0 !important;
  6651. }
  6652. .top-50 {
  6653. top: 50% !important;
  6654. }
  6655. .top-100 {
  6656. top: 100% !important;
  6657. }
  6658. .bottom-0 {
  6659. bottom: 0 !important;
  6660. }
  6661. .bottom-50 {
  6662. bottom: 50% !important;
  6663. }
  6664. .bottom-100 {
  6665. bottom: 100% !important;
  6666. }
  6667. .start-0 {
  6668. left: 0 !important;
  6669. }
  6670. .start-50 {
  6671. left: 50% !important;
  6672. }
  6673. .start-100 {
  6674. left: 100% !important;
  6675. }
  6676. .end-0 {
  6677. right: 0 !important;
  6678. }
  6679. .end-50 {
  6680. right: 50% !important;
  6681. }
  6682. .end-100 {
  6683. right: 100% !important;
  6684. }
  6685. .translate-middle {
  6686. transform: translate(-50%, -50%) !important;
  6687. }
  6688. .translate-middle-x {
  6689. transform: translateX(-50%) !important;
  6690. }
  6691. .translate-middle-y {
  6692. transform: translateY(-50%) !important;
  6693. }
  6694. .border {
  6695. border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6696. }
  6697. .border-0 {
  6698. border: 0 !important;
  6699. }
  6700. .border-top {
  6701. border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6702. }
  6703. .border-top-0 {
  6704. border-top: 0 !important;
  6705. }
  6706. .border-end {
  6707. border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6708. }
  6709. .border-end-0 {
  6710. border-right: 0 !important;
  6711. }
  6712. .border-bottom {
  6713. border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6714. }
  6715. .border-bottom-0 {
  6716. border-bottom: 0 !important;
  6717. }
  6718. .border-start {
  6719. border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6720. }
  6721. .border-start-0 {
  6722. border-left: 0 !important;
  6723. }
  6724. .border-primary {
  6725. --bs-border-opacity: 1;
  6726. border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
  6727. }
  6728. .border-secondary {
  6729. --bs-border-opacity: 1;
  6730. border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
  6731. }
  6732. .border-success {
  6733. --bs-border-opacity: 1;
  6734. border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
  6735. }
  6736. .border-info {
  6737. --bs-border-opacity: 1;
  6738. border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
  6739. }
  6740. .border-warning {
  6741. --bs-border-opacity: 1;
  6742. border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
  6743. }
  6744. .border-danger {
  6745. --bs-border-opacity: 1;
  6746. border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
  6747. }
  6748. .border-light {
  6749. --bs-border-opacity: 1;
  6750. border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
  6751. }
  6752. .border-dark {
  6753. --bs-border-opacity: 1;
  6754. border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
  6755. }
  6756. .border-white {
  6757. --bs-border-opacity: 1;
  6758. border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
  6759. }
  6760. .border-1 {
  6761. --bs-border-width: 1px;
  6762. }
  6763. .border-2 {
  6764. --bs-border-width: 2px;
  6765. }
  6766. .border-3 {
  6767. --bs-border-width: 3px;
  6768. }
  6769. .border-4 {
  6770. --bs-border-width: 4px;
  6771. }
  6772. .border-5 {
  6773. --bs-border-width: 5px;
  6774. }
  6775. .border-opacity-10 {
  6776. --bs-border-opacity: 0.1;
  6777. }
  6778. .border-opacity-25 {
  6779. --bs-border-opacity: 0.25;
  6780. }
  6781. .border-opacity-50 {
  6782. --bs-border-opacity: 0.5;
  6783. }
  6784. .border-opacity-75 {
  6785. --bs-border-opacity: 0.75;
  6786. }
  6787. .border-opacity-100 {
  6788. --bs-border-opacity: 1;
  6789. }
  6790. .w-25 {
  6791. width: 25% !important;
  6792. }
  6793. .w-50 {
  6794. width: 50% !important;
  6795. }
  6796. .w-75 {
  6797. width: 75% !important;
  6798. }
  6799. .w-100 {
  6800. width: 100% !important;
  6801. }
  6802. .w-auto {
  6803. width: auto !important;
  6804. }
  6805. .mw-100 {
  6806. max-width: 100% !important;
  6807. }
  6808. .vw-100 {
  6809. width: 100vw !important;
  6810. }
  6811. .min-vw-100 {
  6812. min-width: 100vw !important;
  6813. }
  6814. .h-25 {
  6815. height: 25% !important;
  6816. }
  6817. .h-50 {
  6818. height: 50% !important;
  6819. }
  6820. .h-75 {
  6821. height: 75% !important;
  6822. }
  6823. .h-100 {
  6824. height: 100% !important;
  6825. }
  6826. .h-auto {
  6827. height: auto !important;
  6828. }
  6829. .mh-100 {
  6830. max-height: 100% !important;
  6831. }
  6832. .vh-100 {
  6833. height: 100vh !important;
  6834. }
  6835. .min-vh-100 {
  6836. min-height: 100vh !important;
  6837. }
  6838. .flex-fill {
  6839. flex: 1 1 auto !important;
  6840. }
  6841. .flex-row {
  6842. flex-direction: row !important;
  6843. }
  6844. .flex-column {
  6845. flex-direction: column !important;
  6846. }
  6847. .flex-row-reverse {
  6848. flex-direction: row-reverse !important;
  6849. }
  6850. .flex-column-reverse {
  6851. flex-direction: column-reverse !important;
  6852. }
  6853. .flex-grow-0 {
  6854. flex-grow: 0 !important;
  6855. }
  6856. .flex-grow-1 {
  6857. flex-grow: 1 !important;
  6858. }
  6859. .flex-shrink-0 {
  6860. flex-shrink: 0 !important;
  6861. }
  6862. .flex-shrink-1 {
  6863. flex-shrink: 1 !important;
  6864. }
  6865. .flex-wrap {
  6866. flex-wrap: wrap !important;
  6867. }
  6868. .flex-nowrap {
  6869. flex-wrap: nowrap !important;
  6870. }
  6871. .flex-wrap-reverse {
  6872. flex-wrap: wrap-reverse !important;
  6873. }
  6874. .justify-content-start {
  6875. justify-content: flex-start !important;
  6876. }
  6877. .justify-content-end {
  6878. justify-content: flex-end !important;
  6879. }
  6880. .justify-content-center {
  6881. justify-content: center !important;
  6882. }
  6883. .justify-content-between {
  6884. justify-content: space-between !important;
  6885. }
  6886. .justify-content-around {
  6887. justify-content: space-around !important;
  6888. }
  6889. .justify-content-evenly {
  6890. justify-content: space-evenly !important;
  6891. }
  6892. .align-items-start {
  6893. align-items: flex-start !important;
  6894. }
  6895. .align-items-end {
  6896. align-items: flex-end !important;
  6897. }
  6898. .align-items-center {
  6899. align-items: center !important;
  6900. }
  6901. .align-items-baseline {
  6902. align-items: baseline !important;
  6903. }
  6904. .align-items-stretch {
  6905. align-items: stretch !important;
  6906. }
  6907. .align-content-start {
  6908. align-content: flex-start !important;
  6909. }
  6910. .align-content-end {
  6911. align-content: flex-end !important;
  6912. }
  6913. .align-content-center {
  6914. align-content: center !important;
  6915. }
  6916. .align-content-between {
  6917. align-content: space-between !important;
  6918. }
  6919. .align-content-around {
  6920. align-content: space-around !important;
  6921. }
  6922. .align-content-stretch {
  6923. align-content: stretch !important;
  6924. }
  6925. .align-self-auto {
  6926. align-self: auto !important;
  6927. }
  6928. .align-self-start {
  6929. align-self: flex-start !important;
  6930. }
  6931. .align-self-end {
  6932. align-self: flex-end !important;
  6933. }
  6934. .align-self-center {
  6935. align-self: center !important;
  6936. }
  6937. .align-self-baseline {
  6938. align-self: baseline !important;
  6939. }
  6940. .align-self-stretch {
  6941. align-self: stretch !important;
  6942. }
  6943. .order-first {
  6944. order: -1 !important;
  6945. }
  6946. .order-0 {
  6947. order: 0 !important;
  6948. }
  6949. .order-1 {
  6950. order: 1 !important;
  6951. }
  6952. .order-2 {
  6953. order: 2 !important;
  6954. }
  6955. .order-3 {
  6956. order: 3 !important;
  6957. }
  6958. .order-4 {
  6959. order: 4 !important;
  6960. }
  6961. .order-5 {
  6962. order: 5 !important;
  6963. }
  6964. .order-last {
  6965. order: 6 !important;
  6966. }
  6967. .m-0 {
  6968. margin: 0 !important;
  6969. }
  6970. .m-1 {
  6971. margin: 0.25rem !important;
  6972. }
  6973. .m-2 {
  6974. margin: 0.5rem !important;
  6975. }
  6976. .m-3 {
  6977. margin: 1rem !important;
  6978. }
  6979. .m-4 {
  6980. margin: 1.5rem !important;
  6981. }
  6982. .m-5 {
  6983. margin: 3rem !important;
  6984. }
  6985. .m-auto {
  6986. margin: auto !important;
  6987. }
  6988. .mx-0 {
  6989. margin-right: 0 !important;
  6990. margin-left: 0 !important;
  6991. }
  6992. .mx-1 {
  6993. margin-right: 0.25rem !important;
  6994. margin-left: 0.25rem !important;
  6995. }
  6996. .mx-2 {
  6997. margin-right: 0.5rem !important;
  6998. margin-left: 0.5rem !important;
  6999. }
  7000. .mx-3 {
  7001. margin-right: 1rem !important;
  7002. margin-left: 1rem !important;
  7003. }
  7004. .mx-4 {
  7005. margin-right: 1.5rem !important;
  7006. margin-left: 1.5rem !important;
  7007. }
  7008. .mx-5 {
  7009. margin-right: 3rem !important;
  7010. margin-left: 3rem !important;
  7011. }
  7012. .mx-auto {
  7013. margin-right: auto !important;
  7014. margin-left: auto !important;
  7015. }
  7016. .my-0 {
  7017. margin-top: 0 !important;
  7018. margin-bottom: 0 !important;
  7019. }
  7020. .my-1 {
  7021. margin-top: 0.25rem !important;
  7022. margin-bottom: 0.25rem !important;
  7023. }
  7024. .my-2 {
  7025. margin-top: 0.5rem !important;
  7026. margin-bottom: 0.5rem !important;
  7027. }
  7028. .my-3 {
  7029. margin-top: 1rem !important;
  7030. margin-bottom: 1rem !important;
  7031. }
  7032. .my-4 {
  7033. margin-top: 1.5rem !important;
  7034. margin-bottom: 1.5rem !important;
  7035. }
  7036. .my-5 {
  7037. margin-top: 3rem !important;
  7038. margin-bottom: 3rem !important;
  7039. }
  7040. .my-auto {
  7041. margin-top: auto !important;
  7042. margin-bottom: auto !important;
  7043. }
  7044. .mt-0 {
  7045. margin-top: 0 !important;
  7046. }
  7047. .mt-1 {
  7048. margin-top: 0.25rem !important;
  7049. }
  7050. .mt-2 {
  7051. margin-top: 0.5rem !important;
  7052. }
  7053. .mt-3 {
  7054. margin-top: 1rem !important;
  7055. }
  7056. .mt-4 {
  7057. margin-top: 1.5rem !important;
  7058. }
  7059. .mt-5 {
  7060. margin-top: 3rem !important;
  7061. }
  7062. .mt-auto {
  7063. margin-top: auto !important;
  7064. }
  7065. .me-0 {
  7066. margin-right: 0 !important;
  7067. }
  7068. .me-1 {
  7069. margin-right: 0.25rem !important;
  7070. }
  7071. .me-2 {
  7072. margin-right: 0.5rem !important;
  7073. }
  7074. .me-3 {
  7075. margin-right: 1rem !important;
  7076. }
  7077. .me-4 {
  7078. margin-right: 1.5rem !important;
  7079. }
  7080. .me-5 {
  7081. margin-right: 3rem !important;
  7082. }
  7083. .me-auto {
  7084. margin-right: auto !important;
  7085. }
  7086. .mb-0 {
  7087. margin-bottom: 0 !important;
  7088. }
  7089. .mb-1 {
  7090. margin-bottom: 0.25rem !important;
  7091. }
  7092. .mb-2 {
  7093. margin-bottom: 0.5rem !important;
  7094. }
  7095. .mb-3 {
  7096. margin-bottom: 1rem !important;
  7097. }
  7098. .mb-4 {
  7099. margin-bottom: 1.5rem !important;
  7100. }
  7101. .mb-5 {
  7102. margin-bottom: 3rem !important;
  7103. }
  7104. .mb-auto {
  7105. margin-bottom: auto !important;
  7106. }
  7107. .ms-0 {
  7108. margin-left: 0 !important;
  7109. }
  7110. .ms-1 {
  7111. margin-left: 0.25rem !important;
  7112. }
  7113. .ms-2 {
  7114. margin-left: 0.5rem !important;
  7115. }
  7116. .ms-3 {
  7117. margin-left: 1rem !important;
  7118. }
  7119. .ms-4 {
  7120. margin-left: 1.5rem !important;
  7121. }
  7122. .ms-5 {
  7123. margin-left: 3rem !important;
  7124. }
  7125. .ms-auto {
  7126. margin-left: auto !important;
  7127. }
  7128. .p-0 {
  7129. padding: 0 !important;
  7130. }
  7131. .p-1 {
  7132. padding: 0.25rem !important;
  7133. }
  7134. .p-2 {
  7135. padding: 0.5rem !important;
  7136. }
  7137. .p-3 {
  7138. padding: 1rem !important;
  7139. }
  7140. .p-4 {
  7141. padding: 1.5rem !important;
  7142. }
  7143. .p-5 {
  7144. padding: 3rem !important;
  7145. }
  7146. .px-0 {
  7147. padding-right: 0 !important;
  7148. padding-left: 0 !important;
  7149. }
  7150. .px-1 {
  7151. padding-right: 0.25rem !important;
  7152. padding-left: 0.25rem !important;
  7153. }
  7154. .px-2 {
  7155. padding-right: 0.5rem !important;
  7156. padding-left: 0.5rem !important;
  7157. }
  7158. .px-3 {
  7159. padding-right: 1rem !important;
  7160. padding-left: 1rem !important;
  7161. }
  7162. .px-4 {
  7163. padding-right: 1.5rem !important;
  7164. padding-left: 1.5rem !important;
  7165. }
  7166. .px-5 {
  7167. padding-right: 3rem !important;
  7168. padding-left: 3rem !important;
  7169. }
  7170. .py-0 {
  7171. padding-top: 0 !important;
  7172. padding-bottom: 0 !important;
  7173. }
  7174. .py-1 {
  7175. padding-top: 0.25rem !important;
  7176. padding-bottom: 0.25rem !important;
  7177. }
  7178. .py-2 {
  7179. padding-top: 0.5rem !important;
  7180. padding-bottom: 0.5rem !important;
  7181. }
  7182. .py-3 {
  7183. padding-top: 1rem !important;
  7184. padding-bottom: 1rem !important;
  7185. }
  7186. .py-4 {
  7187. padding-top: 1.5rem !important;
  7188. padding-bottom: 1.5rem !important;
  7189. }
  7190. .py-5 {
  7191. padding-top: 3rem !important;
  7192. padding-bottom: 3rem !important;
  7193. }
  7194. .pt-0 {
  7195. padding-top: 0 !important;
  7196. }
  7197. .pt-1 {
  7198. padding-top: 0.25rem !important;
  7199. }
  7200. .pt-2 {
  7201. padding-top: 0.5rem !important;
  7202. }
  7203. .pt-3 {
  7204. padding-top: 1rem !important;
  7205. }
  7206. .pt-4 {
  7207. padding-top: 1.5rem !important;
  7208. }
  7209. .pt-5 {
  7210. padding-top: 3rem !important;
  7211. }
  7212. .pe-0 {
  7213. padding-right: 0 !important;
  7214. }
  7215. .pe-1 {
  7216. padding-right: 0.25rem !important;
  7217. }
  7218. .pe-2 {
  7219. padding-right: 0.5rem !important;
  7220. }
  7221. .pe-3 {
  7222. padding-right: 1rem !important;
  7223. }
  7224. .pe-4 {
  7225. padding-right: 1.5rem !important;
  7226. }
  7227. .pe-5 {
  7228. padding-right: 3rem !important;
  7229. }
  7230. .pb-0 {
  7231. padding-bottom: 0 !important;
  7232. }
  7233. .pb-1 {
  7234. padding-bottom: 0.25rem !important;
  7235. }
  7236. .pb-2 {
  7237. padding-bottom: 0.5rem !important;
  7238. }
  7239. .pb-3 {
  7240. padding-bottom: 1rem !important;
  7241. }
  7242. .pb-4 {
  7243. padding-bottom: 1.5rem !important;
  7244. }
  7245. .pb-5 {
  7246. padding-bottom: 3rem !important;
  7247. }
  7248. .ps-0 {
  7249. padding-left: 0 !important;
  7250. }
  7251. .ps-1 {
  7252. padding-left: 0.25rem !important;
  7253. }
  7254. .ps-2 {
  7255. padding-left: 0.5rem !important;
  7256. }
  7257. .ps-3 {
  7258. padding-left: 1rem !important;
  7259. }
  7260. .ps-4 {
  7261. padding-left: 1.5rem !important;
  7262. }
  7263. .ps-5 {
  7264. padding-left: 3rem !important;
  7265. }
  7266. .gap-0 {
  7267. gap: 0 !important;
  7268. }
  7269. .gap-1 {
  7270. gap: 0.25rem !important;
  7271. }
  7272. .gap-2 {
  7273. gap: 0.5rem !important;
  7274. }
  7275. .gap-3 {
  7276. gap: 1rem !important;
  7277. }
  7278. .gap-4 {
  7279. gap: 1.5rem !important;
  7280. }
  7281. .gap-5 {
  7282. gap: 3rem !important;
  7283. }
  7284. .font-monospace {
  7285. font-family: var(--bs-font-monospace) !important;
  7286. }
  7287. .fs-1 {
  7288. font-size: calc(1.375rem + 1.5vw) !important;
  7289. }
  7290. .fs-2 {
  7291. font-size: calc(1.325rem + 0.9vw) !important;
  7292. }
  7293. .fs-3 {
  7294. font-size: calc(1.3rem + 0.6vw) !important;
  7295. }
  7296. .fs-4 {
  7297. font-size: calc(1.275rem + 0.3vw) !important;
  7298. }
  7299. .fs-5 {
  7300. font-size: 1.25rem !important;
  7301. }
  7302. .fs-6 {
  7303. font-size: 1rem !important;
  7304. }
  7305. .fst-italic {
  7306. font-style: italic !important;
  7307. }
  7308. .fst-normal {
  7309. font-style: normal !important;
  7310. }
  7311. .fw-light {
  7312. font-weight: 300 !important;
  7313. }
  7314. .fw-lighter {
  7315. font-weight: lighter !important;
  7316. }
  7317. .fw-normal {
  7318. font-weight: 400 !important;
  7319. }
  7320. .fw-bold {
  7321. font-weight: 700 !important;
  7322. }
  7323. .fw-semibold {
  7324. font-weight: 600 !important;
  7325. }
  7326. .fw-bolder {
  7327. font-weight: bolder !important;
  7328. }
  7329. .lh-1 {
  7330. line-height: 1 !important;
  7331. }
  7332. .lh-sm {
  7333. line-height: 1.25 !important;
  7334. }
  7335. .lh-base {
  7336. line-height: 1.5 !important;
  7337. }
  7338. .lh-lg {
  7339. line-height: 2 !important;
  7340. }
  7341. .text-start {
  7342. text-align: left !important;
  7343. }
  7344. .text-end {
  7345. text-align: right !important;
  7346. }
  7347. .text-center {
  7348. text-align: center !important;
  7349. }
  7350. .text-decoration-none {
  7351. text-decoration: none !important;
  7352. }
  7353. .text-decoration-underline {
  7354. text-decoration: underline !important;
  7355. }
  7356. .text-decoration-line-through {
  7357. text-decoration: line-through !important;
  7358. }
  7359. .text-lowercase {
  7360. text-transform: lowercase !important;
  7361. }
  7362. .text-uppercase {
  7363. text-transform: uppercase !important;
  7364. }
  7365. .text-capitalize {
  7366. text-transform: capitalize !important;
  7367. }
  7368. .text-wrap {
  7369. white-space: normal !important;
  7370. }
  7371. .text-nowrap {
  7372. white-space: nowrap !important;
  7373. }
  7374. /* rtl:begin:remove */
  7375. .text-break {
  7376. word-wrap: break-word !important;
  7377. word-break: break-word !important;
  7378. }
  7379. /* rtl:end:remove */
  7380. .text-primary {
  7381. --bs-text-opacity: 1;
  7382. color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
  7383. }
  7384. .text-secondary {
  7385. --bs-text-opacity: 1;
  7386. color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
  7387. }
  7388. .text-success {
  7389. --bs-text-opacity: 1;
  7390. color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
  7391. }
  7392. .text-info {
  7393. --bs-text-opacity: 1;
  7394. color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
  7395. }
  7396. .text-warning {
  7397. --bs-text-opacity: 1;
  7398. color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
  7399. }
  7400. .text-danger {
  7401. --bs-text-opacity: 1;
  7402. color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
  7403. }
  7404. .text-light {
  7405. --bs-text-opacity: 1;
  7406. color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
  7407. }
  7408. .text-dark {
  7409. --bs-text-opacity: 1;
  7410. color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
  7411. }
  7412. .text-black {
  7413. --bs-text-opacity: 1;
  7414. color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
  7415. }
  7416. .text-white {
  7417. --bs-text-opacity: 1;
  7418. color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
  7419. }
  7420. .text-body {
  7421. --bs-text-opacity: 1;
  7422. color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
  7423. }
  7424. .text-muted {
  7425. --bs-text-opacity: 1;
  7426. color: #6c757d !important;
  7427. }
  7428. .text-black-50 {
  7429. --bs-text-opacity: 1;
  7430. color: rgba(0, 0, 0, 0.5) !important;
  7431. }
  7432. .text-white-50 {
  7433. --bs-text-opacity: 1;
  7434. color: rgba(255, 255, 255, 0.5) !important;
  7435. }
  7436. .text-reset {
  7437. --bs-text-opacity: 1;
  7438. color: inherit !important;
  7439. }
  7440. .text-opacity-25 {
  7441. --bs-text-opacity: 0.25;
  7442. }
  7443. .text-opacity-50 {
  7444. --bs-text-opacity: 0.5;
  7445. }
  7446. .text-opacity-75 {
  7447. --bs-text-opacity: 0.75;
  7448. }
  7449. .text-opacity-100 {
  7450. --bs-text-opacity: 1;
  7451. }
  7452. .bg-primary {
  7453. --bs-bg-opacity: 1;
  7454. background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
  7455. }
  7456. .bg-secondary {
  7457. --bs-bg-opacity: 1;
  7458. background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
  7459. }
  7460. .bg-success {
  7461. --bs-bg-opacity: 1;
  7462. background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
  7463. }
  7464. .bg-info {
  7465. --bs-bg-opacity: 1;
  7466. background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
  7467. }
  7468. .bg-warning {
  7469. --bs-bg-opacity: 1;
  7470. background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  7471. }
  7472. .bg-danger {
  7473. --bs-bg-opacity: 1;
  7474. background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
  7475. }
  7476. .bg-light {
  7477. --bs-bg-opacity: 1;
  7478. background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  7479. }
  7480. .bg-dark {
  7481. --bs-bg-opacity: 1;
  7482. background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  7483. }
  7484. .bg-black {
  7485. --bs-bg-opacity: 1;
  7486. background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
  7487. }
  7488. .bg-white {
  7489. --bs-bg-opacity: 1;
  7490. background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  7491. }
  7492. .bg-body {
  7493. --bs-bg-opacity: 1;
  7494. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  7495. }
  7496. .bg-transparent {
  7497. --bs-bg-opacity: 1;
  7498. background-color: transparent !important;
  7499. }
  7500. .bg-opacity-10 {
  7501. --bs-bg-opacity: 0.1;
  7502. }
  7503. .bg-opacity-25 {
  7504. --bs-bg-opacity: 0.25;
  7505. }
  7506. .bg-opacity-50 {
  7507. --bs-bg-opacity: 0.5;
  7508. }
  7509. .bg-opacity-75 {
  7510. --bs-bg-opacity: 0.75;
  7511. }
  7512. .bg-opacity-100 {
  7513. --bs-bg-opacity: 1;
  7514. }
  7515. .bg-gradient {
  7516. background-image: var(--bs-gradient) !important;
  7517. }
  7518. .user-select-all {
  7519. -webkit-user-select: all !important;
  7520. -moz-user-select: all !important;
  7521. user-select: all !important;
  7522. }
  7523. .user-select-auto {
  7524. -webkit-user-select: auto !important;
  7525. -moz-user-select: auto !important;
  7526. user-select: auto !important;
  7527. }
  7528. .user-select-none {
  7529. -webkit-user-select: none !important;
  7530. -moz-user-select: none !important;
  7531. user-select: none !important;
  7532. }
  7533. .pe-none {
  7534. pointer-events: none !important;
  7535. }
  7536. .pe-auto {
  7537. pointer-events: auto !important;
  7538. }
  7539. .rounded {
  7540. border-radius: var(--bs-border-radius) !important;
  7541. }
  7542. .rounded-0 {
  7543. border-radius: 0 !important;
  7544. }
  7545. .rounded-1 {
  7546. border-radius: var(--bs-border-radius-sm) !important;
  7547. }
  7548. .rounded-2 {
  7549. border-radius: var(--bs-border-radius) !important;
  7550. }
  7551. .rounded-3 {
  7552. border-radius: var(--bs-border-radius-lg) !important;
  7553. }
  7554. .rounded-4 {
  7555. border-radius: var(--bs-border-radius-xl) !important;
  7556. }
  7557. .rounded-5 {
  7558. border-radius: var(--bs-border-radius-2xl) !important;
  7559. }
  7560. .rounded-circle {
  7561. border-radius: 50% !important;
  7562. }
  7563. .rounded-pill {
  7564. border-radius: var(--bs-border-radius-pill) !important;
  7565. }
  7566. .rounded-top {
  7567. border-top-left-radius: var(--bs-border-radius) !important;
  7568. border-top-right-radius: var(--bs-border-radius) !important;
  7569. }
  7570. .rounded-end {
  7571. border-top-right-radius: var(--bs-border-radius) !important;
  7572. border-bottom-right-radius: var(--bs-border-radius) !important;
  7573. }
  7574. .rounded-bottom {
  7575. border-bottom-right-radius: var(--bs-border-radius) !important;
  7576. border-bottom-left-radius: var(--bs-border-radius) !important;
  7577. }
  7578. .rounded-start {
  7579. border-bottom-left-radius: var(--bs-border-radius) !important;
  7580. border-top-left-radius: var(--bs-border-radius) !important;
  7581. }
  7582. .visible {
  7583. visibility: visible !important;
  7584. }
  7585. .invisible {
  7586. visibility: hidden !important;
  7587. }
  7588. @media (min-width: 576px) {
  7589. .float-sm-start {
  7590. float: left !important;
  7591. }
  7592. .float-sm-end {
  7593. float: right !important;
  7594. }
  7595. .float-sm-none {
  7596. float: none !important;
  7597. }
  7598. .d-sm-inline {
  7599. display: inline !important;
  7600. }
  7601. .d-sm-inline-block {
  7602. display: inline-block !important;
  7603. }
  7604. .d-sm-block {
  7605. display: block !important;
  7606. }
  7607. .d-sm-grid {
  7608. display: grid !important;
  7609. }
  7610. .d-sm-table {
  7611. display: table !important;
  7612. }
  7613. .d-sm-table-row {
  7614. display: table-row !important;
  7615. }
  7616. .d-sm-table-cell {
  7617. display: table-cell !important;
  7618. }
  7619. .d-sm-flex {
  7620. display: flex !important;
  7621. }
  7622. .d-sm-inline-flex {
  7623. display: inline-flex !important;
  7624. }
  7625. .d-sm-none {
  7626. display: none !important;
  7627. }
  7628. .flex-sm-fill {
  7629. flex: 1 1 auto !important;
  7630. }
  7631. .flex-sm-row {
  7632. flex-direction: row !important;
  7633. }
  7634. .flex-sm-column {
  7635. flex-direction: column !important;
  7636. }
  7637. .flex-sm-row-reverse {
  7638. flex-direction: row-reverse !important;
  7639. }
  7640. .flex-sm-column-reverse {
  7641. flex-direction: column-reverse !important;
  7642. }
  7643. .flex-sm-grow-0 {
  7644. flex-grow: 0 !important;
  7645. }
  7646. .flex-sm-grow-1 {
  7647. flex-grow: 1 !important;
  7648. }
  7649. .flex-sm-shrink-0 {
  7650. flex-shrink: 0 !important;
  7651. }
  7652. .flex-sm-shrink-1 {
  7653. flex-shrink: 1 !important;
  7654. }
  7655. .flex-sm-wrap {
  7656. flex-wrap: wrap !important;
  7657. }
  7658. .flex-sm-nowrap {
  7659. flex-wrap: nowrap !important;
  7660. }
  7661. .flex-sm-wrap-reverse {
  7662. flex-wrap: wrap-reverse !important;
  7663. }
  7664. .justify-content-sm-start {
  7665. justify-content: flex-start !important;
  7666. }
  7667. .justify-content-sm-end {
  7668. justify-content: flex-end !important;
  7669. }
  7670. .justify-content-sm-center {
  7671. justify-content: center !important;
  7672. }
  7673. .justify-content-sm-between {
  7674. justify-content: space-between !important;
  7675. }
  7676. .justify-content-sm-around {
  7677. justify-content: space-around !important;
  7678. }
  7679. .justify-content-sm-evenly {
  7680. justify-content: space-evenly !important;
  7681. }
  7682. .align-items-sm-start {
  7683. align-items: flex-start !important;
  7684. }
  7685. .align-items-sm-end {
  7686. align-items: flex-end !important;
  7687. }
  7688. .align-items-sm-center {
  7689. align-items: center !important;
  7690. }
  7691. .align-items-sm-baseline {
  7692. align-items: baseline !important;
  7693. }
  7694. .align-items-sm-stretch {
  7695. align-items: stretch !important;
  7696. }
  7697. .align-content-sm-start {
  7698. align-content: flex-start !important;
  7699. }
  7700. .align-content-sm-end {
  7701. align-content: flex-end !important;
  7702. }
  7703. .align-content-sm-center {
  7704. align-content: center !important;
  7705. }
  7706. .align-content-sm-between {
  7707. align-content: space-between !important;
  7708. }
  7709. .align-content-sm-around {
  7710. align-content: space-around !important;
  7711. }
  7712. .align-content-sm-stretch {
  7713. align-content: stretch !important;
  7714. }
  7715. .align-self-sm-auto {
  7716. align-self: auto !important;
  7717. }
  7718. .align-self-sm-start {
  7719. align-self: flex-start !important;
  7720. }
  7721. .align-self-sm-end {
  7722. align-self: flex-end !important;
  7723. }
  7724. .align-self-sm-center {
  7725. align-self: center !important;
  7726. }
  7727. .align-self-sm-baseline {
  7728. align-self: baseline !important;
  7729. }
  7730. .align-self-sm-stretch {
  7731. align-self: stretch !important;
  7732. }
  7733. .order-sm-first {
  7734. order: -1 !important;
  7735. }
  7736. .order-sm-0 {
  7737. order: 0 !important;
  7738. }
  7739. .order-sm-1 {
  7740. order: 1 !important;
  7741. }
  7742. .order-sm-2 {
  7743. order: 2 !important;
  7744. }
  7745. .order-sm-3 {
  7746. order: 3 !important;
  7747. }
  7748. .order-sm-4 {
  7749. order: 4 !important;
  7750. }
  7751. .order-sm-5 {
  7752. order: 5 !important;
  7753. }
  7754. .order-sm-last {
  7755. order: 6 !important;
  7756. }
  7757. .m-sm-0 {
  7758. margin: 0 !important;
  7759. }
  7760. .m-sm-1 {
  7761. margin: 0.25rem !important;
  7762. }
  7763. .m-sm-2 {
  7764. margin: 0.5rem !important;
  7765. }
  7766. .m-sm-3 {
  7767. margin: 1rem !important;
  7768. }
  7769. .m-sm-4 {
  7770. margin: 1.5rem !important;
  7771. }
  7772. .m-sm-5 {
  7773. margin: 3rem !important;
  7774. }
  7775. .m-sm-auto {
  7776. margin: auto !important;
  7777. }
  7778. .mx-sm-0 {
  7779. margin-right: 0 !important;
  7780. margin-left: 0 !important;
  7781. }
  7782. .mx-sm-1 {
  7783. margin-right: 0.25rem !important;
  7784. margin-left: 0.25rem !important;
  7785. }
  7786. .mx-sm-2 {
  7787. margin-right: 0.5rem !important;
  7788. margin-left: 0.5rem !important;
  7789. }
  7790. .mx-sm-3 {
  7791. margin-right: 1rem !important;
  7792. margin-left: 1rem !important;
  7793. }
  7794. .mx-sm-4 {
  7795. margin-right: 1.5rem !important;
  7796. margin-left: 1.5rem !important;
  7797. }
  7798. .mx-sm-5 {
  7799. margin-right: 3rem !important;
  7800. margin-left: 3rem !important;
  7801. }
  7802. .mx-sm-auto {
  7803. margin-right: auto !important;
  7804. margin-left: auto !important;
  7805. }
  7806. .my-sm-0 {
  7807. margin-top: 0 !important;
  7808. margin-bottom: 0 !important;
  7809. }
  7810. .my-sm-1 {
  7811. margin-top: 0.25rem !important;
  7812. margin-bottom: 0.25rem !important;
  7813. }
  7814. .my-sm-2 {
  7815. margin-top: 0.5rem !important;
  7816. margin-bottom: 0.5rem !important;
  7817. }
  7818. .my-sm-3 {
  7819. margin-top: 1rem !important;
  7820. margin-bottom: 1rem !important;
  7821. }
  7822. .my-sm-4 {
  7823. margin-top: 1.5rem !important;
  7824. margin-bottom: 1.5rem !important;
  7825. }
  7826. .my-sm-5 {
  7827. margin-top: 3rem !important;
  7828. margin-bottom: 3rem !important;
  7829. }
  7830. .my-sm-auto {
  7831. margin-top: auto !important;
  7832. margin-bottom: auto !important;
  7833. }
  7834. .mt-sm-0 {
  7835. margin-top: 0 !important;
  7836. }
  7837. .mt-sm-1 {
  7838. margin-top: 0.25rem !important;
  7839. }
  7840. .mt-sm-2 {
  7841. margin-top: 0.5rem !important;
  7842. }
  7843. .mt-sm-3 {
  7844. margin-top: 1rem !important;
  7845. }
  7846. .mt-sm-4 {
  7847. margin-top: 1.5rem !important;
  7848. }
  7849. .mt-sm-5 {
  7850. margin-top: 3rem !important;
  7851. }
  7852. .mt-sm-auto {
  7853. margin-top: auto !important;
  7854. }
  7855. .me-sm-0 {
  7856. margin-right: 0 !important;
  7857. }
  7858. .me-sm-1 {
  7859. margin-right: 0.25rem !important;
  7860. }
  7861. .me-sm-2 {
  7862. margin-right: 0.5rem !important;
  7863. }
  7864. .me-sm-3 {
  7865. margin-right: 1rem !important;
  7866. }
  7867. .me-sm-4 {
  7868. margin-right: 1.5rem !important;
  7869. }
  7870. .me-sm-5 {
  7871. margin-right: 3rem !important;
  7872. }
  7873. .me-sm-auto {
  7874. margin-right: auto !important;
  7875. }
  7876. .mb-sm-0 {
  7877. margin-bottom: 0 !important;
  7878. }
  7879. .mb-sm-1 {
  7880. margin-bottom: 0.25rem !important;
  7881. }
  7882. .mb-sm-2 {
  7883. margin-bottom: 0.5rem !important;
  7884. }
  7885. .mb-sm-3 {
  7886. margin-bottom: 1rem !important;
  7887. }
  7888. .mb-sm-4 {
  7889. margin-bottom: 1.5rem !important;
  7890. }
  7891. .mb-sm-5 {
  7892. margin-bottom: 3rem !important;
  7893. }
  7894. .mb-sm-auto {
  7895. margin-bottom: auto !important;
  7896. }
  7897. .ms-sm-0 {
  7898. margin-left: 0 !important;
  7899. }
  7900. .ms-sm-1 {
  7901. margin-left: 0.25rem !important;
  7902. }
  7903. .ms-sm-2 {
  7904. margin-left: 0.5rem !important;
  7905. }
  7906. .ms-sm-3 {
  7907. margin-left: 1rem !important;
  7908. }
  7909. .ms-sm-4 {
  7910. margin-left: 1.5rem !important;
  7911. }
  7912. .ms-sm-5 {
  7913. margin-left: 3rem !important;
  7914. }
  7915. .ms-sm-auto {
  7916. margin-left: auto !important;
  7917. }
  7918. .p-sm-0 {
  7919. padding: 0 !important;
  7920. }
  7921. .p-sm-1 {
  7922. padding: 0.25rem !important;
  7923. }
  7924. .p-sm-2 {
  7925. padding: 0.5rem !important;
  7926. }
  7927. .p-sm-3 {
  7928. padding: 1rem !important;
  7929. }
  7930. .p-sm-4 {
  7931. padding: 1.5rem !important;
  7932. }
  7933. .p-sm-5 {
  7934. padding: 3rem !important;
  7935. }
  7936. .px-sm-0 {
  7937. padding-right: 0 !important;
  7938. padding-left: 0 !important;
  7939. }
  7940. .px-sm-1 {
  7941. padding-right: 0.25rem !important;
  7942. padding-left: 0.25rem !important;
  7943. }
  7944. .px-sm-2 {
  7945. padding-right: 0.5rem !important;
  7946. padding-left: 0.5rem !important;
  7947. }
  7948. .px-sm-3 {
  7949. padding-right: 1rem !important;
  7950. padding-left: 1rem !important;
  7951. }
  7952. .px-sm-4 {
  7953. padding-right: 1.5rem !important;
  7954. padding-left: 1.5rem !important;
  7955. }
  7956. .px-sm-5 {
  7957. padding-right: 3rem !important;
  7958. padding-left: 3rem !important;
  7959. }
  7960. .py-sm-0 {
  7961. padding-top: 0 !important;
  7962. padding-bottom: 0 !important;
  7963. }
  7964. .py-sm-1 {
  7965. padding-top: 0.25rem !important;
  7966. padding-bottom: 0.25rem !important;
  7967. }
  7968. .py-sm-2 {
  7969. padding-top: 0.5rem !important;
  7970. padding-bottom: 0.5rem !important;
  7971. }
  7972. .py-sm-3 {
  7973. padding-top: 1rem !important;
  7974. padding-bottom: 1rem !important;
  7975. }
  7976. .py-sm-4 {
  7977. padding-top: 1.5rem !important;
  7978. padding-bottom: 1.5rem !important;
  7979. }
  7980. .py-sm-5 {
  7981. padding-top: 3rem !important;
  7982. padding-bottom: 3rem !important;
  7983. }
  7984. .pt-sm-0 {
  7985. padding-top: 0 !important;
  7986. }
  7987. .pt-sm-1 {
  7988. padding-top: 0.25rem !important;
  7989. }
  7990. .pt-sm-2 {
  7991. padding-top: 0.5rem !important;
  7992. }
  7993. .pt-sm-3 {
  7994. padding-top: 1rem !important;
  7995. }
  7996. .pt-sm-4 {
  7997. padding-top: 1.5rem !important;
  7998. }
  7999. .pt-sm-5 {
  8000. padding-top: 3rem !important;
  8001. }
  8002. .pe-sm-0 {
  8003. padding-right: 0 !important;
  8004. }
  8005. .pe-sm-1 {
  8006. padding-right: 0.25rem !important;
  8007. }
  8008. .pe-sm-2 {
  8009. padding-right: 0.5rem !important;
  8010. }
  8011. .pe-sm-3 {
  8012. padding-right: 1rem !important;
  8013. }
  8014. .pe-sm-4 {
  8015. padding-right: 1.5rem !important;
  8016. }
  8017. .pe-sm-5 {
  8018. padding-right: 3rem !important;
  8019. }
  8020. .pb-sm-0 {
  8021. padding-bottom: 0 !important;
  8022. }
  8023. .pb-sm-1 {
  8024. padding-bottom: 0.25rem !important;
  8025. }
  8026. .pb-sm-2 {
  8027. padding-bottom: 0.5rem !important;
  8028. }
  8029. .pb-sm-3 {
  8030. padding-bottom: 1rem !important;
  8031. }
  8032. .pb-sm-4 {
  8033. padding-bottom: 1.5rem !important;
  8034. }
  8035. .pb-sm-5 {
  8036. padding-bottom: 3rem !important;
  8037. }
  8038. .ps-sm-0 {
  8039. padding-left: 0 !important;
  8040. }
  8041. .ps-sm-1 {
  8042. padding-left: 0.25rem !important;
  8043. }
  8044. .ps-sm-2 {
  8045. padding-left: 0.5rem !important;
  8046. }
  8047. .ps-sm-3 {
  8048. padding-left: 1rem !important;
  8049. }
  8050. .ps-sm-4 {
  8051. padding-left: 1.5rem !important;
  8052. }
  8053. .ps-sm-5 {
  8054. padding-left: 3rem !important;
  8055. }
  8056. .gap-sm-0 {
  8057. gap: 0 !important;
  8058. }
  8059. .gap-sm-1 {
  8060. gap: 0.25rem !important;
  8061. }
  8062. .gap-sm-2 {
  8063. gap: 0.5rem !important;
  8064. }
  8065. .gap-sm-3 {
  8066. gap: 1rem !important;
  8067. }
  8068. .gap-sm-4 {
  8069. gap: 1.5rem !important;
  8070. }
  8071. .gap-sm-5 {
  8072. gap: 3rem !important;
  8073. }
  8074. .text-sm-start {
  8075. text-align: left !important;
  8076. }
  8077. .text-sm-end {
  8078. text-align: right !important;
  8079. }
  8080. .text-sm-center {
  8081. text-align: center !important;
  8082. }
  8083. }
  8084. @media (min-width: 768px) {
  8085. .float-md-start {
  8086. float: left !important;
  8087. }
  8088. .float-md-end {
  8089. float: right !important;
  8090. }
  8091. .float-md-none {
  8092. float: none !important;
  8093. }
  8094. .d-md-inline {
  8095. display: inline !important;
  8096. }
  8097. .d-md-inline-block {
  8098. display: inline-block !important;
  8099. }
  8100. .d-md-block {
  8101. display: block !important;
  8102. }
  8103. .d-md-grid {
  8104. display: grid !important;
  8105. }
  8106. .d-md-table {
  8107. display: table !important;
  8108. }
  8109. .d-md-table-row {
  8110. display: table-row !important;
  8111. }
  8112. .d-md-table-cell {
  8113. display: table-cell !important;
  8114. }
  8115. .d-md-flex {
  8116. display: flex !important;
  8117. }
  8118. .d-md-inline-flex {
  8119. display: inline-flex !important;
  8120. }
  8121. .d-md-none {
  8122. display: none !important;
  8123. }
  8124. .flex-md-fill {
  8125. flex: 1 1 auto !important;
  8126. }
  8127. .flex-md-row {
  8128. flex-direction: row !important;
  8129. }
  8130. .flex-md-column {
  8131. flex-direction: column !important;
  8132. }
  8133. .flex-md-row-reverse {
  8134. flex-direction: row-reverse !important;
  8135. }
  8136. .flex-md-column-reverse {
  8137. flex-direction: column-reverse !important;
  8138. }
  8139. .flex-md-grow-0 {
  8140. flex-grow: 0 !important;
  8141. }
  8142. .flex-md-grow-1 {
  8143. flex-grow: 1 !important;
  8144. }
  8145. .flex-md-shrink-0 {
  8146. flex-shrink: 0 !important;
  8147. }
  8148. .flex-md-shrink-1 {
  8149. flex-shrink: 1 !important;
  8150. }
  8151. .flex-md-wrap {
  8152. flex-wrap: wrap !important;
  8153. }
  8154. .flex-md-nowrap {
  8155. flex-wrap: nowrap !important;
  8156. }
  8157. .flex-md-wrap-reverse {
  8158. flex-wrap: wrap-reverse !important;
  8159. }
  8160. .justify-content-md-start {
  8161. justify-content: flex-start !important;
  8162. }
  8163. .justify-content-md-end {
  8164. justify-content: flex-end !important;
  8165. }
  8166. .justify-content-md-center {
  8167. justify-content: center !important;
  8168. }
  8169. .justify-content-md-between {
  8170. justify-content: space-between !important;
  8171. }
  8172. .justify-content-md-around {
  8173. justify-content: space-around !important;
  8174. }
  8175. .justify-content-md-evenly {
  8176. justify-content: space-evenly !important;
  8177. }
  8178. .align-items-md-start {
  8179. align-items: flex-start !important;
  8180. }
  8181. .align-items-md-end {
  8182. align-items: flex-end !important;
  8183. }
  8184. .align-items-md-center {
  8185. align-items: center !important;
  8186. }
  8187. .align-items-md-baseline {
  8188. align-items: baseline !important;
  8189. }
  8190. .align-items-md-stretch {
  8191. align-items: stretch !important;
  8192. }
  8193. .align-content-md-start {
  8194. align-content: flex-start !important;
  8195. }
  8196. .align-content-md-end {
  8197. align-content: flex-end !important;
  8198. }
  8199. .align-content-md-center {
  8200. align-content: center !important;
  8201. }
  8202. .align-content-md-between {
  8203. align-content: space-between !important;
  8204. }
  8205. .align-content-md-around {
  8206. align-content: space-around !important;
  8207. }
  8208. .align-content-md-stretch {
  8209. align-content: stretch !important;
  8210. }
  8211. .align-self-md-auto {
  8212. align-self: auto !important;
  8213. }
  8214. .align-self-md-start {
  8215. align-self: flex-start !important;
  8216. }
  8217. .align-self-md-end {
  8218. align-self: flex-end !important;
  8219. }
  8220. .align-self-md-center {
  8221. align-self: center !important;
  8222. }
  8223. .align-self-md-baseline {
  8224. align-self: baseline !important;
  8225. }
  8226. .align-self-md-stretch {
  8227. align-self: stretch !important;
  8228. }
  8229. .order-md-first {
  8230. order: -1 !important;
  8231. }
  8232. .order-md-0 {
  8233. order: 0 !important;
  8234. }
  8235. .order-md-1 {
  8236. order: 1 !important;
  8237. }
  8238. .order-md-2 {
  8239. order: 2 !important;
  8240. }
  8241. .order-md-3 {
  8242. order: 3 !important;
  8243. }
  8244. .order-md-4 {
  8245. order: 4 !important;
  8246. }
  8247. .order-md-5 {
  8248. order: 5 !important;
  8249. }
  8250. .order-md-last {
  8251. order: 6 !important;
  8252. }
  8253. .m-md-0 {
  8254. margin: 0 !important;
  8255. }
  8256. .m-md-1 {
  8257. margin: 0.25rem !important;
  8258. }
  8259. .m-md-2 {
  8260. margin: 0.5rem !important;
  8261. }
  8262. .m-md-3 {
  8263. margin: 1rem !important;
  8264. }
  8265. .m-md-4 {
  8266. margin: 1.5rem !important;
  8267. }
  8268. .m-md-5 {
  8269. margin: 3rem !important;
  8270. }
  8271. .m-md-auto {
  8272. margin: auto !important;
  8273. }
  8274. .mx-md-0 {
  8275. margin-right: 0 !important;
  8276. margin-left: 0 !important;
  8277. }
  8278. .mx-md-1 {
  8279. margin-right: 0.25rem !important;
  8280. margin-left: 0.25rem !important;
  8281. }
  8282. .mx-md-2 {
  8283. margin-right: 0.5rem !important;
  8284. margin-left: 0.5rem !important;
  8285. }
  8286. .mx-md-3 {
  8287. margin-right: 1rem !important;
  8288. margin-left: 1rem !important;
  8289. }
  8290. .mx-md-4 {
  8291. margin-right: 1.5rem !important;
  8292. margin-left: 1.5rem !important;
  8293. }
  8294. .mx-md-5 {
  8295. margin-right: 3rem !important;
  8296. margin-left: 3rem !important;
  8297. }
  8298. .mx-md-auto {
  8299. margin-right: auto !important;
  8300. margin-left: auto !important;
  8301. }
  8302. .my-md-0 {
  8303. margin-top: 0 !important;
  8304. margin-bottom: 0 !important;
  8305. }
  8306. .my-md-1 {
  8307. margin-top: 0.25rem !important;
  8308. margin-bottom: 0.25rem !important;
  8309. }
  8310. .my-md-2 {
  8311. margin-top: 0.5rem !important;
  8312. margin-bottom: 0.5rem !important;
  8313. }
  8314. .my-md-3 {
  8315. margin-top: 1rem !important;
  8316. margin-bottom: 1rem !important;
  8317. }
  8318. .my-md-4 {
  8319. margin-top: 1.5rem !important;
  8320. margin-bottom: 1.5rem !important;
  8321. }
  8322. .my-md-5 {
  8323. margin-top: 3rem !important;
  8324. margin-bottom: 3rem !important;
  8325. }
  8326. .my-md-auto {
  8327. margin-top: auto !important;
  8328. margin-bottom: auto !important;
  8329. }
  8330. .mt-md-0 {
  8331. margin-top: 0 !important;
  8332. }
  8333. .mt-md-1 {
  8334. margin-top: 0.25rem !important;
  8335. }
  8336. .mt-md-2 {
  8337. margin-top: 0.5rem !important;
  8338. }
  8339. .mt-md-3 {
  8340. margin-top: 1rem !important;
  8341. }
  8342. .mt-md-4 {
  8343. margin-top: 1.5rem !important;
  8344. }
  8345. .mt-md-5 {
  8346. margin-top: 3rem !important;
  8347. }
  8348. .mt-md-auto {
  8349. margin-top: auto !important;
  8350. }
  8351. .me-md-0 {
  8352. margin-right: 0 !important;
  8353. }
  8354. .me-md-1 {
  8355. margin-right: 0.25rem !important;
  8356. }
  8357. .me-md-2 {
  8358. margin-right: 0.5rem !important;
  8359. }
  8360. .me-md-3 {
  8361. margin-right: 1rem !important;
  8362. }
  8363. .me-md-4 {
  8364. margin-right: 1.5rem !important;
  8365. }
  8366. .me-md-5 {
  8367. margin-right: 3rem !important;
  8368. }
  8369. .me-md-auto {
  8370. margin-right: auto !important;
  8371. }
  8372. .mb-md-0 {
  8373. margin-bottom: 0 !important;
  8374. }
  8375. .mb-md-1 {
  8376. margin-bottom: 0.25rem !important;
  8377. }
  8378. .mb-md-2 {
  8379. margin-bottom: 0.5rem !important;
  8380. }
  8381. .mb-md-3 {
  8382. margin-bottom: 1rem !important;
  8383. }
  8384. .mb-md-4 {
  8385. margin-bottom: 1.5rem !important;
  8386. }
  8387. .mb-md-5 {
  8388. margin-bottom: 3rem !important;
  8389. }
  8390. .mb-md-auto {
  8391. margin-bottom: auto !important;
  8392. }
  8393. .ms-md-0 {
  8394. margin-left: 0 !important;
  8395. }
  8396. .ms-md-1 {
  8397. margin-left: 0.25rem !important;
  8398. }
  8399. .ms-md-2 {
  8400. margin-left: 0.5rem !important;
  8401. }
  8402. .ms-md-3 {
  8403. margin-left: 1rem !important;
  8404. }
  8405. .ms-md-4 {
  8406. margin-left: 1.5rem !important;
  8407. }
  8408. .ms-md-5 {
  8409. margin-left: 3rem !important;
  8410. }
  8411. .ms-md-auto {
  8412. margin-left: auto !important;
  8413. }
  8414. .p-md-0 {
  8415. padding: 0 !important;
  8416. }
  8417. .p-md-1 {
  8418. padding: 0.25rem !important;
  8419. }
  8420. .p-md-2 {
  8421. padding: 0.5rem !important;
  8422. }
  8423. .p-md-3 {
  8424. padding: 1rem !important;
  8425. }
  8426. .p-md-4 {
  8427. padding: 1.5rem !important;
  8428. }
  8429. .p-md-5 {
  8430. padding: 3rem !important;
  8431. }
  8432. .px-md-0 {
  8433. padding-right: 0 !important;
  8434. padding-left: 0 !important;
  8435. }
  8436. .px-md-1 {
  8437. padding-right: 0.25rem !important;
  8438. padding-left: 0.25rem !important;
  8439. }
  8440. .px-md-2 {
  8441. padding-right: 0.5rem !important;
  8442. padding-left: 0.5rem !important;
  8443. }
  8444. .px-md-3 {
  8445. padding-right: 1rem !important;
  8446. padding-left: 1rem !important;
  8447. }
  8448. .px-md-4 {
  8449. padding-right: 1.5rem !important;
  8450. padding-left: 1.5rem !important;
  8451. }
  8452. .px-md-5 {
  8453. padding-right: 3rem !important;
  8454. padding-left: 3rem !important;
  8455. }
  8456. .py-md-0 {
  8457. padding-top: 0 !important;
  8458. padding-bottom: 0 !important;
  8459. }
  8460. .py-md-1 {
  8461. padding-top: 0.25rem !important;
  8462. padding-bottom: 0.25rem !important;
  8463. }
  8464. .py-md-2 {
  8465. padding-top: 0.5rem !important;
  8466. padding-bottom: 0.5rem !important;
  8467. }
  8468. .py-md-3 {
  8469. padding-top: 1rem !important;
  8470. padding-bottom: 1rem !important;
  8471. }
  8472. .py-md-4 {
  8473. padding-top: 1.5rem !important;
  8474. padding-bottom: 1.5rem !important;
  8475. }
  8476. .py-md-5 {
  8477. padding-top: 3rem !important;
  8478. padding-bottom: 3rem !important;
  8479. }
  8480. .pt-md-0 {
  8481. padding-top: 0 !important;
  8482. }
  8483. .pt-md-1 {
  8484. padding-top: 0.25rem !important;
  8485. }
  8486. .pt-md-2 {
  8487. padding-top: 0.5rem !important;
  8488. }
  8489. .pt-md-3 {
  8490. padding-top: 1rem !important;
  8491. }
  8492. .pt-md-4 {
  8493. padding-top: 1.5rem !important;
  8494. }
  8495. .pt-md-5 {
  8496. padding-top: 3rem !important;
  8497. }
  8498. .pe-md-0 {
  8499. padding-right: 0 !important;
  8500. }
  8501. .pe-md-1 {
  8502. padding-right: 0.25rem !important;
  8503. }
  8504. .pe-md-2 {
  8505. padding-right: 0.5rem !important;
  8506. }
  8507. .pe-md-3 {
  8508. padding-right: 1rem !important;
  8509. }
  8510. .pe-md-4 {
  8511. padding-right: 1.5rem !important;
  8512. }
  8513. .pe-md-5 {
  8514. padding-right: 3rem !important;
  8515. }
  8516. .pb-md-0 {
  8517. padding-bottom: 0 !important;
  8518. }
  8519. .pb-md-1 {
  8520. padding-bottom: 0.25rem !important;
  8521. }
  8522. .pb-md-2 {
  8523. padding-bottom: 0.5rem !important;
  8524. }
  8525. .pb-md-3 {
  8526. padding-bottom: 1rem !important;
  8527. }
  8528. .pb-md-4 {
  8529. padding-bottom: 1.5rem !important;
  8530. }
  8531. .pb-md-5 {
  8532. padding-bottom: 3rem !important;
  8533. }
  8534. .ps-md-0 {
  8535. padding-left: 0 !important;
  8536. }
  8537. .ps-md-1 {
  8538. padding-left: 0.25rem !important;
  8539. }
  8540. .ps-md-2 {
  8541. padding-left: 0.5rem !important;
  8542. }
  8543. .ps-md-3 {
  8544. padding-left: 1rem !important;
  8545. }
  8546. .ps-md-4 {
  8547. padding-left: 1.5rem !important;
  8548. }
  8549. .ps-md-5 {
  8550. padding-left: 3rem !important;
  8551. }
  8552. .gap-md-0 {
  8553. gap: 0 !important;
  8554. }
  8555. .gap-md-1 {
  8556. gap: 0.25rem !important;
  8557. }
  8558. .gap-md-2 {
  8559. gap: 0.5rem !important;
  8560. }
  8561. .gap-md-3 {
  8562. gap: 1rem !important;
  8563. }
  8564. .gap-md-4 {
  8565. gap: 1.5rem !important;
  8566. }
  8567. .gap-md-5 {
  8568. gap: 3rem !important;
  8569. }
  8570. .text-md-start {
  8571. text-align: left !important;
  8572. }
  8573. .text-md-end {
  8574. text-align: right !important;
  8575. }
  8576. .text-md-center {
  8577. text-align: center !important;
  8578. }
  8579. }
  8580. @media (min-width: 992px) {
  8581. .float-lg-start {
  8582. float: left !important;
  8583. }
  8584. .float-lg-end {
  8585. float: right !important;
  8586. }
  8587. .float-lg-none {
  8588. float: none !important;
  8589. }
  8590. .d-lg-inline {
  8591. display: inline !important;
  8592. }
  8593. .d-lg-inline-block {
  8594. display: inline-block !important;
  8595. }
  8596. .d-lg-block {
  8597. display: block !important;
  8598. }
  8599. .d-lg-grid {
  8600. display: grid !important;
  8601. }
  8602. .d-lg-table {
  8603. display: table !important;
  8604. }
  8605. .d-lg-table-row {
  8606. display: table-row !important;
  8607. }
  8608. .d-lg-table-cell {
  8609. display: table-cell !important;
  8610. }
  8611. .d-lg-flex {
  8612. display: flex !important;
  8613. }
  8614. .d-lg-inline-flex {
  8615. display: inline-flex !important;
  8616. }
  8617. .d-lg-none {
  8618. display: none !important;
  8619. }
  8620. .flex-lg-fill {
  8621. flex: 1 1 auto !important;
  8622. }
  8623. .flex-lg-row {
  8624. flex-direction: row !important;
  8625. }
  8626. .flex-lg-column {
  8627. flex-direction: column !important;
  8628. }
  8629. .flex-lg-row-reverse {
  8630. flex-direction: row-reverse !important;
  8631. }
  8632. .flex-lg-column-reverse {
  8633. flex-direction: column-reverse !important;
  8634. }
  8635. .flex-lg-grow-0 {
  8636. flex-grow: 0 !important;
  8637. }
  8638. .flex-lg-grow-1 {
  8639. flex-grow: 1 !important;
  8640. }
  8641. .flex-lg-shrink-0 {
  8642. flex-shrink: 0 !important;
  8643. }
  8644. .flex-lg-shrink-1 {
  8645. flex-shrink: 1 !important;
  8646. }
  8647. .flex-lg-wrap {
  8648. flex-wrap: wrap !important;
  8649. }
  8650. .flex-lg-nowrap {
  8651. flex-wrap: nowrap !important;
  8652. }
  8653. .flex-lg-wrap-reverse {
  8654. flex-wrap: wrap-reverse !important;
  8655. }
  8656. .justify-content-lg-start {
  8657. justify-content: flex-start !important;
  8658. }
  8659. .justify-content-lg-end {
  8660. justify-content: flex-end !important;
  8661. }
  8662. .justify-content-lg-center {
  8663. justify-content: center !important;
  8664. }
  8665. .justify-content-lg-between {
  8666. justify-content: space-between !important;
  8667. }
  8668. .justify-content-lg-around {
  8669. justify-content: space-around !important;
  8670. }
  8671. .justify-content-lg-evenly {
  8672. justify-content: space-evenly !important;
  8673. }
  8674. .align-items-lg-start {
  8675. align-items: flex-start !important;
  8676. }
  8677. .align-items-lg-end {
  8678. align-items: flex-end !important;
  8679. }
  8680. .align-items-lg-center {
  8681. align-items: center !important;
  8682. }
  8683. .align-items-lg-baseline {
  8684. align-items: baseline !important;
  8685. }
  8686. .align-items-lg-stretch {
  8687. align-items: stretch !important;
  8688. }
  8689. .align-content-lg-start {
  8690. align-content: flex-start !important;
  8691. }
  8692. .align-content-lg-end {
  8693. align-content: flex-end !important;
  8694. }
  8695. .align-content-lg-center {
  8696. align-content: center !important;
  8697. }
  8698. .align-content-lg-between {
  8699. align-content: space-between !important;
  8700. }
  8701. .align-content-lg-around {
  8702. align-content: space-around !important;
  8703. }
  8704. .align-content-lg-stretch {
  8705. align-content: stretch !important;
  8706. }
  8707. .align-self-lg-auto {
  8708. align-self: auto !important;
  8709. }
  8710. .align-self-lg-start {
  8711. align-self: flex-start !important;
  8712. }
  8713. .align-self-lg-end {
  8714. align-self: flex-end !important;
  8715. }
  8716. .align-self-lg-center {
  8717. align-self: center !important;
  8718. }
  8719. .align-self-lg-baseline {
  8720. align-self: baseline !important;
  8721. }
  8722. .align-self-lg-stretch {
  8723. align-self: stretch !important;
  8724. }
  8725. .order-lg-first {
  8726. order: -1 !important;
  8727. }
  8728. .order-lg-0 {
  8729. order: 0 !important;
  8730. }
  8731. .order-lg-1 {
  8732. order: 1 !important;
  8733. }
  8734. .order-lg-2 {
  8735. order: 2 !important;
  8736. }
  8737. .order-lg-3 {
  8738. order: 3 !important;
  8739. }
  8740. .order-lg-4 {
  8741. order: 4 !important;
  8742. }
  8743. .order-lg-5 {
  8744. order: 5 !important;
  8745. }
  8746. .order-lg-last {
  8747. order: 6 !important;
  8748. }
  8749. .m-lg-0 {
  8750. margin: 0 !important;
  8751. }
  8752. .m-lg-1 {
  8753. margin: 0.25rem !important;
  8754. }
  8755. .m-lg-2 {
  8756. margin: 0.5rem !important;
  8757. }
  8758. .m-lg-3 {
  8759. margin: 1rem !important;
  8760. }
  8761. .m-lg-4 {
  8762. margin: 1.5rem !important;
  8763. }
  8764. .m-lg-5 {
  8765. margin: 3rem !important;
  8766. }
  8767. .m-lg-auto {
  8768. margin: auto !important;
  8769. }
  8770. .mx-lg-0 {
  8771. margin-right: 0 !important;
  8772. margin-left: 0 !important;
  8773. }
  8774. .mx-lg-1 {
  8775. margin-right: 0.25rem !important;
  8776. margin-left: 0.25rem !important;
  8777. }
  8778. .mx-lg-2 {
  8779. margin-right: 0.5rem !important;
  8780. margin-left: 0.5rem !important;
  8781. }
  8782. .mx-lg-3 {
  8783. margin-right: 1rem !important;
  8784. margin-left: 1rem !important;
  8785. }
  8786. .mx-lg-4 {
  8787. margin-right: 1.5rem !important;
  8788. margin-left: 1.5rem !important;
  8789. }
  8790. .mx-lg-5 {
  8791. margin-right: 3rem !important;
  8792. margin-left: 3rem !important;
  8793. }
  8794. .mx-lg-auto {
  8795. margin-right: auto !important;
  8796. margin-left: auto !important;
  8797. }
  8798. .my-lg-0 {
  8799. margin-top: 0 !important;
  8800. margin-bottom: 0 !important;
  8801. }
  8802. .my-lg-1 {
  8803. margin-top: 0.25rem !important;
  8804. margin-bottom: 0.25rem !important;
  8805. }
  8806. .my-lg-2 {
  8807. margin-top: 0.5rem !important;
  8808. margin-bottom: 0.5rem !important;
  8809. }
  8810. .my-lg-3 {
  8811. margin-top: 1rem !important;
  8812. margin-bottom: 1rem !important;
  8813. }
  8814. .my-lg-4 {
  8815. margin-top: 1.5rem !important;
  8816. margin-bottom: 1.5rem !important;
  8817. }
  8818. .my-lg-5 {
  8819. margin-top: 3rem !important;
  8820. margin-bottom: 3rem !important;
  8821. }
  8822. .my-lg-auto {
  8823. margin-top: auto !important;
  8824. margin-bottom: auto !important;
  8825. }
  8826. .mt-lg-0 {
  8827. margin-top: 0 !important;
  8828. }
  8829. .mt-lg-1 {
  8830. margin-top: 0.25rem !important;
  8831. }
  8832. .mt-lg-2 {
  8833. margin-top: 0.5rem !important;
  8834. }
  8835. .mt-lg-3 {
  8836. margin-top: 1rem !important;
  8837. }
  8838. .mt-lg-4 {
  8839. margin-top: 1.5rem !important;
  8840. }
  8841. .mt-lg-5 {
  8842. margin-top: 3rem !important;
  8843. }
  8844. .mt-lg-auto {
  8845. margin-top: auto !important;
  8846. }
  8847. .me-lg-0 {
  8848. margin-right: 0 !important;
  8849. }
  8850. .me-lg-1 {
  8851. margin-right: 0.25rem !important;
  8852. }
  8853. .me-lg-2 {
  8854. margin-right: 0.5rem !important;
  8855. }
  8856. .me-lg-3 {
  8857. margin-right: 1rem !important;
  8858. }
  8859. .me-lg-4 {
  8860. margin-right: 1.5rem !important;
  8861. }
  8862. .me-lg-5 {
  8863. margin-right: 3rem !important;
  8864. }
  8865. .me-lg-auto {
  8866. margin-right: auto !important;
  8867. }
  8868. .mb-lg-0 {
  8869. margin-bottom: 0 !important;
  8870. }
  8871. .mb-lg-1 {
  8872. margin-bottom: 0.25rem !important;
  8873. }
  8874. .mb-lg-2 {
  8875. margin-bottom: 0.5rem !important;
  8876. }
  8877. .mb-lg-3 {
  8878. margin-bottom: 1rem !important;
  8879. }
  8880. .mb-lg-4 {
  8881. margin-bottom: 1.5rem !important;
  8882. }
  8883. .mb-lg-5 {
  8884. margin-bottom: 3rem !important;
  8885. }
  8886. .mb-lg-auto {
  8887. margin-bottom: auto !important;
  8888. }
  8889. .ms-lg-0 {
  8890. margin-left: 0 !important;
  8891. }
  8892. .ms-lg-1 {
  8893. margin-left: 0.25rem !important;
  8894. }
  8895. .ms-lg-2 {
  8896. margin-left: 0.5rem !important;
  8897. }
  8898. .ms-lg-3 {
  8899. margin-left: 1rem !important;
  8900. }
  8901. .ms-lg-4 {
  8902. margin-left: 1.5rem !important;
  8903. }
  8904. .ms-lg-5 {
  8905. margin-left: 3rem !important;
  8906. }
  8907. .ms-lg-auto {
  8908. margin-left: auto !important;
  8909. }
  8910. .p-lg-0 {
  8911. padding: 0 !important;
  8912. }
  8913. .p-lg-1 {
  8914. padding: 0.25rem !important;
  8915. }
  8916. .p-lg-2 {
  8917. padding: 0.5rem !important;
  8918. }
  8919. .p-lg-3 {
  8920. padding: 1rem !important;
  8921. }
  8922. .p-lg-4 {
  8923. padding: 1.5rem !important;
  8924. }
  8925. .p-lg-5 {
  8926. padding: 3rem !important;
  8927. }
  8928. .px-lg-0 {
  8929. padding-right: 0 !important;
  8930. padding-left: 0 !important;
  8931. }
  8932. .px-lg-1 {
  8933. padding-right: 0.25rem !important;
  8934. padding-left: 0.25rem !important;
  8935. }
  8936. .px-lg-2 {
  8937. padding-right: 0.5rem !important;
  8938. padding-left: 0.5rem !important;
  8939. }
  8940. .px-lg-3 {
  8941. padding-right: 1rem !important;
  8942. padding-left: 1rem !important;
  8943. }
  8944. .px-lg-4 {
  8945. padding-right: 1.5rem !important;
  8946. padding-left: 1.5rem !important;
  8947. }
  8948. .px-lg-5 {
  8949. padding-right: 3rem !important;
  8950. padding-left: 3rem !important;
  8951. }
  8952. .py-lg-0 {
  8953. padding-top: 0 !important;
  8954. padding-bottom: 0 !important;
  8955. }
  8956. .py-lg-1 {
  8957. padding-top: 0.25rem !important;
  8958. padding-bottom: 0.25rem !important;
  8959. }
  8960. .py-lg-2 {
  8961. padding-top: 0.5rem !important;
  8962. padding-bottom: 0.5rem !important;
  8963. }
  8964. .py-lg-3 {
  8965. padding-top: 1rem !important;
  8966. padding-bottom: 1rem !important;
  8967. }
  8968. .py-lg-4 {
  8969. padding-top: 1.5rem !important;
  8970. padding-bottom: 1.5rem !important;
  8971. }
  8972. .py-lg-5 {
  8973. padding-top: 3rem !important;
  8974. padding-bottom: 3rem !important;
  8975. }
  8976. .pt-lg-0 {
  8977. padding-top: 0 !important;
  8978. }
  8979. .pt-lg-1 {
  8980. padding-top: 0.25rem !important;
  8981. }
  8982. .pt-lg-2 {
  8983. padding-top: 0.5rem !important;
  8984. }
  8985. .pt-lg-3 {
  8986. padding-top: 1rem !important;
  8987. }
  8988. .pt-lg-4 {
  8989. padding-top: 1.5rem !important;
  8990. }
  8991. .pt-lg-5 {
  8992. padding-top: 3rem !important;
  8993. }
  8994. .pe-lg-0 {
  8995. padding-right: 0 !important;
  8996. }
  8997. .pe-lg-1 {
  8998. padding-right: 0.25rem !important;
  8999. }
  9000. .pe-lg-2 {
  9001. padding-right: 0.5rem !important;
  9002. }
  9003. .pe-lg-3 {
  9004. padding-right: 1rem !important;
  9005. }
  9006. .pe-lg-4 {
  9007. padding-right: 1.5rem !important;
  9008. }
  9009. .pe-lg-5 {
  9010. padding-right: 3rem !important;
  9011. }
  9012. .pb-lg-0 {
  9013. padding-bottom: 0 !important;
  9014. }
  9015. .pb-lg-1 {
  9016. padding-bottom: 0.25rem !important;
  9017. }
  9018. .pb-lg-2 {
  9019. padding-bottom: 0.5rem !important;
  9020. }
  9021. .pb-lg-3 {
  9022. padding-bottom: 1rem !important;
  9023. }
  9024. .pb-lg-4 {
  9025. padding-bottom: 1.5rem !important;
  9026. }
  9027. .pb-lg-5 {
  9028. padding-bottom: 3rem !important;
  9029. }
  9030. .ps-lg-0 {
  9031. padding-left: 0 !important;
  9032. }
  9033. .ps-lg-1 {
  9034. padding-left: 0.25rem !important;
  9035. }
  9036. .ps-lg-2 {
  9037. padding-left: 0.5rem !important;
  9038. }
  9039. .ps-lg-3 {
  9040. padding-left: 1rem !important;
  9041. }
  9042. .ps-lg-4 {
  9043. padding-left: 1.5rem !important;
  9044. }
  9045. .ps-lg-5 {
  9046. padding-left: 3rem !important;
  9047. }
  9048. .gap-lg-0 {
  9049. gap: 0 !important;
  9050. }
  9051. .gap-lg-1 {
  9052. gap: 0.25rem !important;
  9053. }
  9054. .gap-lg-2 {
  9055. gap: 0.5rem !important;
  9056. }
  9057. .gap-lg-3 {
  9058. gap: 1rem !important;
  9059. }
  9060. .gap-lg-4 {
  9061. gap: 1.5rem !important;
  9062. }
  9063. .gap-lg-5 {
  9064. gap: 3rem !important;
  9065. }
  9066. .text-lg-start {
  9067. text-align: left !important;
  9068. }
  9069. .text-lg-end {
  9070. text-align: right !important;
  9071. }
  9072. .text-lg-center {
  9073. text-align: center !important;
  9074. }
  9075. }
  9076. @media (min-width: 1200px) {
  9077. .float-xl-start {
  9078. float: left !important;
  9079. }
  9080. .float-xl-end {
  9081. float: right !important;
  9082. }
  9083. .float-xl-none {
  9084. float: none !important;
  9085. }
  9086. .d-xl-inline {
  9087. display: inline !important;
  9088. }
  9089. .d-xl-inline-block {
  9090. display: inline-block !important;
  9091. }
  9092. .d-xl-block {
  9093. display: block !important;
  9094. }
  9095. .d-xl-grid {
  9096. display: grid !important;
  9097. }
  9098. .d-xl-table {
  9099. display: table !important;
  9100. }
  9101. .d-xl-table-row {
  9102. display: table-row !important;
  9103. }
  9104. .d-xl-table-cell {
  9105. display: table-cell !important;
  9106. }
  9107. .d-xl-flex {
  9108. display: flex !important;
  9109. }
  9110. .d-xl-inline-flex {
  9111. display: inline-flex !important;
  9112. }
  9113. .d-xl-none {
  9114. display: none !important;
  9115. }
  9116. .flex-xl-fill {
  9117. flex: 1 1 auto !important;
  9118. }
  9119. .flex-xl-row {
  9120. flex-direction: row !important;
  9121. }
  9122. .flex-xl-column {
  9123. flex-direction: column !important;
  9124. }
  9125. .flex-xl-row-reverse {
  9126. flex-direction: row-reverse !important;
  9127. }
  9128. .flex-xl-column-reverse {
  9129. flex-direction: column-reverse !important;
  9130. }
  9131. .flex-xl-grow-0 {
  9132. flex-grow: 0 !important;
  9133. }
  9134. .flex-xl-grow-1 {
  9135. flex-grow: 1 !important;
  9136. }
  9137. .flex-xl-shrink-0 {
  9138. flex-shrink: 0 !important;
  9139. }
  9140. .flex-xl-shrink-1 {
  9141. flex-shrink: 1 !important;
  9142. }
  9143. .flex-xl-wrap {
  9144. flex-wrap: wrap !important;
  9145. }
  9146. .flex-xl-nowrap {
  9147. flex-wrap: nowrap !important;
  9148. }
  9149. .flex-xl-wrap-reverse {
  9150. flex-wrap: wrap-reverse !important;
  9151. }
  9152. .justify-content-xl-start {
  9153. justify-content: flex-start !important;
  9154. }
  9155. .justify-content-xl-end {
  9156. justify-content: flex-end !important;
  9157. }
  9158. .justify-content-xl-center {
  9159. justify-content: center !important;
  9160. }
  9161. .justify-content-xl-between {
  9162. justify-content: space-between !important;
  9163. }
  9164. .justify-content-xl-around {
  9165. justify-content: space-around !important;
  9166. }
  9167. .justify-content-xl-evenly {
  9168. justify-content: space-evenly !important;
  9169. }
  9170. .align-items-xl-start {
  9171. align-items: flex-start !important;
  9172. }
  9173. .align-items-xl-end {
  9174. align-items: flex-end !important;
  9175. }
  9176. .align-items-xl-center {
  9177. align-items: center !important;
  9178. }
  9179. .align-items-xl-baseline {
  9180. align-items: baseline !important;
  9181. }
  9182. .align-items-xl-stretch {
  9183. align-items: stretch !important;
  9184. }
  9185. .align-content-xl-start {
  9186. align-content: flex-start !important;
  9187. }
  9188. .align-content-xl-end {
  9189. align-content: flex-end !important;
  9190. }
  9191. .align-content-xl-center {
  9192. align-content: center !important;
  9193. }
  9194. .align-content-xl-between {
  9195. align-content: space-between !important;
  9196. }
  9197. .align-content-xl-around {
  9198. align-content: space-around !important;
  9199. }
  9200. .align-content-xl-stretch {
  9201. align-content: stretch !important;
  9202. }
  9203. .align-self-xl-auto {
  9204. align-self: auto !important;
  9205. }
  9206. .align-self-xl-start {
  9207. align-self: flex-start !important;
  9208. }
  9209. .align-self-xl-end {
  9210. align-self: flex-end !important;
  9211. }
  9212. .align-self-xl-center {
  9213. align-self: center !important;
  9214. }
  9215. .align-self-xl-baseline {
  9216. align-self: baseline !important;
  9217. }
  9218. .align-self-xl-stretch {
  9219. align-self: stretch !important;
  9220. }
  9221. .order-xl-first {
  9222. order: -1 !important;
  9223. }
  9224. .order-xl-0 {
  9225. order: 0 !important;
  9226. }
  9227. .order-xl-1 {
  9228. order: 1 !important;
  9229. }
  9230. .order-xl-2 {
  9231. order: 2 !important;
  9232. }
  9233. .order-xl-3 {
  9234. order: 3 !important;
  9235. }
  9236. .order-xl-4 {
  9237. order: 4 !important;
  9238. }
  9239. .order-xl-5 {
  9240. order: 5 !important;
  9241. }
  9242. .order-xl-last {
  9243. order: 6 !important;
  9244. }
  9245. .m-xl-0 {
  9246. margin: 0 !important;
  9247. }
  9248. .m-xl-1 {
  9249. margin: 0.25rem !important;
  9250. }
  9251. .m-xl-2 {
  9252. margin: 0.5rem !important;
  9253. }
  9254. .m-xl-3 {
  9255. margin: 1rem !important;
  9256. }
  9257. .m-xl-4 {
  9258. margin: 1.5rem !important;
  9259. }
  9260. .m-xl-5 {
  9261. margin: 3rem !important;
  9262. }
  9263. .m-xl-auto {
  9264. margin: auto !important;
  9265. }
  9266. .mx-xl-0 {
  9267. margin-right: 0 !important;
  9268. margin-left: 0 !important;
  9269. }
  9270. .mx-xl-1 {
  9271. margin-right: 0.25rem !important;
  9272. margin-left: 0.25rem !important;
  9273. }
  9274. .mx-xl-2 {
  9275. margin-right: 0.5rem !important;
  9276. margin-left: 0.5rem !important;
  9277. }
  9278. .mx-xl-3 {
  9279. margin-right: 1rem !important;
  9280. margin-left: 1rem !important;
  9281. }
  9282. .mx-xl-4 {
  9283. margin-right: 1.5rem !important;
  9284. margin-left: 1.5rem !important;
  9285. }
  9286. .mx-xl-5 {
  9287. margin-right: 3rem !important;
  9288. margin-left: 3rem !important;
  9289. }
  9290. .mx-xl-auto {
  9291. margin-right: auto !important;
  9292. margin-left: auto !important;
  9293. }
  9294. .my-xl-0 {
  9295. margin-top: 0 !important;
  9296. margin-bottom: 0 !important;
  9297. }
  9298. .my-xl-1 {
  9299. margin-top: 0.25rem !important;
  9300. margin-bottom: 0.25rem !important;
  9301. }
  9302. .my-xl-2 {
  9303. margin-top: 0.5rem !important;
  9304. margin-bottom: 0.5rem !important;
  9305. }
  9306. .my-xl-3 {
  9307. margin-top: 1rem !important;
  9308. margin-bottom: 1rem !important;
  9309. }
  9310. .my-xl-4 {
  9311. margin-top: 1.5rem !important;
  9312. margin-bottom: 1.5rem !important;
  9313. }
  9314. .my-xl-5 {
  9315. margin-top: 3rem !important;
  9316. margin-bottom: 3rem !important;
  9317. }
  9318. .my-xl-auto {
  9319. margin-top: auto !important;
  9320. margin-bottom: auto !important;
  9321. }
  9322. .mt-xl-0 {
  9323. margin-top: 0 !important;
  9324. }
  9325. .mt-xl-1 {
  9326. margin-top: 0.25rem !important;
  9327. }
  9328. .mt-xl-2 {
  9329. margin-top: 0.5rem !important;
  9330. }
  9331. .mt-xl-3 {
  9332. margin-top: 1rem !important;
  9333. }
  9334. .mt-xl-4 {
  9335. margin-top: 1.5rem !important;
  9336. }
  9337. .mt-xl-5 {
  9338. margin-top: 3rem !important;
  9339. }
  9340. .mt-xl-auto {
  9341. margin-top: auto !important;
  9342. }
  9343. .me-xl-0 {
  9344. margin-right: 0 !important;
  9345. }
  9346. .me-xl-1 {
  9347. margin-right: 0.25rem !important;
  9348. }
  9349. .me-xl-2 {
  9350. margin-right: 0.5rem !important;
  9351. }
  9352. .me-xl-3 {
  9353. margin-right: 1rem !important;
  9354. }
  9355. .me-xl-4 {
  9356. margin-right: 1.5rem !important;
  9357. }
  9358. .me-xl-5 {
  9359. margin-right: 3rem !important;
  9360. }
  9361. .me-xl-auto {
  9362. margin-right: auto !important;
  9363. }
  9364. .mb-xl-0 {
  9365. margin-bottom: 0 !important;
  9366. }
  9367. .mb-xl-1 {
  9368. margin-bottom: 0.25rem !important;
  9369. }
  9370. .mb-xl-2 {
  9371. margin-bottom: 0.5rem !important;
  9372. }
  9373. .mb-xl-3 {
  9374. margin-bottom: 1rem !important;
  9375. }
  9376. .mb-xl-4 {
  9377. margin-bottom: 1.5rem !important;
  9378. }
  9379. .mb-xl-5 {
  9380. margin-bottom: 3rem !important;
  9381. }
  9382. .mb-xl-auto {
  9383. margin-bottom: auto !important;
  9384. }
  9385. .ms-xl-0 {
  9386. margin-left: 0 !important;
  9387. }
  9388. .ms-xl-1 {
  9389. margin-left: 0.25rem !important;
  9390. }
  9391. .ms-xl-2 {
  9392. margin-left: 0.5rem !important;
  9393. }
  9394. .ms-xl-3 {
  9395. margin-left: 1rem !important;
  9396. }
  9397. .ms-xl-4 {
  9398. margin-left: 1.5rem !important;
  9399. }
  9400. .ms-xl-5 {
  9401. margin-left: 3rem !important;
  9402. }
  9403. .ms-xl-auto {
  9404. margin-left: auto !important;
  9405. }
  9406. .p-xl-0 {
  9407. padding: 0 !important;
  9408. }
  9409. .p-xl-1 {
  9410. padding: 0.25rem !important;
  9411. }
  9412. .p-xl-2 {
  9413. padding: 0.5rem !important;
  9414. }
  9415. .p-xl-3 {
  9416. padding: 1rem !important;
  9417. }
  9418. .p-xl-4 {
  9419. padding: 1.5rem !important;
  9420. }
  9421. .p-xl-5 {
  9422. padding: 3rem !important;
  9423. }
  9424. .px-xl-0 {
  9425. padding-right: 0 !important;
  9426. padding-left: 0 !important;
  9427. }
  9428. .px-xl-1 {
  9429. padding-right: 0.25rem !important;
  9430. padding-left: 0.25rem !important;
  9431. }
  9432. .px-xl-2 {
  9433. padding-right: 0.5rem !important;
  9434. padding-left: 0.5rem !important;
  9435. }
  9436. .px-xl-3 {
  9437. padding-right: 1rem !important;
  9438. padding-left: 1rem !important;
  9439. }
  9440. .px-xl-4 {
  9441. padding-right: 1.5rem !important;
  9442. padding-left: 1.5rem !important;
  9443. }
  9444. .px-xl-5 {
  9445. padding-right: 3rem !important;
  9446. padding-left: 3rem !important;
  9447. }
  9448. .py-xl-0 {
  9449. padding-top: 0 !important;
  9450. padding-bottom: 0 !important;
  9451. }
  9452. .py-xl-1 {
  9453. padding-top: 0.25rem !important;
  9454. padding-bottom: 0.25rem !important;
  9455. }
  9456. .py-xl-2 {
  9457. padding-top: 0.5rem !important;
  9458. padding-bottom: 0.5rem !important;
  9459. }
  9460. .py-xl-3 {
  9461. padding-top: 1rem !important;
  9462. padding-bottom: 1rem !important;
  9463. }
  9464. .py-xl-4 {
  9465. padding-top: 1.5rem !important;
  9466. padding-bottom: 1.5rem !important;
  9467. }
  9468. .py-xl-5 {
  9469. padding-top: 3rem !important;
  9470. padding-bottom: 3rem !important;
  9471. }
  9472. .pt-xl-0 {
  9473. padding-top: 0 !important;
  9474. }
  9475. .pt-xl-1 {
  9476. padding-top: 0.25rem !important;
  9477. }
  9478. .pt-xl-2 {
  9479. padding-top: 0.5rem !important;
  9480. }
  9481. .pt-xl-3 {
  9482. padding-top: 1rem !important;
  9483. }
  9484. .pt-xl-4 {
  9485. padding-top: 1.5rem !important;
  9486. }
  9487. .pt-xl-5 {
  9488. padding-top: 3rem !important;
  9489. }
  9490. .pe-xl-0 {
  9491. padding-right: 0 !important;
  9492. }
  9493. .pe-xl-1 {
  9494. padding-right: 0.25rem !important;
  9495. }
  9496. .pe-xl-2 {
  9497. padding-right: 0.5rem !important;
  9498. }
  9499. .pe-xl-3 {
  9500. padding-right: 1rem !important;
  9501. }
  9502. .pe-xl-4 {
  9503. padding-right: 1.5rem !important;
  9504. }
  9505. .pe-xl-5 {
  9506. padding-right: 3rem !important;
  9507. }
  9508. .pb-xl-0 {
  9509. padding-bottom: 0 !important;
  9510. }
  9511. .pb-xl-1 {
  9512. padding-bottom: 0.25rem !important;
  9513. }
  9514. .pb-xl-2 {
  9515. padding-bottom: 0.5rem !important;
  9516. }
  9517. .pb-xl-3 {
  9518. padding-bottom: 1rem !important;
  9519. }
  9520. .pb-xl-4 {
  9521. padding-bottom: 1.5rem !important;
  9522. }
  9523. .pb-xl-5 {
  9524. padding-bottom: 3rem !important;
  9525. }
  9526. .ps-xl-0 {
  9527. padding-left: 0 !important;
  9528. }
  9529. .ps-xl-1 {
  9530. padding-left: 0.25rem !important;
  9531. }
  9532. .ps-xl-2 {
  9533. padding-left: 0.5rem !important;
  9534. }
  9535. .ps-xl-3 {
  9536. padding-left: 1rem !important;
  9537. }
  9538. .ps-xl-4 {
  9539. padding-left: 1.5rem !important;
  9540. }
  9541. .ps-xl-5 {
  9542. padding-left: 3rem !important;
  9543. }
  9544. .gap-xl-0 {
  9545. gap: 0 !important;
  9546. }
  9547. .gap-xl-1 {
  9548. gap: 0.25rem !important;
  9549. }
  9550. .gap-xl-2 {
  9551. gap: 0.5rem !important;
  9552. }
  9553. .gap-xl-3 {
  9554. gap: 1rem !important;
  9555. }
  9556. .gap-xl-4 {
  9557. gap: 1.5rem !important;
  9558. }
  9559. .gap-xl-5 {
  9560. gap: 3rem !important;
  9561. }
  9562. .text-xl-start {
  9563. text-align: left !important;
  9564. }
  9565. .text-xl-end {
  9566. text-align: right !important;
  9567. }
  9568. .text-xl-center {
  9569. text-align: center !important;
  9570. }
  9571. }
  9572. @media (min-width: 1400px) {
  9573. .float-xxl-start {
  9574. float: left !important;
  9575. }
  9576. .float-xxl-end {
  9577. float: right !important;
  9578. }
  9579. .float-xxl-none {
  9580. float: none !important;
  9581. }
  9582. .d-xxl-inline {
  9583. display: inline !important;
  9584. }
  9585. .d-xxl-inline-block {
  9586. display: inline-block !important;
  9587. }
  9588. .d-xxl-block {
  9589. display: block !important;
  9590. }
  9591. .d-xxl-grid {
  9592. display: grid !important;
  9593. }
  9594. .d-xxl-table {
  9595. display: table !important;
  9596. }
  9597. .d-xxl-table-row {
  9598. display: table-row !important;
  9599. }
  9600. .d-xxl-table-cell {
  9601. display: table-cell !important;
  9602. }
  9603. .d-xxl-flex {
  9604. display: flex !important;
  9605. }
  9606. .d-xxl-inline-flex {
  9607. display: inline-flex !important;
  9608. }
  9609. .d-xxl-none {
  9610. display: none !important;
  9611. }
  9612. .flex-xxl-fill {
  9613. flex: 1 1 auto !important;
  9614. }
  9615. .flex-xxl-row {
  9616. flex-direction: row !important;
  9617. }
  9618. .flex-xxl-column {
  9619. flex-direction: column !important;
  9620. }
  9621. .flex-xxl-row-reverse {
  9622. flex-direction: row-reverse !important;
  9623. }
  9624. .flex-xxl-column-reverse {
  9625. flex-direction: column-reverse !important;
  9626. }
  9627. .flex-xxl-grow-0 {
  9628. flex-grow: 0 !important;
  9629. }
  9630. .flex-xxl-grow-1 {
  9631. flex-grow: 1 !important;
  9632. }
  9633. .flex-xxl-shrink-0 {
  9634. flex-shrink: 0 !important;
  9635. }
  9636. .flex-xxl-shrink-1 {
  9637. flex-shrink: 1 !important;
  9638. }
  9639. .flex-xxl-wrap {
  9640. flex-wrap: wrap !important;
  9641. }
  9642. .flex-xxl-nowrap {
  9643. flex-wrap: nowrap !important;
  9644. }
  9645. .flex-xxl-wrap-reverse {
  9646. flex-wrap: wrap-reverse !important;
  9647. }
  9648. .justify-content-xxl-start {
  9649. justify-content: flex-start !important;
  9650. }
  9651. .justify-content-xxl-end {
  9652. justify-content: flex-end !important;
  9653. }
  9654. .justify-content-xxl-center {
  9655. justify-content: center !important;
  9656. }
  9657. .justify-content-xxl-between {
  9658. justify-content: space-between !important;
  9659. }
  9660. .justify-content-xxl-around {
  9661. justify-content: space-around !important;
  9662. }
  9663. .justify-content-xxl-evenly {
  9664. justify-content: space-evenly !important;
  9665. }
  9666. .align-items-xxl-start {
  9667. align-items: flex-start !important;
  9668. }
  9669. .align-items-xxl-end {
  9670. align-items: flex-end !important;
  9671. }
  9672. .align-items-xxl-center {
  9673. align-items: center !important;
  9674. }
  9675. .align-items-xxl-baseline {
  9676. align-items: baseline !important;
  9677. }
  9678. .align-items-xxl-stretch {
  9679. align-items: stretch !important;
  9680. }
  9681. .align-content-xxl-start {
  9682. align-content: flex-start !important;
  9683. }
  9684. .align-content-xxl-end {
  9685. align-content: flex-end !important;
  9686. }
  9687. .align-content-xxl-center {
  9688. align-content: center !important;
  9689. }
  9690. .align-content-xxl-between {
  9691. align-content: space-between !important;
  9692. }
  9693. .align-content-xxl-around {
  9694. align-content: space-around !important;
  9695. }
  9696. .align-content-xxl-stretch {
  9697. align-content: stretch !important;
  9698. }
  9699. .align-self-xxl-auto {
  9700. align-self: auto !important;
  9701. }
  9702. .align-self-xxl-start {
  9703. align-self: flex-start !important;
  9704. }
  9705. .align-self-xxl-end {
  9706. align-self: flex-end !important;
  9707. }
  9708. .align-self-xxl-center {
  9709. align-self: center !important;
  9710. }
  9711. .align-self-xxl-baseline {
  9712. align-self: baseline !important;
  9713. }
  9714. .align-self-xxl-stretch {
  9715. align-self: stretch !important;
  9716. }
  9717. .order-xxl-first {
  9718. order: -1 !important;
  9719. }
  9720. .order-xxl-0 {
  9721. order: 0 !important;
  9722. }
  9723. .order-xxl-1 {
  9724. order: 1 !important;
  9725. }
  9726. .order-xxl-2 {
  9727. order: 2 !important;
  9728. }
  9729. .order-xxl-3 {
  9730. order: 3 !important;
  9731. }
  9732. .order-xxl-4 {
  9733. order: 4 !important;
  9734. }
  9735. .order-xxl-5 {
  9736. order: 5 !important;
  9737. }
  9738. .order-xxl-last {
  9739. order: 6 !important;
  9740. }
  9741. .m-xxl-0 {
  9742. margin: 0 !important;
  9743. }
  9744. .m-xxl-1 {
  9745. margin: 0.25rem !important;
  9746. }
  9747. .m-xxl-2 {
  9748. margin: 0.5rem !important;
  9749. }
  9750. .m-xxl-3 {
  9751. margin: 1rem !important;
  9752. }
  9753. .m-xxl-4 {
  9754. margin: 1.5rem !important;
  9755. }
  9756. .m-xxl-5 {
  9757. margin: 3rem !important;
  9758. }
  9759. .m-xxl-auto {
  9760. margin: auto !important;
  9761. }
  9762. .mx-xxl-0 {
  9763. margin-right: 0 !important;
  9764. margin-left: 0 !important;
  9765. }
  9766. .mx-xxl-1 {
  9767. margin-right: 0.25rem !important;
  9768. margin-left: 0.25rem !important;
  9769. }
  9770. .mx-xxl-2 {
  9771. margin-right: 0.5rem !important;
  9772. margin-left: 0.5rem !important;
  9773. }
  9774. .mx-xxl-3 {
  9775. margin-right: 1rem !important;
  9776. margin-left: 1rem !important;
  9777. }
  9778. .mx-xxl-4 {
  9779. margin-right: 1.5rem !important;
  9780. margin-left: 1.5rem !important;
  9781. }
  9782. .mx-xxl-5 {
  9783. margin-right: 3rem !important;
  9784. margin-left: 3rem !important;
  9785. }
  9786. .mx-xxl-auto {
  9787. margin-right: auto !important;
  9788. margin-left: auto !important;
  9789. }
  9790. .my-xxl-0 {
  9791. margin-top: 0 !important;
  9792. margin-bottom: 0 !important;
  9793. }
  9794. .my-xxl-1 {
  9795. margin-top: 0.25rem !important;
  9796. margin-bottom: 0.25rem !important;
  9797. }
  9798. .my-xxl-2 {
  9799. margin-top: 0.5rem !important;
  9800. margin-bottom: 0.5rem !important;
  9801. }
  9802. .my-xxl-3 {
  9803. margin-top: 1rem !important;
  9804. margin-bottom: 1rem !important;
  9805. }
  9806. .my-xxl-4 {
  9807. margin-top: 1.5rem !important;
  9808. margin-bottom: 1.5rem !important;
  9809. }
  9810. .my-xxl-5 {
  9811. margin-top: 3rem !important;
  9812. margin-bottom: 3rem !important;
  9813. }
  9814. .my-xxl-auto {
  9815. margin-top: auto !important;
  9816. margin-bottom: auto !important;
  9817. }
  9818. .mt-xxl-0 {
  9819. margin-top: 0 !important;
  9820. }
  9821. .mt-xxl-1 {
  9822. margin-top: 0.25rem !important;
  9823. }
  9824. .mt-xxl-2 {
  9825. margin-top: 0.5rem !important;
  9826. }
  9827. .mt-xxl-3 {
  9828. margin-top: 1rem !important;
  9829. }
  9830. .mt-xxl-4 {
  9831. margin-top: 1.5rem !important;
  9832. }
  9833. .mt-xxl-5 {
  9834. margin-top: 3rem !important;
  9835. }
  9836. .mt-xxl-auto {
  9837. margin-top: auto !important;
  9838. }
  9839. .me-xxl-0 {
  9840. margin-right: 0 !important;
  9841. }
  9842. .me-xxl-1 {
  9843. margin-right: 0.25rem !important;
  9844. }
  9845. .me-xxl-2 {
  9846. margin-right: 0.5rem !important;
  9847. }
  9848. .me-xxl-3 {
  9849. margin-right: 1rem !important;
  9850. }
  9851. .me-xxl-4 {
  9852. margin-right: 1.5rem !important;
  9853. }
  9854. .me-xxl-5 {
  9855. margin-right: 3rem !important;
  9856. }
  9857. .me-xxl-auto {
  9858. margin-right: auto !important;
  9859. }
  9860. .mb-xxl-0 {
  9861. margin-bottom: 0 !important;
  9862. }
  9863. .mb-xxl-1 {
  9864. margin-bottom: 0.25rem !important;
  9865. }
  9866. .mb-xxl-2 {
  9867. margin-bottom: 0.5rem !important;
  9868. }
  9869. .mb-xxl-3 {
  9870. margin-bottom: 1rem !important;
  9871. }
  9872. .mb-xxl-4 {
  9873. margin-bottom: 1.5rem !important;
  9874. }
  9875. .mb-xxl-5 {
  9876. margin-bottom: 3rem !important;
  9877. }
  9878. .mb-xxl-auto {
  9879. margin-bottom: auto !important;
  9880. }
  9881. .ms-xxl-0 {
  9882. margin-left: 0 !important;
  9883. }
  9884. .ms-xxl-1 {
  9885. margin-left: 0.25rem !important;
  9886. }
  9887. .ms-xxl-2 {
  9888. margin-left: 0.5rem !important;
  9889. }
  9890. .ms-xxl-3 {
  9891. margin-left: 1rem !important;
  9892. }
  9893. .ms-xxl-4 {
  9894. margin-left: 1.5rem !important;
  9895. }
  9896. .ms-xxl-5 {
  9897. margin-left: 3rem !important;
  9898. }
  9899. .ms-xxl-auto {
  9900. margin-left: auto !important;
  9901. }
  9902. .p-xxl-0 {
  9903. padding: 0 !important;
  9904. }
  9905. .p-xxl-1 {
  9906. padding: 0.25rem !important;
  9907. }
  9908. .p-xxl-2 {
  9909. padding: 0.5rem !important;
  9910. }
  9911. .p-xxl-3 {
  9912. padding: 1rem !important;
  9913. }
  9914. .p-xxl-4 {
  9915. padding: 1.5rem !important;
  9916. }
  9917. .p-xxl-5 {
  9918. padding: 3rem !important;
  9919. }
  9920. .px-xxl-0 {
  9921. padding-right: 0 !important;
  9922. padding-left: 0 !important;
  9923. }
  9924. .px-xxl-1 {
  9925. padding-right: 0.25rem !important;
  9926. padding-left: 0.25rem !important;
  9927. }
  9928. .px-xxl-2 {
  9929. padding-right: 0.5rem !important;
  9930. padding-left: 0.5rem !important;
  9931. }
  9932. .px-xxl-3 {
  9933. padding-right: 1rem !important;
  9934. padding-left: 1rem !important;
  9935. }
  9936. .px-xxl-4 {
  9937. padding-right: 1.5rem !important;
  9938. padding-left: 1.5rem !important;
  9939. }
  9940. .px-xxl-5 {
  9941. padding-right: 3rem !important;
  9942. padding-left: 3rem !important;
  9943. }
  9944. .py-xxl-0 {
  9945. padding-top: 0 !important;
  9946. padding-bottom: 0 !important;
  9947. }
  9948. .py-xxl-1 {
  9949. padding-top: 0.25rem !important;
  9950. padding-bottom: 0.25rem !important;
  9951. }
  9952. .py-xxl-2 {
  9953. padding-top: 0.5rem !important;
  9954. padding-bottom: 0.5rem !important;
  9955. }
  9956. .py-xxl-3 {
  9957. padding-top: 1rem !important;
  9958. padding-bottom: 1rem !important;
  9959. }
  9960. .py-xxl-4 {
  9961. padding-top: 1.5rem !important;
  9962. padding-bottom: 1.5rem !important;
  9963. }
  9964. .py-xxl-5 {
  9965. padding-top: 3rem !important;
  9966. padding-bottom: 3rem !important;
  9967. }
  9968. .pt-xxl-0 {
  9969. padding-top: 0 !important;
  9970. }
  9971. .pt-xxl-1 {
  9972. padding-top: 0.25rem !important;
  9973. }
  9974. .pt-xxl-2 {
  9975. padding-top: 0.5rem !important;
  9976. }
  9977. .pt-xxl-3 {
  9978. padding-top: 1rem !important;
  9979. }
  9980. .pt-xxl-4 {
  9981. padding-top: 1.5rem !important;
  9982. }
  9983. .pt-xxl-5 {
  9984. padding-top: 3rem !important;
  9985. }
  9986. .pe-xxl-0 {
  9987. padding-right: 0 !important;
  9988. }
  9989. .pe-xxl-1 {
  9990. padding-right: 0.25rem !important;
  9991. }
  9992. .pe-xxl-2 {
  9993. padding-right: 0.5rem !important;
  9994. }
  9995. .pe-xxl-3 {
  9996. padding-right: 1rem !important;
  9997. }
  9998. .pe-xxl-4 {
  9999. padding-right: 1.5rem !important;
  10000. }
  10001. .pe-xxl-5 {
  10002. padding-right: 3rem !important;
  10003. }
  10004. .pb-xxl-0 {
  10005. padding-bottom: 0 !important;
  10006. }
  10007. .pb-xxl-1 {
  10008. padding-bottom: 0.25rem !important;
  10009. }
  10010. .pb-xxl-2 {
  10011. padding-bottom: 0.5rem !important;
  10012. }
  10013. .pb-xxl-3 {
  10014. padding-bottom: 1rem !important;
  10015. }
  10016. .pb-xxl-4 {
  10017. padding-bottom: 1.5rem !important;
  10018. }
  10019. .pb-xxl-5 {
  10020. padding-bottom: 3rem !important;
  10021. }
  10022. .ps-xxl-0 {
  10023. padding-left: 0 !important;
  10024. }
  10025. .ps-xxl-1 {
  10026. padding-left: 0.25rem !important;
  10027. }
  10028. .ps-xxl-2 {
  10029. padding-left: 0.5rem !important;
  10030. }
  10031. .ps-xxl-3 {
  10032. padding-left: 1rem !important;
  10033. }
  10034. .ps-xxl-4 {
  10035. padding-left: 1.5rem !important;
  10036. }
  10037. .ps-xxl-5 {
  10038. padding-left: 3rem !important;
  10039. }
  10040. .gap-xxl-0 {
  10041. gap: 0 !important;
  10042. }
  10043. .gap-xxl-1 {
  10044. gap: 0.25rem !important;
  10045. }
  10046. .gap-xxl-2 {
  10047. gap: 0.5rem !important;
  10048. }
  10049. .gap-xxl-3 {
  10050. gap: 1rem !important;
  10051. }
  10052. .gap-xxl-4 {
  10053. gap: 1.5rem !important;
  10054. }
  10055. .gap-xxl-5 {
  10056. gap: 3rem !important;
  10057. }
  10058. .text-xxl-start {
  10059. text-align: left !important;
  10060. }
  10061. .text-xxl-end {
  10062. text-align: right !important;
  10063. }
  10064. .text-xxl-center {
  10065. text-align: center !important;
  10066. }
  10067. }
  10068. @media (min-width: 1200px) {
  10069. .fs-1 {
  10070. font-size: 2.5rem !important;
  10071. }
  10072. .fs-2 {
  10073. font-size: 2rem !important;
  10074. }
  10075. .fs-3 {
  10076. font-size: 1.75rem !important;
  10077. }
  10078. .fs-4 {
  10079. font-size: 1.5rem !important;
  10080. }
  10081. }
  10082. @media print {
  10083. .d-print-inline {
  10084. display: inline !important;
  10085. }
  10086. .d-print-inline-block {
  10087. display: inline-block !important;
  10088. }
  10089. .d-print-block {
  10090. display: block !important;
  10091. }
  10092. .d-print-grid {
  10093. display: grid !important;
  10094. }
  10095. .d-print-table {
  10096. display: table !important;
  10097. }
  10098. .d-print-table-row {
  10099. display: table-row !important;
  10100. }
  10101. .d-print-table-cell {
  10102. display: table-cell !important;
  10103. }
  10104. .d-print-flex {
  10105. display: flex !important;
  10106. }
  10107. .d-print-inline-flex {
  10108. display: inline-flex !important;
  10109. }
  10110. .d-print-none {
  10111. display: none !important;
  10112. }
  10113. }
  10114. html,
  10115. body {
  10116. height: 100%;
  10117. }
  10118. #layoutAuthentication {
  10119. display: flex;
  10120. flex-direction: column;
  10121. min-height: 100vh;
  10122. }
  10123. #layoutAuthentication #layoutAuthentication_content {
  10124. min-width: 0;
  10125. flex-grow: 1;
  10126. }
  10127. #layoutAuthentication #layoutAuthentication_footer {
  10128. min-width: 0;
  10129. }
  10130. #layoutSidenav {
  10131. display: flex;
  10132. }
  10133. #layoutSidenav #layoutSidenav_nav {
  10134. flex-basis: 225px;
  10135. flex-shrink: 0;
  10136. transition: transform 0.15s ease-in-out;
  10137. z-index: 1038;
  10138. transform: translateX(-225px);
  10139. }
  10140. #layoutSidenav #layoutSidenav_content {
  10141. position: relative;
  10142. display: flex;
  10143. flex-direction: column;
  10144. justify-content: space-between;
  10145. min-width: 0;
  10146. flex-grow: 1;
  10147. min-height: calc(100vh - 56px);
  10148. margin-left: -225px;
  10149. }
  10150. .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav {
  10151. transform: translateX(0);
  10152. }
  10153. .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
  10154. content: "";
  10155. display: block;
  10156. position: absolute;
  10157. top: 0;
  10158. left: 0;
  10159. width: 100%;
  10160. height: 100%;
  10161. background: #000;
  10162. z-index: 1037;
  10163. opacity: 0.5;
  10164. transition: opacity 0.3s ease-in-out;
  10165. }
  10166. @media (min-width: 992px) {
  10167. #layoutSidenav #layoutSidenav_nav {
  10168. transform: translateX(0);
  10169. }
  10170. #layoutSidenav #layoutSidenav_content {
  10171. margin-left: 0;
  10172. transition: margin 0.15s ease-in-out;
  10173. }
  10174. .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav {
  10175. transform: translateX(-225px);
  10176. }
  10177. .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content {
  10178. margin-left: -225px;
  10179. }
  10180. .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before {
  10181. display: none;
  10182. }
  10183. }
  10184. .sb-nav-fixed .sb-topnav {
  10185. z-index: 1039;
  10186. }
  10187. .sb-nav-fixed #layoutSidenav #layoutSidenav_nav {
  10188. width: 225px;
  10189. height: 100vh;
  10190. z-index: 1038;
  10191. }
  10192. .sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav {
  10193. padding-top: 56px;
  10194. }
  10195. .sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav .sb-sidenav-menu {
  10196. overflow-y: auto;
  10197. }
  10198. .sb-nav-fixed #layoutSidenav #layoutSidenav_content {
  10199. padding-left: 225px;
  10200. top: 56px;
  10201. }
  10202. #layoutError {
  10203. display: flex;
  10204. flex-direction: column;
  10205. min-height: 100vh;
  10206. }
  10207. #layoutError #layoutError_content {
  10208. min-width: 0;
  10209. flex-grow: 1;
  10210. }
  10211. #layoutError #layoutError_footer {
  10212. min-width: 0;
  10213. }
  10214. .img-error {
  10215. max-width: 20rem;
  10216. }
  10217. .nav .nav-link .sb-nav-link-icon,
  10218. .sb-sidenav-menu .nav-link .sb-nav-link-icon {
  10219. margin-right: 0.5rem;
  10220. }
  10221. .sb-topnav {
  10222. padding-left: 0;
  10223. height: 56px;
  10224. z-index: 1039;
  10225. }
  10226. .sb-topnav .navbar-brand {
  10227. width: 225px;
  10228. margin: 0;
  10229. }
  10230. .sb-topnav.navbar-dark #sidebarToggle {
  10231. color: rgba(255, 255, 255, 0.5);
  10232. }
  10233. .sb-topnav.navbar-light #sidebarToggle {
  10234. color: #212529;
  10235. }
  10236. .sb-sidenav {
  10237. display: flex;
  10238. flex-direction: column;
  10239. height: 100%;
  10240. flex-wrap: nowrap;
  10241. }
  10242. .sb-sidenav .sb-sidenav-menu {
  10243. flex-grow: 1;
  10244. }
  10245. .sb-sidenav .sb-sidenav-menu .nav {
  10246. flex-direction: column;
  10247. flex-wrap: nowrap;
  10248. }
  10249. .sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-heading {
  10250. padding: 1.75rem 1rem 0.75rem;
  10251. font-size: 0.75rem;
  10252. font-weight: bold;
  10253. text-transform: uppercase;
  10254. }
  10255. .sb-sidenav .sb-sidenav-menu .nav .nav-link {
  10256. display: flex;
  10257. align-items: center;
  10258. padding-top: 0.75rem;
  10259. padding-bottom: 0.75rem;
  10260. position: relative;
  10261. }
  10262. .sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-nav-link-icon {
  10263. font-size: 0.9rem;
  10264. }
  10265. .sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-sidenav-collapse-arrow {
  10266. display: inline-block;
  10267. margin-left: auto;
  10268. transition: transform 0.15s ease;
  10269. }
  10270. .sb-sidenav .sb-sidenav-menu .nav .nav-link.collapsed .sb-sidenav-collapse-arrow {
  10271. transform: rotate(-90deg);
  10272. }
  10273. .sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-nested {
  10274. margin-left: 1.5rem;
  10275. flex-direction: column;
  10276. }
  10277. .sb-sidenav .sb-sidenav-footer {
  10278. padding: 0.75rem;
  10279. flex-shrink: 0;
  10280. }
  10281. .sb-sidenav-dark {
  10282. background-color: #212529;
  10283. color: rgba(255, 255, 255, 0.5);
  10284. }
  10285. .sb-sidenav-dark .sb-sidenav-menu .sb-sidenav-menu-heading {
  10286. color: rgba(255, 255, 255, 0.25);
  10287. }
  10288. .sb-sidenav-dark .sb-sidenav-menu .nav-link {
  10289. color: rgba(255, 255, 255, 0.5);
  10290. }
  10291. .sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-nav-link-icon {
  10292. color: rgba(255, 255, 255, 0.25);
  10293. }
  10294. .sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow {
  10295. color: rgba(255, 255, 255, 0.25);
  10296. }
  10297. .sb-sidenav-dark .sb-sidenav-menu .nav-link:hover {
  10298. color: #fff;
  10299. }
  10300. .sb-sidenav-dark .sb-sidenav-menu .nav-link.active {
  10301. color: #fff;
  10302. }
  10303. .sb-sidenav-dark .sb-sidenav-menu .nav-link.active .sb-nav-link-icon {
  10304. color: #fff;
  10305. }
  10306. .sb-sidenav-dark .sb-sidenav-footer {
  10307. background-color: #343a40;
  10308. }
  10309. .sb-sidenav-light {
  10310. background-color: #f8f9fa;
  10311. color: #212529;
  10312. }
  10313. .sb-sidenav-light .sb-sidenav-menu .sb-sidenav-menu-heading {
  10314. color: #adb5bd;
  10315. }
  10316. .sb-sidenav-light .sb-sidenav-menu .nav-link {
  10317. color: #212529;
  10318. }
  10319. .sb-sidenav-light .sb-sidenav-menu .nav-link .sb-nav-link-icon {
  10320. color: #adb5bd;
  10321. }
  10322. .sb-sidenav-light .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow {
  10323. color: #adb5bd;
  10324. }
  10325. .sb-sidenav-light .sb-sidenav-menu .nav-link:hover {
  10326. color: #0d6efd;
  10327. }
  10328. .sb-sidenav-light .sb-sidenav-menu .nav-link.active {
  10329. color: #0d6efd;
  10330. }
  10331. .sb-sidenav-light .sb-sidenav-menu .nav-link.active .sb-nav-link-icon {
  10332. color: #0d6efd;
  10333. }
  10334. .sb-sidenav-light .sb-sidenav-footer {
  10335. background-color: #e9ecef;
  10336. }
  10337. .datatable-wrapper .datatable-container {
  10338. font-size: 0.875rem;
  10339. }
  10340. .datatable-wrapper.no-header .datatable-container {
  10341. border-top: none;
  10342. }
  10343. .datatable-wrapper.no-footer .datatable-container {
  10344. border-bottom: none;
  10345. }
  10346. .datatable-top {
  10347. padding: 0 0 1rem;
  10348. }
  10349. .datatable-bottom {
  10350. padding: 0;
  10351. }
  10352. .datatable-top > nav:first-child,
  10353. .datatable-top > div:first-child,
  10354. .datatable-bottom > nav:first-child,
  10355. .datatable-bottom > div:first-child {
  10356. float: left;
  10357. }
  10358. .datatable-top > nav:last-child,
  10359. .datatable-top > div:last-child,
  10360. .datatable-bottom > nav:last-child,
  10361. .datatable-bottom > div:last-child {
  10362. float: right;
  10363. }
  10364. .datatable-selector {
  10365. width: auto;
  10366. display: inline-block;
  10367. padding-left: 1.125rem;
  10368. padding-right: 2.125rem;
  10369. margin-right: 0.25rem;
  10370. }
  10371. .datatable-info {
  10372. margin: 7px 0;
  10373. }
  10374. /* PAGER */
  10375. .datatable-pagination a:hover {
  10376. background-color: #e9ecef;
  10377. }
  10378. .datatable-pagination .active a,
  10379. .datatable-pagination .active a:focus,
  10380. .datatable-pagination .active a:hover {
  10381. background-color: #0d6efd;
  10382. }
  10383. .datatable-pagination .ellipsis a,
  10384. .datatable-pagination .disabled a,
  10385. .datatable-pagination .disabled a:focus,
  10386. .datatable-pagination .disabled a:hover {
  10387. cursor: not-allowed;
  10388. }
  10389. .datatable-pagination .disabled a,
  10390. .datatable-pagination .disabled a:focus,
  10391. .datatable-pagination .disabled a:hover {
  10392. cursor: not-allowed;
  10393. opacity: 0.4;
  10394. }
  10395. .datatable-pagination .pager a {
  10396. font-weight: bold;
  10397. }
  10398. /* TABLE */
  10399. .datatable-table {
  10400. border-collapse: collapse;
  10401. }
  10402. .datatable-table > tbody > tr > td,
  10403. .datatable-table > tbody > tr > th,
  10404. .datatable-table > tfoot > tr > td,
  10405. .datatable-table > tfoot > tr > th,
  10406. .datatable-table > thead > tr > td,
  10407. .datatable-table > thead > tr > th {
  10408. vertical-align: top;
  10409. padding: 0.5rem 0.5rem;
  10410. }
  10411. .datatable-table > thead > tr > th {
  10412. vertical-align: bottom;
  10413. text-align: left;
  10414. border-bottom: none;
  10415. }
  10416. .datatable-table > tfoot > tr > th {
  10417. vertical-align: bottom;
  10418. text-align: left;
  10419. }
  10420. .datatable-table th {
  10421. vertical-align: bottom;
  10422. text-align: left;
  10423. }
  10424. .datatable-table th a {
  10425. text-decoration: none;
  10426. color: inherit;
  10427. }
  10428. .datatable-sorter {
  10429. display: inline-block;
  10430. height: 100%;
  10431. position: relative;
  10432. width: 100%;
  10433. padding-right: 1rem;
  10434. }
  10435. .datatable-sorter::before,
  10436. .datatable-sorter::after {
  10437. content: "";
  10438. height: 0;
  10439. width: 0;
  10440. position: absolute;
  10441. right: 4px;
  10442. border-left: 4px solid transparent;
  10443. border-right: 4px solid transparent;
  10444. opacity: 0.2;
  10445. }
  10446. .datatable-sorter::before {
  10447. bottom: 4px;
  10448. }
  10449. .datatable-sorter::after {
  10450. top: 0px;
  10451. }
  10452. .asc .datatable-sorter::after,
  10453. .desc .datatable-sorter::before {
  10454. opacity: 0.6;
  10455. }
  10456. .datatables-empty {
  10457. text-align: center;
  10458. }
  10459. .datatable-top::after,
  10460. .datatable-bottom::after {
  10461. clear: both;
  10462. content: " ";
  10463. display: table;
  10464. }
  10465. .datatable-pagination li.datatable-hidden {
  10466. visibility: visible;
  10467. }
  10468. .btn-datatable {
  10469. height: 20px !important;
  10470. width: 20px !important;
  10471. font-size: 0.75rem;
  10472. border-radius: 0.375rem !important;
  10473. }