portal.css 313 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768147691477014771147721477314774147751477614777147781477914780147811478214783147841478514786147871478814789147901479114792147931479414795147961479714798147991480014801148021480314804148051480614807148081480914810148111481214813148141481514816148171481814819148201482114822148231482414825148261482714828148291483014831148321483314834148351483614837148381483914840148411484214843148441484514846148471484814849148501485114852148531485414855148561485714858148591486014861148621486314864148651486614867148681486914870148711487214873148741487514876148771487814879148801488114882148831488414885148861488714888148891489014891148921489314894148951489614897148981489914900149011490214903149041490514906149071490814909149101491114912149131491414915149161491714918149191492014921149221492314924149251492614927149281492914930149311493214933149341493514936149371493814939149401494114942149431494414945149461494714948149491495014951149521495314954149551495614957149581495914960149611496214963149641496514966149671496814969149701497114972149731497414975149761497714978149791498014981149821498314984149851498614987149881498914990149911499214993149941499514996149971499814999150001500115002150031500415005150061500715008150091501015011150121501315014150151501615017150181501915020150211502215023150241502515026150271502815029150301503115032150331503415035150361503715038150391504015041150421504315044150451504615047150481504915050150511505215053150541505515056150571505815059150601506115062150631506415065150661506715068150691507015071150721507315074150751507615077150781507915080150811508215083150841508515086150871508815089150901509115092150931509415095150961509715098150991510015101151021510315104151051510615107151081510915110151111511215113151141511515116151171511815119151201512115122151231512415125151261512715128151291513015131151321513315134151351513615137151381513915140151411514215143151441514515146151471514815149151501515115152151531515415155151561515715158151591516015161151621516315164151651516615167151681516915170151711517215173151741517515176151771517815179151801518115182151831518415185151861518715188151891519015191151921519315194151951519615197151981519915200152011520215203152041520515206152071520815209152101521115212152131521415215152161521715218152191522015221152221522315224152251522615227152281522915230152311523215233152341523515236152371523815239152401524115242152431524415245152461524715248152491525015251152521525315254152551525615257152581525915260152611526215263152641526515266152671526815269
  1. /*!
  2. * Bootstrap v5.3.0 (https://getbootstrap.com/)
  3. * Copyright 2011-2023 The Bootstrap Authors
  4. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  5. */
  6. :root,
  7. [data-bs-theme=light] {
  8. --bs-blue: #0d6efd;
  9. --bs-indigo: #6610f2;
  10. --bs-purple: #6f42c1;
  11. --bs-pink: #d63384;
  12. --bs-red: #dc3545;
  13. --bs-orange: #fd7e14;
  14. --bs-yellow: #ffc107;
  15. --bs-green: #198754;
  16. --bs-teal: #20c997;
  17. --bs-cyan: #0dcaf0;
  18. --bs-black: #000;
  19. --bs-white: #fff;
  20. --bs-gray: #6c757d;
  21. --bs-gray-dark: #343a40;
  22. --bs-gray-100: #f8f9fa;
  23. --bs-gray-200: #e9ecef;
  24. --bs-gray-300: #dee2e6;
  25. --bs-gray-400: #ced4da;
  26. --bs-gray-500: #adb5bd;
  27. --bs-gray-600: #6c757d;
  28. --bs-gray-700: #495057;
  29. --bs-gray-800: #343a40;
  30. --bs-gray-900: #212529;
  31. --bs-primary: #15a362;
  32. --bs-secondary: #5d6778;
  33. --bs-success: #5cb377;
  34. --bs-danger: #d26d69;
  35. --bs-warning: #EEBF41;
  36. --bs-info: #5b99ea;
  37. --bs-primary-rgb: 21, 163, 98;
  38. --bs-secondary-rgb: 93, 103, 120;
  39. --bs-success-rgb: 92, 179, 119;
  40. --bs-danger-rgb: 210, 109, 105;
  41. --bs-warning-rgb: 238, 191, 65;
  42. --bs-info-rgb: 91, 153, 234;
  43. --bs-primary-text-emphasis: #052c65;
  44. --bs-secondary-text-emphasis: #2b2f32;
  45. --bs-success-text-emphasis: #0a3622;
  46. --bs-info-text-emphasis: #055160;
  47. --bs-warning-text-emphasis: #664d03;
  48. --bs-danger-text-emphasis: #58151c;
  49. --bs-light-text-emphasis: #495057;
  50. --bs-dark-text-emphasis: #495057;
  51. --bs-primary-bg-subtle: #cfe2ff;
  52. --bs-secondary-bg-subtle: #e2e3e5;
  53. --bs-success-bg-subtle: #d1e7dd;
  54. --bs-info-bg-subtle: #cff4fc;
  55. --bs-warning-bg-subtle: #fff3cd;
  56. --bs-danger-bg-subtle: #f8d7da;
  57. --bs-light-bg-subtle: #fcfcfd;
  58. --bs-dark-bg-subtle: #ced4da;
  59. --bs-primary-border-subtle: #9ec5fe;
  60. --bs-secondary-border-subtle: #c4c8cb;
  61. --bs-success-border-subtle: #a3cfbb;
  62. --bs-info-border-subtle: #9eeaf9;
  63. --bs-warning-border-subtle: #ffe69c;
  64. --bs-danger-border-subtle: #f1aeb5;
  65. --bs-light-border-subtle: #e9ecef;
  66. --bs-dark-border-subtle: #adb5bd;
  67. --bs-white-rgb: 255, 255, 255;
  68. --bs-black-rgb: 0, 0, 0;
  69. --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";
  70. --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  71. --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  72. --bs-body-font-family: var(--bs-font-sans-serif);
  73. --bs-body-font-size: 1rem;
  74. --bs-body-font-weight: 400;
  75. --bs-body-line-height: 1.5;
  76. --bs-body-color: #212529;
  77. --bs-body-color-rgb: 33, 37, 41;
  78. --bs-body-bg: #fff;
  79. --bs-body-bg-rgb: 255, 255, 255;
  80. --bs-emphasis-color: #000;
  81. --bs-emphasis-color-rgb: 0, 0, 0;
  82. --bs-secondary-color: rgba(33, 37, 41, 0.75);
  83. --bs-secondary-color-rgb: 33, 37, 41;
  84. --bs-secondary-bg: #e9ecef;
  85. --bs-secondary-bg-rgb: 233, 236, 239;
  86. --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  87. --bs-tertiary-color-rgb: 33, 37, 41;
  88. --bs-tertiary-bg: #f8f9fa;
  89. --bs-tertiary-bg-rgb: 248, 249, 250;
  90. --bs-heading-color: inherit;
  91. --bs-link-color: #0d6efd;
  92. --bs-link-color-rgb: 13, 110, 253;
  93. --bs-link-decoration: underline;
  94. --bs-link-hover-color: #0a58ca;
  95. --bs-link-hover-color-rgb: 10, 88, 202;
  96. --bs-code-color: #d63384;
  97. --bs-highlight-bg: #fff3cd;
  98. --bs-border-width: 1px;
  99. --bs-border-style: solid;
  100. --bs-border-color: #dee2e6;
  101. --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  102. --bs-border-radius: 0.375rem;
  103. --bs-border-radius-sm: 0.25rem;
  104. --bs-border-radius-lg: 0.5rem;
  105. --bs-border-radius-xl: 1rem;
  106. --bs-border-radius-xxl: 2rem;
  107. --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  108. --bs-border-radius-pill: 50rem;
  109. --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  110. --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  111. --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  112. --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  113. --bs-focus-ring-width: 0.25rem;
  114. --bs-focus-ring-opacity: 0.25;
  115. --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  116. --bs-form-valid-color: #198754;
  117. --bs-form-valid-border-color: #198754;
  118. --bs-form-invalid-color: #dc3545;
  119. --bs-form-invalid-border-color: #dc3545
  120. }
  121. [data-bs-theme=dark] {
  122. color-scheme: dark;
  123. --bs-body-color: #adb5bd;
  124. --bs-body-color-rgb: 173, 181, 189;
  125. --bs-body-bg: #212529;
  126. --bs-body-bg-rgb: 33, 37, 41;
  127. --bs-emphasis-color: #fff;
  128. --bs-emphasis-color-rgb: 255, 255, 255;
  129. --bs-secondary-color: rgba(173, 181, 189, 0.75);
  130. --bs-secondary-color-rgb: 173, 181, 189;
  131. --bs-secondary-bg: #343a40;
  132. --bs-secondary-bg-rgb: 52, 58, 64;
  133. --bs-tertiary-color: rgba(173, 181, 189, 0.5);
  134. --bs-tertiary-color-rgb: 173, 181, 189;
  135. --bs-tertiary-bg: #2b3035;
  136. --bs-tertiary-bg-rgb: 43, 48, 53;
  137. --bs-primary-text-emphasis: #6ea8fe;
  138. --bs-secondary-text-emphasis: #a7acb1;
  139. --bs-success-text-emphasis: #75b798;
  140. --bs-info-text-emphasis: #6edff6;
  141. --bs-warning-text-emphasis: #ffda6a;
  142. --bs-danger-text-emphasis: #ea868f;
  143. --bs-light-text-emphasis: #f8f9fa;
  144. --bs-dark-text-emphasis: #dee2e6;
  145. --bs-primary-bg-subtle: #031633;
  146. --bs-secondary-bg-subtle: #161719;
  147. --bs-success-bg-subtle: #051b11;
  148. --bs-info-bg-subtle: #032830;
  149. --bs-warning-bg-subtle: #332701;
  150. --bs-danger-bg-subtle: #2c0b0e;
  151. --bs-light-bg-subtle: #343a40;
  152. --bs-dark-bg-subtle: #1a1d20;
  153. --bs-primary-border-subtle: #084298;
  154. --bs-secondary-border-subtle: #41464b;
  155. --bs-success-border-subtle: #0f5132;
  156. --bs-info-border-subtle: #087990;
  157. --bs-warning-border-subtle: #997404;
  158. --bs-danger-border-subtle: #842029;
  159. --bs-light-border-subtle: #495057;
  160. --bs-dark-border-subtle: #343a40;
  161. --bs-heading-color: inherit;
  162. --bs-link-color: #6ea8fe;
  163. --bs-link-hover-color: #8bb9fe;
  164. --bs-link-color-rgb: 110, 168, 254;
  165. --bs-link-hover-color-rgb: 139, 185, 254;
  166. --bs-code-color: #e685b5;
  167. --bs-border-color: #495057;
  168. --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  169. --bs-form-valid-color: #75b798;
  170. --bs-form-valid-border-color: #75b798;
  171. --bs-form-invalid-color: #ea868f;
  172. --bs-form-invalid-border-color: #ea868f
  173. }
  174. *,
  175. *::before,
  176. *::after {
  177. box-sizing: border-box
  178. }
  179. @media(prefers-reduced-motion: no-preference) {
  180. :root {
  181. scroll-behavior: smooth
  182. }
  183. }
  184. body {
  185. margin: 0;
  186. font-family: var(--bs-body-font-family);
  187. font-size: var(--bs-body-font-size);
  188. font-weight: var(--bs-body-font-weight);
  189. line-height: var(--bs-body-line-height);
  190. color: var(--bs-body-color);
  191. text-align: var(--bs-body-text-align);
  192. background-color: var(--bs-body-bg);
  193. -webkit-text-size-adjust: 100%;
  194. -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
  195. }
  196. hr {
  197. margin: 1rem 0;
  198. color: inherit;
  199. border: 0;
  200. border-top: var(--bs-border-width) solid;
  201. opacity: .25
  202. }
  203. h6,
  204. .h6,
  205. h5,
  206. .h5,
  207. h4,
  208. .h4,
  209. h3,
  210. .h3,
  211. h2,
  212. .h2,
  213. h1,
  214. .h1 {
  215. margin-top: 0;
  216. margin-bottom: .5rem;
  217. font-weight: 500;
  218. line-height: 1.2;
  219. color: var(--bs-heading-color)
  220. }
  221. h1,
  222. .h1 {
  223. font-size: calc(1.375rem + 1.5vw)
  224. }
  225. @media(min-width: 1200px) {
  226. h1,
  227. .h1 {
  228. font-size: 2.5rem
  229. }
  230. }
  231. h2,
  232. .h2 {
  233. font-size: calc(1.325rem + 0.9vw)
  234. }
  235. @media(min-width: 1200px) {
  236. h2,
  237. .h2 {
  238. font-size: 2rem
  239. }
  240. }
  241. h3,
  242. .h3 {
  243. font-size: calc(1.3rem + 0.6vw)
  244. }
  245. @media(min-width: 1200px) {
  246. h3,
  247. .h3 {
  248. font-size: 1.75rem
  249. }
  250. }
  251. h4,
  252. .h4 {
  253. font-size: calc(1.275rem + 0.3vw)
  254. }
  255. @media(min-width: 1200px) {
  256. h4,
  257. .h4 {
  258. font-size: 1.5rem
  259. }
  260. }
  261. h5,
  262. .h5 {
  263. font-size: 1.25rem
  264. }
  265. h6,
  266. .h6 {
  267. font-size: 1rem
  268. }
  269. p {
  270. margin-top: 0;
  271. margin-bottom: 1rem
  272. }
  273. abbr[title] {
  274. -webkit-text-decoration: underline dotted;
  275. text-decoration: underline dotted;
  276. cursor: help;
  277. -webkit-text-decoration-skip-ink: none;
  278. text-decoration-skip-ink: none
  279. }
  280. address {
  281. margin-bottom: 1rem;
  282. font-style: normal;
  283. line-height: inherit
  284. }
  285. ol,
  286. ul {
  287. padding-left: 2rem
  288. }
  289. ol,
  290. ul,
  291. dl {
  292. margin-top: 0;
  293. margin-bottom: 1rem
  294. }
  295. ol ol,
  296. ul ul,
  297. ol ul,
  298. ul ol {
  299. margin-bottom: 0
  300. }
  301. dt {
  302. font-weight: 700
  303. }
  304. dd {
  305. margin-bottom: .5rem;
  306. margin-left: 0
  307. }
  308. blockquote {
  309. margin: 0 0 1rem
  310. }
  311. b,
  312. strong {
  313. font-weight: bolder
  314. }
  315. small,
  316. .small {
  317. font-size: 0.875em
  318. }
  319. mark,
  320. .mark {
  321. padding: .1875em;
  322. background-color: var(--bs-highlight-bg)
  323. }
  324. sub,
  325. sup {
  326. position: relative;
  327. font-size: 0.75em;
  328. line-height: 0;
  329. vertical-align: baseline
  330. }
  331. sub {
  332. bottom: -0.25em
  333. }
  334. sup {
  335. top: -0.5em
  336. }
  337. a {
  338. color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  339. text-decoration: underline
  340. }
  341. a:hover {
  342. --bs-link-color-rgb: var(--bs-link-hover-color-rgb)
  343. }
  344. a:not([href]):not([class]),
  345. a:not([href]):not([class]):hover {
  346. color: inherit;
  347. text-decoration: none
  348. }
  349. pre,
  350. code,
  351. kbd,
  352. samp {
  353. font-family: var(--bs-font-monospace);
  354. font-size: 1em
  355. }
  356. pre {
  357. display: block;
  358. margin-top: 0;
  359. margin-bottom: 1rem;
  360. overflow: auto;
  361. font-size: 0.875em
  362. }
  363. pre code {
  364. font-size: inherit;
  365. color: inherit;
  366. word-break: normal
  367. }
  368. code {
  369. font-size: 0.875em;
  370. color: var(--bs-code-color);
  371. word-wrap: break-word
  372. }
  373. a>code {
  374. color: inherit
  375. }
  376. kbd {
  377. padding: .1875rem .375rem;
  378. font-size: 0.875em;
  379. color: var(--bs-body-bg);
  380. background-color: var(--bs-body-color);
  381. border-radius: .25rem
  382. }
  383. kbd kbd {
  384. padding: 0;
  385. font-size: 1em
  386. }
  387. figure {
  388. margin: 0 0 1rem
  389. }
  390. img,
  391. svg {
  392. vertical-align: middle
  393. }
  394. table {
  395. caption-side: bottom;
  396. border-collapse: collapse
  397. }
  398. caption {
  399. padding-top: .5rem;
  400. padding-bottom: .5rem;
  401. color: var(--bs-secondary-color);
  402. text-align: left
  403. }
  404. th {
  405. text-align: inherit;
  406. text-align: -webkit-match-parent
  407. }
  408. thead,
  409. tbody,
  410. tfoot,
  411. tr,
  412. td,
  413. th {
  414. border-color: inherit;
  415. border-style: solid;
  416. border-width: 0
  417. }
  418. label {
  419. display: inline-block
  420. }
  421. button {
  422. border-radius: 0
  423. }
  424. button:focus:not(:focus-visible) {
  425. outline: 0
  426. }
  427. input,
  428. button,
  429. select,
  430. optgroup,
  431. textarea {
  432. margin: 0;
  433. font-family: inherit;
  434. font-size: inherit;
  435. line-height: inherit
  436. }
  437. button,
  438. select {
  439. text-transform: none
  440. }
  441. [role=button] {
  442. cursor: pointer
  443. }
  444. select {
  445. word-wrap: normal
  446. }
  447. select:disabled {
  448. opacity: 1
  449. }
  450. [-inline-item]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  451. display: none !important
  452. }
  453. button,
  454. [type=button],
  455. [type=reset],
  456. [type=submit] {
  457. -webkit-appearance: button
  458. }
  459. button:not(:disabled),
  460. [type=button]:not(:disabled),
  461. [type=reset]:not(:disabled),
  462. [type=submit]:not(:disabled) {
  463. cursor: pointer
  464. }
  465. ::-moz-focus-inner {
  466. padding: 0;
  467. border-style: none
  468. }
  469. textarea {
  470. resize: vertical
  471. }
  472. fieldset {
  473. min-width: 0;
  474. padding: 0;
  475. margin: 0;
  476. border: 0
  477. }
  478. legend {
  479. float: left;
  480. width: 100%;
  481. padding: 0;
  482. margin-bottom: .5rem;
  483. font-size: calc(1.275rem + 0.3vw);
  484. line-height: inherit
  485. }
  486. @media(min-width: 1200px) {
  487. legend {
  488. font-size: 1.5rem
  489. }
  490. }
  491. legend+* {
  492. clear: left
  493. }
  494. ::-webkit-datetime-edit-fields-wrapper,
  495. ::-webkit-datetime-edit-text,
  496. ::-webkit-datetime-edit-minute,
  497. ::-webkit-datetime-edit-hour-field,
  498. ::-webkit-datetime-edit-day-field,
  499. ::-webkit-datetime-edit-month-field,
  500. ::-webkit-datetime-edit-year-field {
  501. padding: 0
  502. }
  503. ::-webkit-inner-spin-button {
  504. height: auto
  505. }
  506. [type=search] {
  507. outline-offset: -2px;
  508. -webkit-appearance: textfield
  509. }
  510. ::-webkit-search-decoration {
  511. -webkit-appearance: none
  512. }
  513. ::-webkit-color-swatch-wrapper {
  514. padding: 0
  515. }
  516. ::-webkit-file-upload-button {
  517. font: inherit;
  518. -webkit-appearance: button
  519. }
  520. ::file-selector-button {
  521. font: inherit;
  522. -webkit-appearance: button
  523. }
  524. output {
  525. display: inline-block
  526. }
  527. iframe {
  528. border: 0
  529. }
  530. summary {
  531. display: list-item;
  532. cursor: pointer
  533. }
  534. progress {
  535. vertical-align: baseline
  536. }
  537. [hidden] {
  538. display: none !important
  539. }
  540. .lead {
  541. font-size: 1.25rem;
  542. font-weight: 300
  543. }
  544. .display-1 {
  545. font-size: calc(1.625rem + 4.5vw);
  546. font-weight: 300;
  547. line-height: 1.2
  548. }
  549. @media(min-width: 1200px) {
  550. .display-1 {
  551. font-size: 5rem
  552. }
  553. }
  554. .display-2 {
  555. font-size: calc(1.575rem + 3.9vw);
  556. font-weight: 300;
  557. line-height: 1.2
  558. }
  559. @media(min-width: 1200px) {
  560. .display-2 {
  561. font-size: 4.5rem
  562. }
  563. }
  564. .display-3 {
  565. font-size: calc(1.525rem + 3.3vw);
  566. font-weight: 300;
  567. line-height: 1.2
  568. }
  569. @media(min-width: 1200px) {
  570. .display-3 {
  571. font-size: 4rem
  572. }
  573. }
  574. .display-4 {
  575. font-size: calc(1.475rem + 2.7vw);
  576. font-weight: 300;
  577. line-height: 1.2
  578. }
  579. @media(min-width: 1200px) {
  580. .display-4 {
  581. font-size: 3.5rem
  582. }
  583. }
  584. .display-5 {
  585. font-size: calc(1.425rem + 2.1vw);
  586. font-weight: 300;
  587. line-height: 1.2
  588. }
  589. @media(min-width: 1200px) {
  590. .display-5 {
  591. font-size: 3rem
  592. }
  593. }
  594. .display-6 {
  595. font-size: calc(1.375rem + 1.5vw);
  596. font-weight: 300;
  597. line-height: 1.2
  598. }
  599. @media(min-width: 1200px) {
  600. .display-6 {
  601. font-size: 2.5rem
  602. }
  603. }
  604. .list-unstyled {
  605. padding-left: 0;
  606. list-style: none
  607. }
  608. .list-inline {
  609. padding-left: 0;
  610. list-style: none
  611. }
  612. /* esto se usa en los detalles de eventos */
  613. .list-inline-item {
  614. font-size: xx-large;
  615. display: inline-block
  616. }
  617. .list-inline-item:not(:last-child) {
  618. margin-right: .5rem
  619. }
  620. /* esto se usa en las noticias de la página principal */
  621. .list-inline-item-news {
  622. display: inline-block
  623. }
  624. .list-inline-item-news:not(:last-child) {
  625. margin-right: .5rem
  626. }
  627. .initialism {
  628. font-size: 0.875em;
  629. text-transform: uppercase
  630. }
  631. .blockquote {
  632. margin-bottom: 1rem;
  633. font-size: 1.25rem
  634. }
  635. .blockquote>:last-child {
  636. margin-bottom: 0
  637. }
  638. .blockquote-footer {
  639. margin-top: -1rem;
  640. margin-bottom: 1rem;
  641. font-size: 0.875em;
  642. color: #6c757d
  643. }
  644. .blockquote-footer::before {
  645. content: "— "
  646. }
  647. .img-fluid {
  648. max-width: 100%;
  649. height: auto
  650. }
  651. .img-thumbnail {
  652. padding: .25rem;
  653. background-color: var(--bs-body-bg);
  654. border: var(--bs-border-width) solid var(--bs-border-color);
  655. border-radius: var(--bs-border-radius);
  656. max-width: 100%;
  657. height: auto
  658. }
  659. .figure {
  660. display: inline-block
  661. }
  662. .figure-img {
  663. margin-bottom: .5rem;
  664. line-height: 1
  665. }
  666. .figure-caption {
  667. font-size: 0.875em;
  668. color: var(--bs-secondary-color)
  669. }
  670. .container,
  671. .container-fluid,
  672. .container-xxl,
  673. .container-xl,
  674. .container-lg,
  675. .container-md,
  676. .container-sm {
  677. --bs-gutter-x: 1.5rem;
  678. --bs-gutter-y: 0;
  679. width: 100%;
  680. padding-right: calc(var(--bs-gutter-x)*.5);
  681. padding-left: calc(var(--bs-gutter-x)*.5);
  682. margin-right: auto;
  683. margin-left: auto
  684. }
  685. @media(min-width: 576px) {
  686. .container-sm,
  687. .container {
  688. max-width: 540px
  689. }
  690. }
  691. @media(min-width: 768px) {
  692. .container-md,
  693. .container-sm,
  694. .container {
  695. max-width: 720px
  696. }
  697. }
  698. @media(min-width: 992px) {
  699. .container-lg,
  700. .container-md,
  701. .container-sm,
  702. .container {
  703. max-width: 960px
  704. }
  705. }
  706. @media(min-width: 1200px) {
  707. .container-xl,
  708. .container-lg,
  709. .container-md,
  710. .container-sm,
  711. .container {
  712. max-width: 1140px
  713. }
  714. }
  715. @media(min-width: 1400px) {
  716. .container-xxl,
  717. .container-xl,
  718. .container-lg,
  719. .container-md,
  720. .container-sm,
  721. .container {
  722. max-width: 1320px
  723. }
  724. }
  725. :root {
  726. --bs-breakpoint-xs: 0;
  727. --bs-breakpoint-sm: 576px;
  728. --bs-breakpoint-md: 768px;
  729. --bs-breakpoint-lg: 992px;
  730. --bs-breakpoint-xl: 1200px;
  731. --bs-breakpoint-xxl: 1400px
  732. }
  733. .row {
  734. --bs-gutter-x: 1.5rem;
  735. --bs-gutter-y: 0;
  736. display: flex;
  737. flex-wrap: wrap;
  738. margin-top: calc(-1*var(--bs-gutter-y));
  739. margin-right: calc(-0.5*var(--bs-gutter-x));
  740. margin-left: calc(-0.5*var(--bs-gutter-x))
  741. }
  742. .row>* {
  743. flex-shrink: 0;
  744. width: 100%;
  745. max-width: 100%;
  746. padding-right: calc(var(--bs-gutter-x)*.5);
  747. padding-left: calc(var(--bs-gutter-x)*.5);
  748. margin-top: var(--bs-gutter-y)
  749. }
  750. .col {
  751. flex: 1 0 0%
  752. }
  753. .row-cols-auto>* {
  754. flex: 0 0 auto;
  755. width: auto
  756. }
  757. .row-cols-1>* {
  758. flex: 0 0 auto;
  759. width: 100%
  760. }
  761. .row-cols-2>* {
  762. flex: 0 0 auto;
  763. width: 50%
  764. }
  765. .row-cols-3>* {
  766. flex: 0 0 auto;
  767. width: 33.3333333333%
  768. }
  769. .row-cols-4>* {
  770. flex: 0 0 auto;
  771. width: 25%
  772. }
  773. .row-cols-5>* {
  774. flex: 0 0 auto;
  775. width: 20%
  776. }
  777. .row-cols-6>* {
  778. flex: 0 0 auto;
  779. width: 16.6666666667%
  780. }
  781. .col-auto {
  782. flex: 0 0 auto;
  783. width: auto
  784. }
  785. .col-1 {
  786. flex: 0 0 auto;
  787. width: 8.33333333%
  788. }
  789. .col-2 {
  790. flex: 0 0 auto;
  791. width: 16.66666667%
  792. }
  793. .col-3 {
  794. flex: 0 0 auto;
  795. width: 25%
  796. }
  797. .col-4 {
  798. flex: 0 0 auto;
  799. width: 33.33333333%
  800. }
  801. .col-5 {
  802. flex: 0 0 auto;
  803. width: 41.66666667%
  804. }
  805. .col-6 {
  806. flex: 0 0 auto;
  807. width: 50%
  808. }
  809. .col-7 {
  810. flex: 0 0 auto;
  811. width: 58.33333333%
  812. }
  813. .col-8 {
  814. flex: 0 0 auto;
  815. width: 66.66666667%
  816. }
  817. .col-9 {
  818. flex: 0 0 auto;
  819. width: 75%
  820. }
  821. .col-10 {
  822. flex: 0 0 auto;
  823. width: 83.33333333%
  824. }
  825. .col-11 {
  826. flex: 0 0 auto;
  827. width: 91.66666667%
  828. }
  829. .col-12 {
  830. flex: 0 0 auto;
  831. width: 100%
  832. }
  833. .offset-1 {
  834. margin-left: 8.33333333%
  835. }
  836. .offset-2 {
  837. margin-left: 16.66666667%
  838. }
  839. .offset-3 {
  840. margin-left: 25%
  841. }
  842. .offset-4 {
  843. margin-left: 33.33333333%
  844. }
  845. .offset-5 {
  846. margin-left: 41.66666667%
  847. }
  848. .offset-6 {
  849. margin-left: 50%
  850. }
  851. .offset-7 {
  852. margin-left: 58.33333333%
  853. }
  854. .offset-8 {
  855. margin-left: 66.66666667%
  856. }
  857. .offset-9 {
  858. margin-left: 75%
  859. }
  860. .offset-10 {
  861. margin-left: 83.33333333%
  862. }
  863. .offset-11 {
  864. margin-left: 91.66666667%
  865. }
  866. .g-0,
  867. .gx-0 {
  868. --bs-gutter-x: 0
  869. }
  870. .g-0,
  871. .gy-0 {
  872. --bs-gutter-y: 0
  873. }
  874. .g-1,
  875. .gx-1 {
  876. --bs-gutter-x: 0.25rem
  877. }
  878. .g-1,
  879. .gy-1 {
  880. --bs-gutter-y: 0.25rem
  881. }
  882. .g-2,
  883. .gx-2 {
  884. --bs-gutter-x: 0.5rem
  885. }
  886. .g-2,
  887. .gy-2 {
  888. --bs-gutter-y: 0.5rem
  889. }
  890. .g-3,
  891. .gx-3 {
  892. --bs-gutter-x: 1rem
  893. }
  894. .g-3,
  895. .gy-3 {
  896. --bs-gutter-y: 1rem
  897. }
  898. .g-4,
  899. .gx-4 {
  900. --bs-gutter-x: 1.5rem
  901. }
  902. .g-4,
  903. .gy-4 {
  904. --bs-gutter-y: 1.5rem
  905. }
  906. .g-5,
  907. .gx-5 {
  908. --bs-gutter-x: 3rem
  909. }
  910. .g-5,
  911. .gy-5 {
  912. --bs-gutter-y: 3rem
  913. }
  914. @media(min-width: 576px) {
  915. .col-sm {
  916. flex: 1 0 0%
  917. }
  918. .row-cols-sm-auto>* {
  919. flex: 0 0 auto;
  920. width: auto
  921. }
  922. .row-cols-sm-1>* {
  923. flex: 0 0 auto;
  924. width: 100%
  925. }
  926. .row-cols-sm-2>* {
  927. flex: 0 0 auto;
  928. width: 50%
  929. }
  930. .row-cols-sm-3>* {
  931. flex: 0 0 auto;
  932. width: 33.3333333333%
  933. }
  934. .row-cols-sm-4>* {
  935. flex: 0 0 auto;
  936. width: 25%
  937. }
  938. .row-cols-sm-5>* {
  939. flex: 0 0 auto;
  940. width: 20%
  941. }
  942. .row-cols-sm-6>* {
  943. flex: 0 0 auto;
  944. width: 16.6666666667%
  945. }
  946. .col-sm-auto {
  947. flex: 0 0 auto;
  948. width: auto
  949. }
  950. .col-sm-1 {
  951. flex: 0 0 auto;
  952. width: 8.33333333%
  953. }
  954. .col-sm-2 {
  955. flex: 0 0 auto;
  956. width: 16.66666667%
  957. }
  958. .col-sm-3 {
  959. flex: 0 0 auto;
  960. width: 25%
  961. }
  962. .col-sm-4 {
  963. flex: 0 0 auto;
  964. width: 33.33333333%
  965. }
  966. .col-sm-5 {
  967. flex: 0 0 auto;
  968. width: 41.66666667%
  969. }
  970. .col-sm-6 {
  971. flex: 0 0 auto;
  972. width: 50%
  973. }
  974. .col-sm-7 {
  975. flex: 0 0 auto;
  976. width: 58.33333333%
  977. }
  978. .col-sm-8 {
  979. flex: 0 0 auto;
  980. width: 66.66666667%
  981. }
  982. .col-sm-9 {
  983. flex: 0 0 auto;
  984. width: 75%
  985. }
  986. .col-sm-10 {
  987. flex: 0 0 auto;
  988. width: 83.33333333%
  989. }
  990. .col-sm-11 {
  991. flex: 0 0 auto;
  992. width: 91.66666667%
  993. }
  994. .col-sm-12 {
  995. flex: 0 0 auto;
  996. width: 100%
  997. }
  998. .offset-sm-0 {
  999. margin-left: 0
  1000. }
  1001. .offset-sm-1 {
  1002. margin-left: 8.33333333%
  1003. }
  1004. .offset-sm-2 {
  1005. margin-left: 16.66666667%
  1006. }
  1007. .offset-sm-3 {
  1008. margin-left: 25%
  1009. }
  1010. .offset-sm-4 {
  1011. margin-left: 33.33333333%
  1012. }
  1013. .offset-sm-5 {
  1014. margin-left: 41.66666667%
  1015. }
  1016. .offset-sm-6 {
  1017. margin-left: 50%
  1018. }
  1019. .offset-sm-7 {
  1020. margin-left: 58.33333333%
  1021. }
  1022. .offset-sm-8 {
  1023. margin-left: 66.66666667%
  1024. }
  1025. .offset-sm-9 {
  1026. margin-left: 75%
  1027. }
  1028. .offset-sm-10 {
  1029. margin-left: 83.33333333%
  1030. }
  1031. .offset-sm-11 {
  1032. margin-left: 91.66666667%
  1033. }
  1034. .g-sm-0,
  1035. .gx-sm-0 {
  1036. --bs-gutter-x: 0
  1037. }
  1038. .g-sm-0,
  1039. .gy-sm-0 {
  1040. --bs-gutter-y: 0
  1041. }
  1042. .g-sm-1,
  1043. .gx-sm-1 {
  1044. --bs-gutter-x: 0.25rem
  1045. }
  1046. .g-sm-1,
  1047. .gy-sm-1 {
  1048. --bs-gutter-y: 0.25rem
  1049. }
  1050. .g-sm-2,
  1051. .gx-sm-2 {
  1052. --bs-gutter-x: 0.5rem
  1053. }
  1054. .g-sm-2,
  1055. .gy-sm-2 {
  1056. --bs-gutter-y: 0.5rem
  1057. }
  1058. .g-sm-3,
  1059. .gx-sm-3 {
  1060. --bs-gutter-x: 1rem
  1061. }
  1062. .g-sm-3,
  1063. .gy-sm-3 {
  1064. --bs-gutter-y: 1rem
  1065. }
  1066. .g-sm-4,
  1067. .gx-sm-4 {
  1068. --bs-gutter-x: 1.5rem
  1069. }
  1070. .g-sm-4,
  1071. .gy-sm-4 {
  1072. --bs-gutter-y: 1.5rem
  1073. }
  1074. .g-sm-5,
  1075. .gx-sm-5 {
  1076. --bs-gutter-x: 3rem
  1077. }
  1078. .g-sm-5,
  1079. .gy-sm-5 {
  1080. --bs-gutter-y: 3rem
  1081. }
  1082. }
  1083. @media(min-width: 768px) {
  1084. .col-md {
  1085. flex: 1 0 0%
  1086. }
  1087. .row-cols-md-auto>* {
  1088. flex: 0 0 auto;
  1089. width: auto
  1090. }
  1091. .row-cols-md-1>* {
  1092. flex: 0 0 auto;
  1093. width: 100%
  1094. }
  1095. .row-cols-md-2>* {
  1096. flex: 0 0 auto;
  1097. width: 50%
  1098. }
  1099. .row-cols-md-3>* {
  1100. flex: 0 0 auto;
  1101. width: 33.3333333333%
  1102. }
  1103. .row-cols-md-4>* {
  1104. flex: 0 0 auto;
  1105. width: 25%
  1106. }
  1107. .row-cols-md-5>* {
  1108. flex: 0 0 auto;
  1109. width: 20%
  1110. }
  1111. .row-cols-md-6>* {
  1112. flex: 0 0 auto;
  1113. width: 16.6666666667%
  1114. }
  1115. .col-md-auto {
  1116. flex: 0 0 auto;
  1117. width: auto
  1118. }
  1119. .col-md-1 {
  1120. flex: 0 0 auto;
  1121. width: 8.33333333%
  1122. }
  1123. .col-md-2 {
  1124. flex: 0 0 auto;
  1125. width: 16.66666667%
  1126. }
  1127. .col-md-3 {
  1128. flex: 0 0 auto;
  1129. width: 25%
  1130. }
  1131. .col-md-4 {
  1132. flex: 0 0 auto;
  1133. width: 33.33333333%
  1134. }
  1135. .col-md-5 {
  1136. flex: 0 0 auto;
  1137. width: 41.66666667%
  1138. }
  1139. .col-md-6 {
  1140. flex: 0 0 auto;
  1141. width: 50%
  1142. }
  1143. .col-md-7 {
  1144. flex: 0 0 auto;
  1145. width: 58.33333333%
  1146. }
  1147. .col-md-8 {
  1148. flex: 0 0 auto;
  1149. width: 66.66666667%
  1150. }
  1151. .col-md-9 {
  1152. flex: 0 0 auto;
  1153. width: 75%
  1154. }
  1155. .col-md-10 {
  1156. flex: 0 0 auto;
  1157. width: 83.33333333%
  1158. }
  1159. .col-md-11 {
  1160. flex: 0 0 auto;
  1161. width: 91.66666667%
  1162. }
  1163. .col-md-12 {
  1164. flex: 0 0 auto;
  1165. width: 100%
  1166. }
  1167. .offset-md-0 {
  1168. margin-left: 0
  1169. }
  1170. .offset-md-1 {
  1171. margin-left: 8.33333333%
  1172. }
  1173. .offset-md-2 {
  1174. margin-left: 16.66666667%
  1175. }
  1176. .offset-md-3 {
  1177. margin-left: 25%
  1178. }
  1179. .offset-md-4 {
  1180. margin-left: 33.33333333%
  1181. }
  1182. .offset-md-5 {
  1183. margin-left: 41.66666667%
  1184. }
  1185. .offset-md-6 {
  1186. margin-left: 50%
  1187. }
  1188. .offset-md-7 {
  1189. margin-left: 58.33333333%
  1190. }
  1191. .offset-md-8 {
  1192. margin-left: 66.66666667%
  1193. }
  1194. .offset-md-9 {
  1195. margin-left: 75%
  1196. }
  1197. .offset-md-10 {
  1198. margin-left: 83.33333333%
  1199. }
  1200. .offset-md-11 {
  1201. margin-left: 91.66666667%
  1202. }
  1203. .g-md-0,
  1204. .gx-md-0 {
  1205. --bs-gutter-x: 0
  1206. }
  1207. .g-md-0,
  1208. .gy-md-0 {
  1209. --bs-gutter-y: 0
  1210. }
  1211. .g-md-1,
  1212. .gx-md-1 {
  1213. --bs-gutter-x: 0.25rem
  1214. }
  1215. .g-md-1,
  1216. .gy-md-1 {
  1217. --bs-gutter-y: 0.25rem
  1218. }
  1219. .g-md-2,
  1220. .gx-md-2 {
  1221. --bs-gutter-x: 0.5rem
  1222. }
  1223. .g-md-2,
  1224. .gy-md-2 {
  1225. --bs-gutter-y: 0.5rem
  1226. }
  1227. .g-md-3,
  1228. .gx-md-3 {
  1229. --bs-gutter-x: 1rem
  1230. }
  1231. .g-md-3,
  1232. .gy-md-3 {
  1233. --bs-gutter-y: 1rem
  1234. }
  1235. .g-md-4,
  1236. .gx-md-4 {
  1237. --bs-gutter-x: 1.5rem
  1238. }
  1239. .g-md-4,
  1240. .gy-md-4 {
  1241. --bs-gutter-y: 1.5rem
  1242. }
  1243. .g-md-5,
  1244. .gx-md-5 {
  1245. --bs-gutter-x: 3rem
  1246. }
  1247. .g-md-5,
  1248. .gy-md-5 {
  1249. --bs-gutter-y: 3rem
  1250. }
  1251. }
  1252. @media(min-width: 992px) {
  1253. .col-lg {
  1254. flex: 1 0 0%
  1255. }
  1256. .row-cols-lg-auto>* {
  1257. flex: 0 0 auto;
  1258. width: auto
  1259. }
  1260. .row-cols-lg-1>* {
  1261. flex: 0 0 auto;
  1262. width: 100%
  1263. }
  1264. .row-cols-lg-2>* {
  1265. flex: 0 0 auto;
  1266. width: 50%
  1267. }
  1268. .row-cols-lg-3>* {
  1269. flex: 0 0 auto;
  1270. width: 33.3333333333%
  1271. }
  1272. .row-cols-lg-4>* {
  1273. flex: 0 0 auto;
  1274. width: 25%
  1275. }
  1276. .row-cols-lg-5>* {
  1277. flex: 0 0 auto;
  1278. width: 20%
  1279. }
  1280. .row-cols-lg-6>* {
  1281. flex: 0 0 auto;
  1282. width: 16.6666666667%
  1283. }
  1284. .col-lg-auto {
  1285. flex: 0 0 auto;
  1286. width: auto
  1287. }
  1288. .col-lg-1 {
  1289. flex: 0 0 auto;
  1290. width: 8.33333333%
  1291. }
  1292. .col-lg-2 {
  1293. flex: 0 0 auto;
  1294. width: 16.66666667%
  1295. }
  1296. .col-lg-3 {
  1297. flex: 0 0 auto;
  1298. width: 25%
  1299. }
  1300. .col-lg-4 {
  1301. flex: 0 0 auto;
  1302. width: 33.33333333%
  1303. }
  1304. .col-lg-5 {
  1305. flex: 0 0 auto;
  1306. width: 41.66666667%
  1307. }
  1308. .col-lg-6 {
  1309. flex: 0 0 auto;
  1310. width: 50%
  1311. }
  1312. .col-lg-7 {
  1313. flex: 0 0 auto;
  1314. width: 58.33333333%
  1315. }
  1316. .col-lg-8 {
  1317. flex: 0 0 auto;
  1318. width: 66.66666667%
  1319. }
  1320. .col-lg-9 {
  1321. flex: 0 0 auto;
  1322. width: 75%
  1323. }
  1324. .col-lg-10 {
  1325. flex: 0 0 auto;
  1326. width: 83.33333333%
  1327. }
  1328. .col-lg-11 {
  1329. flex: 0 0 auto;
  1330. width: 91.66666667%
  1331. }
  1332. .col-lg-12 {
  1333. flex: 0 0 auto;
  1334. width: 100%
  1335. }
  1336. .offset-lg-0 {
  1337. margin-left: 0
  1338. }
  1339. .offset-lg-1 {
  1340. margin-left: 8.33333333%
  1341. }
  1342. .offset-lg-2 {
  1343. margin-left: 16.66666667%
  1344. }
  1345. .offset-lg-3 {
  1346. margin-left: 25%
  1347. }
  1348. .offset-lg-4 {
  1349. margin-left: 33.33333333%
  1350. }
  1351. .offset-lg-5 {
  1352. margin-left: 41.66666667%
  1353. }
  1354. .offset-lg-6 {
  1355. margin-left: 50%
  1356. }
  1357. .offset-lg-7 {
  1358. margin-left: 58.33333333%
  1359. }
  1360. .offset-lg-8 {
  1361. margin-left: 66.66666667%
  1362. }
  1363. .offset-lg-9 {
  1364. margin-left: 75%
  1365. }
  1366. .offset-lg-10 {
  1367. margin-left: 83.33333333%
  1368. }
  1369. .offset-lg-11 {
  1370. margin-left: 91.66666667%
  1371. }
  1372. .g-lg-0,
  1373. .gx-lg-0 {
  1374. --bs-gutter-x: 0
  1375. }
  1376. .g-lg-0,
  1377. .gy-lg-0 {
  1378. --bs-gutter-y: 0
  1379. }
  1380. .g-lg-1,
  1381. .gx-lg-1 {
  1382. --bs-gutter-x: 0.25rem
  1383. }
  1384. .g-lg-1,
  1385. .gy-lg-1 {
  1386. --bs-gutter-y: 0.25rem
  1387. }
  1388. .g-lg-2,
  1389. .gx-lg-2 {
  1390. --bs-gutter-x: 0.5rem
  1391. }
  1392. .g-lg-2,
  1393. .gy-lg-2 {
  1394. --bs-gutter-y: 0.5rem
  1395. }
  1396. .g-lg-3,
  1397. .gx-lg-3 {
  1398. --bs-gutter-x: 1rem
  1399. }
  1400. .g-lg-3,
  1401. .gy-lg-3 {
  1402. --bs-gutter-y: 1rem
  1403. }
  1404. .g-lg-4,
  1405. .gx-lg-4 {
  1406. --bs-gutter-x: 1.5rem
  1407. }
  1408. .g-lg-4,
  1409. .gy-lg-4 {
  1410. --bs-gutter-y: 1.5rem
  1411. }
  1412. .g-lg-5,
  1413. .gx-lg-5 {
  1414. --bs-gutter-x: 3rem
  1415. }
  1416. .g-lg-5,
  1417. .gy-lg-5 {
  1418. --bs-gutter-y: 3rem
  1419. }
  1420. }
  1421. @media(min-width: 1200px) {
  1422. .col-xl {
  1423. flex: 1 0 0%
  1424. }
  1425. .row-cols-xl-auto>* {
  1426. flex: 0 0 auto;
  1427. width: auto
  1428. }
  1429. .row-cols-xl-1>* {
  1430. flex: 0 0 auto;
  1431. width: 100%
  1432. }
  1433. .row-cols-xl-2>* {
  1434. flex: 0 0 auto;
  1435. width: 50%
  1436. }
  1437. .row-cols-xl-3>* {
  1438. flex: 0 0 auto;
  1439. width: 33.3333333333%
  1440. }
  1441. .row-cols-xl-4>* {
  1442. flex: 0 0 auto;
  1443. width: 25%
  1444. }
  1445. .row-cols-xl-5>* {
  1446. flex: 0 0 auto;
  1447. width: 20%
  1448. }
  1449. .row-cols-xl-6>* {
  1450. flex: 0 0 auto;
  1451. width: 16.6666666667%
  1452. }
  1453. .col-xl-auto {
  1454. flex: 0 0 auto;
  1455. width: auto
  1456. }
  1457. .col-xl-1 {
  1458. flex: 0 0 auto;
  1459. width: 8.33333333%
  1460. }
  1461. .col-xl-2 {
  1462. flex: 0 0 auto;
  1463. width: 16.66666667%
  1464. }
  1465. .col-xl-3 {
  1466. flex: 0 0 auto;
  1467. width: 25%
  1468. }
  1469. .col-xl-4 {
  1470. flex: 0 0 auto;
  1471. width: 33.33333333%
  1472. }
  1473. .col-xl-5 {
  1474. flex: 0 0 auto;
  1475. width: 41.66666667%
  1476. }
  1477. .col-xl-6 {
  1478. flex: 0 0 auto;
  1479. width: 50%
  1480. }
  1481. .col-xl-7 {
  1482. flex: 0 0 auto;
  1483. width: 58.33333333%
  1484. }
  1485. .col-xl-8 {
  1486. flex: 0 0 auto;
  1487. width: 66.66666667%
  1488. }
  1489. .col-xl-9 {
  1490. flex: 0 0 auto;
  1491. width: 75%
  1492. }
  1493. .col-xl-10 {
  1494. flex: 0 0 auto;
  1495. width: 83.33333333%
  1496. }
  1497. .col-xl-11 {
  1498. flex: 0 0 auto;
  1499. width: 91.66666667%
  1500. }
  1501. .col-xl-12 {
  1502. flex: 0 0 auto;
  1503. width: 100%
  1504. }
  1505. .offset-xl-0 {
  1506. margin-left: 0
  1507. }
  1508. .offset-xl-1 {
  1509. margin-left: 8.33333333%
  1510. }
  1511. .offset-xl-2 {
  1512. margin-left: 16.66666667%
  1513. }
  1514. .offset-xl-3 {
  1515. margin-left: 25%
  1516. }
  1517. .offset-xl-4 {
  1518. margin-left: 33.33333333%
  1519. }
  1520. .offset-xl-5 {
  1521. margin-left: 41.66666667%
  1522. }
  1523. .offset-xl-6 {
  1524. margin-left: 50%
  1525. }
  1526. .offset-xl-7 {
  1527. margin-left: 58.33333333%
  1528. }
  1529. .offset-xl-8 {
  1530. margin-left: 66.66666667%
  1531. }
  1532. .offset-xl-9 {
  1533. margin-left: 75%
  1534. }
  1535. .offset-xl-10 {
  1536. margin-left: 83.33333333%
  1537. }
  1538. .offset-xl-11 {
  1539. margin-left: 91.66666667%
  1540. }
  1541. .g-xl-0,
  1542. .gx-xl-0 {
  1543. --bs-gutter-x: 0
  1544. }
  1545. .g-xl-0,
  1546. .gy-xl-0 {
  1547. --bs-gutter-y: 0
  1548. }
  1549. .g-xl-1,
  1550. .gx-xl-1 {
  1551. --bs-gutter-x: 0.25rem
  1552. }
  1553. .g-xl-1,
  1554. .gy-xl-1 {
  1555. --bs-gutter-y: 0.25rem
  1556. }
  1557. .g-xl-2,
  1558. .gx-xl-2 {
  1559. --bs-gutter-x: 0.5rem
  1560. }
  1561. .g-xl-2,
  1562. .gy-xl-2 {
  1563. --bs-gutter-y: 0.5rem
  1564. }
  1565. .g-xl-3,
  1566. .gx-xl-3 {
  1567. --bs-gutter-x: 1rem
  1568. }
  1569. .g-xl-3,
  1570. .gy-xl-3 {
  1571. --bs-gutter-y: 1rem
  1572. }
  1573. .g-xl-4,
  1574. .gx-xl-4 {
  1575. --bs-gutter-x: 1.5rem
  1576. }
  1577. .g-xl-4,
  1578. .gy-xl-4 {
  1579. --bs-gutter-y: 1.5rem
  1580. }
  1581. .g-xl-5,
  1582. .gx-xl-5 {
  1583. --bs-gutter-x: 3rem
  1584. }
  1585. .g-xl-5,
  1586. .gy-xl-5 {
  1587. --bs-gutter-y: 3rem
  1588. }
  1589. }
  1590. @media(min-width: 1400px) {
  1591. .col-xxl {
  1592. flex: 1 0 0%
  1593. }
  1594. .row-cols-xxl-auto>* {
  1595. flex: 0 0 auto;
  1596. width: auto
  1597. }
  1598. .row-cols-xxl-1>* {
  1599. flex: 0 0 auto;
  1600. width: 100%
  1601. }
  1602. .row-cols-xxl-2>* {
  1603. flex: 0 0 auto;
  1604. width: 50%
  1605. }
  1606. .row-cols-xxl-3>* {
  1607. flex: 0 0 auto;
  1608. width: 33.3333333333%
  1609. }
  1610. .row-cols-xxl-4>* {
  1611. flex: 0 0 auto;
  1612. width: 25%
  1613. }
  1614. .row-cols-xxl-5>* {
  1615. flex: 0 0 auto;
  1616. width: 20%
  1617. }
  1618. .row-cols-xxl-6>* {
  1619. flex: 0 0 auto;
  1620. width: 16.6666666667%
  1621. }
  1622. .col-xxl-auto {
  1623. flex: 0 0 auto;
  1624. width: auto
  1625. }
  1626. .col-xxl-1 {
  1627. flex: 0 0 auto;
  1628. width: 8.33333333%
  1629. }
  1630. .col-xxl-2 {
  1631. flex: 0 0 auto;
  1632. width: 16.66666667%
  1633. }
  1634. .col-xxl-3 {
  1635. flex: 0 0 auto;
  1636. width: 25%
  1637. }
  1638. .col-xxl-4 {
  1639. flex: 0 0 auto;
  1640. width: 33.33333333%
  1641. }
  1642. .col-xxl-5 {
  1643. flex: 0 0 auto;
  1644. width: 41.66666667%
  1645. }
  1646. .col-xxl-6 {
  1647. flex: 0 0 auto;
  1648. width: 50%
  1649. }
  1650. .col-xxl-7 {
  1651. flex: 0 0 auto;
  1652. width: 58.33333333%
  1653. }
  1654. .col-xxl-8 {
  1655. flex: 0 0 auto;
  1656. width: 66.66666667%
  1657. }
  1658. .col-xxl-9 {
  1659. flex: 0 0 auto;
  1660. width: 75%
  1661. }
  1662. .col-xxl-10 {
  1663. flex: 0 0 auto;
  1664. width: 83.33333333%
  1665. }
  1666. .col-xxl-11 {
  1667. flex: 0 0 auto;
  1668. width: 91.66666667%
  1669. }
  1670. .col-xxl-12 {
  1671. flex: 0 0 auto;
  1672. width: 100%
  1673. }
  1674. .offset-xxl-0 {
  1675. margin-left: 0
  1676. }
  1677. .offset-xxl-1 {
  1678. margin-left: 8.33333333%
  1679. }
  1680. .offset-xxl-2 {
  1681. margin-left: 16.66666667%
  1682. }
  1683. .offset-xxl-3 {
  1684. margin-left: 25%
  1685. }
  1686. .offset-xxl-4 {
  1687. margin-left: 33.33333333%
  1688. }
  1689. .offset-xxl-5 {
  1690. margin-left: 41.66666667%
  1691. }
  1692. .offset-xxl-6 {
  1693. margin-left: 50%
  1694. }
  1695. .offset-xxl-7 {
  1696. margin-left: 58.33333333%
  1697. }
  1698. .offset-xxl-8 {
  1699. margin-left: 66.66666667%
  1700. }
  1701. .offset-xxl-9 {
  1702. margin-left: 75%
  1703. }
  1704. .offset-xxl-10 {
  1705. margin-left: 83.33333333%
  1706. }
  1707. .offset-xxl-11 {
  1708. margin-left: 91.66666667%
  1709. }
  1710. .g-xxl-0,
  1711. .gx-xxl-0 {
  1712. --bs-gutter-x: 0
  1713. }
  1714. .g-xxl-0,
  1715. .gy-xxl-0 {
  1716. --bs-gutter-y: 0
  1717. }
  1718. .g-xxl-1,
  1719. .gx-xxl-1 {
  1720. --bs-gutter-x: 0.25rem
  1721. }
  1722. .g-xxl-1,
  1723. .gy-xxl-1 {
  1724. --bs-gutter-y: 0.25rem
  1725. }
  1726. .g-xxl-2,
  1727. .gx-xxl-2 {
  1728. --bs-gutter-x: 0.5rem
  1729. }
  1730. .g-xxl-2,
  1731. .gy-xxl-2 {
  1732. --bs-gutter-y: 0.5rem
  1733. }
  1734. .g-xxl-3,
  1735. .gx-xxl-3 {
  1736. --bs-gutter-x: 1rem
  1737. }
  1738. .g-xxl-3,
  1739. .gy-xxl-3 {
  1740. --bs-gutter-y: 1rem
  1741. }
  1742. .g-xxl-4,
  1743. .gx-xxl-4 {
  1744. --bs-gutter-x: 1.5rem
  1745. }
  1746. .g-xxl-4,
  1747. .gy-xxl-4 {
  1748. --bs-gutter-y: 1.5rem
  1749. }
  1750. .g-xxl-5,
  1751. .gx-xxl-5 {
  1752. --bs-gutter-x: 3rem
  1753. }
  1754. .g-xxl-5,
  1755. .gy-xxl-5 {
  1756. --bs-gutter-y: 3rem
  1757. }
  1758. }
  1759. .table {
  1760. --bs-table-color-type: initial;
  1761. --bs-table-bg-type: initial;
  1762. --bs-table-color-state: initial;
  1763. --bs-table-bg-state: initial;
  1764. --bs-table-color: var(--bs-body-color);
  1765. --bs-table-bg: var(--bs-body-bg);
  1766. --bs-table-border-color: var(--bs-border-color);
  1767. --bs-table-accent-bg: transparent;
  1768. --bs-table-striped-color: var(--bs-body-color);
  1769. --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  1770. --bs-table-active-color: var(--bs-body-color);
  1771. --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  1772. --bs-table-hover-color: var(--bs-body-color);
  1773. --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  1774. width: 100%;
  1775. margin-bottom: 1rem;
  1776. vertical-align: top;
  1777. border-color: var(--bs-table-border-color)
  1778. }
  1779. .table>:not(caption)>*>* {
  1780. padding: .5rem .5rem;
  1781. color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  1782. background-color: var(--bs-table-bg);
  1783. border-bottom-width: var(--bs-border-width);
  1784. box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)))
  1785. }
  1786. .table>tbody {
  1787. vertical-align: inherit
  1788. }
  1789. .table>thead {
  1790. vertical-align: bottom
  1791. }
  1792. .table-group-divider {
  1793. border-top: calc(var(--bs-border-width) * 2) solid currentcolor
  1794. }
  1795. .caption-top {
  1796. caption-side: top
  1797. }
  1798. .table-sm>:not(caption)>*>* {
  1799. padding: .25rem .25rem
  1800. }
  1801. .table-bordered>:not(caption)>* {
  1802. border-width: var(--bs-border-width) 0
  1803. }
  1804. .table-bordered>:not(caption)>*>* {
  1805. border-width: 0 var(--bs-border-width)
  1806. }
  1807. .table-borderless>:not(caption)>*>* {
  1808. border-bottom-width: 0
  1809. }
  1810. .table-borderless>:not(:first-child) {
  1811. border-top-width: 0
  1812. }
  1813. .table-striped>tbody>tr:nth-of-type(odd)>* {
  1814. --bs-table-color-type: var(--bs-table-striped-color);
  1815. --bs-table-bg-type: var(--bs-table-striped-bg)
  1816. }
  1817. .table-striped-columns>:not(caption)>tr>:nth-child(even) {
  1818. --bs-table-color-type: var(--bs-table-striped-color);
  1819. --bs-table-bg-type: var(--bs-table-striped-bg)
  1820. }
  1821. .table-active {
  1822. --bs-table-color-state: var(--bs-table-active-color);
  1823. --bs-table-bg-state: var(--bs-table-active-bg)
  1824. }
  1825. .table-hover>tbody>tr:hover>* {
  1826. --bs-table-color-state: var(--bs-table-hover-color);
  1827. --bs-table-bg-state: var(--bs-table-hover-bg)
  1828. }
  1829. .table-primary {
  1830. --bs-table-color: #000;
  1831. --bs-table-bg: #cfe2ff;
  1832. --bs-table-border-color: #bacbe6;
  1833. --bs-table-striped-bg: #c5d7f2;
  1834. --bs-table-striped-color: #000;
  1835. --bs-table-active-bg: #bacbe6;
  1836. --bs-table-active-color: #000;
  1837. --bs-table-hover-bg: #bfd1ec;
  1838. --bs-table-hover-color: #000;
  1839. color: var(--bs-table-color);
  1840. border-color: var(--bs-table-border-color)
  1841. }
  1842. .table-secondary {
  1843. --bs-table-color: #000;
  1844. --bs-table-bg: #e2e3e5;
  1845. --bs-table-border-color: #cbccce;
  1846. --bs-table-striped-bg: #d7d8da;
  1847. --bs-table-striped-color: #000;
  1848. --bs-table-active-bg: #cbccce;
  1849. --bs-table-active-color: #000;
  1850. --bs-table-hover-bg: #d1d2d4;
  1851. --bs-table-hover-color: #000;
  1852. color: var(--bs-table-color);
  1853. border-color: var(--bs-table-border-color)
  1854. }
  1855. .table-success {
  1856. --bs-table-color: #000;
  1857. --bs-table-bg: #d1e7dd;
  1858. --bs-table-border-color: #bcd0c7;
  1859. --bs-table-striped-bg: #c7dbd2;
  1860. --bs-table-striped-color: #000;
  1861. --bs-table-active-bg: #bcd0c7;
  1862. --bs-table-active-color: #000;
  1863. --bs-table-hover-bg: #c1d6cc;
  1864. --bs-table-hover-color: #000;
  1865. color: var(--bs-table-color);
  1866. border-color: var(--bs-table-border-color)
  1867. }
  1868. .table-info {
  1869. --bs-table-color: #000;
  1870. --bs-table-bg: #cff4fc;
  1871. --bs-table-border-color: #badce3;
  1872. --bs-table-striped-bg: #c5e8ef;
  1873. --bs-table-striped-color: #000;
  1874. --bs-table-active-bg: #badce3;
  1875. --bs-table-active-color: #000;
  1876. --bs-table-hover-bg: #bfe2e9;
  1877. --bs-table-hover-color: #000;
  1878. color: var(--bs-table-color);
  1879. border-color: var(--bs-table-border-color)
  1880. }
  1881. .table-warning {
  1882. --bs-table-color: #000;
  1883. --bs-table-bg: #fff3cd;
  1884. --bs-table-border-color: #e6dbb9;
  1885. --bs-table-striped-bg: #f2e7c3;
  1886. --bs-table-striped-color: #000;
  1887. --bs-table-active-bg: #e6dbb9;
  1888. --bs-table-active-color: #000;
  1889. --bs-table-hover-bg: #ece1be;
  1890. --bs-table-hover-color: #000;
  1891. color: var(--bs-table-color);
  1892. border-color: var(--bs-table-border-color)
  1893. }
  1894. .table-danger {
  1895. --bs-table-color: #000;
  1896. --bs-table-bg: #f8d7da;
  1897. --bs-table-border-color: #dfc2c4;
  1898. --bs-table-striped-bg: #eccccf;
  1899. --bs-table-striped-color: #000;
  1900. --bs-table-active-bg: #dfc2c4;
  1901. --bs-table-active-color: #000;
  1902. --bs-table-hover-bg: #e5c7ca;
  1903. --bs-table-hover-color: #000;
  1904. color: var(--bs-table-color);
  1905. border-color: var(--bs-table-border-color)
  1906. }
  1907. .table-light {
  1908. --bs-table-color: #000;
  1909. --bs-table-bg: #f8f9fa;
  1910. --bs-table-border-color: #dfe0e1;
  1911. --bs-table-striped-bg: #ecedee;
  1912. --bs-table-striped-color: #000;
  1913. --bs-table-active-bg: #dfe0e1;
  1914. --bs-table-active-color: #000;
  1915. --bs-table-hover-bg: #e5e6e7;
  1916. --bs-table-hover-color: #000;
  1917. color: var(--bs-table-color);
  1918. border-color: var(--bs-table-border-color)
  1919. }
  1920. .table-dark {
  1921. --bs-table-color: #fff;
  1922. --bs-table-bg: #212529;
  1923. --bs-table-border-color: #373b3e;
  1924. --bs-table-striped-bg: #2c3034;
  1925. --bs-table-striped-color: #fff;
  1926. --bs-table-active-bg: #373b3e;
  1927. --bs-table-active-color: #fff;
  1928. --bs-table-hover-bg: #323539;
  1929. --bs-table-hover-color: #fff;
  1930. color: var(--bs-table-color);
  1931. border-color: var(--bs-table-border-color)
  1932. }
  1933. .table-responsive {
  1934. overflow-x: auto;
  1935. -webkit-overflow-scrolling: touch
  1936. }
  1937. @media(max-width: 575.98px) {
  1938. .table-responsive-sm {
  1939. overflow-x: auto;
  1940. -webkit-overflow-scrolling: touch
  1941. }
  1942. }
  1943. @media(max-width: 767.98px) {
  1944. .table-responsive-md {
  1945. overflow-x: auto;
  1946. -webkit-overflow-scrolling: touch
  1947. }
  1948. }
  1949. @media(max-width: 991.98px) {
  1950. .table-responsive-lg {
  1951. overflow-x: auto;
  1952. -webkit-overflow-scrolling: touch
  1953. }
  1954. }
  1955. @media(max-width: 1199.98px) {
  1956. .table-responsive-xl {
  1957. overflow-x: auto;
  1958. -webkit-overflow-scrolling: touch
  1959. }
  1960. }
  1961. @media(max-width: 1399.98px) {
  1962. .table-responsive-xxl {
  1963. overflow-x: auto;
  1964. -webkit-overflow-scrolling: touch
  1965. }
  1966. }
  1967. .form-label {
  1968. margin-bottom: .5rem
  1969. }
  1970. .col-form-label {
  1971. padding-top: calc(0.375rem + var(--bs-border-width));
  1972. padding-bottom: calc(0.375rem + var(--bs-border-width));
  1973. margin-bottom: 0;
  1974. font-size: inherit;
  1975. line-height: 1.5
  1976. }
  1977. .col-form-label-lg {
  1978. padding-top: calc(0.5rem + var(--bs-border-width));
  1979. padding-bottom: calc(0.5rem + var(--bs-border-width));
  1980. font-size: 1.25rem
  1981. }
  1982. .col-form-label-sm {
  1983. padding-top: calc(0.25rem + var(--bs-border-width));
  1984. padding-bottom: calc(0.25rem + var(--bs-border-width));
  1985. font-size: 0.875rem
  1986. }
  1987. .form-text {
  1988. margin-top: .25rem;
  1989. font-size: 0.875em;
  1990. color: var(--bs-secondary-color)
  1991. }
  1992. .form-control {
  1993. display: block;
  1994. width: 100%;
  1995. padding: .375rem .75rem;
  1996. font-size: 1rem;
  1997. font-weight: 400;
  1998. line-height: 1.5;
  1999. color: var(--bs-body-color);
  2000. background-color: var(--bs-body-bg);
  2001. background-clip: padding-box;
  2002. border: var(--bs-border-width) solid var(--bs-border-color);
  2003. -webkit-appearance: none;
  2004. -moz-appearance: none;
  2005. appearance: none;
  2006. border-radius: var(--bs-border-radius);
  2007. transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
  2008. }
  2009. @media(prefers-reduced-motion: reduce) {
  2010. .form-control {
  2011. transition: none
  2012. }
  2013. }
  2014. .form-control[type=file] {
  2015. overflow: hidden
  2016. }
  2017. .form-control[type=file]:not(:disabled):not([readonly]) {
  2018. cursor: pointer
  2019. }
  2020. .form-control:focus {
  2021. color: var(--bs-body-color);
  2022. background-color: var(--bs-body-bg);
  2023. border-color: #86b7fe;
  2024. outline: 0;
  2025. box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
  2026. }
  2027. .form-control::-webkit-date-and-time-value {
  2028. min-width: 85px;
  2029. height: 1.5em;
  2030. margin: 0
  2031. }
  2032. .form-control::-webkit-datetime-edit {
  2033. display: block;
  2034. padding: 0
  2035. }
  2036. .form-control::-webkit-input-placeholder {
  2037. color: var(--bs-secondary-color);
  2038. opacity: 1
  2039. }
  2040. .form-control::-moz-placeholder {
  2041. color: var(--bs-secondary-color);
  2042. opacity: 1
  2043. }
  2044. .form-control::placeholder {
  2045. color: var(--bs-secondary-color);
  2046. opacity: 1
  2047. }
  2048. .form-control:disabled {
  2049. background-color: var(--bs-secondary-bg);
  2050. opacity: 1
  2051. }
  2052. .form-control::-webkit-file-upload-button {
  2053. padding: .375rem .75rem;
  2054. margin: -0.375rem -0.75rem;
  2055. -webkit-margin-end: .75rem;
  2056. margin-inline-end: .75rem;
  2057. color: var(--bs-body-color);
  2058. background-color: var(--bs-tertiary-bg);
  2059. pointer-events: none;
  2060. border-color: inherit;
  2061. border-style: solid;
  2062. border-width: 0;
  2063. border-inline-end-width: var(--bs-border-width);
  2064. border-radius: 0;
  2065. -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  2066. transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
  2067. }
  2068. .form-control::file-selector-button {
  2069. padding: .375rem .75rem;
  2070. margin: -0.375rem -0.75rem;
  2071. -webkit-margin-end: .75rem;
  2072. margin-inline-end: .75rem;
  2073. color: var(--bs-body-color);
  2074. background-color: var(--bs-tertiary-bg);
  2075. pointer-events: none;
  2076. border-color: inherit;
  2077. border-style: solid;
  2078. border-width: 0;
  2079. border-inline-end-width: var(--bs-border-width);
  2080. border-radius: 0;
  2081. transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
  2082. }
  2083. @media(prefers-reduced-motion: reduce) {
  2084. .form-control::-webkit-file-upload-button {
  2085. -webkit-transition: none;
  2086. transition: none
  2087. }
  2088. .form-control::file-selector-button {
  2089. transition: none
  2090. }
  2091. }
  2092. .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  2093. background-color: var(--bs-secondary-bg)
  2094. }
  2095. .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  2096. background-color: var(--bs-secondary-bg)
  2097. }
  2098. .form-control-plaintext {
  2099. display: block;
  2100. width: 100%;
  2101. padding: .375rem 0;
  2102. margin-bottom: 0;
  2103. line-height: 1.5;
  2104. color: var(--bs-body-color);
  2105. background-color: rgba(0, 0, 0, 0);
  2106. border: solid rgba(0, 0, 0, 0);
  2107. border-width: var(--bs-border-width) 0
  2108. }
  2109. .form-control-plaintext:focus {
  2110. outline: 0
  2111. }
  2112. .form-control-plaintext.form-control-sm,
  2113. .form-control-plaintext.form-control-lg {
  2114. padding-right: 0;
  2115. padding-left: 0
  2116. }
  2117. .form-control-sm {
  2118. min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  2119. padding: .25rem .5rem;
  2120. font-size: 0.875rem;
  2121. border-radius: var(--bs-border-radius-sm)
  2122. }
  2123. .form-control-sm::-webkit-file-upload-button {
  2124. padding: .25rem .5rem;
  2125. margin: -0.25rem -0.5rem;
  2126. -webkit-margin-end: .5rem;
  2127. margin-inline-end: .5rem
  2128. }
  2129. .form-control-sm::file-selector-button {
  2130. padding: .25rem .5rem;
  2131. margin: -0.25rem -0.5rem;
  2132. -webkit-margin-end: .5rem;
  2133. margin-inline-end: .5rem
  2134. }
  2135. .form-control-lg {
  2136. min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  2137. padding: .5rem 1rem;
  2138. font-size: 1.25rem;
  2139. border-radius: var(--bs-border-radius-lg)
  2140. }
  2141. .form-control-lg::-webkit-file-upload-button {
  2142. padding: .5rem 1rem;
  2143. margin: -0.5rem -1rem;
  2144. -webkit-margin-end: 1rem;
  2145. margin-inline-end: 1rem
  2146. }
  2147. .form-control-lg::file-selector-button {
  2148. padding: .5rem 1rem;
  2149. margin: -0.5rem -1rem;
  2150. -webkit-margin-end: 1rem;
  2151. margin-inline-end: 1rem
  2152. }
  2153. textarea.form-control {
  2154. min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2))
  2155. }
  2156. textarea.form-control-sm {
  2157. min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2))
  2158. }
  2159. textarea.form-control-lg {
  2160. min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))
  2161. }
  2162. .form-control-color {
  2163. width: 3rem;
  2164. height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  2165. padding: .375rem
  2166. }
  2167. .form-control-color:not(:disabled):not([readonly]) {
  2168. cursor: pointer
  2169. }
  2170. .form-control-color::-moz-color-swatch {
  2171. border: 0 !important;
  2172. border-radius: var(--bs-border-radius)
  2173. }
  2174. .form-control-color::-webkit-color-swatch {
  2175. border: 0 !important;
  2176. border-radius: var(--bs-border-radius)
  2177. }
  2178. .form-control-color.form-control-sm {
  2179. height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2))
  2180. }
  2181. .form-control-color.form-control-lg {
  2182. height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))
  2183. }
  2184. .form-select {
  2185. --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  2186. display: block;
  2187. width: 100%;
  2188. padding: .375rem 2.25rem .375rem .75rem;
  2189. font-size: 1rem;
  2190. font-weight: 400;
  2191. line-height: 1.5;
  2192. color: var(--bs-body-color);
  2193. background-color: var(--bs-body-bg);
  2194. background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  2195. background-repeat: no-repeat;
  2196. background-position: right .75rem center;
  2197. background-size: 16px 12px;
  2198. border: var(--bs-border-width) solid var(--bs-border-color);
  2199. border-radius: var(--bs-border-radius);
  2200. transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  2201. -webkit-appearance: none;
  2202. -moz-appearance: none;
  2203. appearance: none
  2204. }
  2205. @media(prefers-reduced-motion: reduce) {
  2206. .form-select {
  2207. transition: none
  2208. }
  2209. }
  2210. .form-select:focus {
  2211. border-color: #86b7fe;
  2212. outline: 0;
  2213. box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
  2214. }
  2215. .form-select[multiple],
  2216. .form-select[size]:not([size="1"]) {
  2217. padding-right: .75rem;
  2218. background-image: none
  2219. }
  2220. .form-select:disabled {
  2221. background-color: var(--bs-secondary-bg)
  2222. }
  2223. .form-select:-moz-focusring {
  2224. color: rgba(0, 0, 0, 0);
  2225. text-shadow: 0 0 0 var(--bs-body-color)
  2226. }
  2227. .form-select-sm {
  2228. padding-top: .25rem;
  2229. padding-bottom: .25rem;
  2230. padding-left: .5rem;
  2231. font-size: 0.875rem;
  2232. border-radius: var(--bs-border-radius-sm)
  2233. }
  2234. .form-select-lg {
  2235. padding-top: .5rem;
  2236. padding-bottom: .5rem;
  2237. padding-left: 1rem;
  2238. font-size: 1.25rem;
  2239. border-radius: var(--bs-border-radius-lg)
  2240. }
  2241. [data-bs-theme=dark] .form-select {
  2242. --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e")
  2243. }
  2244. .form-check {
  2245. display: block;
  2246. min-height: 1.5rem;
  2247. padding-left: 1.5em;
  2248. margin-bottom: .125rem
  2249. }
  2250. .form-check .form-check-input {
  2251. float: left;
  2252. margin-left: -1.5em
  2253. }
  2254. .form-check-reverse {
  2255. padding-right: 1.5em;
  2256. padding-left: 0;
  2257. text-align: right
  2258. }
  2259. .form-check-reverse .form-check-input {
  2260. float: right;
  2261. margin-right: -1.5em;
  2262. margin-left: 0
  2263. }
  2264. .form-check-input {
  2265. --bs-form-check-bg: var(--bs-body-bg);
  2266. width: 1em;
  2267. height: 1em;
  2268. margin-top: .25em;
  2269. vertical-align: top;
  2270. background-color: var(--bs-form-check-bg);
  2271. background-image: var(--bs-form-check-bg-image);
  2272. background-repeat: no-repeat;
  2273. background-position: center;
  2274. background-size: contain;
  2275. border: var(--bs-border-width) solid var(--bs-border-color);
  2276. -webkit-appearance: none;
  2277. -moz-appearance: none;
  2278. appearance: none;
  2279. -webkit-print-color-adjust: exact;
  2280. print-color-adjust: exact
  2281. }
  2282. .form-check-input[type=checkbox] {
  2283. border-radius: .25em
  2284. }
  2285. .form-check-input[type=radio] {
  2286. border-radius: 50%
  2287. }
  2288. .form-check-input:active {
  2289. -webkit-filter: brightness(90%);
  2290. filter: brightness(90%)
  2291. }
  2292. .form-check-input:focus {
  2293. border-color: #86b7fe;
  2294. outline: 0;
  2295. box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
  2296. }
  2297. .form-check-input:checked {
  2298. background-color: #0d6efd;
  2299. border-color: #0d6efd
  2300. }
  2301. .form-check-input:checked[type=checkbox] {
  2302. --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")
  2303. }
  2304. .form-check-input:checked[type=radio] {
  2305. --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")
  2306. }
  2307. .form-check-input[type=checkbox]:indeterminate {
  2308. background-color: #0d6efd;
  2309. border-color: #0d6efd;
  2310. --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")
  2311. }
  2312. .form-check-input:disabled {
  2313. pointer-events: none;
  2314. -webkit-filter: none;
  2315. filter: none;
  2316. opacity: .5
  2317. }
  2318. .form-check-input[disabled]~.form-check-label,
  2319. .form-check-input:disabled~.form-check-label {
  2320. cursor: default;
  2321. opacity: .5
  2322. }
  2323. .form-switch {
  2324. padding-left: 2.5em
  2325. }
  2326. .form-switch .form-check-input {
  2327. --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  2328. width: 2em;
  2329. margin-left: -2.5em;
  2330. background-image: var(--bs-form-switch-bg);
  2331. background-position: left center;
  2332. border-radius: 2em;
  2333. transition: background-position .15s ease-in-out
  2334. }
  2335. @media(prefers-reduced-motion: reduce) {
  2336. .form-switch .form-check-input {
  2337. transition: none
  2338. }
  2339. }
  2340. .form-switch .form-check-input:focus {
  2341. --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")
  2342. }
  2343. .form-switch .form-check-input:checked {
  2344. background-position: right center;
  2345. --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")
  2346. }
  2347. .form-switch.form-check-reverse {
  2348. padding-right: 2.5em;
  2349. padding-left: 0
  2350. }
  2351. .form-switch.form-check-reverse .form-check-input {
  2352. margin-right: -2.5em;
  2353. margin-left: 0
  2354. }
  2355. .form-check-inline {
  2356. display: inline-block;
  2357. margin-right: 1rem
  2358. }
  2359. .btn-check {
  2360. position: absolute;
  2361. clip: rect(0, 0, 0, 0);
  2362. pointer-events: none
  2363. }
  2364. .btn-check[disabled]+.btn,
  2365. .btn-check:disabled+.btn {
  2366. pointer-events: none;
  2367. -webkit-filter: none;
  2368. filter: none;
  2369. opacity: .65
  2370. }
  2371. [data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  2372. --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e")
  2373. }
  2374. .form-range {
  2375. width: 100%;
  2376. height: 1.5rem;
  2377. padding: 0;
  2378. background-color: rgba(0, 0, 0, 0);
  2379. -webkit-appearance: none;
  2380. -moz-appearance: none;
  2381. appearance: none
  2382. }
  2383. .form-range:focus {
  2384. outline: 0
  2385. }
  2386. .form-range:focus::-webkit-slider-thumb {
  2387. box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(13, 110, 253, .25)
  2388. }
  2389. .form-range:focus::-moz-range-thumb {
  2390. box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem rgba(13, 110, 253, .25)
  2391. }
  2392. .form-range::-moz-focus-outer {
  2393. border: 0
  2394. }
  2395. .form-range::-webkit-slider-thumb {
  2396. width: 1rem;
  2397. height: 1rem;
  2398. margin-top: -0.25rem;
  2399. background-color: #0d6efd;
  2400. border: 0;
  2401. border-radius: 1rem;
  2402. -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  2403. transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  2404. -webkit-appearance: none;
  2405. appearance: none
  2406. }
  2407. @media(prefers-reduced-motion: reduce) {
  2408. .form-range::-webkit-slider-thumb {
  2409. -webkit-transition: none;
  2410. transition: none
  2411. }
  2412. }
  2413. .form-range::-webkit-slider-thumb:active {
  2414. background-color: #b6d4fe
  2415. }
  2416. .form-range::-webkit-slider-runnable-track {
  2417. width: 100%;
  2418. height: .5rem;
  2419. color: rgba(0, 0, 0, 0);
  2420. cursor: pointer;
  2421. background-color: var(--bs-tertiary-bg);
  2422. border-color: rgba(0, 0, 0, 0);
  2423. border-radius: 1rem
  2424. }
  2425. .form-range::-moz-range-thumb {
  2426. width: 1rem;
  2427. height: 1rem;
  2428. background-color: #0d6efd;
  2429. border: 0;
  2430. border-radius: 1rem;
  2431. -moz-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  2432. transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  2433. -moz-appearance: none;
  2434. appearance: none
  2435. }
  2436. @media(prefers-reduced-motion: reduce) {
  2437. .form-range::-moz-range-thumb {
  2438. -moz-transition: none;
  2439. transition: none
  2440. }
  2441. }
  2442. .form-range::-moz-range-thumb:active {
  2443. background-color: #b6d4fe
  2444. }
  2445. .form-range::-moz-range-track {
  2446. width: 100%;
  2447. height: .5rem;
  2448. color: rgba(0, 0, 0, 0);
  2449. cursor: pointer;
  2450. background-color: var(--bs-tertiary-bg);
  2451. border-color: rgba(0, 0, 0, 0);
  2452. border-radius: 1rem
  2453. }
  2454. .form-range:disabled {
  2455. pointer-events: none
  2456. }
  2457. .form-range:disabled::-webkit-slider-thumb {
  2458. background-color: var(--bs-secondary-color)
  2459. }
  2460. .form-range:disabled::-moz-range-thumb {
  2461. background-color: var(--bs-secondary-color)
  2462. }
  2463. .form-floating {
  2464. position: relative
  2465. }
  2466. .form-floating>.form-control,
  2467. .form-floating>.form-control-plaintext,
  2468. .form-floating>.form-select {
  2469. height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  2470. min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  2471. line-height: 1.25
  2472. }
  2473. .form-floating>label {
  2474. position: absolute;
  2475. top: 0;
  2476. left: 0;
  2477. z-index: 2;
  2478. height: 100%;
  2479. padding: 1rem .75rem;
  2480. overflow: hidden;
  2481. text-align: start;
  2482. text-overflow: ellipsis;
  2483. white-space: nowrap;
  2484. pointer-events: none;
  2485. border: var(--bs-border-width) solid rgba(0, 0, 0, 0);
  2486. -webkit-transform-origin: 0 0;
  2487. transform-origin: 0 0;
  2488. transition: opacity .1s ease-in-out, -webkit-transform .1s ease-in-out;
  2489. transition: opacity .1s ease-in-out, transform .1s ease-in-out;
  2490. transition: opacity .1s ease-in-out, transform .1s ease-in-out, -webkit-transform .1s ease-in-out
  2491. }
  2492. @media(prefers-reduced-motion: reduce) {
  2493. .form-floating>label {
  2494. transition: none
  2495. }
  2496. }
  2497. .form-floating>.form-control,
  2498. .form-floating>.form-control-plaintext {
  2499. padding: 1rem .75rem
  2500. }
  2501. .form-floating>.form-control::-webkit-input-placeholder,
  2502. .form-floating>.form-control-plaintext::-webkit-input-placeholder {
  2503. color: rgba(0, 0, 0, 0)
  2504. }
  2505. .form-floating>.form-control::-moz-placeholder,
  2506. .form-floating>.form-control-plaintext::-moz-placeholder {
  2507. color: rgba(0, 0, 0, 0)
  2508. }
  2509. .form-floating>.form-control::placeholder,
  2510. .form-floating>.form-control-plaintext::placeholder {
  2511. color: rgba(0, 0, 0, 0)
  2512. }
  2513. .form-floating>.form-control:not(:-moz-placeholder-shown),
  2514. .form-floating>.form-control-plaintext:not(:-moz-placeholder-shown) {
  2515. padding-top: 1.625rem;
  2516. padding-bottom: .625rem
  2517. }
  2518. .form-floating>.form-control:focus,
  2519. .form-floating>.form-control:not(:placeholder-shown),
  2520. .form-floating>.form-control-plaintext:focus,
  2521. .form-floating>.form-control-plaintext:not(:placeholder-shown) {
  2522. padding-top: 1.625rem;
  2523. padding-bottom: .625rem
  2524. }
  2525. .form-floating>.form-control:-webkit-autofill,
  2526. .form-floating>.form-control-plaintext:-webkit-autofill {
  2527. padding-top: 1.625rem;
  2528. padding-bottom: .625rem
  2529. }
  2530. .form-floating>.form-select {
  2531. padding-top: 1.625rem;
  2532. padding-bottom: .625rem
  2533. }
  2534. .form-floating>.form-control:not(:-moz-placeholder-shown)~label {
  2535. color: rgba(var(--bs-body-color-rgb), 0.65);
  2536. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem)
  2537. }
  2538. .form-floating>.form-control:focus~label,
  2539. .form-floating>.form-control:not(:placeholder-shown)~label,
  2540. .form-floating>.form-control-plaintext~label,
  2541. .form-floating>.form-select~label {
  2542. color: rgba(var(--bs-body-color-rgb), 0.65);
  2543. -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2544. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem)
  2545. }
  2546. .form-floating>.form-control:not(:-moz-placeholder-shown)~label::after {
  2547. position: absolute;
  2548. inset: 1rem .375rem;
  2549. z-index: -1;
  2550. height: 1.5em;
  2551. content: "";
  2552. background-color: var(--bs-body-bg);
  2553. border-radius: var(--bs-border-radius)
  2554. }
  2555. .form-floating>.form-control:focus~label::after,
  2556. .form-floating>.form-control:not(:placeholder-shown)~label::after,
  2557. .form-floating>.form-control-plaintext~label::after,
  2558. .form-floating>.form-select~label::after {
  2559. position: absolute;
  2560. inset: 1rem .375rem;
  2561. z-index: -1;
  2562. height: 1.5em;
  2563. content: "";
  2564. background-color: var(--bs-body-bg);
  2565. border-radius: var(--bs-border-radius)
  2566. }
  2567. .form-floating>.form-control:-webkit-autofill~label {
  2568. color: rgba(var(--bs-body-color-rgb), 0.65);
  2569. -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2570. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem)
  2571. }
  2572. .form-floating>.form-control-plaintext~label {
  2573. border-width: var(--bs-border-width) 0
  2574. }
  2575. .form-floating>:disabled~label {
  2576. color: #6c757d
  2577. }
  2578. .form-floating>:disabled~label::after {
  2579. background-color: var(--bs-secondary-bg)
  2580. }
  2581. .input-group {
  2582. position: relative;
  2583. display: flex;
  2584. flex-wrap: wrap;
  2585. align-items: stretch;
  2586. width: 100%
  2587. }
  2588. .input-group>.form-control,
  2589. .input-group>.form-select,
  2590. .input-group>.form-floating {
  2591. position: relative;
  2592. flex: 1 1 auto;
  2593. width: 1%;
  2594. min-width: 0
  2595. }
  2596. .input-group>.form-control:focus,
  2597. .input-group>.form-select:focus,
  2598. .input-group>.form-floating:focus-within {
  2599. z-index: 5
  2600. }
  2601. .input-group .btn {
  2602. position: relative;
  2603. z-index: 2
  2604. }
  2605. .input-group .btn:focus {
  2606. z-index: 5
  2607. }
  2608. .input-group-text {
  2609. display: flex;
  2610. align-items: center;
  2611. padding: .375rem .75rem;
  2612. font-size: 1rem;
  2613. font-weight: 400;
  2614. line-height: 1.5;
  2615. color: var(--bs-body-color);
  2616. text-align: center;
  2617. white-space: nowrap;
  2618. background-color: var(--bs-tertiary-bg);
  2619. border: var(--bs-border-width) solid var(--bs-border-color);
  2620. border-radius: var(--bs-border-radius)
  2621. }
  2622. .input-group-lg>.form-control,
  2623. .input-group-lg>.form-select,
  2624. .input-group-lg>.input-group-text,
  2625. .input-group-lg>.btn {
  2626. padding: .5rem 1rem;
  2627. font-size: 1.25rem;
  2628. border-radius: var(--bs-border-radius-lg)
  2629. }
  2630. .input-group-sm>.form-control,
  2631. .input-group-sm>.form-select,
  2632. .input-group-sm>.input-group-text,
  2633. .input-group-sm>.btn {
  2634. padding: .25rem .5rem;
  2635. font-size: 0.875rem;
  2636. border-radius: var(--bs-border-radius-sm)
  2637. }
  2638. .input-group-lg>.form-select,
  2639. .input-group-sm>.form-select {
  2640. padding-right: 3rem
  2641. }
  2642. .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2643. .input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
  2644. .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
  2645. .input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select {
  2646. border-top-right-radius: 0;
  2647. border-bottom-right-radius: 0
  2648. }
  2649. .input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2650. .input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),
  2651. .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-control,
  2652. .input-group.has-validation>.form-floating:nth-last-child(n+3)>.form-select {
  2653. border-top-right-radius: 0;
  2654. border-bottom-right-radius: 0
  2655. }
  2656. .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  2657. margin-left: calc(var(--bs-border-width) * -1);
  2658. border-top-left-radius: 0;
  2659. border-bottom-left-radius: 0
  2660. }
  2661. .input-group>.form-floating:not(:first-child)>.form-control,
  2662. .input-group>.form-floating:not(:first-child)>.form-select {
  2663. border-top-left-radius: 0;
  2664. border-bottom-left-radius: 0
  2665. }
  2666. .valid-feedback {
  2667. display: none;
  2668. width: 100%;
  2669. margin-top: .25rem;
  2670. font-size: 0.875em;
  2671. color: var(--bs-form-valid-color)
  2672. }
  2673. .valid-tooltip {
  2674. position: absolute;
  2675. top: 100%;
  2676. z-index: 5;
  2677. display: none;
  2678. max-width: 100%;
  2679. padding: .25rem .5rem;
  2680. margin-top: .1rem;
  2681. font-size: 0.875rem;
  2682. color: #fff;
  2683. background-color: var(--bs-success);
  2684. border-radius: var(--bs-border-radius)
  2685. }
  2686. .was-validated :valid~.valid-feedback,
  2687. .was-validated :valid~.valid-tooltip,
  2688. .is-valid~.valid-feedback,
  2689. .is-valid~.valid-tooltip {
  2690. display: block
  2691. }
  2692. .was-validated .form-control:valid,
  2693. .form-control.is-valid {
  2694. border-color: var(--bs-form-valid-border-color);
  2695. padding-right: calc(1.5em + 0.75rem);
  2696. 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");
  2697. background-repeat: no-repeat;
  2698. background-position: right calc(0.375em + 0.1875rem) center;
  2699. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)
  2700. }
  2701. .was-validated .form-control:valid:focus,
  2702. .form-control.is-valid:focus {
  2703. border-color: var(--bs-form-valid-border-color);
  2704. box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), 0.25)
  2705. }
  2706. .was-validated textarea.form-control:valid,
  2707. textarea.form-control.is-valid {
  2708. padding-right: calc(1.5em + 0.75rem);
  2709. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)
  2710. }
  2711. .was-validated .form-select:valid,
  2712. .form-select.is-valid {
  2713. border-color: var(--bs-form-valid-border-color)
  2714. }
  2715. .was-validated .form-select:valid:not([multiple]):not([size]),
  2716. .was-validated .form-select:valid:not([multiple])[size="1"],
  2717. .form-select.is-valid:not([multiple]):not([size]),
  2718. .form-select.is-valid:not([multiple])[size="1"] {
  2719. --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  2720. padding-right: 4.125rem;
  2721. background-position: right .75rem center, center right 2.25rem;
  2722. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)
  2723. }
  2724. .was-validated .form-select:valid:focus,
  2725. .form-select.is-valid:focus {
  2726. border-color: var(--bs-form-valid-border-color);
  2727. box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), 0.25)
  2728. }
  2729. .was-validated .form-control-color:valid,
  2730. .form-control-color.is-valid {
  2731. width: calc(3rem + calc(1.5em + 0.75rem))
  2732. }
  2733. .was-validated .form-check-input:valid,
  2734. .form-check-input.is-valid {
  2735. border-color: var(--bs-form-valid-border-color)
  2736. }
  2737. .was-validated .form-check-input:valid:checked,
  2738. .form-check-input.is-valid:checked {
  2739. background-color: var(--bs-form-valid-color)
  2740. }
  2741. .was-validated .form-check-input:valid:focus,
  2742. .form-check-input.is-valid:focus {
  2743. box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), 0.25)
  2744. }
  2745. .was-validated .form-check-input:valid~.form-check-label,
  2746. .form-check-input.is-valid~.form-check-label {
  2747. color: var(--bs-form-valid-color)
  2748. }
  2749. .form-check-inline .form-check-input~.valid-feedback {
  2750. margin-left: .5em
  2751. }
  2752. .was-validated .input-group>.form-control:not(:focus):valid,
  2753. .input-group>.form-control:not(:focus).is-valid,
  2754. .was-validated .input-group>.form-select:not(:focus):valid,
  2755. .input-group>.form-select:not(:focus).is-valid,
  2756. .was-validated .input-group>.form-floating:not(:focus-within):valid,
  2757. .input-group>.form-floating:not(:focus-within).is-valid {
  2758. z-index: 3
  2759. }
  2760. .invalid-feedback {
  2761. display: none;
  2762. width: 100%;
  2763. margin-top: .25rem;
  2764. font-size: 0.875em;
  2765. color: var(--bs-form-invalid-color)
  2766. }
  2767. .invalid-tooltip {
  2768. position: absolute;
  2769. top: 100%;
  2770. z-index: 5;
  2771. display: none;
  2772. max-width: 100%;
  2773. padding: .25rem .5rem;
  2774. margin-top: .1rem;
  2775. font-size: 0.875rem;
  2776. color: #fff;
  2777. background-color: var(--bs-danger);
  2778. border-radius: var(--bs-border-radius)
  2779. }
  2780. .was-validated :invalid~.invalid-feedback,
  2781. .was-validated :invalid~.invalid-tooltip,
  2782. .is-invalid~.invalid-feedback,
  2783. .is-invalid~.invalid-tooltip {
  2784. display: block
  2785. }
  2786. .was-validated .form-control:invalid,
  2787. .form-control.is-invalid {
  2788. border-color: var(--bs-form-invalid-border-color);
  2789. padding-right: calc(1.5em + 0.75rem);
  2790. 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");
  2791. background-repeat: no-repeat;
  2792. background-position: right calc(0.375em + 0.1875rem) center;
  2793. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)
  2794. }
  2795. .was-validated .form-control:invalid:focus,
  2796. .form-control.is-invalid:focus {
  2797. border-color: var(--bs-form-invalid-border-color);
  2798. box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), 0.25)
  2799. }
  2800. .was-validated textarea.form-control:invalid,
  2801. textarea.form-control.is-invalid {
  2802. padding-right: calc(1.5em + 0.75rem);
  2803. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem)
  2804. }
  2805. .was-validated .form-select:invalid,
  2806. .form-select.is-invalid {
  2807. border-color: var(--bs-form-invalid-border-color)
  2808. }
  2809. .was-validated .form-select:invalid:not([multiple]):not([size]),
  2810. .was-validated .form-select:invalid:not([multiple])[size="1"],
  2811. .form-select.is-invalid:not([multiple]):not([size]),
  2812. .form-select.is-invalid:not([multiple])[size="1"] {
  2813. --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  2814. padding-right: 4.125rem;
  2815. background-position: right .75rem center, center right 2.25rem;
  2816. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem)
  2817. }
  2818. .was-validated .form-select:invalid:focus,
  2819. .form-select.is-invalid:focus {
  2820. border-color: var(--bs-form-invalid-border-color);
  2821. box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), 0.25)
  2822. }
  2823. .was-validated .form-control-color:invalid,
  2824. .form-control-color.is-invalid {
  2825. width: calc(3rem + calc(1.5em + 0.75rem))
  2826. }
  2827. .was-validated .form-check-input:invalid,
  2828. .form-check-input.is-invalid {
  2829. border-color: var(--bs-form-invalid-border-color)
  2830. }
  2831. .was-validated .form-check-input:invalid:checked,
  2832. .form-check-input.is-invalid:checked {
  2833. background-color: var(--bs-form-invalid-color)
  2834. }
  2835. .was-validated .form-check-input:invalid:focus,
  2836. .form-check-input.is-invalid:focus {
  2837. box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), 0.25)
  2838. }
  2839. .was-validated .form-check-input:invalid~.form-check-label,
  2840. .form-check-input.is-invalid~.form-check-label {
  2841. color: var(--bs-form-invalid-color)
  2842. }
  2843. .form-check-inline .form-check-input~.invalid-feedback {
  2844. margin-left: .5em
  2845. }
  2846. .was-validated .input-group>.form-control:not(:focus):invalid,
  2847. .input-group>.form-control:not(:focus).is-invalid,
  2848. .was-validated .input-group>.form-select:not(:focus):invalid,
  2849. .input-group>.form-select:not(:focus).is-invalid,
  2850. .was-validated .input-group>.form-floating:not(:focus-within):invalid,
  2851. .input-group>.form-floating:not(:focus-within).is-invalid {
  2852. z-index: 4
  2853. }
  2854. .btn {
  2855. --bs-btn-padding-x: 0.75rem;
  2856. --bs-btn-padding-y: 0.375rem;
  2857. --bs-btn-font-family: ;
  2858. --bs-btn-font-size: 1rem;
  2859. --bs-btn-font-weight: 400;
  2860. --bs-btn-line-height: 1.5;
  2861. --bs-btn-color: var(--bs-body-color);
  2862. --bs-btn-bg: transparent;
  2863. --bs-btn-border-width: var(--bs-border-width);
  2864. --bs-btn-border-color: transparent;
  2865. --bs-btn-border-radius: var(--bs-border-radius);
  2866. --bs-btn-hover-border-color: transparent;
  2867. --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  2868. --bs-btn-disabled-opacity: 0.65;
  2869. --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  2870. display: inline-block;
  2871. padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  2872. font-family: var(--bs-btn-font-family);
  2873. font-size: var(--bs-btn-font-size);
  2874. font-weight: var(--bs-btn-font-weight);
  2875. line-height: var(--bs-btn-line-height);
  2876. color: var(--bs-btn-color);
  2877. text-align: center;
  2878. text-decoration: none;
  2879. vertical-align: middle;
  2880. cursor: pointer;
  2881. -webkit-user-select: none;
  2882. -moz-user-select: none;
  2883. user-select: none;
  2884. border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  2885. border-radius: var(--bs-btn-border-radius);
  2886. background-color: var(--bs-btn-bg);
  2887. transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
  2888. }
  2889. @media(prefers-reduced-motion: reduce) {
  2890. .btn {
  2891. transition: none
  2892. }
  2893. }
  2894. .btn:hover {
  2895. color: var(--bs-btn-hover-color);
  2896. background-color: var(--bs-btn-hover-bg);
  2897. border-color: var(--bs-btn-hover-border-color)
  2898. }
  2899. .btn-check+.btn:hover {
  2900. color: var(--bs-btn-color);
  2901. background-color: var(--bs-btn-bg);
  2902. border-color: var(--bs-btn-border-color)
  2903. }
  2904. .btn:focus-visible {
  2905. color: var(--bs-btn-hover-color);
  2906. background-color: var(--bs-btn-hover-bg);
  2907. border-color: var(--bs-btn-hover-border-color);
  2908. outline: 0;
  2909. box-shadow: var(--bs-btn-focus-box-shadow)
  2910. }
  2911. .btn-check:focus-visible+.btn {
  2912. border-color: var(--bs-btn-hover-border-color);
  2913. outline: 0;
  2914. box-shadow: var(--bs-btn-focus-box-shadow)
  2915. }
  2916. .btn-check:checked+.btn,
  2917. :not(.btn-check)+.btn:active,
  2918. .btn:first-child:active,
  2919. .btn.active,
  2920. .btn.show {
  2921. color: var(--bs-btn-active-color);
  2922. background-color: var(--bs-btn-active-bg);
  2923. border-color: var(--bs-btn-active-border-color)
  2924. }
  2925. .btn-check:checked+.btn:focus-visible,
  2926. :not(.btn-check)+.btn:active:focus-visible,
  2927. .btn:first-child:active:focus-visible,
  2928. .btn.active:focus-visible,
  2929. .btn.show:focus-visible {
  2930. box-shadow: var(--bs-btn-focus-box-shadow)
  2931. }
  2932. .btn:disabled,
  2933. .btn.disabled,
  2934. fieldset:disabled .btn {
  2935. color: var(--bs-btn-disabled-color);
  2936. pointer-events: none;
  2937. background-color: var(--bs-btn-disabled-bg);
  2938. border-color: var(--bs-btn-disabled-border-color);
  2939. opacity: var(--bs-btn-disabled-opacity)
  2940. }
  2941. .btn-primary {
  2942. --bs-btn-color: #000;
  2943. --bs-btn-bg: #15a362;
  2944. --bs-btn-border-color: #15a362;
  2945. --bs-btn-hover-color: #000;
  2946. --bs-btn-hover-bg: #38b17a;
  2947. --bs-btn-hover-border-color: #2cac72;
  2948. --bs-btn-focus-shadow-rgb: 18, 139, 83;
  2949. --bs-btn-active-color: #000;
  2950. --bs-btn-active-bg: #44b581;
  2951. --bs-btn-active-border-color: #2cac72;
  2952. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2953. --bs-btn-disabled-color: #000;
  2954. --bs-btn-disabled-bg: #15a362;
  2955. --bs-btn-disabled-border-color: #15a362
  2956. }
  2957. .btn-secondary {
  2958. --bs-btn-color: #fff;
  2959. --bs-btn-bg: #5d6778;
  2960. --bs-btn-border-color: #5d6778;
  2961. --bs-btn-hover-color: #fff;
  2962. --bs-btn-hover-bg: #4f5866;
  2963. --bs-btn-hover-border-color: #4a5260;
  2964. --bs-btn-focus-shadow-rgb: 117, 126, 140;
  2965. --bs-btn-active-color: #fff;
  2966. --bs-btn-active-bg: #4a5260;
  2967. --bs-btn-active-border-color: #464d5a;
  2968. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2969. --bs-btn-disabled-color: #fff;
  2970. --bs-btn-disabled-bg: #5d6778;
  2971. --bs-btn-disabled-border-color: #5d6778
  2972. }
  2973. .btn-success {
  2974. --bs-btn-color: #000;
  2975. --bs-btn-bg: #5cb377;
  2976. --bs-btn-border-color: #5cb377;
  2977. --bs-btn-hover-color: #000;
  2978. --bs-btn-hover-bg: #74be8b;
  2979. --bs-btn-hover-border-color: #6cbb85;
  2980. --bs-btn-focus-shadow-rgb: 78, 152, 101;
  2981. --bs-btn-active-color: #000;
  2982. --bs-btn-active-bg: #7dc292;
  2983. --bs-btn-active-border-color: #6cbb85;
  2984. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2985. --bs-btn-disabled-color: #000;
  2986. --bs-btn-disabled-bg: #5cb377;
  2987. --bs-btn-disabled-border-color: #5cb377
  2988. }
  2989. .btn-danger {
  2990. --bs-btn-color: #000;
  2991. --bs-btn-bg: #d26d69;
  2992. --bs-btn-border-color: #d26d69;
  2993. --bs-btn-hover-color: #000;
  2994. --bs-btn-hover-bg: #d98380;
  2995. --bs-btn-hover-border-color: #d77c78;
  2996. --bs-btn-focus-shadow-rgb: 179, 93, 89;
  2997. --bs-btn-active-color: #000;
  2998. --bs-btn-active-bg: #db8a87;
  2999. --bs-btn-active-border-color: #d77c78;
  3000. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3001. --bs-btn-disabled-color: #000;
  3002. --bs-btn-disabled-bg: #d26d69;
  3003. --bs-btn-disabled-border-color: #d26d69
  3004. }
  3005. .btn-warning {
  3006. --bs-btn-color: #000;
  3007. --bs-btn-bg: #EEBF41;
  3008. --bs-btn-border-color: #EEBF41;
  3009. --bs-btn-hover-color: #000;
  3010. --bs-btn-hover-bg: #f1c95e;
  3011. --bs-btn-hover-border-color: #f0c554;
  3012. --bs-btn-focus-shadow-rgb: 202, 162, 55;
  3013. --bs-btn-active-color: #000;
  3014. --bs-btn-active-bg: #f1cc67;
  3015. --bs-btn-active-border-color: #f0c554;
  3016. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3017. --bs-btn-disabled-color: #000;
  3018. --bs-btn-disabled-bg: #EEBF41;
  3019. --bs-btn-disabled-border-color: #EEBF41
  3020. }
  3021. .btn-info {
  3022. --bs-btn-color: #000;
  3023. --bs-btn-bg: #5b99ea;
  3024. --bs-btn-border-color: #5b99ea;
  3025. --bs-btn-hover-color: #000;
  3026. --bs-btn-hover-bg: #74a8ed;
  3027. --bs-btn-hover-border-color: #6ba3ec;
  3028. --bs-btn-focus-shadow-rgb: 77, 130, 199;
  3029. --bs-btn-active-color: #000;
  3030. --bs-btn-active-bg: #7cadee;
  3031. --bs-btn-active-border-color: #6ba3ec;
  3032. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3033. --bs-btn-disabled-color: #000;
  3034. --bs-btn-disabled-bg: #5b99ea;
  3035. --bs-btn-disabled-border-color: #5b99ea
  3036. }
  3037. .btn-outline-primary {
  3038. --bs-btn-color: #15a362;
  3039. --bs-btn-border-color: #15a362;
  3040. --bs-btn-hover-color: #000;
  3041. --bs-btn-hover-bg: #15a362;
  3042. --bs-btn-hover-border-color: #15a362;
  3043. --bs-btn-focus-shadow-rgb: 21, 163, 98;
  3044. --bs-btn-active-color: #000;
  3045. --bs-btn-active-bg: #15a362;
  3046. --bs-btn-active-border-color: #15a362;
  3047. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3048. --bs-btn-disabled-color: #15a362;
  3049. --bs-btn-disabled-bg: transparent;
  3050. --bs-btn-disabled-border-color: #15a362;
  3051. --bs-gradient: none
  3052. }
  3053. .btn-outline-secondary {
  3054. --bs-btn-color: #5d6778;
  3055. --bs-btn-border-color: #5d6778;
  3056. --bs-btn-hover-color: #fff;
  3057. --bs-btn-hover-bg: #5d6778;
  3058. --bs-btn-hover-border-color: #5d6778;
  3059. --bs-btn-focus-shadow-rgb: 93, 103, 120;
  3060. --bs-btn-active-color: #fff;
  3061. --bs-btn-active-bg: #5d6778;
  3062. --bs-btn-active-border-color: #5d6778;
  3063. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3064. --bs-btn-disabled-color: #5d6778;
  3065. --bs-btn-disabled-bg: transparent;
  3066. --bs-btn-disabled-border-color: #5d6778;
  3067. --bs-gradient: none
  3068. }
  3069. .btn-outline-success {
  3070. --bs-btn-color: #5cb377;
  3071. --bs-btn-border-color: #5cb377;
  3072. --bs-btn-hover-color: #000;
  3073. --bs-btn-hover-bg: #5cb377;
  3074. --bs-btn-hover-border-color: #5cb377;
  3075. --bs-btn-focus-shadow-rgb: 92, 179, 119;
  3076. --bs-btn-active-color: #000;
  3077. --bs-btn-active-bg: #5cb377;
  3078. --bs-btn-active-border-color: #5cb377;
  3079. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3080. --bs-btn-disabled-color: #5cb377;
  3081. --bs-btn-disabled-bg: transparent;
  3082. --bs-btn-disabled-border-color: #5cb377;
  3083. --bs-gradient: none
  3084. }
  3085. .btn-outline-danger {
  3086. --bs-btn-color: #d26d69;
  3087. --bs-btn-border-color: #d26d69;
  3088. --bs-btn-hover-color: #000;
  3089. --bs-btn-hover-bg: #d26d69;
  3090. --bs-btn-hover-border-color: #d26d69;
  3091. --bs-btn-focus-shadow-rgb: 210, 109, 105;
  3092. --bs-btn-active-color: #000;
  3093. --bs-btn-active-bg: #d26d69;
  3094. --bs-btn-active-border-color: #d26d69;
  3095. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3096. --bs-btn-disabled-color: #d26d69;
  3097. --bs-btn-disabled-bg: transparent;
  3098. --bs-btn-disabled-border-color: #d26d69;
  3099. --bs-gradient: none
  3100. }
  3101. .btn-outline-warning {
  3102. --bs-btn-color: #EEBF41;
  3103. --bs-btn-border-color: #EEBF41;
  3104. --bs-btn-hover-color: #000;
  3105. --bs-btn-hover-bg: #EEBF41;
  3106. --bs-btn-hover-border-color: #EEBF41;
  3107. --bs-btn-focus-shadow-rgb: 238, 191, 65;
  3108. --bs-btn-active-color: #000;
  3109. --bs-btn-active-bg: #EEBF41;
  3110. --bs-btn-active-border-color: #EEBF41;
  3111. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3112. --bs-btn-disabled-color: #EEBF41;
  3113. --bs-btn-disabled-bg: transparent;
  3114. --bs-btn-disabled-border-color: #EEBF41;
  3115. --bs-gradient: none
  3116. }
  3117. .btn-outline-info {
  3118. --bs-btn-color: #5b99ea;
  3119. --bs-btn-border-color: #5b99ea;
  3120. --bs-btn-hover-color: #000;
  3121. --bs-btn-hover-bg: #5b99ea;
  3122. --bs-btn-hover-border-color: #5b99ea;
  3123. --bs-btn-focus-shadow-rgb: 91, 153, 234;
  3124. --bs-btn-active-color: #000;
  3125. --bs-btn-active-bg: #5b99ea;
  3126. --bs-btn-active-border-color: #5b99ea;
  3127. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3128. --bs-btn-disabled-color: #5b99ea;
  3129. --bs-btn-disabled-bg: transparent;
  3130. --bs-btn-disabled-border-color: #5b99ea;
  3131. --bs-gradient: none
  3132. }
  3133. .btn-link {
  3134. --bs-btn-font-weight: 400;
  3135. --bs-btn-color: var(--bs-link-color);
  3136. --bs-btn-bg: transparent;
  3137. --bs-btn-border-color: transparent;
  3138. --bs-btn-hover-color: var(--bs-link-hover-color);
  3139. --bs-btn-hover-border-color: transparent;
  3140. --bs-btn-active-color: var(--bs-link-hover-color);
  3141. --bs-btn-active-border-color: transparent;
  3142. --bs-btn-disabled-color: #6c757d;
  3143. --bs-btn-disabled-border-color: transparent;
  3144. --bs-btn-box-shadow: 0 0 0 #000;
  3145. --bs-btn-focus-shadow-rgb: 49, 132, 253;
  3146. text-decoration: underline
  3147. }
  3148. .btn-link:focus-visible {
  3149. color: var(--bs-btn-color)
  3150. }
  3151. .btn-link:hover {
  3152. color: var(--bs-btn-hover-color)
  3153. }
  3154. .btn-lg,
  3155. .btn-group-lg>.btn {
  3156. --bs-btn-padding-y: 0.5rem;
  3157. --bs-btn-padding-x: 1rem;
  3158. --bs-btn-font-size: 1.25rem;
  3159. --bs-btn-border-radius: var(--bs-border-radius-lg)
  3160. }
  3161. .btn-sm,
  3162. .btn-group-sm>.btn {
  3163. --bs-btn-padding-y: 0.25rem;
  3164. --bs-btn-padding-x: 0.5rem;
  3165. --bs-btn-font-size: 0.875rem;
  3166. --bs-btn-border-radius: var(--bs-border-radius-sm)
  3167. }
  3168. .fade {
  3169. transition: opacity .15s linear
  3170. }
  3171. @media(prefers-reduced-motion: reduce) {
  3172. .fade {
  3173. transition: none
  3174. }
  3175. }
  3176. .fade:not(.show) {
  3177. opacity: 0
  3178. }
  3179. .collapse:not(.show) {
  3180. display: none
  3181. }
  3182. .collapsing {
  3183. height: 0;
  3184. overflow: hidden;
  3185. transition: height .35s ease
  3186. }
  3187. @media(prefers-reduced-motion: reduce) {
  3188. .collapsing {
  3189. transition: none
  3190. }
  3191. }
  3192. .collapsing.collapse-horizontal {
  3193. width: 0;
  3194. height: auto;
  3195. transition: width .35s ease
  3196. }
  3197. @media(prefers-reduced-motion: reduce) {
  3198. .collapsing.collapse-horizontal {
  3199. transition: none
  3200. }
  3201. }
  3202. .dropup,
  3203. .dropend,
  3204. .dropdown,
  3205. .dropstart,
  3206. .dropup-center,
  3207. .dropdown-center {
  3208. position: relative
  3209. }
  3210. .dropdown-toggle {
  3211. white-space: nowrap
  3212. }
  3213. .dropdown-toggle::after {
  3214. display: inline-block;
  3215. margin-left: .255em;
  3216. vertical-align: .255em;
  3217. content: "";
  3218. border-top: .3em solid;
  3219. border-right: .3em solid rgba(0, 0, 0, 0);
  3220. border-bottom: 0;
  3221. border-left: .3em solid rgba(0, 0, 0, 0)
  3222. }
  3223. .dropdown-toggle:empty::after {
  3224. margin-left: 0
  3225. }
  3226. .dropdown-menu {
  3227. --bs-dropdown-zindex: 1000;
  3228. --bs-dropdown-min-width: 10rem;
  3229. --bs-dropdown-padding-x: 0;
  3230. --bs-dropdown-padding-y: 0.5rem;
  3231. --bs-dropdown-spacer: 0.125rem;
  3232. --bs-dropdown-font-size: 1rem;
  3233. --bs-dropdown-color: var(--bs-body-color);
  3234. --bs-dropdown-bg: var(--bs-body-bg);
  3235. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3236. --bs-dropdown-border-radius: var(--bs-border-radius);
  3237. --bs-dropdown-border-width: var(--bs-border-width);
  3238. --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  3239. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3240. --bs-dropdown-divider-margin-y: 0.5rem;
  3241. --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  3242. --bs-dropdown-link-color: var(--bs-body-color);
  3243. --bs-dropdown-link-hover-color: var(--bs-body-color);
  3244. --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  3245. --bs-dropdown-link-active-color: #fff;
  3246. --bs-dropdown-link-active-bg: #0d6efd;
  3247. --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  3248. --bs-dropdown-item-padding-x: 1rem;
  3249. --bs-dropdown-item-padding-y: 0.25rem;
  3250. --bs-dropdown-header-color: #6c757d;
  3251. --bs-dropdown-header-padding-x: 1rem;
  3252. --bs-dropdown-header-padding-y: 0.5rem;
  3253. position: absolute;
  3254. z-index: var(--bs-dropdown-zindex);
  3255. display: none;
  3256. min-width: var(--bs-dropdown-min-width);
  3257. padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  3258. margin: 0;
  3259. font-size: var(--bs-dropdown-font-size);
  3260. color: var(--bs-dropdown-color);
  3261. text-align: left;
  3262. list-style: none;
  3263. background-color: var(--bs-dropdown-bg);
  3264. background-clip: padding-box;
  3265. border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  3266. border-radius: var(--bs-dropdown-border-radius)
  3267. }
  3268. .dropdown-menu[data-bs-popper] {
  3269. top: 100%;
  3270. left: 0;
  3271. margin-top: var(--bs-dropdown-spacer)
  3272. }
  3273. .dropdown-menu-start {
  3274. --bs-position: start
  3275. }
  3276. .dropdown-menu-start[data-bs-popper] {
  3277. right: auto;
  3278. left: 0
  3279. }
  3280. .dropdown-menu-end {
  3281. --bs-position: end
  3282. }
  3283. .dropdown-menu-end[data-bs-popper] {
  3284. right: 0;
  3285. left: auto
  3286. }
  3287. @media(min-width: 576px) {
  3288. .dropdown-menu-sm-start {
  3289. --bs-position: start
  3290. }
  3291. .dropdown-menu-sm-start[data-bs-popper] {
  3292. right: auto;
  3293. left: 0
  3294. }
  3295. .dropdown-menu-sm-end {
  3296. --bs-position: end
  3297. }
  3298. .dropdown-menu-sm-end[data-bs-popper] {
  3299. right: 0;
  3300. left: auto
  3301. }
  3302. }
  3303. @media(min-width: 768px) {
  3304. .dropdown-menu-md-start {
  3305. --bs-position: start
  3306. }
  3307. .dropdown-menu-md-start[data-bs-popper] {
  3308. right: auto;
  3309. left: 0
  3310. }
  3311. .dropdown-menu-md-end {
  3312. --bs-position: end
  3313. }
  3314. .dropdown-menu-md-end[data-bs-popper] {
  3315. right: 0;
  3316. left: auto
  3317. }
  3318. }
  3319. @media(min-width: 992px) {
  3320. .dropdown-menu-lg-start {
  3321. --bs-position: start
  3322. }
  3323. .dropdown-menu-lg-start[data-bs-popper] {
  3324. right: auto;
  3325. left: 0
  3326. }
  3327. .dropdown-menu-lg-end {
  3328. --bs-position: end
  3329. }
  3330. .dropdown-menu-lg-end[data-bs-popper] {
  3331. right: 0;
  3332. left: auto
  3333. }
  3334. }
  3335. @media(min-width: 1200px) {
  3336. .dropdown-menu-xl-start {
  3337. --bs-position: start
  3338. }
  3339. .dropdown-menu-xl-start[data-bs-popper] {
  3340. right: auto;
  3341. left: 0
  3342. }
  3343. .dropdown-menu-xl-end {
  3344. --bs-position: end
  3345. }
  3346. .dropdown-menu-xl-end[data-bs-popper] {
  3347. right: 0;
  3348. left: auto
  3349. }
  3350. }
  3351. @media(min-width: 1400px) {
  3352. .dropdown-menu-xxl-start {
  3353. --bs-position: start
  3354. }
  3355. .dropdown-menu-xxl-start[data-bs-popper] {
  3356. right: auto;
  3357. left: 0
  3358. }
  3359. .dropdown-menu-xxl-end {
  3360. --bs-position: end
  3361. }
  3362. .dropdown-menu-xxl-end[data-bs-popper] {
  3363. right: 0;
  3364. left: auto
  3365. }
  3366. }
  3367. .dropup .dropdown-menu[data-bs-popper] {
  3368. top: auto;
  3369. bottom: 100%;
  3370. margin-top: 0;
  3371. margin-bottom: var(--bs-dropdown-spacer)
  3372. }
  3373. .dropup .dropdown-toggle::after {
  3374. display: inline-block;
  3375. margin-left: .255em;
  3376. vertical-align: .255em;
  3377. content: "";
  3378. border-top: 0;
  3379. border-right: .3em solid rgba(0, 0, 0, 0);
  3380. border-bottom: .3em solid;
  3381. border-left: .3em solid rgba(0, 0, 0, 0)
  3382. }
  3383. .dropup .dropdown-toggle:empty::after {
  3384. margin-left: 0
  3385. }
  3386. .dropend .dropdown-menu[data-bs-popper] {
  3387. top: 0;
  3388. right: auto;
  3389. left: 100%;
  3390. margin-top: 0;
  3391. margin-left: var(--bs-dropdown-spacer)
  3392. }
  3393. .dropend .dropdown-toggle::after {
  3394. display: inline-block;
  3395. margin-left: .255em;
  3396. vertical-align: .255em;
  3397. content: "";
  3398. border-top: .3em solid rgba(0, 0, 0, 0);
  3399. border-right: 0;
  3400. border-bottom: .3em solid rgba(0, 0, 0, 0);
  3401. border-left: .3em solid
  3402. }
  3403. .dropend .dropdown-toggle:empty::after {
  3404. margin-left: 0
  3405. }
  3406. .dropend .dropdown-toggle::after {
  3407. vertical-align: 0
  3408. }
  3409. .dropstart .dropdown-menu[data-bs-popper] {
  3410. top: 0;
  3411. right: 100%;
  3412. left: auto;
  3413. margin-top: 0;
  3414. margin-right: var(--bs-dropdown-spacer)
  3415. }
  3416. .dropstart .dropdown-toggle::after {
  3417. display: inline-block;
  3418. margin-left: .255em;
  3419. vertical-align: .255em;
  3420. content: ""
  3421. }
  3422. .dropstart .dropdown-toggle::after {
  3423. display: none
  3424. }
  3425. .dropstart .dropdown-toggle::before {
  3426. display: inline-block;
  3427. margin-right: .255em;
  3428. vertical-align: .255em;
  3429. content: "";
  3430. border-top: .3em solid rgba(0, 0, 0, 0);
  3431. border-right: .3em solid;
  3432. border-bottom: .3em solid rgba(0, 0, 0, 0)
  3433. }
  3434. .dropstart .dropdown-toggle:empty::after {
  3435. margin-left: 0
  3436. }
  3437. .dropstart .dropdown-toggle::before {
  3438. vertical-align: 0
  3439. }
  3440. .dropdown-divider {
  3441. height: 0;
  3442. margin: var(--bs-dropdown-divider-margin-y) 0;
  3443. overflow: hidden;
  3444. border-top: 1px solid var(--bs-dropdown-divider-bg);
  3445. opacity: 1
  3446. }
  3447. .dropdown-item {
  3448. display: block;
  3449. width: 100%;
  3450. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3451. clear: both;
  3452. font-weight: 400;
  3453. color: var(--bs-dropdown-link-color);
  3454. text-align: inherit;
  3455. text-decoration: none;
  3456. white-space: nowrap;
  3457. background-color: rgba(0, 0, 0, 0);
  3458. border: 0;
  3459. border-radius: var(--bs-dropdown-item-border-radius, 0)
  3460. }
  3461. .dropdown-item:hover,
  3462. .dropdown-item:focus {
  3463. color: var(--bs-dropdown-link-hover-color);
  3464. background-color: var(--bs-dropdown-link-hover-bg)
  3465. }
  3466. .dropdown-item.active,
  3467. .dropdown-item:active {
  3468. color: var(--bs-dropdown-link-active-color);
  3469. text-decoration: none;
  3470. background-color: var(--bs-dropdown-link-active-bg)
  3471. }
  3472. .dropdown-item.disabled,
  3473. .dropdown-item:disabled {
  3474. color: var(--bs-dropdown-link-disabled-color);
  3475. pointer-events: none;
  3476. background-color: rgba(0, 0, 0, 0)
  3477. }
  3478. .dropdown-menu.show {
  3479. display: block
  3480. }
  3481. .dropdown-header {
  3482. display: block;
  3483. padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  3484. margin-bottom: 0;
  3485. font-size: 0.875rem;
  3486. color: var(--bs-dropdown-header-color);
  3487. white-space: nowrap
  3488. }
  3489. .dropdown-item-text {
  3490. display: block;
  3491. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3492. color: var(--bs-dropdown-link-color)
  3493. }
  3494. .dropdown-menu-dark {
  3495. --bs-dropdown-color: #dee2e6;
  3496. --bs-dropdown-bg: #343a40;
  3497. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3498. --bs-dropdown-box-shadow: ;
  3499. --bs-dropdown-link-color: #dee2e6;
  3500. --bs-dropdown-link-hover-color: #fff;
  3501. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3502. --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  3503. --bs-dropdown-link-active-color: #fff;
  3504. --bs-dropdown-link-active-bg: #0d6efd;
  3505. --bs-dropdown-link-disabled-color: #adb5bd;
  3506. --bs-dropdown-header-color: #adb5bd
  3507. }
  3508. .btn-group,
  3509. .btn-group-vertical {
  3510. position: relative;
  3511. display: inline-flex;
  3512. vertical-align: middle
  3513. }
  3514. .btn-group>.btn,
  3515. .btn-group-vertical>.btn {
  3516. position: relative;
  3517. flex: 1 1 auto
  3518. }
  3519. .btn-group>.btn-check:checked+.btn,
  3520. .btn-group>.btn-check:focus+.btn,
  3521. .btn-group>.btn:hover,
  3522. .btn-group>.btn:focus,
  3523. .btn-group>.btn:active,
  3524. .btn-group>.btn.active,
  3525. .btn-group-vertical>.btn-check:checked+.btn,
  3526. .btn-group-vertical>.btn-check:focus+.btn,
  3527. .btn-group-vertical>.btn:hover,
  3528. .btn-group-vertical>.btn:focus,
  3529. .btn-group-vertical>.btn:active,
  3530. .btn-group-vertical>.btn.active {
  3531. z-index: 1
  3532. }
  3533. .btn-toolbar {
  3534. display: flex;
  3535. flex-wrap: wrap;
  3536. justify-content: flex-start
  3537. }
  3538. .btn-toolbar .input-group {
  3539. width: auto
  3540. }
  3541. .btn-group {
  3542. border-radius: var(--bs-border-radius)
  3543. }
  3544. .btn-group>:not(.btn-check:first-child)+.btn,
  3545. .btn-group>.btn-group:not(:first-child) {
  3546. margin-left: calc(var(--bs-border-width) * -1)
  3547. }
  3548. .btn-group>.btn:not(:last-child):not(.dropdown-toggle),
  3549. .btn-group>.btn.dropdown-toggle-split:first-child,
  3550. .btn-group>.btn-group:not(:last-child)>.btn {
  3551. border-top-right-radius: 0;
  3552. border-bottom-right-radius: 0
  3553. }
  3554. .btn-group>.btn:nth-child(n+3),
  3555. .btn-group>:not(.btn-check)+.btn,
  3556. .btn-group>.btn-group:not(:first-child)>.btn {
  3557. border-top-left-radius: 0;
  3558. border-bottom-left-radius: 0
  3559. }
  3560. .dropdown-toggle-split {
  3561. padding-right: .5625rem;
  3562. padding-left: .5625rem
  3563. }
  3564. .dropdown-toggle-split::after,
  3565. .dropup .dropdown-toggle-split::after,
  3566. .dropend .dropdown-toggle-split::after {
  3567. margin-left: 0
  3568. }
  3569. .dropstart .dropdown-toggle-split::before {
  3570. margin-right: 0
  3571. }
  3572. .btn-sm+.dropdown-toggle-split,
  3573. .btn-group-sm>.btn+.dropdown-toggle-split {
  3574. padding-right: .375rem;
  3575. padding-left: .375rem
  3576. }
  3577. .btn-lg+.dropdown-toggle-split,
  3578. .btn-group-lg>.btn+.dropdown-toggle-split {
  3579. padding-right: .75rem;
  3580. padding-left: .75rem
  3581. }
  3582. .btn-group-vertical {
  3583. flex-direction: column;
  3584. align-items: flex-start;
  3585. justify-content: center
  3586. }
  3587. .btn-group-vertical>.btn,
  3588. .btn-group-vertical>.btn-group {
  3589. width: 100%
  3590. }
  3591. .btn-group-vertical>.btn:not(:first-child),
  3592. .btn-group-vertical>.btn-group:not(:first-child) {
  3593. margin-top: calc(var(--bs-border-width) * -1)
  3594. }
  3595. .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),
  3596. .btn-group-vertical>.btn-group:not(:last-child)>.btn {
  3597. border-bottom-right-radius: 0;
  3598. border-bottom-left-radius: 0
  3599. }
  3600. .btn-group-vertical>.btn~.btn,
  3601. .btn-group-vertical>.btn-group:not(:first-child)>.btn {
  3602. border-top-left-radius: 0;
  3603. border-top-right-radius: 0
  3604. }
  3605. .nav {
  3606. --bs-nav-link-padding-x: 1rem;
  3607. --bs-nav-link-padding-y: 0.5rem;
  3608. --bs-nav-link-font-weight: ;
  3609. --bs-nav-link-color: var(--bs-link-color);
  3610. --bs-nav-link-hover-color: var(--bs-link-hover-color);
  3611. --bs-nav-link-disabled-color: var(--bs-secondary-color);
  3612. display: flex;
  3613. flex-wrap: wrap;
  3614. padding-left: 0;
  3615. margin-bottom: 0;
  3616. list-style: none
  3617. }
  3618. .nav-link {
  3619. display: block;
  3620. padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  3621. font-size: var(--bs-nav-link-font-size);
  3622. font-weight: var(--bs-nav-link-font-weight);
  3623. color: var(--bs-nav-link-color);
  3624. text-decoration: none;
  3625. background: none;
  3626. border: 0;
  3627. transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out
  3628. }
  3629. @media(prefers-reduced-motion: reduce) {
  3630. .nav-link {
  3631. transition: none
  3632. }
  3633. }
  3634. .nav-link:hover,
  3635. .nav-link:focus {
  3636. color: var(--bs-nav-link-hover-color)
  3637. }
  3638. .nav-link:focus-visible {
  3639. outline: 0;
  3640. box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25)
  3641. }
  3642. .nav-link.disabled {
  3643. color: var(--bs-nav-link-disabled-color);
  3644. pointer-events: none;
  3645. cursor: default
  3646. }
  3647. .nav-tabs {
  3648. --bs-nav-tabs-border-width: var(--bs-border-width);
  3649. --bs-nav-tabs-border-color: var(--bs-border-color);
  3650. --bs-nav-tabs-border-radius: var(--bs-border-radius);
  3651. --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  3652. --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  3653. --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  3654. --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  3655. border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)
  3656. }
  3657. .nav-tabs .nav-link {
  3658. margin-bottom: calc(-1*var(--bs-nav-tabs-border-width));
  3659. border: var(--bs-nav-tabs-border-width) solid rgba(0, 0, 0, 0);
  3660. border-top-left-radius: var(--bs-nav-tabs-border-radius);
  3661. border-top-right-radius: var(--bs-nav-tabs-border-radius)
  3662. }
  3663. .nav-tabs .nav-link:hover,
  3664. .nav-tabs .nav-link:focus {
  3665. isolation: isolate;
  3666. border-color: var(--bs-nav-tabs-link-hover-border-color)
  3667. }
  3668. .nav-tabs .nav-link.disabled,
  3669. .nav-tabs .nav-link:disabled {
  3670. color: var(--bs-nav-link-disabled-color);
  3671. background-color: rgba(0, 0, 0, 0);
  3672. border-color: rgba(0, 0, 0, 0)
  3673. }
  3674. .nav-tabs .nav-link.active,
  3675. .nav-tabs .nav-item.show .nav-link {
  3676. color: var(--bs-nav-tabs-link-active-color);
  3677. background-color: var(--bs-nav-tabs-link-active-bg);
  3678. border-color: var(--bs-nav-tabs-link-active-border-color)
  3679. }
  3680. .nav-tabs .dropdown-menu {
  3681. margin-top: calc(-1*var(--bs-nav-tabs-border-width));
  3682. border-top-left-radius: 0;
  3683. border-top-right-radius: 0
  3684. }
  3685. .nav-pills {
  3686. --bs-nav-pills-border-radius: var(--bs-border-radius);
  3687. --bs-nav-pills-link-active-color: #fff;
  3688. --bs-nav-pills-link-active-bg: #0d6efd
  3689. }
  3690. .nav-pills .nav-link {
  3691. border-radius: var(--bs-nav-pills-border-radius)
  3692. }
  3693. .nav-pills .nav-link:disabled {
  3694. color: var(--bs-nav-link-disabled-color);
  3695. background-color: rgba(0, 0, 0, 0);
  3696. border-color: rgba(0, 0, 0, 0)
  3697. }
  3698. .nav-pills .nav-link.active,
  3699. .nav-pills .show>.nav-link {
  3700. color: var(--bs-nav-pills-link-active-color);
  3701. background-color: var(--bs-nav-pills-link-active-bg)
  3702. }
  3703. .nav-underline {
  3704. --bs-nav-underline-gap: 1rem;
  3705. --bs-nav-underline-border-width: 0.125rem;
  3706. --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  3707. gap: var(--bs-nav-underline-gap)
  3708. }
  3709. .nav-underline .nav-link {
  3710. padding-right: 0;
  3711. padding-left: 0;
  3712. border-bottom: var(--bs-nav-underline-border-width) solid rgba(0, 0, 0, 0)
  3713. }
  3714. .nav-underline .nav-link:hover,
  3715. .nav-underline .nav-link:focus {
  3716. border-bottom-color: currentcolor
  3717. }
  3718. .nav-underline .nav-link.active,
  3719. .nav-underline .show>.nav-link {
  3720. font-weight: 700;
  3721. color: var(--bs-nav-underline-link-active-color);
  3722. border-bottom-color: currentcolor
  3723. }
  3724. .nav-fill>.nav-link,
  3725. .nav-fill .nav-item {
  3726. flex: 1 1 auto;
  3727. text-align: center
  3728. }
  3729. .nav-justified>.nav-link,
  3730. .nav-justified .nav-item {
  3731. flex-basis: 0;
  3732. flex-grow: 1;
  3733. text-align: center
  3734. }
  3735. .nav-fill .nav-item .nav-link,
  3736. .nav-justified .nav-item .nav-link {
  3737. width: 100%
  3738. }
  3739. .tab-content>.tab-pane {
  3740. display: none
  3741. }
  3742. .tab-content>.active {
  3743. display: block
  3744. }
  3745. .navbar {
  3746. --bs-navbar-padding-x: 0;
  3747. --bs-navbar-padding-y: 0.5rem;
  3748. --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  3749. --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  3750. --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  3751. --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3752. --bs-navbar-brand-padding-y: 0.3125rem;
  3753. --bs-navbar-brand-margin-end: 1rem;
  3754. --bs-navbar-brand-font-size: 1.25rem;
  3755. --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3756. --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3757. --bs-navbar-nav-link-padding-x: 0.5rem;
  3758. --bs-navbar-toggler-padding-y: 0.25rem;
  3759. --bs-navbar-toggler-padding-x: 0.75rem;
  3760. --bs-navbar-toggler-font-size: 1.25rem;
  3761. --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  3762. --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  3763. --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  3764. --bs-navbar-toggler-focus-width: 0.25rem;
  3765. --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  3766. position: relative;
  3767. display: flex;
  3768. flex-wrap: wrap;
  3769. align-items: center;
  3770. justify-content: space-between;
  3771. padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x)
  3772. }
  3773. .navbar>.container,
  3774. .navbar>.container-fluid,
  3775. .navbar>.container-sm,
  3776. .navbar>.container-md,
  3777. .navbar>.container-lg,
  3778. .navbar>.container-xl,
  3779. .navbar>.container-xxl {
  3780. display: flex;
  3781. flex-wrap: inherit;
  3782. align-items: center;
  3783. justify-content: space-between
  3784. }
  3785. .navbar-brand {
  3786. padding-top: var(--bs-navbar-brand-padding-y);
  3787. padding-bottom: var(--bs-navbar-brand-padding-y);
  3788. margin-right: var(--bs-navbar-brand-margin-end);
  3789. font-size: var(--bs-navbar-brand-font-size);
  3790. color: var(--bs-navbar-brand-color);
  3791. text-decoration: none;
  3792. white-space: nowrap
  3793. }
  3794. .navbar-brand:hover,
  3795. .navbar-brand:focus {
  3796. color: var(--bs-navbar-brand-hover-color)
  3797. }
  3798. .navbar-nav {
  3799. --bs-nav-link-padding-x: 0;
  3800. --bs-nav-link-padding-y: 0.5rem;
  3801. --bs-nav-link-font-weight: ;
  3802. --bs-nav-link-color: var(--bs-navbar-color);
  3803. --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  3804. --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  3805. display: flex;
  3806. flex-direction: column;
  3807. padding-left: 0;
  3808. margin-bottom: 0;
  3809. list-style: none
  3810. }
  3811. .navbar-nav .nav-link.active,
  3812. .navbar-nav .nav-link.show {
  3813. color: var(--bs-navbar-active-color)
  3814. }
  3815. .navbar-nav .dropdown-menu {
  3816. position: static
  3817. }
  3818. .navbar-text {
  3819. padding-top: .5rem;
  3820. padding-bottom: .5rem;
  3821. color: var(--bs-navbar-color)
  3822. }
  3823. .navbar-text a,
  3824. .navbar-text a:hover,
  3825. .navbar-text a:focus {
  3826. color: var(--bs-navbar-active-color)
  3827. }
  3828. .navbar-collapse {
  3829. flex-basis: 100%;
  3830. flex-grow: 1;
  3831. align-items: center
  3832. }
  3833. .navbar-toggler {
  3834. padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  3835. font-size: var(--bs-navbar-toggler-font-size);
  3836. line-height: 1;
  3837. color: var(--bs-navbar-color);
  3838. background-color: rgba(0, 0, 0, 0);
  3839. border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  3840. border-radius: var(--bs-navbar-toggler-border-radius);
  3841. transition: var(--bs-navbar-toggler-transition)
  3842. }
  3843. @media(prefers-reduced-motion: reduce) {
  3844. .navbar-toggler {
  3845. transition: none
  3846. }
  3847. }
  3848. .navbar-toggler:hover {
  3849. text-decoration: none
  3850. }
  3851. .navbar-toggler:focus {
  3852. text-decoration: none;
  3853. outline: 0;
  3854. box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width)
  3855. }
  3856. .navbar-toggler-icon {
  3857. display: inline-block;
  3858. width: 1.5em;
  3859. height: 1.5em;
  3860. vertical-align: middle;
  3861. background-image: var(--bs-navbar-toggler-icon-bg);
  3862. background-repeat: no-repeat;
  3863. background-position: center;
  3864. background-size: 100%
  3865. }
  3866. .navbar-nav-scroll {
  3867. max-height: var(--bs-scroll-height, 75vh);
  3868. overflow-y: auto
  3869. }
  3870. @media(min-width: 576px) {
  3871. .navbar-expand-sm {
  3872. flex-wrap: nowrap;
  3873. justify-content: flex-start
  3874. }
  3875. .navbar-expand-sm .navbar-nav {
  3876. flex-direction: row
  3877. }
  3878. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3879. position: absolute
  3880. }
  3881. .navbar-expand-sm .navbar-nav .nav-link {
  3882. padding-right: var(--bs-navbar-nav-link-padding-x);
  3883. padding-left: var(--bs-navbar-nav-link-padding-x)
  3884. }
  3885. .navbar-expand-sm .navbar-nav-scroll {
  3886. overflow: visible
  3887. }
  3888. .navbar-expand-sm .navbar-collapse {
  3889. display: flex !important;
  3890. flex-basis: auto
  3891. }
  3892. .navbar-expand-sm .navbar-toggler {
  3893. display: none
  3894. }
  3895. .navbar-expand-sm .offcanvas {
  3896. position: static;
  3897. z-index: auto;
  3898. flex-grow: 1;
  3899. width: auto !important;
  3900. height: auto !important;
  3901. visibility: visible !important;
  3902. background-color: rgba(0, 0, 0, 0) !important;
  3903. border: 0 !important;
  3904. -webkit-transform: none !important;
  3905. transform: none !important;
  3906. transition: none
  3907. }
  3908. .navbar-expand-sm .offcanvas .offcanvas-header {
  3909. display: none
  3910. }
  3911. .navbar-expand-sm .offcanvas .offcanvas-body {
  3912. display: flex;
  3913. flex-grow: 0;
  3914. padding: 0;
  3915. overflow-y: visible
  3916. }
  3917. }
  3918. @media(min-width: 768px) {
  3919. .navbar-expand-md {
  3920. flex-wrap: nowrap;
  3921. justify-content: flex-start
  3922. }
  3923. .navbar-expand-md .navbar-nav {
  3924. flex-direction: row
  3925. }
  3926. .navbar-expand-md .navbar-nav .dropdown-menu {
  3927. position: absolute
  3928. }
  3929. .navbar-expand-md .navbar-nav .nav-link {
  3930. padding-right: var(--bs-navbar-nav-link-padding-x);
  3931. padding-left: var(--bs-navbar-nav-link-padding-x)
  3932. }
  3933. .navbar-expand-md .navbar-nav-scroll {
  3934. overflow: visible
  3935. }
  3936. .navbar-expand-md .navbar-collapse {
  3937. display: flex !important;
  3938. flex-basis: auto
  3939. }
  3940. .navbar-expand-md .navbar-toggler {
  3941. display: none
  3942. }
  3943. .navbar-expand-md .offcanvas {
  3944. position: static;
  3945. z-index: auto;
  3946. flex-grow: 1;
  3947. width: auto !important;
  3948. height: auto !important;
  3949. visibility: visible !important;
  3950. background-color: rgba(0, 0, 0, 0) !important;
  3951. border: 0 !important;
  3952. -webkit-transform: none !important;
  3953. transform: none !important;
  3954. transition: none
  3955. }
  3956. .navbar-expand-md .offcanvas .offcanvas-header {
  3957. display: none
  3958. }
  3959. .navbar-expand-md .offcanvas .offcanvas-body {
  3960. display: flex;
  3961. flex-grow: 0;
  3962. padding: 0;
  3963. overflow-y: visible
  3964. }
  3965. }
  3966. @media(min-width: 992px) {
  3967. .navbar-expand-lg {
  3968. flex-wrap: nowrap;
  3969. justify-content: flex-start
  3970. }
  3971. .navbar-expand-lg .navbar-nav {
  3972. flex-direction: row
  3973. }
  3974. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3975. position: absolute
  3976. }
  3977. .navbar-expand-lg .navbar-nav .nav-link {
  3978. padding-right: var(--bs-navbar-nav-link-padding-x);
  3979. padding-left: var(--bs-navbar-nav-link-padding-x)
  3980. }
  3981. .navbar-expand-lg .navbar-nav-scroll {
  3982. overflow: visible
  3983. }
  3984. .navbar-expand-lg .navbar-collapse {
  3985. display: flex !important;
  3986. flex-basis: auto
  3987. }
  3988. .navbar-expand-lg .navbar-toggler {
  3989. display: none
  3990. }
  3991. .navbar-expand-lg .offcanvas {
  3992. position: static;
  3993. z-index: auto;
  3994. flex-grow: 1;
  3995. width: auto !important;
  3996. height: auto !important;
  3997. visibility: visible !important;
  3998. background-color: rgba(0, 0, 0, 0) !important;
  3999. border: 0 !important;
  4000. -webkit-transform: none !important;
  4001. transform: none !important;
  4002. transition: none
  4003. }
  4004. .navbar-expand-lg .offcanvas .offcanvas-header {
  4005. display: none
  4006. }
  4007. .navbar-expand-lg .offcanvas .offcanvas-body {
  4008. display: flex;
  4009. flex-grow: 0;
  4010. padding: 0;
  4011. overflow-y: visible
  4012. }
  4013. }
  4014. @media(min-width: 1200px) {
  4015. .navbar-expand-xl {
  4016. flex-wrap: nowrap;
  4017. justify-content: flex-start
  4018. }
  4019. .navbar-expand-xl .navbar-nav {
  4020. flex-direction: row
  4021. }
  4022. .navbar-expand-xl .navbar-nav .dropdown-menu {
  4023. position: absolute
  4024. }
  4025. .navbar-expand-xl .navbar-nav .nav-link {
  4026. padding-right: var(--bs-navbar-nav-link-padding-x);
  4027. padding-left: var(--bs-navbar-nav-link-padding-x)
  4028. }
  4029. .navbar-expand-xl .navbar-nav-scroll {
  4030. overflow: visible
  4031. }
  4032. .navbar-expand-xl .navbar-collapse {
  4033. display: flex !important;
  4034. flex-basis: auto
  4035. }
  4036. .navbar-expand-xl .navbar-toggler {
  4037. display: none
  4038. }
  4039. .navbar-expand-xl .offcanvas {
  4040. position: static;
  4041. z-index: auto;
  4042. flex-grow: 1;
  4043. width: auto !important;
  4044. height: auto !important;
  4045. visibility: visible !important;
  4046. background-color: rgba(0, 0, 0, 0) !important;
  4047. border: 0 !important;
  4048. -webkit-transform: none !important;
  4049. transform: none !important;
  4050. transition: none
  4051. }
  4052. .navbar-expand-xl .offcanvas .offcanvas-header {
  4053. display: none
  4054. }
  4055. .navbar-expand-xl .offcanvas .offcanvas-body {
  4056. display: flex;
  4057. flex-grow: 0;
  4058. padding: 0;
  4059. overflow-y: visible
  4060. }
  4061. }
  4062. @media(min-width: 1400px) {
  4063. .navbar-expand-xxl {
  4064. flex-wrap: nowrap;
  4065. justify-content: flex-start
  4066. }
  4067. .navbar-expand-xxl .navbar-nav {
  4068. flex-direction: row
  4069. }
  4070. .navbar-expand-xxl .navbar-nav .dropdown-menu {
  4071. position: absolute
  4072. }
  4073. .navbar-expand-xxl .navbar-nav .nav-link {
  4074. padding-right: var(--bs-navbar-nav-link-padding-x);
  4075. padding-left: var(--bs-navbar-nav-link-padding-x)
  4076. }
  4077. .navbar-expand-xxl .navbar-nav-scroll {
  4078. overflow: visible
  4079. }
  4080. .navbar-expand-xxl .navbar-collapse {
  4081. display: flex !important;
  4082. flex-basis: auto
  4083. }
  4084. .navbar-expand-xxl .navbar-toggler {
  4085. display: none
  4086. }
  4087. .navbar-expand-xxl .offcanvas {
  4088. position: static;
  4089. z-index: auto;
  4090. flex-grow: 1;
  4091. width: auto !important;
  4092. height: auto !important;
  4093. visibility: visible !important;
  4094. background-color: rgba(0, 0, 0, 0) !important;
  4095. border: 0 !important;
  4096. -webkit-transform: none !important;
  4097. transform: none !important;
  4098. transition: none
  4099. }
  4100. .navbar-expand-xxl .offcanvas .offcanvas-header {
  4101. display: none
  4102. }
  4103. .navbar-expand-xxl .offcanvas .offcanvas-body {
  4104. display: flex;
  4105. flex-grow: 0;
  4106. padding: 0;
  4107. overflow-y: visible
  4108. }
  4109. }
  4110. .navbar-expand {
  4111. flex-wrap: nowrap;
  4112. justify-content: flex-start
  4113. }
  4114. .navbar-expand .navbar-nav {
  4115. flex-direction: row
  4116. }
  4117. .navbar-expand .navbar-nav .dropdown-menu {
  4118. position: absolute
  4119. }
  4120. .navbar-expand .navbar-nav .nav-link {
  4121. padding-right: var(--bs-navbar-nav-link-padding-x);
  4122. padding-left: var(--bs-navbar-nav-link-padding-x)
  4123. }
  4124. .navbar-expand .navbar-nav-scroll {
  4125. overflow: visible
  4126. }
  4127. .navbar-expand .navbar-collapse {
  4128. display: flex !important;
  4129. flex-basis: auto
  4130. }
  4131. .navbar-expand .navbar-toggler {
  4132. display: none
  4133. }
  4134. .navbar-expand .offcanvas {
  4135. position: static;
  4136. z-index: auto;
  4137. flex-grow: 1;
  4138. width: auto !important;
  4139. height: auto !important;
  4140. visibility: visible !important;
  4141. background-color: rgba(0, 0, 0, 0) !important;
  4142. border: 0 !important;
  4143. -webkit-transform: none !important;
  4144. transform: none !important;
  4145. transition: none
  4146. }
  4147. .navbar-expand .offcanvas .offcanvas-header {
  4148. display: none
  4149. }
  4150. .navbar-expand .offcanvas .offcanvas-body {
  4151. display: flex;
  4152. flex-grow: 0;
  4153. padding: 0;
  4154. overflow-y: visible
  4155. }
  4156. .navbar-dark,
  4157. .navbar[data-bs-theme=dark] {
  4158. --bs-navbar-color: rgba(255, 255, 255, 0.55);
  4159. --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  4160. --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  4161. --bs-navbar-active-color: #fff;
  4162. --bs-navbar-brand-color: #fff;
  4163. --bs-navbar-brand-hover-color: #fff;
  4164. --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  4165. --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")
  4166. }
  4167. [data-bs-theme=dark] .navbar-toggler-icon {
  4168. --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")
  4169. }
  4170. .card {
  4171. --bs-card-spacer-y: 1rem;
  4172. --bs-card-spacer-x: 1rem;
  4173. --bs-card-title-spacer-y: 0.5rem;
  4174. --bs-card-title-color: ;
  4175. --bs-card-subtitle-color: ;
  4176. --bs-card-border-width: var(--bs-border-width);
  4177. --bs-card-border-color: var(--bs-border-color-translucent);
  4178. --bs-card-border-radius: var(--bs-border-radius);
  4179. --bs-card-box-shadow: ;
  4180. --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  4181. --bs-card-cap-padding-y: 0.5rem;
  4182. --bs-card-cap-padding-x: 1rem;
  4183. --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  4184. --bs-card-cap-color: ;
  4185. --bs-card-height: ;
  4186. --bs-card-color: ;
  4187. --bs-card-bg: var(--bs-body-bg);
  4188. --bs-card-img-overlay-padding: 1rem;
  4189. --bs-card-group-margin: 0.75rem;
  4190. position: relative;
  4191. display: flex;
  4192. flex-direction: column;
  4193. min-width: 0;
  4194. height: var(--bs-card-height);
  4195. color: var(--bs-body-color);
  4196. word-wrap: break-word;
  4197. background-color: var(--bs-card-bg);
  4198. background-clip: border-box;
  4199. border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4200. border-radius: var(--bs-card-border-radius)
  4201. }
  4202. .card>hr {
  4203. margin-right: 0;
  4204. margin-left: 0
  4205. }
  4206. .card>.list-group {
  4207. border-top: inherit;
  4208. border-bottom: inherit
  4209. }
  4210. .card>.list-group:first-child {
  4211. border-top-width: 0;
  4212. border-top-left-radius: var(--bs-card-inner-border-radius);
  4213. border-top-right-radius: var(--bs-card-inner-border-radius)
  4214. }
  4215. .card>.list-group:last-child {
  4216. border-bottom-width: 0;
  4217. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  4218. border-bottom-left-radius: var(--bs-card-inner-border-radius)
  4219. }
  4220. .card>.card-header+.list-group,
  4221. .card>.list-group+.card-footer {
  4222. border-top: 0
  4223. }
  4224. .card-body {
  4225. flex: 1 1 auto;
  4226. padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  4227. color: var(--bs-card-color)
  4228. }
  4229. .card-title {
  4230. margin-bottom: var(--bs-card-title-spacer-y);
  4231. color: var(--bs-card-title-color)
  4232. }
  4233. .card-subtitle {
  4234. margin-top: calc(-0.5*var(--bs-card-title-spacer-y));
  4235. margin-bottom: 0;
  4236. color: var(--bs-card-subtitle-color)
  4237. }
  4238. .card-text:last-child {
  4239. margin-bottom: 0
  4240. }
  4241. .card-link+.card-link {
  4242. margin-left: var(--bs-card-spacer-x)
  4243. }
  4244. .card-header {
  4245. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  4246. margin-bottom: 0;
  4247. color: var(--bs-card-cap-color);
  4248. background-color: var(--bs-card-cap-bg);
  4249. border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color)
  4250. }
  4251. .card-header:first-child {
  4252. border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0
  4253. }
  4254. .card-footer {
  4255. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  4256. color: var(--bs-card-cap-color);
  4257. background-color: var(--bs-card-cap-bg);
  4258. border-top: var(--bs-card-border-width) solid var(--bs-card-border-color)
  4259. }
  4260. .card-footer:last-child {
  4261. border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius)
  4262. }
  4263. .card-header-tabs {
  4264. margin-right: calc(-0.5*var(--bs-card-cap-padding-x));
  4265. margin-bottom: calc(-1*var(--bs-card-cap-padding-y));
  4266. margin-left: calc(-0.5*var(--bs-card-cap-padding-x));
  4267. border-bottom: 0
  4268. }
  4269. .card-header-tabs .nav-link.active {
  4270. background-color: var(--bs-card-bg);
  4271. border-bottom-color: var(--bs-card-bg)
  4272. }
  4273. .card-header-pills {
  4274. margin-right: calc(-0.5*var(--bs-card-cap-padding-x));
  4275. margin-left: calc(-0.5*var(--bs-card-cap-padding-x))
  4276. }
  4277. .card-img-overlay {
  4278. position: absolute;
  4279. top: 0;
  4280. right: 0;
  4281. bottom: 0;
  4282. left: 0;
  4283. padding: var(--bs-card-img-overlay-padding);
  4284. border-radius: var(--bs-card-inner-border-radius)
  4285. }
  4286. .card-img,
  4287. .card-img-top,
  4288. .card-img-bottom {
  4289. width: 100%
  4290. }
  4291. .card-img,
  4292. .card-img-top {
  4293. border-top-left-radius: var(--bs-card-inner-border-radius);
  4294. border-top-right-radius: var(--bs-card-inner-border-radius)
  4295. }
  4296. .card-img,
  4297. .card-img-bottom {
  4298. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  4299. border-bottom-left-radius: var(--bs-card-inner-border-radius)
  4300. }
  4301. .card-group>.card {
  4302. margin-bottom: var(--bs-card-group-margin)
  4303. }
  4304. @media(min-width: 576px) {
  4305. .card-group {
  4306. display: flex;
  4307. flex-flow: row wrap
  4308. }
  4309. .card-group>.card {
  4310. flex: 1 0 0%;
  4311. margin-bottom: 0
  4312. }
  4313. .card-group>.card+.card {
  4314. margin-left: 0;
  4315. border-left: 0
  4316. }
  4317. .card-group>.card:not(:last-child) {
  4318. border-top-right-radius: 0;
  4319. border-bottom-right-radius: 0
  4320. }
  4321. .card-group>.card:not(:last-child) .card-img-top,
  4322. .card-group>.card:not(:last-child) .card-header {
  4323. border-top-right-radius: 0
  4324. }
  4325. .card-group>.card:not(:last-child) .card-img-bottom,
  4326. .card-group>.card:not(:last-child) .card-footer {
  4327. border-bottom-right-radius: 0
  4328. }
  4329. .card-group>.card:not(:first-child) {
  4330. border-top-left-radius: 0;
  4331. border-bottom-left-radius: 0
  4332. }
  4333. .card-group>.card:not(:first-child) .card-img-top,
  4334. .card-group>.card:not(:first-child) .card-header {
  4335. border-top-left-radius: 0
  4336. }
  4337. .card-group>.card:not(:first-child) .card-img-bottom,
  4338. .card-group>.card:not(:first-child) .card-footer {
  4339. border-bottom-left-radius: 0
  4340. }
  4341. }
  4342. .accordion {
  4343. --bs-accordion-color: var(--bs-body-color);
  4344. --bs-accordion-bg: var(--bs-body-bg);
  4345. --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;
  4346. --bs-accordion-border-color: var(--bs-border-color);
  4347. --bs-accordion-border-width: var(--bs-border-width);
  4348. --bs-accordion-border-radius: var(--bs-border-radius);
  4349. --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  4350. --bs-accordion-btn-padding-x: 1.25rem;
  4351. --bs-accordion-btn-padding-y: 1rem;
  4352. --bs-accordion-btn-color: var(--bs-body-color);
  4353. --bs-accordion-btn-bg: var(--bs-accordion-bg);
  4354. --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");
  4355. --bs-accordion-btn-icon-width: 1.25rem;
  4356. --bs-accordion-btn-icon-transform: rotate(-180deg);
  4357. --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  4358. --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%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");
  4359. --bs-accordion-btn-focus-border-color: #86b7fe;
  4360. --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4361. --bs-accordion-body-padding-x: 1.25rem;
  4362. --bs-accordion-body-padding-y: 1rem;
  4363. --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  4364. --bs-accordion-active-bg: var(--bs-primary-bg-subtle)
  4365. }
  4366. .accordion-button {
  4367. position: relative;
  4368. display: flex;
  4369. align-items: center;
  4370. width: 100%;
  4371. padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  4372. font-size: 1rem;
  4373. color: var(--bs-accordion-btn-color);
  4374. text-align: left;
  4375. background-color: var(--bs-accordion-btn-bg);
  4376. border: 0;
  4377. border-radius: 0;
  4378. overflow-anchor: none;
  4379. transition: var(--bs-accordion-transition)
  4380. }
  4381. @media(prefers-reduced-motion: reduce) {
  4382. .accordion-button {
  4383. transition: none
  4384. }
  4385. }
  4386. .accordion-button:not(.collapsed) {
  4387. color: var(--bs-accordion-active-color);
  4388. background-color: var(--bs-accordion-active-bg);
  4389. box-shadow: inset 0 calc(-1*var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color)
  4390. }
  4391. .accordion-button:not(.collapsed)::after {
  4392. background-image: var(--bs-accordion-btn-active-icon);
  4393. -webkit-transform: var(--bs-accordion-btn-icon-transform);
  4394. transform: var(--bs-accordion-btn-icon-transform)
  4395. }
  4396. .accordion-button::after {
  4397. flex-shrink: 0;
  4398. width: var(--bs-accordion-btn-icon-width);
  4399. height: var(--bs-accordion-btn-icon-width);
  4400. margin-left: auto;
  4401. content: "";
  4402. background-image: var(--bs-accordion-btn-icon);
  4403. background-repeat: no-repeat;
  4404. background-size: var(--bs-accordion-btn-icon-width);
  4405. transition: var(--bs-accordion-btn-icon-transition)
  4406. }
  4407. @media(prefers-reduced-motion: reduce) {
  4408. .accordion-button::after {
  4409. transition: none
  4410. }
  4411. }
  4412. .accordion-button:hover {
  4413. z-index: 2
  4414. }
  4415. .accordion-button:focus {
  4416. z-index: 3;
  4417. border-color: var(--bs-accordion-btn-focus-border-color);
  4418. outline: 0;
  4419. box-shadow: var(--bs-accordion-btn-focus-box-shadow)
  4420. }
  4421. .accordion-header {
  4422. margin-bottom: 0
  4423. }
  4424. .accordion-item {
  4425. color: var(--bs-accordion-color);
  4426. background-color: var(--bs-accordion-bg);
  4427. border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color)
  4428. }
  4429. .accordion-item:first-of-type {
  4430. border-top-left-radius: var(--bs-accordion-border-radius);
  4431. border-top-right-radius: var(--bs-accordion-border-radius)
  4432. }
  4433. .accordion-item:first-of-type .accordion-button {
  4434. border-top-left-radius: var(--bs-accordion-inner-border-radius);
  4435. border-top-right-radius: var(--bs-accordion-inner-border-radius)
  4436. }
  4437. .accordion-item:not(:first-of-type) {
  4438. border-top: 0
  4439. }
  4440. .accordion-item:last-of-type {
  4441. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4442. border-bottom-left-radius: var(--bs-accordion-border-radius)
  4443. }
  4444. .accordion-item:last-of-type .accordion-button.collapsed {
  4445. border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  4446. border-bottom-left-radius: var(--bs-accordion-inner-border-radius)
  4447. }
  4448. .accordion-item:last-of-type .accordion-collapse {
  4449. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4450. border-bottom-left-radius: var(--bs-accordion-border-radius)
  4451. }
  4452. .accordion-body {
  4453. padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x)
  4454. }
  4455. .accordion-flush .accordion-collapse {
  4456. border-width: 0
  4457. }
  4458. .accordion-flush .accordion-item {
  4459. border-right: 0;
  4460. border-left: 0;
  4461. border-radius: 0
  4462. }
  4463. .accordion-flush .accordion-item:first-child {
  4464. border-top: 0
  4465. }
  4466. .accordion-flush .accordion-item:last-child {
  4467. border-bottom: 0
  4468. }
  4469. .accordion-flush .accordion-item .accordion-button,
  4470. .accordion-flush .accordion-item .accordion-button.collapsed {
  4471. border-radius: 0
  4472. }
  4473. [data-bs-theme=dark] .accordion-button::after {
  4474. --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%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");
  4475. --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%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")
  4476. }
  4477. .breadcrumb {
  4478. --bs-breadcrumb-padding-x: 0;
  4479. --bs-breadcrumb-padding-y: 0;
  4480. --bs-breadcrumb-margin-bottom: 1rem;
  4481. --bs-breadcrumb-bg: ;
  4482. --bs-breadcrumb-border-radius: ;
  4483. --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  4484. --bs-breadcrumb-item-padding-x: 0.5rem;
  4485. --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  4486. display: flex;
  4487. flex-wrap: wrap;
  4488. padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  4489. margin-bottom: var(--bs-breadcrumb-margin-bottom);
  4490. font-size: var(--bs-breadcrumb-font-size);
  4491. list-style: none;
  4492. background-color: var(--bs-breadcrumb-bg);
  4493. border-radius: var(--bs-breadcrumb-border-radius)
  4494. }
  4495. .breadcrumb-item+.breadcrumb-item {
  4496. padding-left: var(--bs-breadcrumb-item-padding-x)
  4497. }
  4498. .breadcrumb-item+.breadcrumb-item::before {
  4499. float: left;
  4500. padding-right: var(--bs-breadcrumb-item-padding-x);
  4501. color: var(--bs-breadcrumb-divider-color);
  4502. content: var(--bs-breadcrumb-divider, "/")
  4503. /* rtl: var(--bs-breadcrumb-divider, "/") */
  4504. }
  4505. .breadcrumb-item.active {
  4506. color: var(--bs-breadcrumb-item-active-color)
  4507. }
  4508. .pagination {
  4509. --bs-pagination-padding-x: 0.75rem;
  4510. --bs-pagination-padding-y: 0.375rem;
  4511. --bs-pagination-font-size: 1rem;
  4512. --bs-pagination-color: var(--bs-link-color);
  4513. --bs-pagination-bg: var(--bs-body-bg);
  4514. --bs-pagination-border-width: var(--bs-border-width);
  4515. --bs-pagination-border-color: var(--bs-border-color);
  4516. --bs-pagination-border-radius: var(--bs-border-radius);
  4517. --bs-pagination-hover-color: var(--bs-link-hover-color);
  4518. --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  4519. --bs-pagination-hover-border-color: var(--bs-border-color);
  4520. --bs-pagination-focus-color: var(--bs-link-hover-color);
  4521. --bs-pagination-focus-bg: var(--bs-secondary-bg);
  4522. --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  4523. --bs-pagination-active-color: #fff;
  4524. --bs-pagination-active-bg: #0d6efd;
  4525. --bs-pagination-active-border-color: #0d6efd;
  4526. --bs-pagination-disabled-color: var(--bs-secondary-color);
  4527. --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  4528. --bs-pagination-disabled-border-color: var(--bs-border-color);
  4529. display: flex;
  4530. padding-left: 0;
  4531. list-style: none
  4532. }
  4533. .page-link {
  4534. position: relative;
  4535. display: block;
  4536. padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  4537. font-size: var(--bs-pagination-font-size);
  4538. color: var(--bs-pagination-color);
  4539. text-decoration: none;
  4540. background-color: var(--bs-pagination-bg);
  4541. border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  4542. transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
  4543. }
  4544. @media(prefers-reduced-motion: reduce) {
  4545. .page-link {
  4546. transition: none
  4547. }
  4548. }
  4549. .page-link:hover {
  4550. z-index: 2;
  4551. color: var(--bs-pagination-hover-color);
  4552. background-color: var(--bs-pagination-hover-bg);
  4553. border-color: var(--bs-pagination-hover-border-color)
  4554. }
  4555. .page-link:focus {
  4556. z-index: 3;
  4557. color: var(--bs-pagination-focus-color);
  4558. background-color: var(--bs-pagination-focus-bg);
  4559. outline: 0;
  4560. box-shadow: var(--bs-pagination-focus-box-shadow)
  4561. }
  4562. .page-link.active,
  4563. .active>.page-link {
  4564. z-index: 3;
  4565. color: var(--bs-pagination-active-color);
  4566. background-color: var(--bs-pagination-active-bg);
  4567. border-color: var(--bs-pagination-active-border-color)
  4568. }
  4569. .page-link.disabled,
  4570. .disabled>.page-link {
  4571. color: var(--bs-pagination-disabled-color);
  4572. pointer-events: none;
  4573. background-color: var(--bs-pagination-disabled-bg);
  4574. border-color: var(--bs-pagination-disabled-border-color)
  4575. }
  4576. .page-item:not(:first-child) .page-link {
  4577. margin-left: calc(var(--bs-border-width) * -1)
  4578. }
  4579. .page-item:first-child .page-link {
  4580. border-top-left-radius: var(--bs-pagination-border-radius);
  4581. border-bottom-left-radius: var(--bs-pagination-border-radius)
  4582. }
  4583. .page-item:last-child .page-link {
  4584. border-top-right-radius: var(--bs-pagination-border-radius);
  4585. border-bottom-right-radius: var(--bs-pagination-border-radius)
  4586. }
  4587. .pagination-lg {
  4588. --bs-pagination-padding-x: 1.5rem;
  4589. --bs-pagination-padding-y: 0.75rem;
  4590. --bs-pagination-font-size: 1.25rem;
  4591. --bs-pagination-border-radius: var(--bs-border-radius-lg)
  4592. }
  4593. .pagination-sm {
  4594. --bs-pagination-padding-x: 0.5rem;
  4595. --bs-pagination-padding-y: 0.25rem;
  4596. --bs-pagination-font-size: 0.875rem;
  4597. --bs-pagination-border-radius: var(--bs-border-radius-sm)
  4598. }
  4599. .badge {
  4600. --bs-badge-padding-x: 0.65em;
  4601. --bs-badge-padding-y: 0.35em;
  4602. --bs-badge-font-size: 0.75em;
  4603. --bs-badge-font-weight: 700;
  4604. --bs-badge-color: #fff;
  4605. --bs-badge-border-radius: var(--bs-border-radius);
  4606. display: inline-block;
  4607. padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  4608. font-size: var(--bs-badge-font-size);
  4609. font-weight: var(--bs-badge-font-weight);
  4610. line-height: 1;
  4611. color: var(--bs-badge-color);
  4612. text-align: center;
  4613. white-space: nowrap;
  4614. vertical-align: baseline;
  4615. border-radius: var(--bs-badge-border-radius)
  4616. }
  4617. .badge:empty {
  4618. display: none
  4619. }
  4620. .btn .badge {
  4621. position: relative;
  4622. top: -1px
  4623. }
  4624. .alert {
  4625. --bs-alert-bg: transparent;
  4626. --bs-alert-padding-x: 1rem;
  4627. --bs-alert-padding-y: 1rem;
  4628. --bs-alert-margin-bottom: 1rem;
  4629. --bs-alert-color: inherit;
  4630. --bs-alert-border-color: transparent;
  4631. --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  4632. --bs-alert-border-radius: var(--bs-border-radius);
  4633. --bs-alert-link-color: inherit;
  4634. position: relative;
  4635. padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  4636. margin-bottom: var(--bs-alert-margin-bottom);
  4637. color: var(--bs-alert-color);
  4638. background-color: var(--bs-alert-bg);
  4639. border: var(--bs-alert-border);
  4640. border-radius: var(--bs-alert-border-radius)
  4641. }
  4642. .alert-heading {
  4643. color: inherit
  4644. }
  4645. .alert-link {
  4646. font-weight: 700;
  4647. color: var(--bs-alert-link-color)
  4648. }
  4649. .alert-dismissible {
  4650. padding-right: 3rem
  4651. }
  4652. .alert-dismissible .btn-close {
  4653. position: absolute;
  4654. top: 0;
  4655. right: 0;
  4656. z-index: 2;
  4657. padding: 1.25rem 1rem
  4658. }
  4659. .alert-primary {
  4660. --bs-alert-color: var(--bs-primary-text-emphasis);
  4661. --bs-alert-bg: var(--bs-primary-bg-subtle);
  4662. --bs-alert-border-color: var(--bs-primary-border-subtle);
  4663. --bs-alert-link-color: var(--bs-primary-text-emphasis)
  4664. }
  4665. .alert-secondary {
  4666. --bs-alert-color: var(--bs-secondary-text-emphasis);
  4667. --bs-alert-bg: var(--bs-secondary-bg-subtle);
  4668. --bs-alert-border-color: var(--bs-secondary-border-subtle);
  4669. --bs-alert-link-color: var(--bs-secondary-text-emphasis)
  4670. }
  4671. .alert-success {
  4672. --bs-alert-color: var(--bs-success-text-emphasis);
  4673. --bs-alert-bg: var(--bs-success-bg-subtle);
  4674. --bs-alert-border-color: var(--bs-success-border-subtle);
  4675. --bs-alert-link-color: var(--bs-success-text-emphasis)
  4676. }
  4677. .alert-danger {
  4678. --bs-alert-color: var(--bs-danger-text-emphasis);
  4679. --bs-alert-bg: var(--bs-danger-bg-subtle);
  4680. --bs-alert-border-color: var(--bs-danger-border-subtle);
  4681. --bs-alert-link-color: var(--bs-danger-text-emphasis)
  4682. }
  4683. .alert-warning {
  4684. --bs-alert-color: var(--bs-warning-text-emphasis);
  4685. --bs-alert-bg: var(--bs-warning-bg-subtle);
  4686. --bs-alert-border-color: var(--bs-warning-border-subtle);
  4687. --bs-alert-link-color: var(--bs-warning-text-emphasis)
  4688. }
  4689. .alert-info {
  4690. --bs-alert-color: var(--bs-info-text-emphasis);
  4691. --bs-alert-bg: var(--bs-info-bg-subtle);
  4692. --bs-alert-border-color: var(--bs-info-border-subtle);
  4693. --bs-alert-link-color: var(--bs-info-text-emphasis)
  4694. }
  4695. @-webkit-keyframes progress-bar-stripes {
  4696. 0% {
  4697. background-position-x: 1rem
  4698. }
  4699. }
  4700. @keyframes progress-bar-stripes {
  4701. 0% {
  4702. background-position-x: 1rem
  4703. }
  4704. }
  4705. .progress,
  4706. .progress-stacked {
  4707. --bs-progress-height: 1rem;
  4708. --bs-progress-font-size: 0.75rem;
  4709. --bs-progress-bg: var(--bs-secondary-bg);
  4710. --bs-progress-border-radius: var(--bs-border-radius);
  4711. --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  4712. --bs-progress-bar-color: #fff;
  4713. --bs-progress-bar-bg: #0d6efd;
  4714. --bs-progress-bar-transition: width 0.6s ease;
  4715. display: flex;
  4716. height: var(--bs-progress-height);
  4717. overflow: hidden;
  4718. font-size: var(--bs-progress-font-size);
  4719. background-color: var(--bs-progress-bg);
  4720. border-radius: var(--bs-progress-border-radius)
  4721. }
  4722. .progress-bar {
  4723. display: flex;
  4724. flex-direction: column;
  4725. justify-content: center;
  4726. overflow: hidden;
  4727. color: var(--bs-progress-bar-color);
  4728. text-align: center;
  4729. white-space: nowrap;
  4730. background-color: var(--bs-progress-bar-bg);
  4731. transition: var(--bs-progress-bar-transition)
  4732. }
  4733. @media(prefers-reduced-motion: reduce) {
  4734. .progress-bar {
  4735. transition: none
  4736. }
  4737. }
  4738. .progress-bar-striped {
  4739. 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);
  4740. background-size: var(--bs-progress-height) var(--bs-progress-height)
  4741. }
  4742. .progress-stacked>.progress {
  4743. overflow: visible
  4744. }
  4745. .progress-stacked>.progress>.progress-bar {
  4746. width: 100%
  4747. }
  4748. .progress-bar-animated {
  4749. -webkit-animation: 1s linear infinite progress-bar-stripes;
  4750. animation: 1s linear infinite progress-bar-stripes
  4751. }
  4752. @media(prefers-reduced-motion: reduce) {
  4753. .progress-bar-animated {
  4754. -webkit-animation: none;
  4755. animation: none
  4756. }
  4757. }
  4758. .list-group {
  4759. --bs-list-group-color: var(--bs-body-color);
  4760. --bs-list-group-bg: var(--bs-body-bg);
  4761. --bs-list-group-border-color: var(--bs-border-color);
  4762. --bs-list-group-border-width: var(--bs-border-width);
  4763. --bs-list-group-border-radius: var(--bs-border-radius);
  4764. --bs-list-group-item-padding-x: 1rem;
  4765. --bs-list-group-item-padding-y: 0.5rem;
  4766. --bs-list-group-action-color: var(--bs-secondary-color);
  4767. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4768. --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  4769. --bs-list-group-action-active-color: var(--bs-body-color);
  4770. --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  4771. --bs-list-group-disabled-color: var(--bs-secondary-color);
  4772. --bs-list-group-disabled-bg: var(--bs-body-bg);
  4773. --bs-list-group-active-color: #fff;
  4774. --bs-list-group-active-bg: #0d6efd;
  4775. --bs-list-group-active-border-color: #0d6efd;
  4776. display: flex;
  4777. flex-direction: column;
  4778. padding-left: 0;
  4779. margin-bottom: 0;
  4780. border-radius: var(--bs-list-group-border-radius)
  4781. }
  4782. .list-group-numbered {
  4783. list-style-type: none;
  4784. counter-reset: section
  4785. }
  4786. .list-group-numbered>.list-group-item::before {
  4787. content: counters(section, ".") ". ";
  4788. counter-increment: section
  4789. }
  4790. .list-group-item-action {
  4791. width: 100%;
  4792. color: var(--bs-list-group-action-color);
  4793. text-align: inherit
  4794. }
  4795. .list-group-item-action:hover,
  4796. .list-group-item-action:focus {
  4797. z-index: 1;
  4798. color: var(--bs-list-group-action-hover-color);
  4799. text-decoration: none;
  4800. background-color: var(--bs-list-group-action-hover-bg)
  4801. }
  4802. .list-group-item-action:active {
  4803. color: var(--bs-list-group-action-active-color);
  4804. background-color: var(--bs-list-group-action-active-bg)
  4805. }
  4806. .list-group-item {
  4807. position: relative;
  4808. display: block;
  4809. padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  4810. color: var(--bs-list-group-color);
  4811. text-decoration: none;
  4812. background-color: var(--bs-list-group-bg);
  4813. border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color)
  4814. }
  4815. .list-group-item:first-child {
  4816. border-top-left-radius: inherit;
  4817. border-top-right-radius: inherit
  4818. }
  4819. .list-group-item:last-child {
  4820. border-bottom-right-radius: inherit;
  4821. border-bottom-left-radius: inherit
  4822. }
  4823. .list-group-item.disabled,
  4824. .list-group-item:disabled {
  4825. color: var(--bs-list-group-disabled-color);
  4826. pointer-events: none;
  4827. background-color: var(--bs-list-group-disabled-bg)
  4828. }
  4829. .list-group-item.active {
  4830. z-index: 2;
  4831. color: var(--bs-list-group-active-color);
  4832. background-color: var(--bs-list-group-active-bg);
  4833. border-color: var(--bs-list-group-active-border-color)
  4834. }
  4835. .list-group-item+.list-group-item {
  4836. border-top-width: 0
  4837. }
  4838. .list-group-item+.list-group-item.active {
  4839. margin-top: calc(-1*var(--bs-list-group-border-width));
  4840. border-top-width: var(--bs-list-group-border-width)
  4841. }
  4842. .list-group-horizontal {
  4843. flex-direction: row
  4844. }
  4845. .list-group-horizontal>.list-group-item:first-child:not(:last-child) {
  4846. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4847. border-top-right-radius: 0
  4848. }
  4849. .list-group-horizontal>.list-group-item:last-child:not(:first-child) {
  4850. border-top-right-radius: var(--bs-list-group-border-radius);
  4851. border-bottom-left-radius: 0
  4852. }
  4853. .list-group-horizontal>.list-group-item.active {
  4854. margin-top: 0
  4855. }
  4856. .list-group-horizontal>.list-group-item+.list-group-item {
  4857. border-top-width: var(--bs-list-group-border-width);
  4858. border-left-width: 0
  4859. }
  4860. .list-group-horizontal>.list-group-item+.list-group-item.active {
  4861. margin-left: calc(-1*var(--bs-list-group-border-width));
  4862. border-left-width: var(--bs-list-group-border-width)
  4863. }
  4864. @media(min-width: 576px) {
  4865. .list-group-horizontal-sm {
  4866. flex-direction: row
  4867. }
  4868. .list-group-horizontal-sm>.list-group-item:first-child:not(:last-child) {
  4869. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4870. border-top-right-radius: 0
  4871. }
  4872. .list-group-horizontal-sm>.list-group-item:last-child:not(:first-child) {
  4873. border-top-right-radius: var(--bs-list-group-border-radius);
  4874. border-bottom-left-radius: 0
  4875. }
  4876. .list-group-horizontal-sm>.list-group-item.active {
  4877. margin-top: 0
  4878. }
  4879. .list-group-horizontal-sm>.list-group-item+.list-group-item {
  4880. border-top-width: var(--bs-list-group-border-width);
  4881. border-left-width: 0
  4882. }
  4883. .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
  4884. margin-left: calc(-1*var(--bs-list-group-border-width));
  4885. border-left-width: var(--bs-list-group-border-width)
  4886. }
  4887. }
  4888. @media(min-width: 768px) {
  4889. .list-group-horizontal-md {
  4890. flex-direction: row
  4891. }
  4892. .list-group-horizontal-md>.list-group-item:first-child:not(:last-child) {
  4893. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4894. border-top-right-radius: 0
  4895. }
  4896. .list-group-horizontal-md>.list-group-item:last-child:not(:first-child) {
  4897. border-top-right-radius: var(--bs-list-group-border-radius);
  4898. border-bottom-left-radius: 0
  4899. }
  4900. .list-group-horizontal-md>.list-group-item.active {
  4901. margin-top: 0
  4902. }
  4903. .list-group-horizontal-md>.list-group-item+.list-group-item {
  4904. border-top-width: var(--bs-list-group-border-width);
  4905. border-left-width: 0
  4906. }
  4907. .list-group-horizontal-md>.list-group-item+.list-group-item.active {
  4908. margin-left: calc(-1*var(--bs-list-group-border-width));
  4909. border-left-width: var(--bs-list-group-border-width)
  4910. }
  4911. }
  4912. @media(min-width: 992px) {
  4913. .list-group-horizontal-lg {
  4914. flex-direction: row
  4915. }
  4916. .list-group-horizontal-lg>.list-group-item:first-child:not(:last-child) {
  4917. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4918. border-top-right-radius: 0
  4919. }
  4920. .list-group-horizontal-lg>.list-group-item:last-child:not(:first-child) {
  4921. border-top-right-radius: var(--bs-list-group-border-radius);
  4922. border-bottom-left-radius: 0
  4923. }
  4924. .list-group-horizontal-lg>.list-group-item.active {
  4925. margin-top: 0
  4926. }
  4927. .list-group-horizontal-lg>.list-group-item+.list-group-item {
  4928. border-top-width: var(--bs-list-group-border-width);
  4929. border-left-width: 0
  4930. }
  4931. .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
  4932. margin-left: calc(-1*var(--bs-list-group-border-width));
  4933. border-left-width: var(--bs-list-group-border-width)
  4934. }
  4935. }
  4936. @media(min-width: 1200px) {
  4937. .list-group-horizontal-xl {
  4938. flex-direction: row
  4939. }
  4940. .list-group-horizontal-xl>.list-group-item:first-child:not(:last-child) {
  4941. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4942. border-top-right-radius: 0
  4943. }
  4944. .list-group-horizontal-xl>.list-group-item:last-child:not(:first-child) {
  4945. border-top-right-radius: var(--bs-list-group-border-radius);
  4946. border-bottom-left-radius: 0
  4947. }
  4948. .list-group-horizontal-xl>.list-group-item.active {
  4949. margin-top: 0
  4950. }
  4951. .list-group-horizontal-xl>.list-group-item+.list-group-item {
  4952. border-top-width: var(--bs-list-group-border-width);
  4953. border-left-width: 0
  4954. }
  4955. .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
  4956. margin-left: calc(-1*var(--bs-list-group-border-width));
  4957. border-left-width: var(--bs-list-group-border-width)
  4958. }
  4959. }
  4960. @media(min-width: 1400px) {
  4961. .list-group-horizontal-xxl {
  4962. flex-direction: row
  4963. }
  4964. .list-group-horizontal-xxl>.list-group-item:first-child:not(:last-child) {
  4965. border-bottom-left-radius: var(--bs-list-group-border-radius);
  4966. border-top-right-radius: 0
  4967. }
  4968. .list-group-horizontal-xxl>.list-group-item:last-child:not(:first-child) {
  4969. border-top-right-radius: var(--bs-list-group-border-radius);
  4970. border-bottom-left-radius: 0
  4971. }
  4972. .list-group-horizontal-xxl>.list-group-item.active {
  4973. margin-top: 0
  4974. }
  4975. .list-group-horizontal-xxl>.list-group-item+.list-group-item {
  4976. border-top-width: var(--bs-list-group-border-width);
  4977. border-left-width: 0
  4978. }
  4979. .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
  4980. margin-left: calc(-1*var(--bs-list-group-border-width));
  4981. border-left-width: var(--bs-list-group-border-width)
  4982. }
  4983. }
  4984. .list-group-flush {
  4985. border-radius: 0
  4986. }
  4987. .list-group-flush>.list-group-item {
  4988. border-width: 0 0 var(--bs-list-group-border-width)
  4989. }
  4990. .list-group-flush>.list-group-item:last-child {
  4991. border-bottom-width: 0
  4992. }
  4993. .list-group-item-primary {
  4994. --bs-list-group-color: var(--bs-primary-text-emphasis);
  4995. --bs-list-group-bg: var(--bs-primary-bg-subtle);
  4996. --bs-list-group-border-color: var(--bs-primary-border-subtle);
  4997. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4998. --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  4999. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  5000. --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  5001. --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  5002. --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  5003. --bs-list-group-active-border-color: var(--bs-primary-text-emphasis)
  5004. }
  5005. .list-group-item-secondary {
  5006. --bs-list-group-color: var(--bs-secondary-text-emphasis);
  5007. --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  5008. --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  5009. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  5010. --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  5011. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  5012. --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  5013. --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  5014. --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  5015. --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis)
  5016. }
  5017. .list-group-item-success {
  5018. --bs-list-group-color: var(--bs-success-text-emphasis);
  5019. --bs-list-group-bg: var(--bs-success-bg-subtle);
  5020. --bs-list-group-border-color: var(--bs-success-border-subtle);
  5021. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  5022. --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  5023. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  5024. --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  5025. --bs-list-group-active-color: var(--bs-success-bg-subtle);
  5026. --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  5027. --bs-list-group-active-border-color: var(--bs-success-text-emphasis)
  5028. }
  5029. .list-group-item-danger {
  5030. --bs-list-group-color: var(--bs-danger-text-emphasis);
  5031. --bs-list-group-bg: var(--bs-danger-bg-subtle);
  5032. --bs-list-group-border-color: var(--bs-danger-border-subtle);
  5033. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  5034. --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  5035. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  5036. --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  5037. --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  5038. --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  5039. --bs-list-group-active-border-color: var(--bs-danger-text-emphasis)
  5040. }
  5041. .list-group-item-warning {
  5042. --bs-list-group-color: var(--bs-warning-text-emphasis);
  5043. --bs-list-group-bg: var(--bs-warning-bg-subtle);
  5044. --bs-list-group-border-color: var(--bs-warning-border-subtle);
  5045. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  5046. --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  5047. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  5048. --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  5049. --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  5050. --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  5051. --bs-list-group-active-border-color: var(--bs-warning-text-emphasis)
  5052. }
  5053. .list-group-item-info {
  5054. --bs-list-group-color: var(--bs-info-text-emphasis);
  5055. --bs-list-group-bg: var(--bs-info-bg-subtle);
  5056. --bs-list-group-border-color: var(--bs-info-border-subtle);
  5057. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  5058. --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  5059. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  5060. --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  5061. --bs-list-group-active-color: var(--bs-info-bg-subtle);
  5062. --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  5063. --bs-list-group-active-border-color: var(--bs-info-text-emphasis)
  5064. }
  5065. .btn-close {
  5066. --bs-btn-close-color: #000;
  5067. --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  5068. --bs-btn-close-opacity: 0.5;
  5069. --bs-btn-close-hover-opacity: 0.75;
  5070. --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  5071. --bs-btn-close-focus-opacity: 1;
  5072. --bs-btn-close-disabled-opacity: 0.25;
  5073. --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  5074. box-sizing: content-box;
  5075. width: 1em;
  5076. height: 1em;
  5077. padding: .25em .25em;
  5078. color: var(--bs-btn-close-color);
  5079. background: rgba(0, 0, 0, 0) var(--bs-btn-close-bg) center/1em auto no-repeat;
  5080. border: 0;
  5081. border-radius: .375rem;
  5082. opacity: var(--bs-btn-close-opacity)
  5083. }
  5084. .btn-close:hover {
  5085. color: var(--bs-btn-close-color);
  5086. text-decoration: none;
  5087. opacity: var(--bs-btn-close-hover-opacity)
  5088. }
  5089. .btn-close:focus {
  5090. outline: 0;
  5091. box-shadow: var(--bs-btn-close-focus-shadow);
  5092. opacity: var(--bs-btn-close-focus-opacity)
  5093. }
  5094. .btn-close:disabled,
  5095. .btn-close.disabled {
  5096. pointer-events: none;
  5097. -webkit-user-select: none;
  5098. -moz-user-select: none;
  5099. user-select: none;
  5100. opacity: var(--bs-btn-close-disabled-opacity)
  5101. }
  5102. .btn-close-white {
  5103. -webkit-filter: var(--bs-btn-close-white-filter);
  5104. filter: var(--bs-btn-close-white-filter)
  5105. }
  5106. [data-bs-theme=dark] .btn-close {
  5107. -webkit-filter: var(--bs-btn-close-white-filter);
  5108. filter: var(--bs-btn-close-white-filter)
  5109. }
  5110. .toast {
  5111. --bs-toast-zindex: 1090;
  5112. --bs-toast-padding-x: 0.75rem;
  5113. --bs-toast-padding-y: 0.5rem;
  5114. --bs-toast-spacing: 1.5rem;
  5115. --bs-toast-max-width: 350px;
  5116. --bs-toast-font-size: 0.875rem;
  5117. --bs-toast-color: ;
  5118. --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  5119. --bs-toast-border-width: var(--bs-border-width);
  5120. --bs-toast-border-color: var(--bs-border-color-translucent);
  5121. --bs-toast-border-radius: var(--bs-border-radius);
  5122. --bs-toast-box-shadow: var(--bs-box-shadow);
  5123. --bs-toast-header-color: var(--bs-secondary-color);
  5124. --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  5125. --bs-toast-header-border-color: var(--bs-border-color-translucent);
  5126. width: var(--bs-toast-max-width);
  5127. max-width: 100%;
  5128. font-size: var(--bs-toast-font-size);
  5129. color: var(--bs-toast-color);
  5130. pointer-events: auto;
  5131. background-color: var(--bs-toast-bg);
  5132. background-clip: padding-box;
  5133. border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  5134. box-shadow: var(--bs-toast-box-shadow);
  5135. border-radius: var(--bs-toast-border-radius)
  5136. }
  5137. .toast.showing {
  5138. opacity: 0
  5139. }
  5140. .toast:not(.show) {
  5141. display: none
  5142. }
  5143. .toast-container {
  5144. --bs-toast-zindex: 1090;
  5145. position: absolute;
  5146. z-index: var(--bs-toast-zindex);
  5147. width: -webkit-max-content;
  5148. width: -moz-max-content;
  5149. width: max-content;
  5150. max-width: 100%;
  5151. pointer-events: none
  5152. }
  5153. .toast-container>:not(:last-child) {
  5154. margin-bottom: var(--bs-toast-spacing)
  5155. }
  5156. .toast-header {
  5157. display: flex;
  5158. align-items: center;
  5159. padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  5160. color: var(--bs-toast-header-color);
  5161. background-color: var(--bs-toast-header-bg);
  5162. background-clip: padding-box;
  5163. border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  5164. border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  5165. border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width))
  5166. }
  5167. .toast-header .btn-close {
  5168. margin-right: calc(-0.5*var(--bs-toast-padding-x));
  5169. margin-left: var(--bs-toast-padding-x)
  5170. }
  5171. .toast-body {
  5172. padding: var(--bs-toast-padding-x);
  5173. word-wrap: break-word
  5174. }
  5175. .modal {
  5176. --bs-modal-zindex: 1055;
  5177. --bs-modal-width: 500px;
  5178. --bs-modal-padding: 1rem;
  5179. --bs-modal-margin: 0.5rem;
  5180. --bs-modal-color: ;
  5181. --bs-modal-bg: var(--bs-body-bg);
  5182. --bs-modal-border-color: var(--bs-border-color-translucent);
  5183. --bs-modal-border-width: var(--bs-border-width);
  5184. --bs-modal-border-radius: var(--bs-border-radius-lg);
  5185. --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  5186. --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  5187. --bs-modal-header-padding-x: 1rem;
  5188. --bs-modal-header-padding-y: 1rem;
  5189. --bs-modal-header-padding: 1rem 1rem;
  5190. --bs-modal-header-border-color: var(--bs-border-color);
  5191. --bs-modal-header-border-width: var(--bs-border-width);
  5192. --bs-modal-title-line-height: 1.5;
  5193. --bs-modal-footer-gap: 0.5rem;
  5194. --bs-modal-footer-bg: ;
  5195. --bs-modal-footer-border-color: var(--bs-border-color);
  5196. --bs-modal-footer-border-width: var(--bs-border-width);
  5197. position: fixed;
  5198. top: 0;
  5199. left: 0;
  5200. z-index: var(--bs-modal-zindex);
  5201. display: none;
  5202. width: 100%;
  5203. height: 100%;
  5204. overflow-x: hidden;
  5205. overflow-y: auto;
  5206. outline: 0
  5207. }
  5208. .modal-dialog {
  5209. position: relative;
  5210. width: auto;
  5211. margin: var(--bs-modal-margin);
  5212. pointer-events: none
  5213. }
  5214. .modal.fade .modal-dialog {
  5215. transition: -webkit-transform .3s ease-out;
  5216. transition: transform .3s ease-out;
  5217. transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  5218. -webkit-transform: translate(0, -50px);
  5219. transform: translate(0, -50px)
  5220. }
  5221. @media(prefers-reduced-motion: reduce) {
  5222. .modal.fade .modal-dialog {
  5223. transition: none
  5224. }
  5225. }
  5226. .modal.show .modal-dialog {
  5227. -webkit-transform: none;
  5228. transform: none
  5229. }
  5230. .modal.modal-static .modal-dialog {
  5231. -webkit-transform: scale(1.02);
  5232. transform: scale(1.02)
  5233. }
  5234. .modal-dialog-scrollable {
  5235. height: calc(100% - var(--bs-modal-margin)*2)
  5236. }
  5237. .modal-dialog-scrollable .modal-content {
  5238. max-height: 100%;
  5239. overflow: hidden
  5240. }
  5241. .modal-dialog-scrollable .modal-body {
  5242. overflow-y: auto
  5243. }
  5244. .modal-dialog-centered {
  5245. display: flex;
  5246. align-items: center;
  5247. min-height: calc(100% - var(--bs-modal-margin)*2)
  5248. }
  5249. .modal-content {
  5250. position: relative;
  5251. display: flex;
  5252. flex-direction: column;
  5253. width: 100%;
  5254. color: var(--bs-modal-color);
  5255. pointer-events: auto;
  5256. background-color: var(--bs-modal-bg);
  5257. background-clip: padding-box;
  5258. border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  5259. border-radius: var(--bs-modal-border-radius);
  5260. outline: 0
  5261. }
  5262. .modal-backdrop {
  5263. --bs-backdrop-zindex: 1050;
  5264. --bs-backdrop-bg: #000;
  5265. --bs-backdrop-opacity: 0.5;
  5266. position: fixed;
  5267. top: 0;
  5268. left: 0;
  5269. z-index: var(--bs-backdrop-zindex);
  5270. width: 100vw;
  5271. height: 100vh;
  5272. background-color: var(--bs-backdrop-bg)
  5273. }
  5274. .modal-backdrop.fade {
  5275. opacity: 0
  5276. }
  5277. .modal-backdrop.show {
  5278. opacity: var(--bs-backdrop-opacity)
  5279. }
  5280. .modal-header {
  5281. display: flex;
  5282. flex-shrink: 0;
  5283. align-items: center;
  5284. justify-content: space-between;
  5285. padding: var(--bs-modal-header-padding);
  5286. border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  5287. border-top-left-radius: var(--bs-modal-inner-border-radius);
  5288. border-top-right-radius: var(--bs-modal-inner-border-radius)
  5289. }
  5290. .modal-header .btn-close {
  5291. padding: calc(var(--bs-modal-header-padding-y)*.5) calc(var(--bs-modal-header-padding-x)*.5);
  5292. 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
  5293. }
  5294. .modal-title {
  5295. margin-bottom: 0;
  5296. line-height: var(--bs-modal-title-line-height)
  5297. }
  5298. .modal-body {
  5299. position: relative;
  5300. flex: 1 1 auto;
  5301. padding: var(--bs-modal-padding)
  5302. }
  5303. .modal-footer {
  5304. display: flex;
  5305. flex-shrink: 0;
  5306. flex-wrap: wrap;
  5307. align-items: center;
  5308. justify-content: flex-end;
  5309. padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap)*.5);
  5310. background-color: var(--bs-modal-footer-bg);
  5311. border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  5312. border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  5313. border-bottom-left-radius: var(--bs-modal-inner-border-radius)
  5314. }
  5315. .modal-footer>* {
  5316. margin: calc(var(--bs-modal-footer-gap)*.5)
  5317. }
  5318. @media(min-width: 576px) {
  5319. .modal {
  5320. --bs-modal-margin: 1.75rem;
  5321. --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15)
  5322. }
  5323. .modal-dialog {
  5324. max-width: var(--bs-modal-width);
  5325. margin-right: auto;
  5326. margin-left: auto
  5327. }
  5328. .modal-sm {
  5329. --bs-modal-width: 300px
  5330. }
  5331. }
  5332. @media(min-width: 992px) {
  5333. .modal-lg,
  5334. .modal-xl {
  5335. --bs-modal-width: 800px
  5336. }
  5337. }
  5338. @media(min-width: 1200px) {
  5339. .modal-xl {
  5340. --bs-modal-width: 1140px
  5341. }
  5342. }
  5343. .modal-fullscreen {
  5344. width: 100vw;
  5345. max-width: none;
  5346. height: 100%;
  5347. margin: 0
  5348. }
  5349. .modal-fullscreen .modal-content {
  5350. height: 100%;
  5351. border: 0;
  5352. border-radius: 0
  5353. }
  5354. .modal-fullscreen .modal-header,
  5355. .modal-fullscreen .modal-footer {
  5356. border-radius: 0
  5357. }
  5358. .modal-fullscreen .modal-body {
  5359. overflow-y: auto
  5360. }
  5361. @media(max-width: 575.98px) {
  5362. .modal-fullscreen-sm-down {
  5363. width: 100vw;
  5364. max-width: none;
  5365. height: 100%;
  5366. margin: 0
  5367. }
  5368. .modal-fullscreen-sm-down .modal-content {
  5369. height: 100%;
  5370. border: 0;
  5371. border-radius: 0
  5372. }
  5373. .modal-fullscreen-sm-down .modal-header,
  5374. .modal-fullscreen-sm-down .modal-footer {
  5375. border-radius: 0
  5376. }
  5377. .modal-fullscreen-sm-down .modal-body {
  5378. overflow-y: auto
  5379. }
  5380. }
  5381. @media(max-width: 767.98px) {
  5382. .modal-fullscreen-md-down {
  5383. width: 100vw;
  5384. max-width: none;
  5385. height: 100%;
  5386. margin: 0
  5387. }
  5388. .modal-fullscreen-md-down .modal-content {
  5389. height: 100%;
  5390. border: 0;
  5391. border-radius: 0
  5392. }
  5393. .modal-fullscreen-md-down .modal-header,
  5394. .modal-fullscreen-md-down .modal-footer {
  5395. border-radius: 0
  5396. }
  5397. .modal-fullscreen-md-down .modal-body {
  5398. overflow-y: auto
  5399. }
  5400. }
  5401. @media(max-width: 991.98px) {
  5402. .modal-fullscreen-lg-down {
  5403. width: 100vw;
  5404. max-width: none;
  5405. height: 100%;
  5406. margin: 0
  5407. }
  5408. .modal-fullscreen-lg-down .modal-content {
  5409. height: 100%;
  5410. border: 0;
  5411. border-radius: 0
  5412. }
  5413. .modal-fullscreen-lg-down .modal-header,
  5414. .modal-fullscreen-lg-down .modal-footer {
  5415. border-radius: 0
  5416. }
  5417. .modal-fullscreen-lg-down .modal-body {
  5418. overflow-y: auto
  5419. }
  5420. }
  5421. @media(max-width: 1199.98px) {
  5422. .modal-fullscreen-xl-down {
  5423. width: 100vw;
  5424. max-width: none;
  5425. height: 100%;
  5426. margin: 0
  5427. }
  5428. .modal-fullscreen-xl-down .modal-content {
  5429. height: 100%;
  5430. border: 0;
  5431. border-radius: 0
  5432. }
  5433. .modal-fullscreen-xl-down .modal-header,
  5434. .modal-fullscreen-xl-down .modal-footer {
  5435. border-radius: 0
  5436. }
  5437. .modal-fullscreen-xl-down .modal-body {
  5438. overflow-y: auto
  5439. }
  5440. }
  5441. @media(max-width: 1399.98px) {
  5442. .modal-fullscreen-xxl-down {
  5443. width: 100vw;
  5444. max-width: none;
  5445. height: 100%;
  5446. margin: 0
  5447. }
  5448. .modal-fullscreen-xxl-down .modal-content {
  5449. height: 100%;
  5450. border: 0;
  5451. border-radius: 0
  5452. }
  5453. .modal-fullscreen-xxl-down .modal-header,
  5454. .modal-fullscreen-xxl-down .modal-footer {
  5455. border-radius: 0
  5456. }
  5457. .modal-fullscreen-xxl-down .modal-body {
  5458. overflow-y: auto
  5459. }
  5460. }
  5461. .tooltip {
  5462. --bs-tooltip-zindex: 1080;
  5463. --bs-tooltip-max-width: 200px;
  5464. --bs-tooltip-padding-x: 0.5rem;
  5465. --bs-tooltip-padding-y: 0.25rem;
  5466. --bs-tooltip-margin: ;
  5467. --bs-tooltip-font-size: 0.875rem;
  5468. --bs-tooltip-color: var(--bs-body-bg);
  5469. --bs-tooltip-bg: var(--bs-emphasis-color);
  5470. --bs-tooltip-border-radius: var(--bs-border-radius);
  5471. --bs-tooltip-opacity: 0.9;
  5472. --bs-tooltip-arrow-width: 0.8rem;
  5473. --bs-tooltip-arrow-height: 0.4rem;
  5474. z-index: var(--bs-tooltip-zindex);
  5475. display: block;
  5476. margin: var(--bs-tooltip-margin);
  5477. font-family: var(--bs-font-sans-serif);
  5478. font-style: normal;
  5479. font-weight: 400;
  5480. line-height: 1.5;
  5481. text-align: left;
  5482. text-align: start;
  5483. text-decoration: none;
  5484. text-shadow: none;
  5485. text-transform: none;
  5486. letter-spacing: normal;
  5487. word-break: normal;
  5488. white-space: normal;
  5489. word-spacing: normal;
  5490. line-break: auto;
  5491. font-size: var(--bs-tooltip-font-size);
  5492. word-wrap: break-word;
  5493. opacity: 0
  5494. }
  5495. .tooltip.show {
  5496. opacity: var(--bs-tooltip-opacity)
  5497. }
  5498. .tooltip .tooltip-arrow {
  5499. display: block;
  5500. width: var(--bs-tooltip-arrow-width);
  5501. height: var(--bs-tooltip-arrow-height)
  5502. }
  5503. .tooltip .tooltip-arrow::before {
  5504. position: absolute;
  5505. content: "";
  5506. border-color: rgba(0, 0, 0, 0);
  5507. border-style: solid
  5508. }
  5509. .bs-tooltip-top .tooltip-arrow,
  5510. .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  5511. bottom: calc(-1*var(--bs-tooltip-arrow-height))
  5512. }
  5513. .bs-tooltip-top .tooltip-arrow::before,
  5514. .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  5515. top: -1px;
  5516. border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width)*.5) 0;
  5517. border-top-color: var(--bs-tooltip-bg)
  5518. }
  5519. .bs-tooltip-end .tooltip-arrow,
  5520. .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  5521. left: calc(-1*var(--bs-tooltip-arrow-height));
  5522. width: var(--bs-tooltip-arrow-height);
  5523. height: var(--bs-tooltip-arrow-width)
  5524. }
  5525. .bs-tooltip-end .tooltip-arrow::before,
  5526. .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  5527. right: -1px;
  5528. border-width: calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width)*.5) 0;
  5529. border-right-color: var(--bs-tooltip-bg)
  5530. }
  5531. .bs-tooltip-bottom .tooltip-arrow,
  5532. .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  5533. top: calc(-1*var(--bs-tooltip-arrow-height))
  5534. }
  5535. .bs-tooltip-bottom .tooltip-arrow::before,
  5536. .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  5537. bottom: -1px;
  5538. border-width: 0 calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height);
  5539. border-bottom-color: var(--bs-tooltip-bg)
  5540. }
  5541. .bs-tooltip-start .tooltip-arrow,
  5542. .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  5543. right: calc(-1*var(--bs-tooltip-arrow-height));
  5544. width: var(--bs-tooltip-arrow-height);
  5545. height: var(--bs-tooltip-arrow-width)
  5546. }
  5547. .bs-tooltip-start .tooltip-arrow::before,
  5548. .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  5549. left: -1px;
  5550. border-width: calc(var(--bs-tooltip-arrow-width)*.5) 0 calc(var(--bs-tooltip-arrow-width)*.5) var(--bs-tooltip-arrow-height);
  5551. border-left-color: var(--bs-tooltip-bg)
  5552. }
  5553. .tooltip-inner {
  5554. max-width: var(--bs-tooltip-max-width);
  5555. padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  5556. color: var(--bs-tooltip-color);
  5557. text-align: center;
  5558. background-color: var(--bs-tooltip-bg);
  5559. border-radius: var(--bs-tooltip-border-radius)
  5560. }
  5561. .popover {
  5562. --bs-popover-zindex: 1070;
  5563. --bs-popover-max-width: 276px;
  5564. --bs-popover-font-size: 0.875rem;
  5565. --bs-popover-bg: var(--bs-body-bg);
  5566. --bs-popover-border-width: var(--bs-border-width);
  5567. --bs-popover-border-color: var(--bs-border-color-translucent);
  5568. --bs-popover-border-radius: var(--bs-border-radius-lg);
  5569. --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
  5570. --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  5571. --bs-popover-header-padding-x: 1rem;
  5572. --bs-popover-header-padding-y: 0.5rem;
  5573. --bs-popover-header-font-size: 1rem;
  5574. --bs-popover-header-color: inherit;
  5575. --bs-popover-header-bg: var(--bs-secondary-bg);
  5576. --bs-popover-body-padding-x: 1rem;
  5577. --bs-popover-body-padding-y: 1rem;
  5578. --bs-popover-body-color: var(--bs-body-color);
  5579. --bs-popover-arrow-width: 1rem;
  5580. --bs-popover-arrow-height: 0.5rem;
  5581. --bs-popover-arrow-border: var(--bs-popover-border-color);
  5582. z-index: var(--bs-popover-zindex);
  5583. display: block;
  5584. max-width: var(--bs-popover-max-width);
  5585. font-family: var(--bs-font-sans-serif);
  5586. font-style: normal;
  5587. font-weight: 400;
  5588. line-height: 1.5;
  5589. text-align: left;
  5590. text-align: start;
  5591. text-decoration: none;
  5592. text-shadow: none;
  5593. text-transform: none;
  5594. letter-spacing: normal;
  5595. word-break: normal;
  5596. white-space: normal;
  5597. word-spacing: normal;
  5598. line-break: auto;
  5599. font-size: var(--bs-popover-font-size);
  5600. word-wrap: break-word;
  5601. background-color: var(--bs-popover-bg);
  5602. background-clip: padding-box;
  5603. border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5604. border-radius: var(--bs-popover-border-radius)
  5605. }
  5606. .popover .popover-arrow {
  5607. display: block;
  5608. width: var(--bs-popover-arrow-width);
  5609. height: var(--bs-popover-arrow-height)
  5610. }
  5611. .popover .popover-arrow::before,
  5612. .popover .popover-arrow::after {
  5613. position: absolute;
  5614. display: block;
  5615. content: "";
  5616. border-color: rgba(0, 0, 0, 0);
  5617. border-style: solid;
  5618. border-width: 0
  5619. }
  5620. .bs-popover-top>.popover-arrow,
  5621. .bs-popover-auto[data-popper-placement^=top]>.popover-arrow {
  5622. bottom: calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))
  5623. }
  5624. .bs-popover-top>.popover-arrow::before,
  5625. .bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,
  5626. .bs-popover-top>.popover-arrow::after,
  5627. .bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
  5628. border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width)*.5) 0
  5629. }
  5630. .bs-popover-top>.popover-arrow::before,
  5631. .bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before {
  5632. bottom: 0;
  5633. border-top-color: var(--bs-popover-arrow-border)
  5634. }
  5635. .bs-popover-top>.popover-arrow::after,
  5636. .bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after {
  5637. bottom: var(--bs-popover-border-width);
  5638. border-top-color: var(--bs-popover-bg)
  5639. }
  5640. .bs-popover-end>.popover-arrow,
  5641. .bs-popover-auto[data-popper-placement^=right]>.popover-arrow {
  5642. left: calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5643. width: var(--bs-popover-arrow-height);
  5644. height: var(--bs-popover-arrow-width)
  5645. }
  5646. .bs-popover-end>.popover-arrow::before,
  5647. .bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,
  5648. .bs-popover-end>.popover-arrow::after,
  5649. .bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
  5650. border-width: calc(var(--bs-popover-arrow-width)*.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width)*.5) 0
  5651. }
  5652. .bs-popover-end>.popover-arrow::before,
  5653. .bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before {
  5654. left: 0;
  5655. border-right-color: var(--bs-popover-arrow-border)
  5656. }
  5657. .bs-popover-end>.popover-arrow::after,
  5658. .bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after {
  5659. left: var(--bs-popover-border-width);
  5660. border-right-color: var(--bs-popover-bg)
  5661. }
  5662. .bs-popover-bottom>.popover-arrow,
  5663. .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow {
  5664. top: calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width))
  5665. }
  5666. .bs-popover-bottom>.popover-arrow::before,
  5667. .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,
  5668. .bs-popover-bottom>.popover-arrow::after,
  5669. .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
  5670. border-width: 0 calc(var(--bs-popover-arrow-width)*.5) var(--bs-popover-arrow-height)
  5671. }
  5672. .bs-popover-bottom>.popover-arrow::before,
  5673. .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before {
  5674. top: 0;
  5675. border-bottom-color: var(--bs-popover-arrow-border)
  5676. }
  5677. .bs-popover-bottom>.popover-arrow::after,
  5678. .bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after {
  5679. top: var(--bs-popover-border-width);
  5680. border-bottom-color: var(--bs-popover-bg)
  5681. }
  5682. .bs-popover-bottom .popover-header::before,
  5683. .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  5684. position: absolute;
  5685. top: 0;
  5686. left: 50%;
  5687. display: block;
  5688. width: var(--bs-popover-arrow-width);
  5689. margin-left: calc(-0.5*var(--bs-popover-arrow-width));
  5690. content: "";
  5691. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg)
  5692. }
  5693. .bs-popover-start>.popover-arrow,
  5694. .bs-popover-auto[data-popper-placement^=left]>.popover-arrow {
  5695. right: calc(-1*(var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5696. width: var(--bs-popover-arrow-height);
  5697. height: var(--bs-popover-arrow-width)
  5698. }
  5699. .bs-popover-start>.popover-arrow::before,
  5700. .bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,
  5701. .bs-popover-start>.popover-arrow::after,
  5702. .bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
  5703. border-width: calc(var(--bs-popover-arrow-width)*.5) 0 calc(var(--bs-popover-arrow-width)*.5) var(--bs-popover-arrow-height)
  5704. }
  5705. .bs-popover-start>.popover-arrow::before,
  5706. .bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before {
  5707. right: 0;
  5708. border-left-color: var(--bs-popover-arrow-border)
  5709. }
  5710. .bs-popover-start>.popover-arrow::after,
  5711. .bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after {
  5712. right: var(--bs-popover-border-width);
  5713. border-left-color: var(--bs-popover-bg)
  5714. }
  5715. .popover-header {
  5716. padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  5717. margin-bottom: 0;
  5718. font-size: var(--bs-popover-header-font-size);
  5719. color: var(--bs-popover-header-color);
  5720. background-color: var(--bs-popover-header-bg);
  5721. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5722. border-top-left-radius: var(--bs-popover-inner-border-radius);
  5723. border-top-right-radius: var(--bs-popover-inner-border-radius)
  5724. }
  5725. .popover-header:empty {
  5726. display: none
  5727. }
  5728. .popover-body {
  5729. padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  5730. color: var(--bs-popover-body-color)
  5731. }
  5732. .carousel {
  5733. position: relative
  5734. }
  5735. .carousel.pointer-event {
  5736. touch-action: pan-y
  5737. }
  5738. .carousel-inner {
  5739. position: relative;
  5740. width: 100%;
  5741. overflow: hidden
  5742. }
  5743. .carousel-inner::after {
  5744. display: block;
  5745. clear: both;
  5746. content: ""
  5747. }
  5748. .carousel-item {
  5749. position: relative;
  5750. display: none;
  5751. float: left;
  5752. width: 100%;
  5753. margin-right: -100%;
  5754. -webkit-backface-visibility: hidden;
  5755. backface-visibility: hidden;
  5756. transition: -webkit-transform .6s ease-in-out;
  5757. transition: transform .6s ease-in-out;
  5758. transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out
  5759. }
  5760. @media(prefers-reduced-motion: reduce) {
  5761. .carousel-item {
  5762. transition: none
  5763. }
  5764. }
  5765. .carousel-item.active,
  5766. .carousel-item-next,
  5767. .carousel-item-prev {
  5768. display: block
  5769. }
  5770. .carousel-item-next:not(.carousel-item-start),
  5771. .active.carousel-item-end {
  5772. -webkit-transform: translateX(100%);
  5773. transform: translateX(100%)
  5774. }
  5775. .carousel-item-prev:not(.carousel-item-end),
  5776. .active.carousel-item-start {
  5777. -webkit-transform: translateX(-100%);
  5778. transform: translateX(-100%)
  5779. }
  5780. .carousel-fade .carousel-item {
  5781. opacity: 0;
  5782. transition-property: opacity;
  5783. -webkit-transform: none;
  5784. transform: none
  5785. }
  5786. .carousel-fade .carousel-item.active,
  5787. .carousel-fade .carousel-item-next.carousel-item-start,
  5788. .carousel-fade .carousel-item-prev.carousel-item-end {
  5789. z-index: 1;
  5790. opacity: 1
  5791. }
  5792. .carousel-fade .active.carousel-item-start,
  5793. .carousel-fade .active.carousel-item-end {
  5794. z-index: 0;
  5795. opacity: 0;
  5796. transition: opacity 0s .6s
  5797. }
  5798. @media(prefers-reduced-motion: reduce) {
  5799. .carousel-fade .active.carousel-item-start,
  5800. .carousel-fade .active.carousel-item-end {
  5801. transition: none
  5802. }
  5803. }
  5804. .carousel-control-prev,
  5805. .carousel-control-next {
  5806. position: absolute;
  5807. top: 0;
  5808. bottom: 0;
  5809. z-index: 1;
  5810. display: flex;
  5811. align-items: center;
  5812. justify-content: center;
  5813. width: 15%;
  5814. padding: 0;
  5815. color: #fff;
  5816. text-align: center;
  5817. background: none;
  5818. border: 0;
  5819. opacity: .5;
  5820. transition: opacity .15s ease
  5821. }
  5822. @media(prefers-reduced-motion: reduce) {
  5823. .carousel-control-prev,
  5824. .carousel-control-next {
  5825. transition: none
  5826. }
  5827. }
  5828. .carousel-control-prev:hover,
  5829. .carousel-control-prev:focus,
  5830. .carousel-control-next:hover,
  5831. .carousel-control-next:focus {
  5832. color: #fff;
  5833. text-decoration: none;
  5834. outline: 0;
  5835. opacity: .9
  5836. }
  5837. .carousel-control-prev {
  5838. left: 0
  5839. }
  5840. .carousel-control-next {
  5841. right: 0
  5842. }
  5843. .carousel-control-prev-icon,
  5844. .carousel-control-next-icon {
  5845. display: inline-block;
  5846. width: 2rem;
  5847. height: 2rem;
  5848. background-repeat: no-repeat;
  5849. background-position: 50%;
  5850. background-size: 100% 100%
  5851. }
  5852. .carousel-control-prev-icon {
  5853. 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")
  5854. }
  5855. .carousel-control-next-icon {
  5856. 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")
  5857. }
  5858. .carousel-indicators {
  5859. position: absolute;
  5860. right: 0;
  5861. bottom: 0;
  5862. left: 0;
  5863. z-index: 2;
  5864. display: flex;
  5865. justify-content: center;
  5866. padding: 0;
  5867. margin-right: 15%;
  5868. margin-bottom: 1rem;
  5869. margin-left: 15%
  5870. }
  5871. .carousel-indicators [data-bs-target] {
  5872. box-sizing: content-box;
  5873. flex: 0 1 auto;
  5874. width: 30px;
  5875. height: 3px;
  5876. padding: 0;
  5877. margin-right: 3px;
  5878. margin-left: 3px;
  5879. text-indent: -999px;
  5880. cursor: pointer;
  5881. background-color: #fff;
  5882. background-clip: padding-box;
  5883. border: 0;
  5884. border-top: 10px solid rgba(0, 0, 0, 0);
  5885. border-bottom: 10px solid rgba(0, 0, 0, 0);
  5886. opacity: .5;
  5887. transition: opacity .6s ease
  5888. }
  5889. @media(prefers-reduced-motion: reduce) {
  5890. .carousel-indicators [data-bs-target] {
  5891. transition: none
  5892. }
  5893. }
  5894. .carousel-indicators .active {
  5895. opacity: 1
  5896. }
  5897. .carousel-caption {
  5898. position: absolute;
  5899. right: 15%;
  5900. bottom: 1.25rem;
  5901. left: 15%;
  5902. padding-top: 1.25rem;
  5903. padding-bottom: 1.25rem;
  5904. color: #fff;
  5905. text-align: center
  5906. }
  5907. .carousel-dark .carousel-control-prev-icon,
  5908. .carousel-dark .carousel-control-next-icon {
  5909. -webkit-filter: invert(1) grayscale(100);
  5910. filter: invert(1) grayscale(100)
  5911. }
  5912. .carousel-dark .carousel-indicators [data-bs-target] {
  5913. background-color: #000
  5914. }
  5915. .carousel-dark .carousel-caption {
  5916. color: #000
  5917. }
  5918. [data-bs-theme=dark] .carousel .carousel-control-prev-icon,
  5919. [data-bs-theme=dark] .carousel .carousel-control-next-icon,
  5920. [data-bs-theme=dark].carousel .carousel-control-prev-icon,
  5921. [data-bs-theme=dark].carousel .carousel-control-next-icon {
  5922. -webkit-filter: invert(1) grayscale(100);
  5923. filter: invert(1) grayscale(100)
  5924. }
  5925. [data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target],
  5926. [data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
  5927. background-color: #000
  5928. }
  5929. [data-bs-theme=dark] .carousel .carousel-caption,
  5930. [data-bs-theme=dark].carousel .carousel-caption {
  5931. color: #000
  5932. }
  5933. .spinner-grow,
  5934. .spinner-border {
  5935. display: inline-block;
  5936. width: var(--bs-spinner-width);
  5937. height: var(--bs-spinner-height);
  5938. vertical-align: var(--bs-spinner-vertical-align);
  5939. border-radius: 50%;
  5940. -webkit-animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
  5941. animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name)
  5942. }
  5943. @-webkit-keyframes spinner-border {
  5944. to {
  5945. -webkit-transform: rotate(360deg);
  5946. transform: rotate(360deg)
  5947. /* rtl:ignore */
  5948. }
  5949. }
  5950. @keyframes spinner-border {
  5951. to {
  5952. -webkit-transform: rotate(360deg);
  5953. transform: rotate(360deg)
  5954. /* rtl:ignore */
  5955. }
  5956. }
  5957. .spinner-border {
  5958. --bs-spinner-width: 2rem;
  5959. --bs-spinner-height: 2rem;
  5960. --bs-spinner-vertical-align: -0.125em;
  5961. --bs-spinner-border-width: 0.25em;
  5962. --bs-spinner-animation-speed: 0.75s;
  5963. --bs-spinner-animation-name: spinner-border;
  5964. border: var(--bs-spinner-border-width) solid currentcolor;
  5965. border-right-color: rgba(0, 0, 0, 0)
  5966. }
  5967. .spinner-border-sm {
  5968. --bs-spinner-width: 1rem;
  5969. --bs-spinner-height: 1rem;
  5970. --bs-spinner-border-width: 0.2em
  5971. }
  5972. @-webkit-keyframes spinner-grow {
  5973. 0% {
  5974. -webkit-transform: scale(0);
  5975. transform: scale(0)
  5976. }
  5977. 50% {
  5978. opacity: 1;
  5979. -webkit-transform: none;
  5980. transform: none
  5981. }
  5982. }
  5983. @keyframes spinner-grow {
  5984. 0% {
  5985. -webkit-transform: scale(0);
  5986. transform: scale(0)
  5987. }
  5988. 50% {
  5989. opacity: 1;
  5990. -webkit-transform: none;
  5991. transform: none
  5992. }
  5993. }
  5994. .spinner-grow {
  5995. --bs-spinner-width: 2rem;
  5996. --bs-spinner-height: 2rem;
  5997. --bs-spinner-vertical-align: -0.125em;
  5998. --bs-spinner-animation-speed: 0.75s;
  5999. --bs-spinner-animation-name: spinner-grow;
  6000. background-color: currentcolor;
  6001. opacity: 0
  6002. }
  6003. .spinner-grow-sm {
  6004. --bs-spinner-width: 1rem;
  6005. --bs-spinner-height: 1rem
  6006. }
  6007. @media(prefers-reduced-motion: reduce) {
  6008. .spinner-border,
  6009. .spinner-grow {
  6010. --bs-spinner-animation-speed: 1.5s
  6011. }
  6012. }
  6013. .offcanvas,
  6014. .offcanvas-xxl,
  6015. .offcanvas-xl,
  6016. .offcanvas-lg,
  6017. .offcanvas-md,
  6018. .offcanvas-sm {
  6019. --bs-offcanvas-zindex: 1045;
  6020. --bs-offcanvas-width: 400px;
  6021. --bs-offcanvas-height: 30vh;
  6022. --bs-offcanvas-padding-x: 1rem;
  6023. --bs-offcanvas-padding-y: 1rem;
  6024. --bs-offcanvas-color: var(--bs-body-color);
  6025. --bs-offcanvas-bg: var(--bs-body-bg);
  6026. --bs-offcanvas-border-width: var(--bs-border-width);
  6027. --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  6028. --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  6029. --bs-offcanvas-transition: transform 0.3s ease-in-out;
  6030. --bs-offcanvas-title-line-height: 1.5
  6031. }
  6032. @media(max-width: 575.98px) {
  6033. .offcanvas-sm {
  6034. position: fixed;
  6035. bottom: 0;
  6036. z-index: var(--bs-offcanvas-zindex);
  6037. display: flex;
  6038. flex-direction: column;
  6039. max-width: 100%;
  6040. color: var(--bs-offcanvas-color);
  6041. visibility: hidden;
  6042. background-color: var(--bs-offcanvas-bg);
  6043. background-clip: padding-box;
  6044. outline: 0;
  6045. transition: var(--bs-offcanvas-transition)
  6046. }
  6047. }
  6048. @media(max-width: 575.98px)and (prefers-reduced-motion: reduce) {
  6049. .offcanvas-sm {
  6050. transition: none
  6051. }
  6052. }
  6053. @media(max-width: 575.98px) {
  6054. .offcanvas-sm.offcanvas-start {
  6055. top: 0;
  6056. left: 0;
  6057. width: var(--bs-offcanvas-width);
  6058. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6059. -webkit-transform: translateX(-100%);
  6060. transform: translateX(-100%)
  6061. }
  6062. .offcanvas-sm.offcanvas-end {
  6063. top: 0;
  6064. right: 0;
  6065. width: var(--bs-offcanvas-width);
  6066. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6067. -webkit-transform: translateX(100%);
  6068. transform: translateX(100%)
  6069. }
  6070. .offcanvas-sm.offcanvas-top {
  6071. top: 0;
  6072. right: 0;
  6073. left: 0;
  6074. height: var(--bs-offcanvas-height);
  6075. max-height: 100%;
  6076. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6077. -webkit-transform: translateY(-100%);
  6078. transform: translateY(-100%)
  6079. }
  6080. .offcanvas-sm.offcanvas-bottom {
  6081. right: 0;
  6082. left: 0;
  6083. height: var(--bs-offcanvas-height);
  6084. max-height: 100%;
  6085. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6086. -webkit-transform: translateY(100%);
  6087. transform: translateY(100%)
  6088. }
  6089. .offcanvas-sm.showing,
  6090. .offcanvas-sm.show:not(.hiding) {
  6091. -webkit-transform: none;
  6092. transform: none
  6093. }
  6094. .offcanvas-sm.showing,
  6095. .offcanvas-sm.hiding,
  6096. .offcanvas-sm.show {
  6097. visibility: visible
  6098. }
  6099. }
  6100. @media(min-width: 576px) {
  6101. .offcanvas-sm {
  6102. --bs-offcanvas-height: auto;
  6103. --bs-offcanvas-border-width: 0;
  6104. background-color: rgba(0, 0, 0, 0) !important
  6105. }
  6106. .offcanvas-sm .offcanvas-header {
  6107. display: none
  6108. }
  6109. .offcanvas-sm .offcanvas-body {
  6110. display: flex;
  6111. flex-grow: 0;
  6112. padding: 0;
  6113. overflow-y: visible;
  6114. background-color: rgba(0, 0, 0, 0) !important
  6115. }
  6116. }
  6117. @media(max-width: 767.98px) {
  6118. .offcanvas-md {
  6119. position: fixed;
  6120. bottom: 0;
  6121. z-index: var(--bs-offcanvas-zindex);
  6122. display: flex;
  6123. flex-direction: column;
  6124. max-width: 100%;
  6125. color: var(--bs-offcanvas-color);
  6126. visibility: hidden;
  6127. background-color: var(--bs-offcanvas-bg);
  6128. background-clip: padding-box;
  6129. outline: 0;
  6130. transition: var(--bs-offcanvas-transition)
  6131. }
  6132. }
  6133. @media(max-width: 767.98px)and (prefers-reduced-motion: reduce) {
  6134. .offcanvas-md {
  6135. transition: none
  6136. }
  6137. }
  6138. @media(max-width: 767.98px) {
  6139. .offcanvas-md.offcanvas-start {
  6140. top: 0;
  6141. left: 0;
  6142. width: var(--bs-offcanvas-width);
  6143. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6144. -webkit-transform: translateX(-100%);
  6145. transform: translateX(-100%)
  6146. }
  6147. .offcanvas-md.offcanvas-end {
  6148. top: 0;
  6149. right: 0;
  6150. width: var(--bs-offcanvas-width);
  6151. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6152. -webkit-transform: translateX(100%);
  6153. transform: translateX(100%)
  6154. }
  6155. .offcanvas-md.offcanvas-top {
  6156. top: 0;
  6157. right: 0;
  6158. left: 0;
  6159. height: var(--bs-offcanvas-height);
  6160. max-height: 100%;
  6161. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6162. -webkit-transform: translateY(-100%);
  6163. transform: translateY(-100%)
  6164. }
  6165. .offcanvas-md.offcanvas-bottom {
  6166. right: 0;
  6167. left: 0;
  6168. height: var(--bs-offcanvas-height);
  6169. max-height: 100%;
  6170. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6171. -webkit-transform: translateY(100%);
  6172. transform: translateY(100%)
  6173. }
  6174. .offcanvas-md.showing,
  6175. .offcanvas-md.show:not(.hiding) {
  6176. -webkit-transform: none;
  6177. transform: none
  6178. }
  6179. .offcanvas-md.showing,
  6180. .offcanvas-md.hiding,
  6181. .offcanvas-md.show {
  6182. visibility: visible
  6183. }
  6184. }
  6185. @media(min-width: 768px) {
  6186. .offcanvas-md {
  6187. --bs-offcanvas-height: auto;
  6188. --bs-offcanvas-border-width: 0;
  6189. background-color: rgba(0, 0, 0, 0) !important
  6190. }
  6191. .offcanvas-md .offcanvas-header {
  6192. display: none
  6193. }
  6194. .offcanvas-md .offcanvas-body {
  6195. display: flex;
  6196. flex-grow: 0;
  6197. padding: 0;
  6198. overflow-y: visible;
  6199. background-color: rgba(0, 0, 0, 0) !important
  6200. }
  6201. }
  6202. @media(max-width: 991.98px) {
  6203. .offcanvas-lg {
  6204. position: fixed;
  6205. bottom: 0;
  6206. z-index: var(--bs-offcanvas-zindex);
  6207. display: flex;
  6208. flex-direction: column;
  6209. max-width: 100%;
  6210. color: var(--bs-offcanvas-color);
  6211. visibility: hidden;
  6212. background-color: var(--bs-offcanvas-bg);
  6213. background-clip: padding-box;
  6214. outline: 0;
  6215. transition: var(--bs-offcanvas-transition)
  6216. }
  6217. }
  6218. @media(max-width: 991.98px)and (prefers-reduced-motion: reduce) {
  6219. .offcanvas-lg {
  6220. transition: none
  6221. }
  6222. }
  6223. @media(max-width: 991.98px) {
  6224. .offcanvas-lg.offcanvas-start {
  6225. top: 0;
  6226. left: 0;
  6227. width: var(--bs-offcanvas-width);
  6228. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6229. -webkit-transform: translateX(-100%);
  6230. transform: translateX(-100%)
  6231. }
  6232. .offcanvas-lg.offcanvas-end {
  6233. top: 0;
  6234. right: 0;
  6235. width: var(--bs-offcanvas-width);
  6236. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6237. -webkit-transform: translateX(100%);
  6238. transform: translateX(100%)
  6239. }
  6240. .offcanvas-lg.offcanvas-top {
  6241. top: 0;
  6242. right: 0;
  6243. left: 0;
  6244. height: var(--bs-offcanvas-height);
  6245. max-height: 100%;
  6246. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6247. -webkit-transform: translateY(-100%);
  6248. transform: translateY(-100%)
  6249. }
  6250. .offcanvas-lg.offcanvas-bottom {
  6251. right: 0;
  6252. left: 0;
  6253. height: var(--bs-offcanvas-height);
  6254. max-height: 100%;
  6255. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6256. -webkit-transform: translateY(100%);
  6257. transform: translateY(100%)
  6258. }
  6259. .offcanvas-lg.showing,
  6260. .offcanvas-lg.show:not(.hiding) {
  6261. -webkit-transform: none;
  6262. transform: none
  6263. }
  6264. .offcanvas-lg.showing,
  6265. .offcanvas-lg.hiding,
  6266. .offcanvas-lg.show {
  6267. visibility: visible
  6268. }
  6269. }
  6270. @media(min-width: 992px) {
  6271. .offcanvas-lg {
  6272. --bs-offcanvas-height: auto;
  6273. --bs-offcanvas-border-width: 0;
  6274. background-color: rgba(0, 0, 0, 0) !important
  6275. }
  6276. .offcanvas-lg .offcanvas-header {
  6277. display: none
  6278. }
  6279. .offcanvas-lg .offcanvas-body {
  6280. display: flex;
  6281. flex-grow: 0;
  6282. padding: 0;
  6283. overflow-y: visible;
  6284. background-color: rgba(0, 0, 0, 0) !important
  6285. }
  6286. }
  6287. @media(max-width: 1199.98px) {
  6288. .offcanvas-xl {
  6289. position: fixed;
  6290. bottom: 0;
  6291. z-index: var(--bs-offcanvas-zindex);
  6292. display: flex;
  6293. flex-direction: column;
  6294. max-width: 100%;
  6295. color: var(--bs-offcanvas-color);
  6296. visibility: hidden;
  6297. background-color: var(--bs-offcanvas-bg);
  6298. background-clip: padding-box;
  6299. outline: 0;
  6300. transition: var(--bs-offcanvas-transition)
  6301. }
  6302. }
  6303. @media(max-width: 1199.98px)and (prefers-reduced-motion: reduce) {
  6304. .offcanvas-xl {
  6305. transition: none
  6306. }
  6307. }
  6308. @media(max-width: 1199.98px) {
  6309. .offcanvas-xl.offcanvas-start {
  6310. top: 0;
  6311. left: 0;
  6312. width: var(--bs-offcanvas-width);
  6313. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6314. -webkit-transform: translateX(-100%);
  6315. transform: translateX(-100%)
  6316. }
  6317. .offcanvas-xl.offcanvas-end {
  6318. top: 0;
  6319. right: 0;
  6320. width: var(--bs-offcanvas-width);
  6321. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6322. -webkit-transform: translateX(100%);
  6323. transform: translateX(100%)
  6324. }
  6325. .offcanvas-xl.offcanvas-top {
  6326. top: 0;
  6327. right: 0;
  6328. left: 0;
  6329. height: var(--bs-offcanvas-height);
  6330. max-height: 100%;
  6331. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6332. -webkit-transform: translateY(-100%);
  6333. transform: translateY(-100%)
  6334. }
  6335. .offcanvas-xl.offcanvas-bottom {
  6336. right: 0;
  6337. left: 0;
  6338. height: var(--bs-offcanvas-height);
  6339. max-height: 100%;
  6340. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6341. -webkit-transform: translateY(100%);
  6342. transform: translateY(100%)
  6343. }
  6344. .offcanvas-xl.showing,
  6345. .offcanvas-xl.show:not(.hiding) {
  6346. -webkit-transform: none;
  6347. transform: none
  6348. }
  6349. .offcanvas-xl.showing,
  6350. .offcanvas-xl.hiding,
  6351. .offcanvas-xl.show {
  6352. visibility: visible
  6353. }
  6354. }
  6355. @media(min-width: 1200px) {
  6356. .offcanvas-xl {
  6357. --bs-offcanvas-height: auto;
  6358. --bs-offcanvas-border-width: 0;
  6359. background-color: rgba(0, 0, 0, 0) !important
  6360. }
  6361. .offcanvas-xl .offcanvas-header {
  6362. display: none
  6363. }
  6364. .offcanvas-xl .offcanvas-body {
  6365. display: flex;
  6366. flex-grow: 0;
  6367. padding: 0;
  6368. overflow-y: visible;
  6369. background-color: rgba(0, 0, 0, 0) !important
  6370. }
  6371. }
  6372. @media(max-width: 1399.98px) {
  6373. .offcanvas-xxl {
  6374. position: fixed;
  6375. bottom: 0;
  6376. z-index: var(--bs-offcanvas-zindex);
  6377. display: flex;
  6378. flex-direction: column;
  6379. max-width: 100%;
  6380. color: var(--bs-offcanvas-color);
  6381. visibility: hidden;
  6382. background-color: var(--bs-offcanvas-bg);
  6383. background-clip: padding-box;
  6384. outline: 0;
  6385. transition: var(--bs-offcanvas-transition)
  6386. }
  6387. }
  6388. @media(max-width: 1399.98px)and (prefers-reduced-motion: reduce) {
  6389. .offcanvas-xxl {
  6390. transition: none
  6391. }
  6392. }
  6393. @media(max-width: 1399.98px) {
  6394. .offcanvas-xxl.offcanvas-start {
  6395. top: 0;
  6396. left: 0;
  6397. width: var(--bs-offcanvas-width);
  6398. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6399. -webkit-transform: translateX(-100%);
  6400. transform: translateX(-100%)
  6401. }
  6402. .offcanvas-xxl.offcanvas-end {
  6403. top: 0;
  6404. right: 0;
  6405. width: var(--bs-offcanvas-width);
  6406. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6407. -webkit-transform: translateX(100%);
  6408. transform: translateX(100%)
  6409. }
  6410. .offcanvas-xxl.offcanvas-top {
  6411. top: 0;
  6412. right: 0;
  6413. left: 0;
  6414. height: var(--bs-offcanvas-height);
  6415. max-height: 100%;
  6416. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6417. -webkit-transform: translateY(-100%);
  6418. transform: translateY(-100%)
  6419. }
  6420. .offcanvas-xxl.offcanvas-bottom {
  6421. right: 0;
  6422. left: 0;
  6423. height: var(--bs-offcanvas-height);
  6424. max-height: 100%;
  6425. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6426. -webkit-transform: translateY(100%);
  6427. transform: translateY(100%)
  6428. }
  6429. .offcanvas-xxl.showing,
  6430. .offcanvas-xxl.show:not(.hiding) {
  6431. -webkit-transform: none;
  6432. transform: none
  6433. }
  6434. .offcanvas-xxl.showing,
  6435. .offcanvas-xxl.hiding,
  6436. .offcanvas-xxl.show {
  6437. visibility: visible
  6438. }
  6439. }
  6440. @media(min-width: 1400px) {
  6441. .offcanvas-xxl {
  6442. --bs-offcanvas-height: auto;
  6443. --bs-offcanvas-border-width: 0;
  6444. background-color: rgba(0, 0, 0, 0) !important
  6445. }
  6446. .offcanvas-xxl .offcanvas-header {
  6447. display: none
  6448. }
  6449. .offcanvas-xxl .offcanvas-body {
  6450. display: flex;
  6451. flex-grow: 0;
  6452. padding: 0;
  6453. overflow-y: visible;
  6454. background-color: rgba(0, 0, 0, 0) !important
  6455. }
  6456. }
  6457. .offcanvas {
  6458. position: fixed;
  6459. bottom: 0;
  6460. z-index: var(--bs-offcanvas-zindex);
  6461. display: flex;
  6462. flex-direction: column;
  6463. max-width: 100%;
  6464. color: var(--bs-offcanvas-color);
  6465. visibility: hidden;
  6466. background-color: var(--bs-offcanvas-bg);
  6467. background-clip: padding-box;
  6468. outline: 0;
  6469. transition: var(--bs-offcanvas-transition)
  6470. }
  6471. @media(prefers-reduced-motion: reduce) {
  6472. .offcanvas {
  6473. transition: none
  6474. }
  6475. }
  6476. .offcanvas.offcanvas-start {
  6477. top: 0;
  6478. left: 0;
  6479. width: var(--bs-offcanvas-width);
  6480. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6481. -webkit-transform: translateX(-100%);
  6482. transform: translateX(-100%)
  6483. }
  6484. .offcanvas.offcanvas-end {
  6485. top: 0;
  6486. right: 0;
  6487. width: var(--bs-offcanvas-width);
  6488. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6489. -webkit-transform: translateX(100%);
  6490. transform: translateX(100%)
  6491. }
  6492. .offcanvas.offcanvas-top {
  6493. top: 0;
  6494. right: 0;
  6495. left: 0;
  6496. height: var(--bs-offcanvas-height);
  6497. max-height: 100%;
  6498. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6499. -webkit-transform: translateY(-100%);
  6500. transform: translateY(-100%)
  6501. }
  6502. .offcanvas.offcanvas-bottom {
  6503. right: 0;
  6504. left: 0;
  6505. height: var(--bs-offcanvas-height);
  6506. max-height: 100%;
  6507. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6508. -webkit-transform: translateY(100%);
  6509. transform: translateY(100%)
  6510. }
  6511. .offcanvas.showing,
  6512. .offcanvas.show:not(.hiding) {
  6513. -webkit-transform: none;
  6514. transform: none
  6515. }
  6516. .offcanvas.showing,
  6517. .offcanvas.hiding,
  6518. .offcanvas.show {
  6519. visibility: visible
  6520. }
  6521. .offcanvas-backdrop {
  6522. position: fixed;
  6523. top: 0;
  6524. left: 0;
  6525. z-index: 1040;
  6526. width: 100vw;
  6527. height: 100vh;
  6528. background-color: #000
  6529. }
  6530. .offcanvas-backdrop.fade {
  6531. opacity: 0
  6532. }
  6533. .offcanvas-backdrop.show {
  6534. opacity: .5
  6535. }
  6536. .offcanvas-header {
  6537. display: flex;
  6538. align-items: center;
  6539. justify-content: space-between;
  6540. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x)
  6541. }
  6542. .offcanvas-header .btn-close {
  6543. padding: calc(var(--bs-offcanvas-padding-y)*.5) calc(var(--bs-offcanvas-padding-x)*.5);
  6544. margin-top: calc(-0.5*var(--bs-offcanvas-padding-y));
  6545. margin-right: calc(-0.5*var(--bs-offcanvas-padding-x));
  6546. margin-bottom: calc(-0.5*var(--bs-offcanvas-padding-y))
  6547. }
  6548. .offcanvas-title {
  6549. margin-bottom: 0;
  6550. line-height: var(--bs-offcanvas-title-line-height)
  6551. }
  6552. .offcanvas-body {
  6553. flex-grow: 1;
  6554. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6555. overflow-y: auto
  6556. }
  6557. .placeholder {
  6558. display: inline-block;
  6559. min-height: 1em;
  6560. vertical-align: middle;
  6561. cursor: wait;
  6562. background-color: currentcolor;
  6563. opacity: .5
  6564. }
  6565. .placeholder.btn::before {
  6566. display: inline-block;
  6567. content: ""
  6568. }
  6569. .placeholder-xs {
  6570. min-height: .6em
  6571. }
  6572. .placeholder-sm {
  6573. min-height: .8em
  6574. }
  6575. .placeholder-lg {
  6576. min-height: 1.2em
  6577. }
  6578. .placeholder-glow .placeholder {
  6579. -webkit-animation: placeholder-glow 2s ease-in-out infinite;
  6580. animation: placeholder-glow 2s ease-in-out infinite
  6581. }
  6582. @-webkit-keyframes placeholder-glow {
  6583. 50% {
  6584. opacity: .2
  6585. }
  6586. }
  6587. @keyframes placeholder-glow {
  6588. 50% {
  6589. opacity: .2
  6590. }
  6591. }
  6592. .placeholder-wave {
  6593. -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6594. mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6595. -webkit-mask-size: 200% 100%;
  6596. mask-size: 200% 100%;
  6597. -webkit-animation: placeholder-wave 2s linear infinite;
  6598. animation: placeholder-wave 2s linear infinite
  6599. }
  6600. @-webkit-keyframes placeholder-wave {
  6601. 100% {
  6602. -webkit-mask-position: -200% 0%;
  6603. mask-position: -200% 0%
  6604. }
  6605. }
  6606. @keyframes placeholder-wave {
  6607. 100% {
  6608. -webkit-mask-position: -200% 0%;
  6609. mask-position: -200% 0%
  6610. }
  6611. }
  6612. .clearfix::after {
  6613. display: block;
  6614. clear: both;
  6615. content: ""
  6616. }
  6617. .text-bg-primary {
  6618. color: #000 !important;
  6619. background-color: RGBA(21, 163, 98, var(--bs-bg-opacity, 1)) !important
  6620. }
  6621. .text-bg-secondary {
  6622. color: #fff !important;
  6623. background-color: RGBA(93, 103, 120, var(--bs-bg-opacity, 1)) !important
  6624. }
  6625. .text-bg-success {
  6626. color: #000 !important;
  6627. background-color: RGBA(92, 179, 119, var(--bs-bg-opacity, 1)) !important
  6628. }
  6629. .text-bg-danger {
  6630. color: #000 !important;
  6631. background-color: RGBA(210, 109, 105, var(--bs-bg-opacity, 1)) !important
  6632. }
  6633. .text-bg-warning {
  6634. color: #000 !important;
  6635. background-color: RGBA(238, 191, 65, var(--bs-bg-opacity, 1)) !important
  6636. }
  6637. .text-bg-info {
  6638. color: #000 !important;
  6639. background-color: RGBA(91, 153, 234, var(--bs-bg-opacity, 1)) !important
  6640. }
  6641. .link-primary {
  6642. color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  6643. text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important
  6644. }
  6645. .link-primary:hover,
  6646. .link-primary:focus {
  6647. color: RGBA(68, 181, 129, var(--bs-link-opacity, 1)) !important;
  6648. text-decoration-color: RGBA(68, 181, 129, var(--bs-link-underline-opacity, 1)) !important
  6649. }
  6650. .link-secondary {
  6651. color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  6652. text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important
  6653. }
  6654. .link-secondary:hover,
  6655. .link-secondary:focus {
  6656. color: RGBA(74, 82, 96, var(--bs-link-opacity, 1)) !important;
  6657. text-decoration-color: RGBA(74, 82, 96, var(--bs-link-underline-opacity, 1)) !important
  6658. }
  6659. .link-success {
  6660. color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  6661. text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important
  6662. }
  6663. .link-success:hover,
  6664. .link-success:focus {
  6665. color: RGBA(125, 194, 146, var(--bs-link-opacity, 1)) !important;
  6666. text-decoration-color: RGBA(125, 194, 146, var(--bs-link-underline-opacity, 1)) !important
  6667. }
  6668. .link-danger {
  6669. color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  6670. text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important
  6671. }
  6672. .link-danger:hover,
  6673. .link-danger:focus {
  6674. color: RGBA(219, 138, 135, var(--bs-link-opacity, 1)) !important;
  6675. text-decoration-color: RGBA(219, 138, 135, var(--bs-link-underline-opacity, 1)) !important
  6676. }
  6677. .link-warning {
  6678. color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  6679. text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important
  6680. }
  6681. .link-warning:hover,
  6682. .link-warning:focus {
  6683. color: RGBA(241, 204, 103, var(--bs-link-opacity, 1)) !important;
  6684. text-decoration-color: RGBA(241, 204, 103, var(--bs-link-underline-opacity, 1)) !important
  6685. }
  6686. .link-info {
  6687. color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  6688. text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important
  6689. }
  6690. .link-info:hover,
  6691. .link-info:focus {
  6692. color: RGBA(124, 173, 238, var(--bs-link-opacity, 1)) !important;
  6693. text-decoration-color: RGBA(124, 173, 238, var(--bs-link-underline-opacity, 1)) !important
  6694. }
  6695. .link-body-emphasis {
  6696. color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  6697. text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important
  6698. }
  6699. .link-body-emphasis:hover,
  6700. .link-body-emphasis:focus {
  6701. color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  6702. text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important
  6703. }
  6704. .focus-ring:focus {
  6705. outline: 0;
  6706. box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color)
  6707. }
  6708. .icon-link {
  6709. display: inline-flex;
  6710. gap: .375rem;
  6711. align-items: center;
  6712. text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  6713. text-underline-offset: .25em;
  6714. -webkit-backface-visibility: hidden;
  6715. backface-visibility: hidden
  6716. }
  6717. .icon-link>.bi {
  6718. flex-shrink: 0;
  6719. width: 1em;
  6720. height: 1em;
  6721. fill: currentcolor;
  6722. transition: .2s ease-in-out transform
  6723. }
  6724. @media(prefers-reduced-motion: reduce) {
  6725. .icon-link>.bi {
  6726. transition: none
  6727. }
  6728. }
  6729. .icon-link-hover:hover>.bi,
  6730. .icon-link-hover:focus-visible>.bi {
  6731. -webkit-transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
  6732. transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0))
  6733. }
  6734. .ratio {
  6735. position: relative;
  6736. width: 100%
  6737. }
  6738. .ratio::before {
  6739. display: block;
  6740. padding-top: var(--bs-aspect-ratio);
  6741. content: ""
  6742. }
  6743. .ratio>* {
  6744. position: absolute;
  6745. top: 0;
  6746. left: 0;
  6747. width: 100%;
  6748. height: 100%
  6749. }
  6750. .ratio-1x1 {
  6751. --bs-aspect-ratio: 100%
  6752. }
  6753. .ratio-4x3 {
  6754. --bs-aspect-ratio: 75%
  6755. }
  6756. .ratio-16x9 {
  6757. --bs-aspect-ratio: 56.25%
  6758. }
  6759. .ratio-21x9 {
  6760. --bs-aspect-ratio: 42.8571428571%
  6761. }
  6762. .fixed-top {
  6763. position: fixed;
  6764. top: 0;
  6765. right: 0;
  6766. left: 0;
  6767. z-index: 1030
  6768. }
  6769. .fixed-bottom {
  6770. position: fixed;
  6771. right: 0;
  6772. bottom: 0;
  6773. left: 0;
  6774. z-index: 1030
  6775. }
  6776. .sticky-top {
  6777. position: -webkit-sticky;
  6778. position: sticky;
  6779. top: 0;
  6780. z-index: 1020
  6781. }
  6782. .sticky-bottom {
  6783. position: -webkit-sticky;
  6784. position: sticky;
  6785. bottom: 0;
  6786. z-index: 1020
  6787. }
  6788. @media(min-width: 576px) {
  6789. .sticky-sm-top {
  6790. position: -webkit-sticky;
  6791. position: sticky;
  6792. top: 0;
  6793. z-index: 1020
  6794. }
  6795. .sticky-sm-bottom {
  6796. position: -webkit-sticky;
  6797. position: sticky;
  6798. bottom: 0;
  6799. z-index: 1020
  6800. }
  6801. }
  6802. @media(min-width: 768px) {
  6803. .sticky-md-top {
  6804. position: -webkit-sticky;
  6805. position: sticky;
  6806. top: 0;
  6807. z-index: 1020
  6808. }
  6809. .sticky-md-bottom {
  6810. position: -webkit-sticky;
  6811. position: sticky;
  6812. bottom: 0;
  6813. z-index: 1020
  6814. }
  6815. }
  6816. @media(min-width: 992px) {
  6817. .sticky-lg-top {
  6818. position: -webkit-sticky;
  6819. position: sticky;
  6820. top: 0;
  6821. z-index: 1020
  6822. }
  6823. .sticky-lg-bottom {
  6824. position: -webkit-sticky;
  6825. position: sticky;
  6826. bottom: 0;
  6827. z-index: 1020
  6828. }
  6829. }
  6830. @media(min-width: 1200px) {
  6831. .sticky-xl-top {
  6832. position: -webkit-sticky;
  6833. position: sticky;
  6834. top: 0;
  6835. z-index: 1020
  6836. }
  6837. .sticky-xl-bottom {
  6838. position: -webkit-sticky;
  6839. position: sticky;
  6840. bottom: 0;
  6841. z-index: 1020
  6842. }
  6843. }
  6844. @media(min-width: 1400px) {
  6845. .sticky-xxl-top {
  6846. position: -webkit-sticky;
  6847. position: sticky;
  6848. top: 0;
  6849. z-index: 1020
  6850. }
  6851. .sticky-xxl-bottom {
  6852. position: -webkit-sticky;
  6853. position: sticky;
  6854. bottom: 0;
  6855. z-index: 1020
  6856. }
  6857. }
  6858. .hstack {
  6859. display: flex;
  6860. flex-direction: row;
  6861. align-items: center;
  6862. align-self: stretch
  6863. }
  6864. .vstack {
  6865. display: flex;
  6866. flex: 1 1 auto;
  6867. flex-direction: column;
  6868. align-self: stretch
  6869. }
  6870. .visually-hidden,
  6871. .visually-hidden-focusable:not(:focus):not(:focus-within) {
  6872. width: 1px !important;
  6873. height: 1px !important;
  6874. padding: 0 !important;
  6875. margin: -1px !important;
  6876. overflow: hidden !important;
  6877. clip: rect(0, 0, 0, 0) !important;
  6878. white-space: nowrap !important;
  6879. border: 0 !important
  6880. }
  6881. .visually-hidden:not(caption),
  6882. .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  6883. position: absolute !important
  6884. }
  6885. .stretched-link::after {
  6886. position: absolute;
  6887. top: 0;
  6888. right: 0;
  6889. bottom: 0;
  6890. left: 0;
  6891. z-index: 1;
  6892. content: ""
  6893. }
  6894. .text-truncate {
  6895. overflow: hidden;
  6896. text-overflow: ellipsis;
  6897. white-space: nowrap
  6898. }
  6899. .vr {
  6900. display: inline-block;
  6901. align-self: stretch;
  6902. width: 1px;
  6903. min-height: 1em;
  6904. background-color: currentcolor;
  6905. opacity: .25
  6906. }
  6907. .align-baseline {
  6908. vertical-align: baseline !important
  6909. }
  6910. .align-top {
  6911. vertical-align: top !important
  6912. }
  6913. .align-middle {
  6914. vertical-align: middle !important
  6915. }
  6916. .align-bottom {
  6917. vertical-align: bottom !important
  6918. }
  6919. .align-text-bottom {
  6920. vertical-align: text-bottom !important
  6921. }
  6922. .align-text-top {
  6923. vertical-align: text-top !important
  6924. }
  6925. .float-start {
  6926. float: left !important
  6927. }
  6928. .float-end {
  6929. float: right !important
  6930. }
  6931. .float-none {
  6932. float: none !important
  6933. }
  6934. .object-fit-contain {
  6935. -o-object-fit: contain !important;
  6936. object-fit: contain !important
  6937. }
  6938. .object-fit-cover {
  6939. -o-object-fit: cover !important;
  6940. object-fit: cover !important
  6941. }
  6942. .object-fit-fill {
  6943. -o-object-fit: fill !important;
  6944. object-fit: fill !important
  6945. }
  6946. .object-fit-scale {
  6947. -o-object-fit: scale-down !important;
  6948. object-fit: scale-down !important
  6949. }
  6950. .object-fit-none {
  6951. -o-object-fit: none !important;
  6952. object-fit: none !important
  6953. }
  6954. .opacity-0 {
  6955. opacity: 0 !important
  6956. }
  6957. .opacity-25 {
  6958. opacity: .25 !important
  6959. }
  6960. .opacity-50 {
  6961. opacity: .5 !important
  6962. }
  6963. .opacity-75 {
  6964. opacity: .75 !important
  6965. }
  6966. .opacity-100 {
  6967. opacity: 1 !important
  6968. }
  6969. .overflow-auto {
  6970. overflow: auto !important
  6971. }
  6972. .overflow-hidden {
  6973. overflow: hidden !important
  6974. }
  6975. .overflow-visible {
  6976. overflow: visible !important
  6977. }
  6978. .overflow-scroll {
  6979. overflow: scroll !important
  6980. }
  6981. .overflow-x-auto {
  6982. overflow-x: auto !important
  6983. }
  6984. .overflow-x-hidden {
  6985. overflow-x: hidden !important
  6986. }
  6987. .overflow-x-visible {
  6988. overflow-x: visible !important
  6989. }
  6990. .overflow-x-scroll {
  6991. overflow-x: scroll !important
  6992. }
  6993. .overflow-y-auto {
  6994. overflow-y: auto !important
  6995. }
  6996. .overflow-y-hidden {
  6997. overflow-y: hidden !important
  6998. }
  6999. .overflow-y-visible {
  7000. overflow-y: visible !important
  7001. }
  7002. .overflow-y-scroll {
  7003. overflow-y: scroll !important
  7004. }
  7005. .d-inline {
  7006. display: inline !important
  7007. }
  7008. .d-inline-block {
  7009. display: inline-block !important
  7010. }
  7011. .d-block {
  7012. display: block !important
  7013. }
  7014. .d-grid {
  7015. display: grid !important
  7016. }
  7017. .d-inline-grid {
  7018. display: inline-grid !important
  7019. }
  7020. .d-table {
  7021. display: table !important
  7022. }
  7023. .d-table-row {
  7024. display: table-row !important
  7025. }
  7026. .d-table-cell {
  7027. display: table-cell !important
  7028. }
  7029. .d-flex {
  7030. display: flex !important
  7031. }
  7032. .d-inline-flex {
  7033. display: inline-flex !important
  7034. }
  7035. .d-none {
  7036. display: none !important
  7037. }
  7038. .shadow {
  7039. box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important
  7040. }
  7041. .shadow-sm {
  7042. box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important
  7043. }
  7044. .shadow-lg {
  7045. box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important
  7046. }
  7047. .shadow-none {
  7048. box-shadow: none !important
  7049. }
  7050. .focus-ring-primary {
  7051. --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity))
  7052. }
  7053. .focus-ring-secondary {
  7054. --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity))
  7055. }
  7056. .focus-ring-success {
  7057. --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity))
  7058. }
  7059. .focus-ring-danger {
  7060. --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity))
  7061. }
  7062. .focus-ring-warning {
  7063. --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity))
  7064. }
  7065. .focus-ring-info {
  7066. --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity))
  7067. }
  7068. .position-static {
  7069. position: static !important
  7070. }
  7071. .position-relative {
  7072. position: relative !important
  7073. }
  7074. .position-absolute {
  7075. position: absolute !important
  7076. }
  7077. .position-fixed {
  7078. position: fixed !important
  7079. }
  7080. .position-sticky {
  7081. position: -webkit-sticky !important;
  7082. position: sticky !important
  7083. }
  7084. .top-0 {
  7085. top: 0 !important
  7086. }
  7087. .top-50 {
  7088. top: 50% !important
  7089. }
  7090. .top-100 {
  7091. top: 100% !important
  7092. }
  7093. .bottom-0 {
  7094. bottom: 0 !important
  7095. }
  7096. .bottom-50 {
  7097. bottom: 50% !important
  7098. }
  7099. .bottom-100 {
  7100. bottom: 100% !important
  7101. }
  7102. .start-0 {
  7103. left: 0 !important
  7104. }
  7105. .start-50 {
  7106. left: 50% !important
  7107. }
  7108. .start-100 {
  7109. left: 100% !important
  7110. }
  7111. .end-0 {
  7112. right: 0 !important
  7113. }
  7114. .end-50 {
  7115. right: 50% !important
  7116. }
  7117. .end-100 {
  7118. right: 100% !important
  7119. }
  7120. .translate-middle {
  7121. -webkit-transform: translate(-50%, -50%) !important;
  7122. transform: translate(-50%, -50%) !important
  7123. }
  7124. .translate-middle-x {
  7125. -webkit-transform: translateX(-50%) !important;
  7126. transform: translateX(-50%) !important
  7127. }
  7128. .translate-middle-y {
  7129. -webkit-transform: translateY(-50%) !important;
  7130. transform: translateY(-50%) !important
  7131. }
  7132. .border {
  7133. border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
  7134. }
  7135. .border-0 {
  7136. border: 0 !important
  7137. }
  7138. .border-top {
  7139. border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
  7140. }
  7141. .border-top-0 {
  7142. border-top: 0 !important
  7143. }
  7144. .border-end {
  7145. border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
  7146. }
  7147. .border-end-0 {
  7148. border-right: 0 !important
  7149. }
  7150. .border-bottom {
  7151. border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
  7152. }
  7153. .border-bottom-0 {
  7154. border-bottom: 0 !important
  7155. }
  7156. .border-start {
  7157. border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important
  7158. }
  7159. .border-start-0 {
  7160. border-left: 0 !important
  7161. }
  7162. .border-primary {
  7163. --bs-border-opacity: 1;
  7164. border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important
  7165. }
  7166. .border-secondary {
  7167. --bs-border-opacity: 1;
  7168. border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important
  7169. }
  7170. .border-success {
  7171. --bs-border-opacity: 1;
  7172. border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important
  7173. }
  7174. .border-danger {
  7175. --bs-border-opacity: 1;
  7176. border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important
  7177. }
  7178. .border-warning {
  7179. --bs-border-opacity: 1;
  7180. border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important
  7181. }
  7182. .border-info {
  7183. --bs-border-opacity: 1;
  7184. border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important
  7185. }
  7186. .border-black {
  7187. --bs-border-opacity: 1;
  7188. border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important
  7189. }
  7190. .border-white {
  7191. --bs-border-opacity: 1;
  7192. border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important
  7193. }
  7194. .border-primary-subtle {
  7195. border-color: var(--bs-primary-border-subtle) !important
  7196. }
  7197. .border-secondary-subtle {
  7198. border-color: var(--bs-secondary-border-subtle) !important
  7199. }
  7200. .border-success-subtle {
  7201. border-color: var(--bs-success-border-subtle) !important
  7202. }
  7203. .border-info-subtle {
  7204. border-color: var(--bs-info-border-subtle) !important
  7205. }
  7206. .border-warning-subtle {
  7207. border-color: var(--bs-warning-border-subtle) !important
  7208. }
  7209. .border-danger-subtle {
  7210. border-color: var(--bs-danger-border-subtle) !important
  7211. }
  7212. .border-light-subtle {
  7213. border-color: var(--bs-light-border-subtle) !important
  7214. }
  7215. .border-dark-subtle {
  7216. border-color: var(--bs-dark-border-subtle) !important
  7217. }
  7218. .border-1 {
  7219. border-width: 1px !important
  7220. }
  7221. .border-2 {
  7222. border-width: 2px !important
  7223. }
  7224. .border-3 {
  7225. border-width: 3px !important
  7226. }
  7227. .border-4 {
  7228. border-width: 4px !important
  7229. }
  7230. .border-5 {
  7231. border-width: 5px !important
  7232. }
  7233. .border-opacity-10 {
  7234. --bs-border-opacity: 0.1
  7235. }
  7236. .border-opacity-25 {
  7237. --bs-border-opacity: 0.25
  7238. }
  7239. .border-opacity-50 {
  7240. --bs-border-opacity: 0.5
  7241. }
  7242. .border-opacity-75 {
  7243. --bs-border-opacity: 0.75
  7244. }
  7245. .border-opacity-100 {
  7246. --bs-border-opacity: 1
  7247. }
  7248. .w-25 {
  7249. width: 25% !important
  7250. }
  7251. .w-50 {
  7252. width: 50% !important
  7253. }
  7254. .w-75 {
  7255. width: 75% !important
  7256. }
  7257. .w-100 {
  7258. width: 100% !important
  7259. }
  7260. .w-auto {
  7261. width: auto !important
  7262. }
  7263. .mw-100 {
  7264. max-width: 100% !important
  7265. }
  7266. .vw-100 {
  7267. width: 100vw !important
  7268. }
  7269. .min-vw-100 {
  7270. min-width: 100vw !important
  7271. }
  7272. .h-25 {
  7273. height: 25% !important
  7274. }
  7275. .h-50 {
  7276. height: 50% !important
  7277. }
  7278. .h-75 {
  7279. height: 75% !important
  7280. }
  7281. .h-100 {
  7282. height: 100% !important
  7283. }
  7284. .h-auto {
  7285. height: auto !important
  7286. }
  7287. .mh-100 {
  7288. max-height: 100% !important
  7289. }
  7290. .vh-100 {
  7291. height: 100vh !important
  7292. }
  7293. .min-vh-100 {
  7294. min-height: 100vh !important
  7295. }
  7296. .flex-fill {
  7297. flex: 1 1 auto !important
  7298. }
  7299. .flex-row {
  7300. flex-direction: row !important
  7301. }
  7302. .flex-column {
  7303. flex-direction: column !important
  7304. }
  7305. .flex-row-reverse {
  7306. flex-direction: row-reverse !important
  7307. }
  7308. .flex-column-reverse {
  7309. flex-direction: column-reverse !important
  7310. }
  7311. .flex-grow-0 {
  7312. flex-grow: 0 !important
  7313. }
  7314. .flex-grow-1 {
  7315. flex-grow: 1 !important
  7316. }
  7317. .flex-shrink-0 {
  7318. flex-shrink: 0 !important
  7319. }
  7320. .flex-shrink-1 {
  7321. flex-shrink: 1 !important
  7322. }
  7323. .flex-wrap {
  7324. flex-wrap: wrap !important
  7325. }
  7326. .flex-nowrap {
  7327. flex-wrap: nowrap !important
  7328. }
  7329. .flex-wrap-reverse {
  7330. flex-wrap: wrap-reverse !important
  7331. }
  7332. .justify-content-start {
  7333. justify-content: flex-start !important
  7334. }
  7335. .justify-content-end {
  7336. justify-content: flex-end !important
  7337. }
  7338. .justify-content-center {
  7339. justify-content: center !important
  7340. }
  7341. .justify-content-between {
  7342. justify-content: space-between !important
  7343. }
  7344. .justify-content-around {
  7345. justify-content: space-around !important
  7346. }
  7347. .justify-content-evenly {
  7348. justify-content: space-evenly !important
  7349. }
  7350. .align-items-start {
  7351. align-items: flex-start !important
  7352. }
  7353. .align-items-end {
  7354. align-items: flex-end !important
  7355. }
  7356. .align-items-center {
  7357. align-items: center !important
  7358. }
  7359. .align-items-baseline {
  7360. align-items: baseline !important
  7361. }
  7362. .align-items-stretch {
  7363. align-items: stretch !important
  7364. }
  7365. .align-content-start {
  7366. align-content: flex-start !important
  7367. }
  7368. .align-content-end {
  7369. align-content: flex-end !important
  7370. }
  7371. .align-content-center {
  7372. align-content: center !important
  7373. }
  7374. .align-content-between {
  7375. align-content: space-between !important
  7376. }
  7377. .align-content-around {
  7378. align-content: space-around !important
  7379. }
  7380. .align-content-stretch {
  7381. align-content: stretch !important
  7382. }
  7383. .align-self-auto {
  7384. align-self: auto !important
  7385. }
  7386. .align-self-start {
  7387. align-self: flex-start !important
  7388. }
  7389. .align-self-end {
  7390. align-self: flex-end !important
  7391. }
  7392. .align-self-center {
  7393. align-self: center !important
  7394. }
  7395. .align-self-baseline {
  7396. align-self: baseline !important
  7397. }
  7398. .align-self-stretch {
  7399. align-self: stretch !important
  7400. }
  7401. .order-first {
  7402. order: -1 !important
  7403. }
  7404. .order-0 {
  7405. order: 0 !important
  7406. }
  7407. .order-1 {
  7408. order: 1 !important
  7409. }
  7410. .order-2 {
  7411. order: 2 !important
  7412. }
  7413. .order-3 {
  7414. order: 3 !important
  7415. }
  7416. .order-4 {
  7417. order: 4 !important
  7418. }
  7419. .order-5 {
  7420. order: 5 !important
  7421. }
  7422. .order-last {
  7423. order: 6 !important
  7424. }
  7425. .m-0 {
  7426. margin: 0 !important
  7427. }
  7428. .m-1 {
  7429. margin: .25rem !important
  7430. }
  7431. .m-2 {
  7432. margin: .5rem !important
  7433. }
  7434. .m-3 {
  7435. margin: 1rem !important
  7436. }
  7437. .m-4 {
  7438. margin: 1.5rem !important
  7439. }
  7440. .m-5 {
  7441. margin: 3rem !important
  7442. }
  7443. .m-auto {
  7444. margin: auto !important
  7445. }
  7446. .mx-0 {
  7447. margin-right: 0 !important;
  7448. margin-left: 0 !important
  7449. }
  7450. .mx-1 {
  7451. margin-right: .25rem !important;
  7452. margin-left: .25rem !important
  7453. }
  7454. .mx-2 {
  7455. margin-right: .5rem !important;
  7456. margin-left: .5rem !important
  7457. }
  7458. .mx-3 {
  7459. margin-right: 1rem !important;
  7460. margin-left: 1rem !important
  7461. }
  7462. .mx-4 {
  7463. margin-right: 1.5rem !important;
  7464. margin-left: 1.5rem !important
  7465. }
  7466. .mx-5 {
  7467. margin-right: 3rem !important;
  7468. margin-left: 3rem !important
  7469. }
  7470. .mx-auto {
  7471. margin-right: auto !important;
  7472. margin-left: auto !important
  7473. }
  7474. .my-0 {
  7475. margin-top: 0 !important;
  7476. margin-bottom: 0 !important
  7477. }
  7478. .my-1 {
  7479. margin-top: .25rem !important;
  7480. margin-bottom: .25rem !important
  7481. }
  7482. .my-2 {
  7483. margin-top: .5rem !important;
  7484. margin-bottom: .5rem !important
  7485. }
  7486. .my-3 {
  7487. margin-top: 1rem !important;
  7488. margin-bottom: 1rem !important
  7489. }
  7490. .my-4 {
  7491. margin-top: 1.5rem !important;
  7492. margin-bottom: 1.5rem !important
  7493. }
  7494. .my-5 {
  7495. margin-top: 3rem !important;
  7496. margin-bottom: 3rem !important
  7497. }
  7498. .my-auto {
  7499. margin-top: auto !important;
  7500. margin-bottom: auto !important
  7501. }
  7502. .mt-0 {
  7503. margin-top: 0 !important
  7504. }
  7505. .mt-1 {
  7506. margin-top: .25rem !important
  7507. }
  7508. .mt-2 {
  7509. margin-top: .5rem !important
  7510. }
  7511. .mt-3 {
  7512. margin-top: 1rem !important
  7513. }
  7514. .mt-4 {
  7515. margin-top: 1.5rem !important
  7516. }
  7517. .mt-5 {
  7518. margin-top: 3rem !important
  7519. }
  7520. .mt-auto {
  7521. margin-top: auto !important
  7522. }
  7523. .me-0 {
  7524. margin-right: 0 !important
  7525. }
  7526. .me-1 {
  7527. margin-right: .25rem !important
  7528. }
  7529. .me-2 {
  7530. margin-right: .5rem !important
  7531. }
  7532. .me-3 {
  7533. margin-right: 1rem !important
  7534. }
  7535. .me-4 {
  7536. margin-right: 1.5rem !important
  7537. }
  7538. .me-5 {
  7539. margin-right: 3rem !important
  7540. }
  7541. .me-auto {
  7542. margin-right: auto !important
  7543. }
  7544. .mb-0 {
  7545. margin-bottom: 0 !important
  7546. }
  7547. .mb-1 {
  7548. margin-bottom: .25rem !important
  7549. }
  7550. .mb-2 {
  7551. margin-bottom: .5rem !important
  7552. }
  7553. .mb-3 {
  7554. margin-bottom: 1rem !important
  7555. }
  7556. .mb-4 {
  7557. margin-bottom: 1.5rem !important
  7558. }
  7559. .mb-5 {
  7560. margin-bottom: 3rem !important
  7561. }
  7562. .mb-auto {
  7563. margin-bottom: auto !important
  7564. }
  7565. .ms-0 {
  7566. margin-left: 0 !important
  7567. }
  7568. .ms-1 {
  7569. margin-left: .25rem !important
  7570. }
  7571. .ms-2 {
  7572. margin-left: .5rem !important
  7573. }
  7574. .ms-3 {
  7575. margin-left: 1rem !important
  7576. }
  7577. .ms-4 {
  7578. margin-left: 1.5rem !important
  7579. }
  7580. .ms-5 {
  7581. margin-left: 3rem !important
  7582. }
  7583. .ms-auto {
  7584. margin-left: auto !important
  7585. }
  7586. .p-0 {
  7587. padding: 0 !important
  7588. }
  7589. .p-1 {
  7590. padding: .25rem !important
  7591. }
  7592. .p-2 {
  7593. padding: .5rem !important
  7594. }
  7595. .p-3 {
  7596. padding: 1rem !important
  7597. }
  7598. .p-4 {
  7599. padding: 1.5rem !important
  7600. }
  7601. .p-5 {
  7602. padding: 3rem !important
  7603. }
  7604. .px-0 {
  7605. padding-right: 0 !important;
  7606. padding-left: 0 !important
  7607. }
  7608. .px-1 {
  7609. padding-right: .25rem !important;
  7610. padding-left: .25rem !important
  7611. }
  7612. .px-2 {
  7613. padding-right: .5rem !important;
  7614. padding-left: .5rem !important
  7615. }
  7616. .px-3 {
  7617. padding-right: 1rem !important;
  7618. padding-left: 1rem !important
  7619. }
  7620. .px-4 {
  7621. padding-right: 1.5rem !important;
  7622. padding-left: 1.5rem !important
  7623. }
  7624. .px-5 {
  7625. padding-right: 3rem !important;
  7626. padding-left: 3rem !important
  7627. }
  7628. .py-0 {
  7629. padding-top: 0 !important;
  7630. padding-bottom: 0 !important
  7631. }
  7632. .py-1 {
  7633. padding-top: .25rem !important;
  7634. padding-bottom: .25rem !important
  7635. }
  7636. .py-2 {
  7637. padding-top: .5rem !important;
  7638. padding-bottom: .5rem !important
  7639. }
  7640. .py-3 {
  7641. padding-top: 1rem !important;
  7642. padding-bottom: 1rem !important
  7643. }
  7644. .py-4 {
  7645. padding-top: 1.5rem !important;
  7646. padding-bottom: 1.5rem !important
  7647. }
  7648. .py-5 {
  7649. padding-top: 3rem !important;
  7650. padding-bottom: 3rem !important
  7651. }
  7652. .pt-0 {
  7653. padding-top: 0 !important
  7654. }
  7655. .pt-1 {
  7656. padding-top: .25rem !important
  7657. }
  7658. .pt-2 {
  7659. padding-top: .5rem !important
  7660. }
  7661. .pt-3 {
  7662. padding-top: 1rem !important
  7663. }
  7664. .pt-4 {
  7665. padding-top: 1.5rem !important
  7666. }
  7667. .pt-5 {
  7668. padding-top: 3rem !important
  7669. }
  7670. .pe-0 {
  7671. padding-right: 0 !important
  7672. }
  7673. .pe-1 {
  7674. padding-right: .25rem !important
  7675. }
  7676. .pe-2 {
  7677. padding-right: .5rem !important
  7678. }
  7679. .pe-3 {
  7680. padding-right: 1rem !important
  7681. }
  7682. .pe-4 {
  7683. padding-right: 1.5rem !important
  7684. }
  7685. .pe-5 {
  7686. padding-right: 3rem !important
  7687. }
  7688. .pb-0 {
  7689. padding-bottom: 0 !important
  7690. }
  7691. .pb-1 {
  7692. padding-bottom: .25rem !important
  7693. }
  7694. .pb-2 {
  7695. padding-bottom: .5rem !important
  7696. }
  7697. .pb-3 {
  7698. padding-bottom: 1rem !important
  7699. }
  7700. .pb-4 {
  7701. padding-bottom: 1.5rem !important
  7702. }
  7703. .pb-5 {
  7704. padding-bottom: 3rem !important
  7705. }
  7706. .ps-0 {
  7707. padding-left: 0 !important
  7708. }
  7709. .ps-1 {
  7710. padding-left: .25rem !important
  7711. }
  7712. .ps-2 {
  7713. padding-left: .5rem !important
  7714. }
  7715. .ps-3 {
  7716. padding-left: 1rem !important
  7717. }
  7718. .ps-4 {
  7719. padding-left: 1.5rem !important
  7720. }
  7721. .ps-5 {
  7722. padding-left: 3rem !important
  7723. }
  7724. .gap-0 {
  7725. gap: 0 !important
  7726. }
  7727. .gap-1 {
  7728. gap: .25rem !important
  7729. }
  7730. .gap-2 {
  7731. gap: .5rem !important
  7732. }
  7733. .gap-3 {
  7734. gap: 1rem !important
  7735. }
  7736. .gap-4 {
  7737. gap: 1.5rem !important
  7738. }
  7739. .gap-5 {
  7740. gap: 3rem !important
  7741. }
  7742. .row-gap-0 {
  7743. row-gap: 0 !important
  7744. }
  7745. .row-gap-1 {
  7746. row-gap: .25rem !important
  7747. }
  7748. .row-gap-2 {
  7749. row-gap: .5rem !important
  7750. }
  7751. .row-gap-3 {
  7752. row-gap: 1rem !important
  7753. }
  7754. .row-gap-4 {
  7755. row-gap: 1.5rem !important
  7756. }
  7757. .row-gap-5 {
  7758. row-gap: 3rem !important
  7759. }
  7760. .column-gap-0 {
  7761. -webkit-column-gap: 0 !important;
  7762. -moz-column-gap: 0 !important;
  7763. column-gap: 0 !important
  7764. }
  7765. .column-gap-1 {
  7766. -webkit-column-gap: .25rem !important;
  7767. -moz-column-gap: .25rem !important;
  7768. column-gap: .25rem !important
  7769. }
  7770. .column-gap-2 {
  7771. -webkit-column-gap: .5rem !important;
  7772. -moz-column-gap: .5rem !important;
  7773. column-gap: .5rem !important
  7774. }
  7775. .column-gap-3 {
  7776. -webkit-column-gap: 1rem !important;
  7777. -moz-column-gap: 1rem !important;
  7778. column-gap: 1rem !important
  7779. }
  7780. .column-gap-4 {
  7781. -webkit-column-gap: 1.5rem !important;
  7782. -moz-column-gap: 1.5rem !important;
  7783. column-gap: 1.5rem !important
  7784. }
  7785. .column-gap-5 {
  7786. -webkit-column-gap: 3rem !important;
  7787. -moz-column-gap: 3rem !important;
  7788. column-gap: 3rem !important
  7789. }
  7790. .font-monospace {
  7791. font-family: var(--bs-font-monospace) !important
  7792. }
  7793. .fs-1 {
  7794. font-size: calc(1.375rem + 1.5vw) !important
  7795. }
  7796. .fs-2 {
  7797. font-size: calc(1.325rem + 0.9vw) !important
  7798. }
  7799. .fs-3 {
  7800. font-size: calc(1.3rem + 0.6vw) !important
  7801. }
  7802. .fs-4 {
  7803. font-size: calc(1.275rem + 0.3vw) !important
  7804. }
  7805. .fs-5 {
  7806. font-size: 1.25rem !important
  7807. }
  7808. .fs-6 {
  7809. font-size: 1rem !important
  7810. }
  7811. .fst-italic {
  7812. font-style: italic !important
  7813. }
  7814. .fst-normal {
  7815. font-style: normal !important
  7816. }
  7817. .fw-lighter {
  7818. font-weight: lighter !important
  7819. }
  7820. .fw-light {
  7821. font-weight: 300 !important
  7822. }
  7823. .fw-normal {
  7824. font-weight: 400 !important
  7825. }
  7826. .fw-medium {
  7827. font-weight: 500 !important
  7828. }
  7829. .fw-semibold {
  7830. font-weight: 600 !important
  7831. }
  7832. .fw-bold {
  7833. font-weight: 700 !important
  7834. }
  7835. .fw-bolder {
  7836. font-weight: bolder !important
  7837. }
  7838. .lh-1 {
  7839. line-height: 1 !important
  7840. }
  7841. .lh-sm {
  7842. line-height: 1.25 !important
  7843. }
  7844. .lh-base {
  7845. line-height: 1.5 !important
  7846. }
  7847. .lh-lg {
  7848. line-height: 2 !important
  7849. }
  7850. .text-start {
  7851. text-align: left !important
  7852. }
  7853. .text-end {
  7854. text-align: right !important
  7855. }
  7856. .text-center {
  7857. text-align: center !important
  7858. }
  7859. .text-decoration-none {
  7860. text-decoration: none !important
  7861. }
  7862. .text-decoration-underline {
  7863. text-decoration: underline !important
  7864. }
  7865. .text-decoration-line-through {
  7866. text-decoration: line-through !important
  7867. }
  7868. .text-lowercase {
  7869. text-transform: lowercase !important
  7870. }
  7871. .text-uppercase {
  7872. text-transform: uppercase !important
  7873. }
  7874. .text-capitalize {
  7875. text-transform: capitalize !important
  7876. }
  7877. .text-wrap {
  7878. white-space: normal !important
  7879. }
  7880. .text-nowrap {
  7881. white-space: nowrap !important
  7882. }
  7883. .text-break {
  7884. word-wrap: break-word !important;
  7885. word-break: break-word !important
  7886. }
  7887. .text-primary {
  7888. --bs-text-opacity: 1;
  7889. color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important
  7890. }
  7891. .text-secondary {
  7892. --bs-text-opacity: 1;
  7893. color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important
  7894. }
  7895. .text-success {
  7896. --bs-text-opacity: 1;
  7897. color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important
  7898. }
  7899. .text-danger {
  7900. --bs-text-opacity: 1;
  7901. color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important
  7902. }
  7903. .text-warning {
  7904. --bs-text-opacity: 1;
  7905. color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important
  7906. }
  7907. .text-info {
  7908. --bs-text-opacity: 1;
  7909. color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important
  7910. }
  7911. .text-black {
  7912. --bs-text-opacity: 1;
  7913. color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important
  7914. }
  7915. .text-white {
  7916. --bs-text-opacity: 1;
  7917. color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important
  7918. }
  7919. .text-body {
  7920. --bs-text-opacity: 1;
  7921. color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important
  7922. }
  7923. .text-muted {
  7924. --bs-text-opacity: 1;
  7925. color: var(--bs-secondary-color) !important
  7926. }
  7927. .text-black-50 {
  7928. --bs-text-opacity: 1;
  7929. color: rgba(0, 0, 0, .5) !important
  7930. }
  7931. .text-white-50 {
  7932. --bs-text-opacity: 1;
  7933. color: rgba(255, 255, 255, .5) !important
  7934. }
  7935. .text-body-secondary {
  7936. --bs-text-opacity: 1;
  7937. color: var(--bs-secondary-color) !important
  7938. }
  7939. .text-body-tertiary {
  7940. --bs-text-opacity: 1;
  7941. color: var(--bs-tertiary-color) !important
  7942. }
  7943. .text-body-emphasis {
  7944. --bs-text-opacity: 1;
  7945. color: var(--bs-emphasis-color) !important
  7946. }
  7947. .text-reset {
  7948. --bs-text-opacity: 1;
  7949. color: inherit !important
  7950. }
  7951. .text-opacity-25 {
  7952. --bs-text-opacity: 0.25
  7953. }
  7954. .text-opacity-50 {
  7955. --bs-text-opacity: 0.5
  7956. }
  7957. .text-opacity-75 {
  7958. --bs-text-opacity: 0.75
  7959. }
  7960. .text-opacity-100 {
  7961. --bs-text-opacity: 1
  7962. }
  7963. .text-primary-emphasis {
  7964. color: var(--bs-primary-text-emphasis) !important
  7965. }
  7966. .text-secondary-emphasis {
  7967. color: var(--bs-secondary-text-emphasis) !important
  7968. }
  7969. .text-success-emphasis {
  7970. color: var(--bs-success-text-emphasis) !important
  7971. }
  7972. .text-info-emphasis {
  7973. color: var(--bs-info-text-emphasis) !important
  7974. }
  7975. .text-warning-emphasis {
  7976. color: var(--bs-warning-text-emphasis) !important
  7977. }
  7978. .text-danger-emphasis {
  7979. color: var(--bs-danger-text-emphasis) !important
  7980. }
  7981. .text-light-emphasis {
  7982. color: var(--bs-light-text-emphasis) !important
  7983. }
  7984. .text-dark-emphasis {
  7985. color: var(--bs-dark-text-emphasis) !important
  7986. }
  7987. .link-opacity-10 {
  7988. --bs-link-opacity: 0.1
  7989. }
  7990. .link-opacity-10-hover:hover {
  7991. --bs-link-opacity: 0.1
  7992. }
  7993. .link-opacity-25 {
  7994. --bs-link-opacity: 0.25
  7995. }
  7996. .link-opacity-25-hover:hover {
  7997. --bs-link-opacity: 0.25
  7998. }
  7999. .link-opacity-50 {
  8000. --bs-link-opacity: 0.5
  8001. }
  8002. .link-opacity-50-hover:hover {
  8003. --bs-link-opacity: 0.5
  8004. }
  8005. .link-opacity-75 {
  8006. --bs-link-opacity: 0.75
  8007. }
  8008. .link-opacity-75-hover:hover {
  8009. --bs-link-opacity: 0.75
  8010. }
  8011. .link-opacity-100 {
  8012. --bs-link-opacity: 1
  8013. }
  8014. .link-opacity-100-hover:hover {
  8015. --bs-link-opacity: 1
  8016. }
  8017. .link-offset-1 {
  8018. text-underline-offset: .125em !important
  8019. }
  8020. .link-offset-1-hover:hover {
  8021. text-underline-offset: .125em !important
  8022. }
  8023. .link-offset-2 {
  8024. text-underline-offset: .25em !important
  8025. }
  8026. .link-offset-2-hover:hover {
  8027. text-underline-offset: .25em !important
  8028. }
  8029. .link-offset-3 {
  8030. text-underline-offset: .375em !important
  8031. }
  8032. .link-offset-3-hover:hover {
  8033. text-underline-offset: .375em !important
  8034. }
  8035. .link-underline-primary {
  8036. --bs-link-underline-opacity: 1;
  8037. text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important
  8038. }
  8039. .link-underline-secondary {
  8040. --bs-link-underline-opacity: 1;
  8041. text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important
  8042. }
  8043. .link-underline-success {
  8044. --bs-link-underline-opacity: 1;
  8045. text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important
  8046. }
  8047. .link-underline-danger {
  8048. --bs-link-underline-opacity: 1;
  8049. text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important
  8050. }
  8051. .link-underline-warning {
  8052. --bs-link-underline-opacity: 1;
  8053. text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important
  8054. }
  8055. .link-underline-info {
  8056. --bs-link-underline-opacity: 1;
  8057. text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important
  8058. }
  8059. .link-underline {
  8060. --bs-link-underline-opacity: 1;
  8061. text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important
  8062. }
  8063. .link-underline-opacity-0 {
  8064. --bs-link-underline-opacity: 0
  8065. }
  8066. .link-underline-opacity-0-hover:hover {
  8067. --bs-link-underline-opacity: 0
  8068. }
  8069. .link-underline-opacity-10 {
  8070. --bs-link-underline-opacity: 0.1
  8071. }
  8072. .link-underline-opacity-10-hover:hover {
  8073. --bs-link-underline-opacity: 0.1
  8074. }
  8075. .link-underline-opacity-25 {
  8076. --bs-link-underline-opacity: 0.25
  8077. }
  8078. .link-underline-opacity-25-hover:hover {
  8079. --bs-link-underline-opacity: 0.25
  8080. }
  8081. .link-underline-opacity-50 {
  8082. --bs-link-underline-opacity: 0.5
  8083. }
  8084. .link-underline-opacity-50-hover:hover {
  8085. --bs-link-underline-opacity: 0.5
  8086. }
  8087. .link-underline-opacity-75 {
  8088. --bs-link-underline-opacity: 0.75
  8089. }
  8090. .link-underline-opacity-75-hover:hover {
  8091. --bs-link-underline-opacity: 0.75
  8092. }
  8093. .link-underline-opacity-100 {
  8094. --bs-link-underline-opacity: 1
  8095. }
  8096. .link-underline-opacity-100-hover:hover {
  8097. --bs-link-underline-opacity: 1
  8098. }
  8099. .bg-primary {
  8100. --bs-bg-opacity: 1;
  8101. background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important
  8102. }
  8103. .bg-secondary {
  8104. --bs-bg-opacity: 1;
  8105. background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important
  8106. }
  8107. .bg-success {
  8108. --bs-bg-opacity: 1;
  8109. background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important
  8110. }
  8111. .bg-danger {
  8112. --bs-bg-opacity: 1;
  8113. background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important
  8114. }
  8115. .bg-warning {
  8116. --bs-bg-opacity: 1;
  8117. background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important
  8118. }
  8119. .bg-info {
  8120. --bs-bg-opacity: 1;
  8121. background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important
  8122. }
  8123. .bg-black {
  8124. --bs-bg-opacity: 1;
  8125. background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important
  8126. }
  8127. .bg-white {
  8128. --bs-bg-opacity: 1;
  8129. background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important
  8130. }
  8131. .bg-body {
  8132. --bs-bg-opacity: 1;
  8133. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important
  8134. }
  8135. .bg-transparent {
  8136. --bs-bg-opacity: 1;
  8137. background-color: rgba(0, 0, 0, 0) !important
  8138. }
  8139. .bg-body-secondary {
  8140. --bs-bg-opacity: 1;
  8141. background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important
  8142. }
  8143. .bg-body-tertiary {
  8144. --bs-bg-opacity: 1;
  8145. background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important
  8146. }
  8147. .bg-opacity-10 {
  8148. --bs-bg-opacity: 0.1
  8149. }
  8150. .bg-opacity-25 {
  8151. --bs-bg-opacity: 0.25
  8152. }
  8153. .bg-opacity-50 {
  8154. --bs-bg-opacity: 0.5
  8155. }
  8156. .bg-opacity-75 {
  8157. --bs-bg-opacity: 0.75
  8158. }
  8159. .bg-opacity-100 {
  8160. --bs-bg-opacity: 1
  8161. }
  8162. .bg-primary-subtle {
  8163. background-color: var(--bs-primary-bg-subtle) !important
  8164. }
  8165. .bg-secondary-subtle {
  8166. background-color: var(--bs-secondary-bg-subtle) !important
  8167. }
  8168. .bg-success-subtle {
  8169. background-color: var(--bs-success-bg-subtle) !important
  8170. }
  8171. .bg-info-subtle {
  8172. background-color: var(--bs-info-bg-subtle) !important
  8173. }
  8174. .bg-warning-subtle {
  8175. background-color: var(--bs-warning-bg-subtle) !important
  8176. }
  8177. .bg-danger-subtle {
  8178. background-color: var(--bs-danger-bg-subtle) !important
  8179. }
  8180. .bg-light-subtle {
  8181. background-color: var(--bs-light-bg-subtle) !important
  8182. }
  8183. .bg-dark-subtle {
  8184. background-color: var(--bs-dark-bg-subtle) !important
  8185. }
  8186. .bg-gradient {
  8187. background-image: var(--bs-gradient) !important
  8188. }
  8189. .user-select-all {
  8190. -webkit-user-select: all !important;
  8191. -moz-user-select: all !important;
  8192. user-select: all !important
  8193. }
  8194. .user-select-auto {
  8195. -webkit-user-select: auto !important;
  8196. -moz-user-select: auto !important;
  8197. user-select: auto !important
  8198. }
  8199. .user-select-none {
  8200. -webkit-user-select: none !important;
  8201. -moz-user-select: none !important;
  8202. user-select: none !important
  8203. }
  8204. .pe-none {
  8205. pointer-events: none !important
  8206. }
  8207. .pe-auto {
  8208. pointer-events: auto !important
  8209. }
  8210. .rounded {
  8211. border-radius: var(--bs-border-radius) !important
  8212. }
  8213. .rounded-0 {
  8214. border-radius: 0 !important
  8215. }
  8216. .rounded-1 {
  8217. border-radius: var(--bs-border-radius-sm) !important
  8218. }
  8219. .rounded-2 {
  8220. border-radius: var(--bs-border-radius) !important
  8221. }
  8222. .rounded-3 {
  8223. border-radius: var(--bs-border-radius-lg) !important
  8224. }
  8225. .rounded-4 {
  8226. border-radius: var(--bs-border-radius-xl) !important
  8227. }
  8228. .rounded-5 {
  8229. border-radius: var(--bs-border-radius-xxl) !important
  8230. }
  8231. .rounded-circle {
  8232. border-radius: 50% !important
  8233. }
  8234. .rounded-pill {
  8235. border-radius: var(--bs-border-radius-pill) !important
  8236. }
  8237. .rounded-top {
  8238. border-top-left-radius: var(--bs-border-radius) !important;
  8239. border-top-right-radius: var(--bs-border-radius) !important
  8240. }
  8241. .rounded-top-0 {
  8242. border-top-left-radius: 0 !important;
  8243. border-top-right-radius: 0 !important
  8244. }
  8245. .rounded-top-1 {
  8246. border-top-left-radius: var(--bs-border-radius-sm) !important;
  8247. border-top-right-radius: var(--bs-border-radius-sm) !important
  8248. }
  8249. .rounded-top-2 {
  8250. border-top-left-radius: var(--bs-border-radius) !important;
  8251. border-top-right-radius: var(--bs-border-radius) !important
  8252. }
  8253. .rounded-top-3 {
  8254. border-top-left-radius: var(--bs-border-radius-lg) !important;
  8255. border-top-right-radius: var(--bs-border-radius-lg) !important
  8256. }
  8257. .rounded-top-4 {
  8258. border-top-left-radius: var(--bs-border-radius-xl) !important;
  8259. border-top-right-radius: var(--bs-border-radius-xl) !important
  8260. }
  8261. .rounded-top-5 {
  8262. border-top-left-radius: var(--bs-border-radius-xxl) !important;
  8263. border-top-right-radius: var(--bs-border-radius-xxl) !important
  8264. }
  8265. .rounded-top-circle {
  8266. border-top-left-radius: 50% !important;
  8267. border-top-right-radius: 50% !important
  8268. }
  8269. .rounded-top-pill {
  8270. border-top-left-radius: var(--bs-border-radius-pill) !important;
  8271. border-top-right-radius: var(--bs-border-radius-pill) !important
  8272. }
  8273. .rounded-end {
  8274. border-top-right-radius: var(--bs-border-radius) !important;
  8275. border-bottom-right-radius: var(--bs-border-radius) !important
  8276. }
  8277. .rounded-end-0 {
  8278. border-top-right-radius: 0 !important;
  8279. border-bottom-right-radius: 0 !important
  8280. }
  8281. .rounded-end-1 {
  8282. border-top-right-radius: var(--bs-border-radius-sm) !important;
  8283. border-bottom-right-radius: var(--bs-border-radius-sm) !important
  8284. }
  8285. .rounded-end-2 {
  8286. border-top-right-radius: var(--bs-border-radius) !important;
  8287. border-bottom-right-radius: var(--bs-border-radius) !important
  8288. }
  8289. .rounded-end-3 {
  8290. border-top-right-radius: var(--bs-border-radius-lg) !important;
  8291. border-bottom-right-radius: var(--bs-border-radius-lg) !important
  8292. }
  8293. .rounded-end-4 {
  8294. border-top-right-radius: var(--bs-border-radius-xl) !important;
  8295. border-bottom-right-radius: var(--bs-border-radius-xl) !important
  8296. }
  8297. .rounded-end-5 {
  8298. border-top-right-radius: var(--bs-border-radius-xxl) !important;
  8299. border-bottom-right-radius: var(--bs-border-radius-xxl) !important
  8300. }
  8301. .rounded-end-circle {
  8302. border-top-right-radius: 50% !important;
  8303. border-bottom-right-radius: 50% !important
  8304. }
  8305. .rounded-end-pill {
  8306. border-top-right-radius: var(--bs-border-radius-pill) !important;
  8307. border-bottom-right-radius: var(--bs-border-radius-pill) !important
  8308. }
  8309. .rounded-bottom {
  8310. border-bottom-right-radius: var(--bs-border-radius) !important;
  8311. border-bottom-left-radius: var(--bs-border-radius) !important
  8312. }
  8313. .rounded-bottom-0 {
  8314. border-bottom-right-radius: 0 !important;
  8315. border-bottom-left-radius: 0 !important
  8316. }
  8317. .rounded-bottom-1 {
  8318. border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  8319. border-bottom-left-radius: var(--bs-border-radius-sm) !important
  8320. }
  8321. .rounded-bottom-2 {
  8322. border-bottom-right-radius: var(--bs-border-radius) !important;
  8323. border-bottom-left-radius: var(--bs-border-radius) !important
  8324. }
  8325. .rounded-bottom-3 {
  8326. border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  8327. border-bottom-left-radius: var(--bs-border-radius-lg) !important
  8328. }
  8329. .rounded-bottom-4 {
  8330. border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  8331. border-bottom-left-radius: var(--bs-border-radius-xl) !important
  8332. }
  8333. .rounded-bottom-5 {
  8334. border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  8335. border-bottom-left-radius: var(--bs-border-radius-xxl) !important
  8336. }
  8337. .rounded-bottom-circle {
  8338. border-bottom-right-radius: 50% !important;
  8339. border-bottom-left-radius: 50% !important
  8340. }
  8341. .rounded-bottom-pill {
  8342. border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  8343. border-bottom-left-radius: var(--bs-border-radius-pill) !important
  8344. }
  8345. .rounded-start {
  8346. border-bottom-left-radius: var(--bs-border-radius) !important;
  8347. border-top-left-radius: var(--bs-border-radius) !important
  8348. }
  8349. .rounded-start-0 {
  8350. border-bottom-left-radius: 0 !important;
  8351. border-top-left-radius: 0 !important
  8352. }
  8353. .rounded-start-1 {
  8354. border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  8355. border-top-left-radius: var(--bs-border-radius-sm) !important
  8356. }
  8357. .rounded-start-2 {
  8358. border-bottom-left-radius: var(--bs-border-radius) !important;
  8359. border-top-left-radius: var(--bs-border-radius) !important
  8360. }
  8361. .rounded-start-3 {
  8362. border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  8363. border-top-left-radius: var(--bs-border-radius-lg) !important
  8364. }
  8365. .rounded-start-4 {
  8366. border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  8367. border-top-left-radius: var(--bs-border-radius-xl) !important
  8368. }
  8369. .rounded-start-5 {
  8370. border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  8371. border-top-left-radius: var(--bs-border-radius-xxl) !important
  8372. }
  8373. .rounded-start-circle {
  8374. border-bottom-left-radius: 50% !important;
  8375. border-top-left-radius: 50% !important
  8376. }
  8377. .rounded-start-pill {
  8378. border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  8379. border-top-left-radius: var(--bs-border-radius-pill) !important
  8380. }
  8381. .visible {
  8382. visibility: visible !important
  8383. }
  8384. .invisible {
  8385. visibility: hidden !important
  8386. }
  8387. .z-n1 {
  8388. z-index: -1 !important
  8389. }
  8390. .z-0 {
  8391. z-index: 0 !important
  8392. }
  8393. .z-1 {
  8394. z-index: 1 !important
  8395. }
  8396. .z-2 {
  8397. z-index: 2 !important
  8398. }
  8399. .z-3 {
  8400. z-index: 3 !important
  8401. }
  8402. @media(min-width: 576px) {
  8403. .float-sm-start {
  8404. float: left !important
  8405. }
  8406. .float-sm-end {
  8407. float: right !important
  8408. }
  8409. .float-sm-none {
  8410. float: none !important
  8411. }
  8412. .object-fit-sm-contain {
  8413. -o-object-fit: contain !important;
  8414. object-fit: contain !important
  8415. }
  8416. .object-fit-sm-cover {
  8417. -o-object-fit: cover !important;
  8418. object-fit: cover !important
  8419. }
  8420. .object-fit-sm-fill {
  8421. -o-object-fit: fill !important;
  8422. object-fit: fill !important
  8423. }
  8424. .object-fit-sm-scale {
  8425. -o-object-fit: scale-down !important;
  8426. object-fit: scale-down !important
  8427. }
  8428. .object-fit-sm-none {
  8429. -o-object-fit: none !important;
  8430. object-fit: none !important
  8431. }
  8432. .d-sm-inline {
  8433. display: inline !important
  8434. }
  8435. .d-sm-inline-block {
  8436. display: inline-block !important
  8437. }
  8438. .d-sm-block {
  8439. display: block !important
  8440. }
  8441. .d-sm-grid {
  8442. display: grid !important
  8443. }
  8444. .d-sm-inline-grid {
  8445. display: inline-grid !important
  8446. }
  8447. .d-sm-table {
  8448. display: table !important
  8449. }
  8450. .d-sm-table-row {
  8451. display: table-row !important
  8452. }
  8453. .d-sm-table-cell {
  8454. display: table-cell !important
  8455. }
  8456. .d-sm-flex {
  8457. display: flex !important
  8458. }
  8459. .d-sm-inline-flex {
  8460. display: inline-flex !important
  8461. }
  8462. .d-sm-none {
  8463. display: none !important
  8464. }
  8465. .flex-sm-fill {
  8466. flex: 1 1 auto !important
  8467. }
  8468. .flex-sm-row {
  8469. flex-direction: row !important
  8470. }
  8471. .flex-sm-column {
  8472. flex-direction: column !important
  8473. }
  8474. .flex-sm-row-reverse {
  8475. flex-direction: row-reverse !important
  8476. }
  8477. .flex-sm-column-reverse {
  8478. flex-direction: column-reverse !important
  8479. }
  8480. .flex-sm-grow-0 {
  8481. flex-grow: 0 !important
  8482. }
  8483. .flex-sm-grow-1 {
  8484. flex-grow: 1 !important
  8485. }
  8486. .flex-sm-shrink-0 {
  8487. flex-shrink: 0 !important
  8488. }
  8489. .flex-sm-shrink-1 {
  8490. flex-shrink: 1 !important
  8491. }
  8492. .flex-sm-wrap {
  8493. flex-wrap: wrap !important
  8494. }
  8495. .flex-sm-nowrap {
  8496. flex-wrap: nowrap !important
  8497. }
  8498. .flex-sm-wrap-reverse {
  8499. flex-wrap: wrap-reverse !important
  8500. }
  8501. .justify-content-sm-start {
  8502. justify-content: flex-start !important
  8503. }
  8504. .justify-content-sm-end {
  8505. justify-content: flex-end !important
  8506. }
  8507. .justify-content-sm-center {
  8508. justify-content: center !important
  8509. }
  8510. .justify-content-sm-between {
  8511. justify-content: space-between !important
  8512. }
  8513. .justify-content-sm-around {
  8514. justify-content: space-around !important
  8515. }
  8516. .justify-content-sm-evenly {
  8517. justify-content: space-evenly !important
  8518. }
  8519. .align-items-sm-start {
  8520. align-items: flex-start !important
  8521. }
  8522. .align-items-sm-end {
  8523. align-items: flex-end !important
  8524. }
  8525. .align-items-sm-center {
  8526. align-items: center !important
  8527. }
  8528. .align-items-sm-baseline {
  8529. align-items: baseline !important
  8530. }
  8531. .align-items-sm-stretch {
  8532. align-items: stretch !important
  8533. }
  8534. .align-content-sm-start {
  8535. align-content: flex-start !important
  8536. }
  8537. .align-content-sm-end {
  8538. align-content: flex-end !important
  8539. }
  8540. .align-content-sm-center {
  8541. align-content: center !important
  8542. }
  8543. .align-content-sm-between {
  8544. align-content: space-between !important
  8545. }
  8546. .align-content-sm-around {
  8547. align-content: space-around !important
  8548. }
  8549. .align-content-sm-stretch {
  8550. align-content: stretch !important
  8551. }
  8552. .align-self-sm-auto {
  8553. align-self: auto !important
  8554. }
  8555. .align-self-sm-start {
  8556. align-self: flex-start !important
  8557. }
  8558. .align-self-sm-end {
  8559. align-self: flex-end !important
  8560. }
  8561. .align-self-sm-center {
  8562. align-self: center !important
  8563. }
  8564. .align-self-sm-baseline {
  8565. align-self: baseline !important
  8566. }
  8567. .align-self-sm-stretch {
  8568. align-self: stretch !important
  8569. }
  8570. .order-sm-first {
  8571. order: -1 !important
  8572. }
  8573. .order-sm-0 {
  8574. order: 0 !important
  8575. }
  8576. .order-sm-1 {
  8577. order: 1 !important
  8578. }
  8579. .order-sm-2 {
  8580. order: 2 !important
  8581. }
  8582. .order-sm-3 {
  8583. order: 3 !important
  8584. }
  8585. .order-sm-4 {
  8586. order: 4 !important
  8587. }
  8588. .order-sm-5 {
  8589. order: 5 !important
  8590. }
  8591. .order-sm-last {
  8592. order: 6 !important
  8593. }
  8594. .m-sm-0 {
  8595. margin: 0 !important
  8596. }
  8597. .m-sm-1 {
  8598. margin: .25rem !important
  8599. }
  8600. .m-sm-2 {
  8601. margin: .5rem !important
  8602. }
  8603. .m-sm-3 {
  8604. margin: 1rem !important
  8605. }
  8606. .m-sm-4 {
  8607. margin: 1.5rem !important
  8608. }
  8609. .m-sm-5 {
  8610. margin: 3rem !important
  8611. }
  8612. .m-sm-auto {
  8613. margin: auto !important
  8614. }
  8615. .mx-sm-0 {
  8616. margin-right: 0 !important;
  8617. margin-left: 0 !important
  8618. }
  8619. .mx-sm-1 {
  8620. margin-right: .25rem !important;
  8621. margin-left: .25rem !important
  8622. }
  8623. .mx-sm-2 {
  8624. margin-right: .5rem !important;
  8625. margin-left: .5rem !important
  8626. }
  8627. .mx-sm-3 {
  8628. margin-right: 1rem !important;
  8629. margin-left: 1rem !important
  8630. }
  8631. .mx-sm-4 {
  8632. margin-right: 1.5rem !important;
  8633. margin-left: 1.5rem !important
  8634. }
  8635. .mx-sm-5 {
  8636. margin-right: 3rem !important;
  8637. margin-left: 3rem !important
  8638. }
  8639. .mx-sm-auto {
  8640. margin-right: auto !important;
  8641. margin-left: auto !important
  8642. }
  8643. .my-sm-0 {
  8644. margin-top: 0 !important;
  8645. margin-bottom: 0 !important
  8646. }
  8647. .my-sm-1 {
  8648. margin-top: .25rem !important;
  8649. margin-bottom: .25rem !important
  8650. }
  8651. .my-sm-2 {
  8652. margin-top: .5rem !important;
  8653. margin-bottom: .5rem !important
  8654. }
  8655. .my-sm-3 {
  8656. margin-top: 1rem !important;
  8657. margin-bottom: 1rem !important
  8658. }
  8659. .my-sm-4 {
  8660. margin-top: 1.5rem !important;
  8661. margin-bottom: 1.5rem !important
  8662. }
  8663. .my-sm-5 {
  8664. margin-top: 3rem !important;
  8665. margin-bottom: 3rem !important
  8666. }
  8667. .my-sm-auto {
  8668. margin-top: auto !important;
  8669. margin-bottom: auto !important
  8670. }
  8671. .mt-sm-0 {
  8672. margin-top: 0 !important
  8673. }
  8674. .mt-sm-1 {
  8675. margin-top: .25rem !important
  8676. }
  8677. .mt-sm-2 {
  8678. margin-top: .5rem !important
  8679. }
  8680. .mt-sm-3 {
  8681. margin-top: 1rem !important
  8682. }
  8683. .mt-sm-4 {
  8684. margin-top: 1.5rem !important
  8685. }
  8686. .mt-sm-5 {
  8687. margin-top: 3rem !important
  8688. }
  8689. .mt-sm-auto {
  8690. margin-top: auto !important
  8691. }
  8692. .me-sm-0 {
  8693. margin-right: 0 !important
  8694. }
  8695. .me-sm-1 {
  8696. margin-right: .25rem !important
  8697. }
  8698. .me-sm-2 {
  8699. margin-right: .5rem !important
  8700. }
  8701. .me-sm-3 {
  8702. margin-right: 1rem !important
  8703. }
  8704. .me-sm-4 {
  8705. margin-right: 1.5rem !important
  8706. }
  8707. .me-sm-5 {
  8708. margin-right: 3rem !important
  8709. }
  8710. .me-sm-auto {
  8711. margin-right: auto !important
  8712. }
  8713. .mb-sm-0 {
  8714. margin-bottom: 0 !important
  8715. }
  8716. .mb-sm-1 {
  8717. margin-bottom: .25rem !important
  8718. }
  8719. .mb-sm-2 {
  8720. margin-bottom: .5rem !important
  8721. }
  8722. .mb-sm-3 {
  8723. margin-bottom: 1rem !important
  8724. }
  8725. .mb-sm-4 {
  8726. margin-bottom: 1.5rem !important
  8727. }
  8728. .mb-sm-5 {
  8729. margin-bottom: 3rem !important
  8730. }
  8731. .mb-sm-auto {
  8732. margin-bottom: auto !important
  8733. }
  8734. .ms-sm-0 {
  8735. margin-left: 0 !important
  8736. }
  8737. .ms-sm-1 {
  8738. margin-left: .25rem !important
  8739. }
  8740. .ms-sm-2 {
  8741. margin-left: .5rem !important
  8742. }
  8743. .ms-sm-3 {
  8744. margin-left: 1rem !important
  8745. }
  8746. .ms-sm-4 {
  8747. margin-left: 1.5rem !important
  8748. }
  8749. .ms-sm-5 {
  8750. margin-left: 3rem !important
  8751. }
  8752. .ms-sm-auto {
  8753. margin-left: auto !important
  8754. }
  8755. .p-sm-0 {
  8756. padding: 0 !important
  8757. }
  8758. .p-sm-1 {
  8759. padding: .25rem !important
  8760. }
  8761. .p-sm-2 {
  8762. padding: .5rem !important
  8763. }
  8764. .p-sm-3 {
  8765. padding: 1rem !important
  8766. }
  8767. .p-sm-4 {
  8768. padding: 1.5rem !important
  8769. }
  8770. .p-sm-5 {
  8771. padding: 3rem !important
  8772. }
  8773. .px-sm-0 {
  8774. padding-right: 0 !important;
  8775. padding-left: 0 !important
  8776. }
  8777. .px-sm-1 {
  8778. padding-right: .25rem !important;
  8779. padding-left: .25rem !important
  8780. }
  8781. .px-sm-2 {
  8782. padding-right: .5rem !important;
  8783. padding-left: .5rem !important
  8784. }
  8785. .px-sm-3 {
  8786. padding-right: 1rem !important;
  8787. padding-left: 1rem !important
  8788. }
  8789. .px-sm-4 {
  8790. padding-right: 1.5rem !important;
  8791. padding-left: 1.5rem !important
  8792. }
  8793. .px-sm-5 {
  8794. padding-right: 3rem !important;
  8795. padding-left: 3rem !important
  8796. }
  8797. .py-sm-0 {
  8798. padding-top: 0 !important;
  8799. padding-bottom: 0 !important
  8800. }
  8801. .py-sm-1 {
  8802. padding-top: .25rem !important;
  8803. padding-bottom: .25rem !important
  8804. }
  8805. .py-sm-2 {
  8806. padding-top: .5rem !important;
  8807. padding-bottom: .5rem !important
  8808. }
  8809. .py-sm-3 {
  8810. padding-top: 1rem !important;
  8811. padding-bottom: 1rem !important
  8812. }
  8813. .py-sm-4 {
  8814. padding-top: 1.5rem !important;
  8815. padding-bottom: 1.5rem !important
  8816. }
  8817. .py-sm-5 {
  8818. padding-top: 3rem !important;
  8819. padding-bottom: 3rem !important
  8820. }
  8821. .pt-sm-0 {
  8822. padding-top: 0 !important
  8823. }
  8824. .pt-sm-1 {
  8825. padding-top: .25rem !important
  8826. }
  8827. .pt-sm-2 {
  8828. padding-top: .5rem !important
  8829. }
  8830. .pt-sm-3 {
  8831. padding-top: 1rem !important
  8832. }
  8833. .pt-sm-4 {
  8834. padding-top: 1.5rem !important
  8835. }
  8836. .pt-sm-5 {
  8837. padding-top: 3rem !important
  8838. }
  8839. .pe-sm-0 {
  8840. padding-right: 0 !important
  8841. }
  8842. .pe-sm-1 {
  8843. padding-right: .25rem !important
  8844. }
  8845. .pe-sm-2 {
  8846. padding-right: .5rem !important
  8847. }
  8848. .pe-sm-3 {
  8849. padding-right: 1rem !important
  8850. }
  8851. .pe-sm-4 {
  8852. padding-right: 1.5rem !important
  8853. }
  8854. .pe-sm-5 {
  8855. padding-right: 3rem !important
  8856. }
  8857. .pb-sm-0 {
  8858. padding-bottom: 0 !important
  8859. }
  8860. .pb-sm-1 {
  8861. padding-bottom: .25rem !important
  8862. }
  8863. .pb-sm-2 {
  8864. padding-bottom: .5rem !important
  8865. }
  8866. .pb-sm-3 {
  8867. padding-bottom: 1rem !important
  8868. }
  8869. .pb-sm-4 {
  8870. padding-bottom: 1.5rem !important
  8871. }
  8872. .pb-sm-5 {
  8873. padding-bottom: 3rem !important
  8874. }
  8875. .ps-sm-0 {
  8876. padding-left: 0 !important
  8877. }
  8878. .ps-sm-1 {
  8879. padding-left: .25rem !important
  8880. }
  8881. .ps-sm-2 {
  8882. padding-left: .5rem !important
  8883. }
  8884. .ps-sm-3 {
  8885. padding-left: 1rem !important
  8886. }
  8887. .ps-sm-4 {
  8888. padding-left: 1.5rem !important
  8889. }
  8890. .ps-sm-5 {
  8891. padding-left: 3rem !important
  8892. }
  8893. .gap-sm-0 {
  8894. gap: 0 !important
  8895. }
  8896. .gap-sm-1 {
  8897. gap: .25rem !important
  8898. }
  8899. .gap-sm-2 {
  8900. gap: .5rem !important
  8901. }
  8902. .gap-sm-3 {
  8903. gap: 1rem !important
  8904. }
  8905. .gap-sm-4 {
  8906. gap: 1.5rem !important
  8907. }
  8908. .gap-sm-5 {
  8909. gap: 3rem !important
  8910. }
  8911. .row-gap-sm-0 {
  8912. row-gap: 0 !important
  8913. }
  8914. .row-gap-sm-1 {
  8915. row-gap: .25rem !important
  8916. }
  8917. .row-gap-sm-2 {
  8918. row-gap: .5rem !important
  8919. }
  8920. .row-gap-sm-3 {
  8921. row-gap: 1rem !important
  8922. }
  8923. .row-gap-sm-4 {
  8924. row-gap: 1.5rem !important
  8925. }
  8926. .row-gap-sm-5 {
  8927. row-gap: 3rem !important
  8928. }
  8929. .column-gap-sm-0 {
  8930. -webkit-column-gap: 0 !important;
  8931. -moz-column-gap: 0 !important;
  8932. column-gap: 0 !important
  8933. }
  8934. .column-gap-sm-1 {
  8935. -webkit-column-gap: .25rem !important;
  8936. -moz-column-gap: .25rem !important;
  8937. column-gap: .25rem !important
  8938. }
  8939. .column-gap-sm-2 {
  8940. -webkit-column-gap: .5rem !important;
  8941. -moz-column-gap: .5rem !important;
  8942. column-gap: .5rem !important
  8943. }
  8944. .column-gap-sm-3 {
  8945. -webkit-column-gap: 1rem !important;
  8946. -moz-column-gap: 1rem !important;
  8947. column-gap: 1rem !important
  8948. }
  8949. .column-gap-sm-4 {
  8950. -webkit-column-gap: 1.5rem !important;
  8951. -moz-column-gap: 1.5rem !important;
  8952. column-gap: 1.5rem !important
  8953. }
  8954. .column-gap-sm-5 {
  8955. -webkit-column-gap: 3rem !important;
  8956. -moz-column-gap: 3rem !important;
  8957. column-gap: 3rem !important
  8958. }
  8959. .text-sm-start {
  8960. text-align: left !important
  8961. }
  8962. .text-sm-end {
  8963. text-align: right !important
  8964. }
  8965. .text-sm-center {
  8966. text-align: center !important
  8967. }
  8968. }
  8969. @media(min-width: 768px) {
  8970. .float-md-start {
  8971. float: left !important
  8972. }
  8973. .float-md-end {
  8974. float: right !important
  8975. }
  8976. .float-md-none {
  8977. float: none !important
  8978. }
  8979. .object-fit-md-contain {
  8980. -o-object-fit: contain !important;
  8981. object-fit: contain !important
  8982. }
  8983. .object-fit-md-cover {
  8984. -o-object-fit: cover !important;
  8985. object-fit: cover !important
  8986. }
  8987. .object-fit-md-fill {
  8988. -o-object-fit: fill !important;
  8989. object-fit: fill !important
  8990. }
  8991. .object-fit-md-scale {
  8992. -o-object-fit: scale-down !important;
  8993. object-fit: scale-down !important
  8994. }
  8995. .object-fit-md-none {
  8996. -o-object-fit: none !important;
  8997. object-fit: none !important
  8998. }
  8999. .d-md-inline {
  9000. display: inline !important
  9001. }
  9002. .d-md-inline-block {
  9003. display: inline-block !important
  9004. }
  9005. .d-md-block {
  9006. display: block !important
  9007. }
  9008. .d-md-grid {
  9009. display: grid !important
  9010. }
  9011. .d-md-inline-grid {
  9012. display: inline-grid !important
  9013. }
  9014. .d-md-table {
  9015. display: table !important
  9016. }
  9017. .d-md-table-row {
  9018. display: table-row !important
  9019. }
  9020. .d-md-table-cell {
  9021. display: table-cell !important
  9022. }
  9023. .d-md-flex {
  9024. display: flex !important
  9025. }
  9026. .d-md-inline-flex {
  9027. display: inline-flex !important
  9028. }
  9029. .d-md-none {
  9030. display: none !important
  9031. }
  9032. .flex-md-fill {
  9033. flex: 1 1 auto !important
  9034. }
  9035. .flex-md-row {
  9036. flex-direction: row !important
  9037. }
  9038. .flex-md-column {
  9039. flex-direction: column !important
  9040. }
  9041. .flex-md-row-reverse {
  9042. flex-direction: row-reverse !important
  9043. }
  9044. .flex-md-column-reverse {
  9045. flex-direction: column-reverse !important
  9046. }
  9047. .flex-md-grow-0 {
  9048. flex-grow: 0 !important
  9049. }
  9050. .flex-md-grow-1 {
  9051. flex-grow: 1 !important
  9052. }
  9053. .flex-md-shrink-0 {
  9054. flex-shrink: 0 !important
  9055. }
  9056. .flex-md-shrink-1 {
  9057. flex-shrink: 1 !important
  9058. }
  9059. .flex-md-wrap {
  9060. flex-wrap: wrap !important
  9061. }
  9062. .flex-md-nowrap {
  9063. flex-wrap: nowrap !important
  9064. }
  9065. .flex-md-wrap-reverse {
  9066. flex-wrap: wrap-reverse !important
  9067. }
  9068. .justify-content-md-start {
  9069. justify-content: flex-start !important
  9070. }
  9071. .justify-content-md-end {
  9072. justify-content: flex-end !important
  9073. }
  9074. .justify-content-md-center {
  9075. justify-content: center !important
  9076. }
  9077. .justify-content-md-between {
  9078. justify-content: space-between !important
  9079. }
  9080. .justify-content-md-around {
  9081. justify-content: space-around !important
  9082. }
  9083. .justify-content-md-evenly {
  9084. justify-content: space-evenly !important
  9085. }
  9086. .align-items-md-start {
  9087. align-items: flex-start !important
  9088. }
  9089. .align-items-md-end {
  9090. align-items: flex-end !important
  9091. }
  9092. .align-items-md-center {
  9093. align-items: center !important
  9094. }
  9095. .align-items-md-baseline {
  9096. align-items: baseline !important
  9097. }
  9098. .align-items-md-stretch {
  9099. align-items: stretch !important
  9100. }
  9101. .align-content-md-start {
  9102. align-content: flex-start !important
  9103. }
  9104. .align-content-md-end {
  9105. align-content: flex-end !important
  9106. }
  9107. .align-content-md-center {
  9108. align-content: center !important
  9109. }
  9110. .align-content-md-between {
  9111. align-content: space-between !important
  9112. }
  9113. .align-content-md-around {
  9114. align-content: space-around !important
  9115. }
  9116. .align-content-md-stretch {
  9117. align-content: stretch !important
  9118. }
  9119. .align-self-md-auto {
  9120. align-self: auto !important
  9121. }
  9122. .align-self-md-start {
  9123. align-self: flex-start !important
  9124. }
  9125. .align-self-md-end {
  9126. align-self: flex-end !important
  9127. }
  9128. .align-self-md-center {
  9129. align-self: center !important
  9130. }
  9131. .align-self-md-baseline {
  9132. align-self: baseline !important
  9133. }
  9134. .align-self-md-stretch {
  9135. align-self: stretch !important
  9136. }
  9137. .order-md-first {
  9138. order: -1 !important
  9139. }
  9140. .order-md-0 {
  9141. order: 0 !important
  9142. }
  9143. .order-md-1 {
  9144. order: 1 !important
  9145. }
  9146. .order-md-2 {
  9147. order: 2 !important
  9148. }
  9149. .order-md-3 {
  9150. order: 3 !important
  9151. }
  9152. .order-md-4 {
  9153. order: 4 !important
  9154. }
  9155. .order-md-5 {
  9156. order: 5 !important
  9157. }
  9158. .order-md-last {
  9159. order: 6 !important
  9160. }
  9161. .m-md-0 {
  9162. margin: 0 !important
  9163. }
  9164. .m-md-1 {
  9165. margin: .25rem !important
  9166. }
  9167. .m-md-2 {
  9168. margin: .5rem !important
  9169. }
  9170. .m-md-3 {
  9171. margin: 1rem !important
  9172. }
  9173. .m-md-4 {
  9174. margin: 1.5rem !important
  9175. }
  9176. .m-md-5 {
  9177. margin: 3rem !important
  9178. }
  9179. .m-md-auto {
  9180. margin: auto !important
  9181. }
  9182. .mx-md-0 {
  9183. margin-right: 0 !important;
  9184. margin-left: 0 !important
  9185. }
  9186. .mx-md-1 {
  9187. margin-right: .25rem !important;
  9188. margin-left: .25rem !important
  9189. }
  9190. .mx-md-2 {
  9191. margin-right: .5rem !important;
  9192. margin-left: .5rem !important
  9193. }
  9194. .mx-md-3 {
  9195. margin-right: 1rem !important;
  9196. margin-left: 1rem !important
  9197. }
  9198. .mx-md-4 {
  9199. margin-right: 1.5rem !important;
  9200. margin-left: 1.5rem !important
  9201. }
  9202. .mx-md-5 {
  9203. margin-right: 3rem !important;
  9204. margin-left: 3rem !important
  9205. }
  9206. .mx-md-auto {
  9207. margin-right: auto !important;
  9208. margin-left: auto !important
  9209. }
  9210. .my-md-0 {
  9211. margin-top: 0 !important;
  9212. margin-bottom: 0 !important
  9213. }
  9214. .my-md-1 {
  9215. margin-top: .25rem !important;
  9216. margin-bottom: .25rem !important
  9217. }
  9218. .my-md-2 {
  9219. margin-top: .5rem !important;
  9220. margin-bottom: .5rem !important
  9221. }
  9222. .my-md-3 {
  9223. margin-top: 1rem !important;
  9224. margin-bottom: 1rem !important
  9225. }
  9226. .my-md-4 {
  9227. margin-top: 1.5rem !important;
  9228. margin-bottom: 1.5rem !important
  9229. }
  9230. .my-md-5 {
  9231. margin-top: 3rem !important;
  9232. margin-bottom: 3rem !important
  9233. }
  9234. .my-md-auto {
  9235. margin-top: auto !important;
  9236. margin-bottom: auto !important
  9237. }
  9238. .mt-md-0 {
  9239. margin-top: 0 !important
  9240. }
  9241. .mt-md-1 {
  9242. margin-top: .25rem !important
  9243. }
  9244. .mt-md-2 {
  9245. margin-top: .5rem !important
  9246. }
  9247. .mt-md-3 {
  9248. margin-top: 1rem !important
  9249. }
  9250. .mt-md-4 {
  9251. margin-top: 1.5rem !important
  9252. }
  9253. .mt-md-5 {
  9254. margin-top: 3rem !important
  9255. }
  9256. .mt-md-auto {
  9257. margin-top: auto !important
  9258. }
  9259. .me-md-0 {
  9260. margin-right: 0 !important
  9261. }
  9262. .me-md-1 {
  9263. margin-right: .25rem !important
  9264. }
  9265. .me-md-2 {
  9266. margin-right: .5rem !important
  9267. }
  9268. .me-md-3 {
  9269. margin-right: 1rem !important
  9270. }
  9271. .me-md-4 {
  9272. margin-right: 1.5rem !important
  9273. }
  9274. .me-md-5 {
  9275. margin-right: 3rem !important
  9276. }
  9277. .me-md-auto {
  9278. margin-right: auto !important
  9279. }
  9280. .mb-md-0 {
  9281. margin-bottom: 0 !important
  9282. }
  9283. .mb-md-1 {
  9284. margin-bottom: .25rem !important
  9285. }
  9286. .mb-md-2 {
  9287. margin-bottom: .5rem !important
  9288. }
  9289. .mb-md-3 {
  9290. margin-bottom: 1rem !important
  9291. }
  9292. .mb-md-4 {
  9293. margin-bottom: 1.5rem !important
  9294. }
  9295. .mb-md-5 {
  9296. margin-bottom: 3rem !important
  9297. }
  9298. .mb-md-auto {
  9299. margin-bottom: auto !important
  9300. }
  9301. .ms-md-0 {
  9302. margin-left: 0 !important
  9303. }
  9304. .ms-md-1 {
  9305. margin-left: .25rem !important
  9306. }
  9307. .ms-md-2 {
  9308. margin-left: .5rem !important
  9309. }
  9310. .ms-md-3 {
  9311. margin-left: 1rem !important
  9312. }
  9313. .ms-md-4 {
  9314. margin-left: 1.5rem !important
  9315. }
  9316. .ms-md-5 {
  9317. margin-left: 3rem !important
  9318. }
  9319. .ms-md-auto {
  9320. margin-left: auto !important
  9321. }
  9322. .p-md-0 {
  9323. padding: 0 !important
  9324. }
  9325. .p-md-1 {
  9326. padding: .25rem !important
  9327. }
  9328. .p-md-2 {
  9329. padding: .5rem !important
  9330. }
  9331. .p-md-3 {
  9332. padding: 1rem !important
  9333. }
  9334. .p-md-4 {
  9335. padding: 1.5rem !important
  9336. }
  9337. .p-md-5 {
  9338. padding: 3rem !important
  9339. }
  9340. .px-md-0 {
  9341. padding-right: 0 !important;
  9342. padding-left: 0 !important
  9343. }
  9344. .px-md-1 {
  9345. padding-right: .25rem !important;
  9346. padding-left: .25rem !important
  9347. }
  9348. .px-md-2 {
  9349. padding-right: .5rem !important;
  9350. padding-left: .5rem !important
  9351. }
  9352. .px-md-3 {
  9353. padding-right: 1rem !important;
  9354. padding-left: 1rem !important
  9355. }
  9356. .px-md-4 {
  9357. padding-right: 1.5rem !important;
  9358. padding-left: 1.5rem !important
  9359. }
  9360. .px-md-5 {
  9361. padding-right: 3rem !important;
  9362. padding-left: 3rem !important
  9363. }
  9364. .py-md-0 {
  9365. padding-top: 0 !important;
  9366. padding-bottom: 0 !important
  9367. }
  9368. .py-md-1 {
  9369. padding-top: .25rem !important;
  9370. padding-bottom: .25rem !important
  9371. }
  9372. .py-md-2 {
  9373. padding-top: .5rem !important;
  9374. padding-bottom: .5rem !important
  9375. }
  9376. .py-md-3 {
  9377. padding-top: 1rem !important;
  9378. padding-bottom: 1rem !important
  9379. }
  9380. .py-md-4 {
  9381. padding-top: 1.5rem !important;
  9382. padding-bottom: 1.5rem !important
  9383. }
  9384. .py-md-5 {
  9385. padding-top: 3rem !important;
  9386. padding-bottom: 3rem !important
  9387. }
  9388. .pt-md-0 {
  9389. padding-top: 0 !important
  9390. }
  9391. .pt-md-1 {
  9392. padding-top: .25rem !important
  9393. }
  9394. .pt-md-2 {
  9395. padding-top: .5rem !important
  9396. }
  9397. .pt-md-3 {
  9398. padding-top: 1rem !important
  9399. }
  9400. .pt-md-4 {
  9401. padding-top: 1.5rem !important
  9402. }
  9403. .pt-md-5 {
  9404. padding-top: 3rem !important
  9405. }
  9406. .pe-md-0 {
  9407. padding-right: 0 !important
  9408. }
  9409. .pe-md-1 {
  9410. padding-right: .25rem !important
  9411. }
  9412. .pe-md-2 {
  9413. padding-right: .5rem !important
  9414. }
  9415. .pe-md-3 {
  9416. padding-right: 1rem !important
  9417. }
  9418. .pe-md-4 {
  9419. padding-right: 1.5rem !important
  9420. }
  9421. .pe-md-5 {
  9422. padding-right: 3rem !important
  9423. }
  9424. .pb-md-0 {
  9425. padding-bottom: 0 !important
  9426. }
  9427. .pb-md-1 {
  9428. padding-bottom: .25rem !important
  9429. }
  9430. .pb-md-2 {
  9431. padding-bottom: .5rem !important
  9432. }
  9433. .pb-md-3 {
  9434. padding-bottom: 1rem !important
  9435. }
  9436. .pb-md-4 {
  9437. padding-bottom: 1.5rem !important
  9438. }
  9439. .pb-md-5 {
  9440. padding-bottom: 3rem !important
  9441. }
  9442. .ps-md-0 {
  9443. padding-left: 0 !important
  9444. }
  9445. .ps-md-1 {
  9446. padding-left: .25rem !important
  9447. }
  9448. .ps-md-2 {
  9449. padding-left: .5rem !important
  9450. }
  9451. .ps-md-3 {
  9452. padding-left: 1rem !important
  9453. }
  9454. .ps-md-4 {
  9455. padding-left: 1.5rem !important
  9456. }
  9457. .ps-md-5 {
  9458. padding-left: 3rem !important
  9459. }
  9460. .gap-md-0 {
  9461. gap: 0 !important
  9462. }
  9463. .gap-md-1 {
  9464. gap: .25rem !important
  9465. }
  9466. .gap-md-2 {
  9467. gap: .5rem !important
  9468. }
  9469. .gap-md-3 {
  9470. gap: 1rem !important
  9471. }
  9472. .gap-md-4 {
  9473. gap: 1.5rem !important
  9474. }
  9475. .gap-md-5 {
  9476. gap: 3rem !important
  9477. }
  9478. .row-gap-md-0 {
  9479. row-gap: 0 !important
  9480. }
  9481. .row-gap-md-1 {
  9482. row-gap: .25rem !important
  9483. }
  9484. .row-gap-md-2 {
  9485. row-gap: .5rem !important
  9486. }
  9487. .row-gap-md-3 {
  9488. row-gap: 1rem !important
  9489. }
  9490. .row-gap-md-4 {
  9491. row-gap: 1.5rem !important
  9492. }
  9493. .row-gap-md-5 {
  9494. row-gap: 3rem !important
  9495. }
  9496. .column-gap-md-0 {
  9497. -webkit-column-gap: 0 !important;
  9498. -moz-column-gap: 0 !important;
  9499. column-gap: 0 !important
  9500. }
  9501. .column-gap-md-1 {
  9502. -webkit-column-gap: .25rem !important;
  9503. -moz-column-gap: .25rem !important;
  9504. column-gap: .25rem !important
  9505. }
  9506. .column-gap-md-2 {
  9507. -webkit-column-gap: .5rem !important;
  9508. -moz-column-gap: .5rem !important;
  9509. column-gap: .5rem !important
  9510. }
  9511. .column-gap-md-3 {
  9512. -webkit-column-gap: 1rem !important;
  9513. -moz-column-gap: 1rem !important;
  9514. column-gap: 1rem !important
  9515. }
  9516. .column-gap-md-4 {
  9517. -webkit-column-gap: 1.5rem !important;
  9518. -moz-column-gap: 1.5rem !important;
  9519. column-gap: 1.5rem !important
  9520. }
  9521. .column-gap-md-5 {
  9522. -webkit-column-gap: 3rem !important;
  9523. -moz-column-gap: 3rem !important;
  9524. column-gap: 3rem !important
  9525. }
  9526. .text-md-start {
  9527. text-align: left !important
  9528. }
  9529. .text-md-end {
  9530. text-align: right !important
  9531. }
  9532. .text-md-center {
  9533. text-align: center !important
  9534. }
  9535. }
  9536. @media(min-width: 992px) {
  9537. .float-lg-start {
  9538. float: left !important
  9539. }
  9540. .float-lg-end {
  9541. float: right !important
  9542. }
  9543. .float-lg-none {
  9544. float: none !important
  9545. }
  9546. .object-fit-lg-contain {
  9547. -o-object-fit: contain !important;
  9548. object-fit: contain !important
  9549. }
  9550. .object-fit-lg-cover {
  9551. -o-object-fit: cover !important;
  9552. object-fit: cover !important
  9553. }
  9554. .object-fit-lg-fill {
  9555. -o-object-fit: fill !important;
  9556. object-fit: fill !important
  9557. }
  9558. .object-fit-lg-scale {
  9559. -o-object-fit: scale-down !important;
  9560. object-fit: scale-down !important
  9561. }
  9562. .object-fit-lg-none {
  9563. -o-object-fit: none !important;
  9564. object-fit: none !important
  9565. }
  9566. .d-lg-inline {
  9567. display: inline !important
  9568. }
  9569. .d-lg-inline-block {
  9570. display: inline-block !important
  9571. }
  9572. .d-lg-block {
  9573. display: block !important
  9574. }
  9575. .d-lg-grid {
  9576. display: grid !important
  9577. }
  9578. .d-lg-inline-grid {
  9579. display: inline-grid !important
  9580. }
  9581. .d-lg-table {
  9582. display: table !important
  9583. }
  9584. .d-lg-table-row {
  9585. display: table-row !important
  9586. }
  9587. .d-lg-table-cell {
  9588. display: table-cell !important
  9589. }
  9590. .d-lg-flex {
  9591. display: flex !important
  9592. }
  9593. .d-lg-inline-flex {
  9594. display: inline-flex !important
  9595. }
  9596. .d-lg-none {
  9597. display: none !important
  9598. }
  9599. .flex-lg-fill {
  9600. flex: 1 1 auto !important
  9601. }
  9602. .flex-lg-row {
  9603. flex-direction: row !important
  9604. }
  9605. .flex-lg-column {
  9606. flex-direction: column !important
  9607. }
  9608. .flex-lg-row-reverse {
  9609. flex-direction: row-reverse !important
  9610. }
  9611. .flex-lg-column-reverse {
  9612. flex-direction: column-reverse !important
  9613. }
  9614. .flex-lg-grow-0 {
  9615. flex-grow: 0 !important
  9616. }
  9617. .flex-lg-grow-1 {
  9618. flex-grow: 1 !important
  9619. }
  9620. .flex-lg-shrink-0 {
  9621. flex-shrink: 0 !important
  9622. }
  9623. .flex-lg-shrink-1 {
  9624. flex-shrink: 1 !important
  9625. }
  9626. .flex-lg-wrap {
  9627. flex-wrap: wrap !important
  9628. }
  9629. .flex-lg-nowrap {
  9630. flex-wrap: nowrap !important
  9631. }
  9632. .flex-lg-wrap-reverse {
  9633. flex-wrap: wrap-reverse !important
  9634. }
  9635. .justify-content-lg-start {
  9636. justify-content: flex-start !important
  9637. }
  9638. .justify-content-lg-end {
  9639. justify-content: flex-end !important
  9640. }
  9641. .justify-content-lg-center {
  9642. justify-content: center !important
  9643. }
  9644. .justify-content-lg-between {
  9645. justify-content: space-between !important
  9646. }
  9647. .justify-content-lg-around {
  9648. justify-content: space-around !important
  9649. }
  9650. .justify-content-lg-evenly {
  9651. justify-content: space-evenly !important
  9652. }
  9653. .align-items-lg-start {
  9654. align-items: flex-start !important
  9655. }
  9656. .align-items-lg-end {
  9657. align-items: flex-end !important
  9658. }
  9659. .align-items-lg-center {
  9660. align-items: center !important
  9661. }
  9662. .align-items-lg-baseline {
  9663. align-items: baseline !important
  9664. }
  9665. .align-items-lg-stretch {
  9666. align-items: stretch !important
  9667. }
  9668. .align-content-lg-start {
  9669. align-content: flex-start !important
  9670. }
  9671. .align-content-lg-end {
  9672. align-content: flex-end !important
  9673. }
  9674. .align-content-lg-center {
  9675. align-content: center !important
  9676. }
  9677. .align-content-lg-between {
  9678. align-content: space-between !important
  9679. }
  9680. .align-content-lg-around {
  9681. align-content: space-around !important
  9682. }
  9683. .align-content-lg-stretch {
  9684. align-content: stretch !important
  9685. }
  9686. .align-self-lg-auto {
  9687. align-self: auto !important
  9688. }
  9689. .align-self-lg-start {
  9690. align-self: flex-start !important
  9691. }
  9692. .align-self-lg-end {
  9693. align-self: flex-end !important
  9694. }
  9695. .align-self-lg-center {
  9696. align-self: center !important
  9697. }
  9698. .align-self-lg-baseline {
  9699. align-self: baseline !important
  9700. }
  9701. .align-self-lg-stretch {
  9702. align-self: stretch !important
  9703. }
  9704. .order-lg-first {
  9705. order: -1 !important
  9706. }
  9707. .order-lg-0 {
  9708. order: 0 !important
  9709. }
  9710. .order-lg-1 {
  9711. order: 1 !important
  9712. }
  9713. .order-lg-2 {
  9714. order: 2 !important
  9715. }
  9716. .order-lg-3 {
  9717. order: 3 !important
  9718. }
  9719. .order-lg-4 {
  9720. order: 4 !important
  9721. }
  9722. .order-lg-5 {
  9723. order: 5 !important
  9724. }
  9725. .order-lg-last {
  9726. order: 6 !important
  9727. }
  9728. .m-lg-0 {
  9729. margin: 0 !important
  9730. }
  9731. .m-lg-1 {
  9732. margin: .25rem !important
  9733. }
  9734. .m-lg-2 {
  9735. margin: .5rem !important
  9736. }
  9737. .m-lg-3 {
  9738. margin: 1rem !important
  9739. }
  9740. .m-lg-4 {
  9741. margin: 1.5rem !important
  9742. }
  9743. .m-lg-5 {
  9744. margin: 3rem !important
  9745. }
  9746. .m-lg-auto {
  9747. margin: auto !important
  9748. }
  9749. .mx-lg-0 {
  9750. margin-right: 0 !important;
  9751. margin-left: 0 !important
  9752. }
  9753. .mx-lg-1 {
  9754. margin-right: .25rem !important;
  9755. margin-left: .25rem !important
  9756. }
  9757. .mx-lg-2 {
  9758. margin-right: .5rem !important;
  9759. margin-left: .5rem !important
  9760. }
  9761. .mx-lg-3 {
  9762. margin-right: 1rem !important;
  9763. margin-left: 1rem !important
  9764. }
  9765. .mx-lg-4 {
  9766. margin-right: 1.5rem !important;
  9767. margin-left: 1.5rem !important
  9768. }
  9769. .mx-lg-5 {
  9770. margin-right: 3rem !important;
  9771. margin-left: 3rem !important
  9772. }
  9773. .mx-lg-auto {
  9774. margin-right: auto !important;
  9775. margin-left: auto !important
  9776. }
  9777. .my-lg-0 {
  9778. margin-top: 0 !important;
  9779. margin-bottom: 0 !important
  9780. }
  9781. .my-lg-1 {
  9782. margin-top: .25rem !important;
  9783. margin-bottom: .25rem !important
  9784. }
  9785. .my-lg-2 {
  9786. margin-top: .5rem !important;
  9787. margin-bottom: .5rem !important
  9788. }
  9789. .my-lg-3 {
  9790. margin-top: 1rem !important;
  9791. margin-bottom: 1rem !important
  9792. }
  9793. .my-lg-4 {
  9794. margin-top: 1.5rem !important;
  9795. margin-bottom: 1.5rem !important
  9796. }
  9797. .my-lg-5 {
  9798. margin-top: 3rem !important;
  9799. margin-bottom: 3rem !important
  9800. }
  9801. .my-lg-auto {
  9802. margin-top: auto !important;
  9803. margin-bottom: auto !important
  9804. }
  9805. .mt-lg-0 {
  9806. margin-top: 0 !important
  9807. }
  9808. .mt-lg-1 {
  9809. margin-top: .25rem !important
  9810. }
  9811. .mt-lg-2 {
  9812. margin-top: .5rem !important
  9813. }
  9814. .mt-lg-3 {
  9815. margin-top: 1rem !important
  9816. }
  9817. .mt-lg-4 {
  9818. margin-top: 1.5rem !important
  9819. }
  9820. .mt-lg-5 {
  9821. margin-top: 3rem !important
  9822. }
  9823. .mt-lg-auto {
  9824. margin-top: auto !important
  9825. }
  9826. .me-lg-0 {
  9827. margin-right: 0 !important
  9828. }
  9829. .me-lg-1 {
  9830. margin-right: .25rem !important
  9831. }
  9832. .me-lg-2 {
  9833. margin-right: .5rem !important
  9834. }
  9835. .me-lg-3 {
  9836. margin-right: 1rem !important
  9837. }
  9838. .me-lg-4 {
  9839. margin-right: 1.5rem !important
  9840. }
  9841. .me-lg-5 {
  9842. margin-right: 3rem !important
  9843. }
  9844. .me-lg-auto {
  9845. margin-right: auto !important
  9846. }
  9847. .mb-lg-0 {
  9848. margin-bottom: 0 !important
  9849. }
  9850. .mb-lg-1 {
  9851. margin-bottom: .25rem !important
  9852. }
  9853. .mb-lg-2 {
  9854. margin-bottom: .5rem !important
  9855. }
  9856. .mb-lg-3 {
  9857. margin-bottom: 1rem !important
  9858. }
  9859. .mb-lg-4 {
  9860. margin-bottom: 1.5rem !important
  9861. }
  9862. .mb-lg-5 {
  9863. margin-bottom: 3rem !important
  9864. }
  9865. .mb-lg-auto {
  9866. margin-bottom: auto !important
  9867. }
  9868. .ms-lg-0 {
  9869. margin-left: 0 !important
  9870. }
  9871. .ms-lg-1 {
  9872. margin-left: .25rem !important
  9873. }
  9874. .ms-lg-2 {
  9875. margin-left: .5rem !important
  9876. }
  9877. .ms-lg-3 {
  9878. margin-left: 1rem !important
  9879. }
  9880. .ms-lg-4 {
  9881. margin-left: 1.5rem !important
  9882. }
  9883. .ms-lg-5 {
  9884. margin-left: 3rem !important
  9885. }
  9886. .ms-lg-auto {
  9887. margin-left: auto !important
  9888. }
  9889. .p-lg-0 {
  9890. padding: 0 !important
  9891. }
  9892. .p-lg-1 {
  9893. padding: .25rem !important
  9894. }
  9895. .p-lg-2 {
  9896. padding: .5rem !important
  9897. }
  9898. .p-lg-3 {
  9899. padding: 1rem !important
  9900. }
  9901. .p-lg-4 {
  9902. padding: 1.5rem !important
  9903. }
  9904. .p-lg-5 {
  9905. padding: 3rem !important
  9906. }
  9907. .px-lg-0 {
  9908. padding-right: 0 !important;
  9909. padding-left: 0 !important
  9910. }
  9911. .px-lg-1 {
  9912. padding-right: .25rem !important;
  9913. padding-left: .25rem !important
  9914. }
  9915. .px-lg-2 {
  9916. padding-right: .5rem !important;
  9917. padding-left: .5rem !important
  9918. }
  9919. .px-lg-3 {
  9920. padding-right: 1rem !important;
  9921. padding-left: 1rem !important
  9922. }
  9923. .px-lg-4 {
  9924. padding-right: 1.5rem !important;
  9925. padding-left: 1.5rem !important
  9926. }
  9927. .px-lg-5 {
  9928. padding-right: 3rem !important;
  9929. padding-left: 3rem !important
  9930. }
  9931. .py-lg-0 {
  9932. padding-top: 0 !important;
  9933. padding-bottom: 0 !important
  9934. }
  9935. .py-lg-1 {
  9936. padding-top: .25rem !important;
  9937. padding-bottom: .25rem !important
  9938. }
  9939. .py-lg-2 {
  9940. padding-top: .5rem !important;
  9941. padding-bottom: .5rem !important
  9942. }
  9943. .py-lg-3 {
  9944. padding-top: 1rem !important;
  9945. padding-bottom: 1rem !important
  9946. }
  9947. .py-lg-4 {
  9948. padding-top: 1.5rem !important;
  9949. padding-bottom: 1.5rem !important
  9950. }
  9951. .py-lg-5 {
  9952. padding-top: 3rem !important;
  9953. padding-bottom: 3rem !important
  9954. }
  9955. .pt-lg-0 {
  9956. padding-top: 0 !important
  9957. }
  9958. .pt-lg-1 {
  9959. padding-top: .25rem !important
  9960. }
  9961. .pt-lg-2 {
  9962. padding-top: .5rem !important
  9963. }
  9964. .pt-lg-3 {
  9965. padding-top: 1rem !important
  9966. }
  9967. .pt-lg-4 {
  9968. padding-top: 1.5rem !important
  9969. }
  9970. .pt-lg-5 {
  9971. padding-top: 3rem !important
  9972. }
  9973. .pe-lg-0 {
  9974. padding-right: 0 !important
  9975. }
  9976. .pe-lg-1 {
  9977. padding-right: .25rem !important
  9978. }
  9979. .pe-lg-2 {
  9980. padding-right: .5rem !important
  9981. }
  9982. .pe-lg-3 {
  9983. padding-right: 1rem !important
  9984. }
  9985. .pe-lg-4 {
  9986. padding-right: 1.5rem !important
  9987. }
  9988. .pe-lg-5 {
  9989. padding-right: 3rem !important
  9990. }
  9991. .pb-lg-0 {
  9992. padding-bottom: 0 !important
  9993. }
  9994. .pb-lg-1 {
  9995. padding-bottom: .25rem !important
  9996. }
  9997. .pb-lg-2 {
  9998. padding-bottom: .5rem !important
  9999. }
  10000. .pb-lg-3 {
  10001. padding-bottom: 1rem !important
  10002. }
  10003. .pb-lg-4 {
  10004. padding-bottom: 1.5rem !important
  10005. }
  10006. .pb-lg-5 {
  10007. padding-bottom: 3rem !important
  10008. }
  10009. .ps-lg-0 {
  10010. padding-left: 0 !important
  10011. }
  10012. .ps-lg-1 {
  10013. padding-left: .25rem !important
  10014. }
  10015. .ps-lg-2 {
  10016. padding-left: .5rem !important
  10017. }
  10018. .ps-lg-3 {
  10019. padding-left: 1rem !important
  10020. }
  10021. .ps-lg-4 {
  10022. padding-left: 1.5rem !important
  10023. }
  10024. .ps-lg-5 {
  10025. padding-left: 3rem !important
  10026. }
  10027. .gap-lg-0 {
  10028. gap: 0 !important
  10029. }
  10030. .gap-lg-1 {
  10031. gap: .25rem !important
  10032. }
  10033. .gap-lg-2 {
  10034. gap: .5rem !important
  10035. }
  10036. .gap-lg-3 {
  10037. gap: 1rem !important
  10038. }
  10039. .gap-lg-4 {
  10040. gap: 1.5rem !important
  10041. }
  10042. .gap-lg-5 {
  10043. gap: 3rem !important
  10044. }
  10045. .row-gap-lg-0 {
  10046. row-gap: 0 !important
  10047. }
  10048. .row-gap-lg-1 {
  10049. row-gap: .25rem !important
  10050. }
  10051. .row-gap-lg-2 {
  10052. row-gap: .5rem !important
  10053. }
  10054. .row-gap-lg-3 {
  10055. row-gap: 1rem !important
  10056. }
  10057. .row-gap-lg-4 {
  10058. row-gap: 1.5rem !important
  10059. }
  10060. .row-gap-lg-5 {
  10061. row-gap: 3rem !important
  10062. }
  10063. .column-gap-lg-0 {
  10064. -webkit-column-gap: 0 !important;
  10065. -moz-column-gap: 0 !important;
  10066. column-gap: 0 !important
  10067. }
  10068. .column-gap-lg-1 {
  10069. -webkit-column-gap: .25rem !important;
  10070. -moz-column-gap: .25rem !important;
  10071. column-gap: .25rem !important
  10072. }
  10073. .column-gap-lg-2 {
  10074. -webkit-column-gap: .5rem !important;
  10075. -moz-column-gap: .5rem !important;
  10076. column-gap: .5rem !important
  10077. }
  10078. .column-gap-lg-3 {
  10079. -webkit-column-gap: 1rem !important;
  10080. -moz-column-gap: 1rem !important;
  10081. column-gap: 1rem !important
  10082. }
  10083. .column-gap-lg-4 {
  10084. -webkit-column-gap: 1.5rem !important;
  10085. -moz-column-gap: 1.5rem !important;
  10086. column-gap: 1.5rem !important
  10087. }
  10088. .column-gap-lg-5 {
  10089. -webkit-column-gap: 3rem !important;
  10090. -moz-column-gap: 3rem !important;
  10091. column-gap: 3rem !important
  10092. }
  10093. .text-lg-start {
  10094. text-align: left !important
  10095. }
  10096. .text-lg-end {
  10097. text-align: right !important
  10098. }
  10099. .text-lg-center {
  10100. text-align: center !important
  10101. }
  10102. }
  10103. @media(min-width: 1200px) {
  10104. .float-xl-start {
  10105. float: left !important
  10106. }
  10107. .float-xl-end {
  10108. float: right !important
  10109. }
  10110. .float-xl-none {
  10111. float: none !important
  10112. }
  10113. .object-fit-xl-contain {
  10114. -o-object-fit: contain !important;
  10115. object-fit: contain !important
  10116. }
  10117. .object-fit-xl-cover {
  10118. -o-object-fit: cover !important;
  10119. object-fit: cover !important
  10120. }
  10121. .object-fit-xl-fill {
  10122. -o-object-fit: fill !important;
  10123. object-fit: fill !important
  10124. }
  10125. .object-fit-xl-scale {
  10126. -o-object-fit: scale-down !important;
  10127. object-fit: scale-down !important
  10128. }
  10129. .object-fit-xl-none {
  10130. -o-object-fit: none !important;
  10131. object-fit: none !important
  10132. }
  10133. .d-xl-inline {
  10134. display: inline !important
  10135. }
  10136. .d-xl-inline-block {
  10137. display: inline-block !important
  10138. }
  10139. .d-xl-block {
  10140. display: block !important
  10141. }
  10142. .d-xl-grid {
  10143. display: grid !important
  10144. }
  10145. .d-xl-inline-grid {
  10146. display: inline-grid !important
  10147. }
  10148. .d-xl-table {
  10149. display: table !important
  10150. }
  10151. .d-xl-table-row {
  10152. display: table-row !important
  10153. }
  10154. .d-xl-table-cell {
  10155. display: table-cell !important
  10156. }
  10157. .d-xl-flex {
  10158. display: flex !important
  10159. }
  10160. .d-xl-inline-flex {
  10161. display: inline-flex !important
  10162. }
  10163. .d-xl-none {
  10164. display: none !important
  10165. }
  10166. .flex-xl-fill {
  10167. flex: 1 1 auto !important
  10168. }
  10169. .flex-xl-row {
  10170. flex-direction: row !important
  10171. }
  10172. .flex-xl-column {
  10173. flex-direction: column !important
  10174. }
  10175. .flex-xl-row-reverse {
  10176. flex-direction: row-reverse !important
  10177. }
  10178. .flex-xl-column-reverse {
  10179. flex-direction: column-reverse !important
  10180. }
  10181. .flex-xl-grow-0 {
  10182. flex-grow: 0 !important
  10183. }
  10184. .flex-xl-grow-1 {
  10185. flex-grow: 1 !important
  10186. }
  10187. .flex-xl-shrink-0 {
  10188. flex-shrink: 0 !important
  10189. }
  10190. .flex-xl-shrink-1 {
  10191. flex-shrink: 1 !important
  10192. }
  10193. .flex-xl-wrap {
  10194. flex-wrap: wrap !important
  10195. }
  10196. .flex-xl-nowrap {
  10197. flex-wrap: nowrap !important
  10198. }
  10199. .flex-xl-wrap-reverse {
  10200. flex-wrap: wrap-reverse !important
  10201. }
  10202. .justify-content-xl-start {
  10203. justify-content: flex-start !important
  10204. }
  10205. .justify-content-xl-end {
  10206. justify-content: flex-end !important
  10207. }
  10208. .justify-content-xl-center {
  10209. justify-content: center !important
  10210. }
  10211. .justify-content-xl-between {
  10212. justify-content: space-between !important
  10213. }
  10214. .justify-content-xl-around {
  10215. justify-content: space-around !important
  10216. }
  10217. .justify-content-xl-evenly {
  10218. justify-content: space-evenly !important
  10219. }
  10220. .align-items-xl-start {
  10221. align-items: flex-start !important
  10222. }
  10223. .align-items-xl-end {
  10224. align-items: flex-end !important
  10225. }
  10226. .align-items-xl-center {
  10227. align-items: center !important
  10228. }
  10229. .align-items-xl-baseline {
  10230. align-items: baseline !important
  10231. }
  10232. .align-items-xl-stretch {
  10233. align-items: stretch !important
  10234. }
  10235. .align-content-xl-start {
  10236. align-content: flex-start !important
  10237. }
  10238. .align-content-xl-end {
  10239. align-content: flex-end !important
  10240. }
  10241. .align-content-xl-center {
  10242. align-content: center !important
  10243. }
  10244. .align-content-xl-between {
  10245. align-content: space-between !important
  10246. }
  10247. .align-content-xl-around {
  10248. align-content: space-around !important
  10249. }
  10250. .align-content-xl-stretch {
  10251. align-content: stretch !important
  10252. }
  10253. .align-self-xl-auto {
  10254. align-self: auto !important
  10255. }
  10256. .align-self-xl-start {
  10257. align-self: flex-start !important
  10258. }
  10259. .align-self-xl-end {
  10260. align-self: flex-end !important
  10261. }
  10262. .align-self-xl-center {
  10263. align-self: center !important
  10264. }
  10265. .align-self-xl-baseline {
  10266. align-self: baseline !important
  10267. }
  10268. .align-self-xl-stretch {
  10269. align-self: stretch !important
  10270. }
  10271. .order-xl-first {
  10272. order: -1 !important
  10273. }
  10274. .order-xl-0 {
  10275. order: 0 !important
  10276. }
  10277. .order-xl-1 {
  10278. order: 1 !important
  10279. }
  10280. .order-xl-2 {
  10281. order: 2 !important
  10282. }
  10283. .order-xl-3 {
  10284. order: 3 !important
  10285. }
  10286. .order-xl-4 {
  10287. order: 4 !important
  10288. }
  10289. .order-xl-5 {
  10290. order: 5 !important
  10291. }
  10292. .order-xl-last {
  10293. order: 6 !important
  10294. }
  10295. .m-xl-0 {
  10296. margin: 0 !important
  10297. }
  10298. .m-xl-1 {
  10299. margin: .25rem !important
  10300. }
  10301. .m-xl-2 {
  10302. margin: .5rem !important
  10303. }
  10304. .m-xl-3 {
  10305. margin: 1rem !important
  10306. }
  10307. .m-xl-4 {
  10308. margin: 1.5rem !important
  10309. }
  10310. .m-xl-5 {
  10311. margin: 3rem !important
  10312. }
  10313. .m-xl-auto {
  10314. margin: auto !important
  10315. }
  10316. .mx-xl-0 {
  10317. margin-right: 0 !important;
  10318. margin-left: 0 !important
  10319. }
  10320. .mx-xl-1 {
  10321. margin-right: .25rem !important;
  10322. margin-left: .25rem !important
  10323. }
  10324. .mx-xl-2 {
  10325. margin-right: .5rem !important;
  10326. margin-left: .5rem !important
  10327. }
  10328. .mx-xl-3 {
  10329. margin-right: 1rem !important;
  10330. margin-left: 1rem !important
  10331. }
  10332. .mx-xl-4 {
  10333. margin-right: 1.5rem !important;
  10334. margin-left: 1.5rem !important
  10335. }
  10336. .mx-xl-5 {
  10337. margin-right: 3rem !important;
  10338. margin-left: 3rem !important
  10339. }
  10340. .mx-xl-auto {
  10341. margin-right: auto !important;
  10342. margin-left: auto !important
  10343. }
  10344. .my-xl-0 {
  10345. margin-top: 0 !important;
  10346. margin-bottom: 0 !important
  10347. }
  10348. .my-xl-1 {
  10349. margin-top: .25rem !important;
  10350. margin-bottom: .25rem !important
  10351. }
  10352. .my-xl-2 {
  10353. margin-top: .5rem !important;
  10354. margin-bottom: .5rem !important
  10355. }
  10356. .my-xl-3 {
  10357. margin-top: 1rem !important;
  10358. margin-bottom: 1rem !important
  10359. }
  10360. .my-xl-4 {
  10361. margin-top: 1.5rem !important;
  10362. margin-bottom: 1.5rem !important
  10363. }
  10364. .my-xl-5 {
  10365. margin-top: 3rem !important;
  10366. margin-bottom: 3rem !important
  10367. }
  10368. .my-xl-auto {
  10369. margin-top: auto !important;
  10370. margin-bottom: auto !important
  10371. }
  10372. .mt-xl-0 {
  10373. margin-top: 0 !important
  10374. }
  10375. .mt-xl-1 {
  10376. margin-top: .25rem !important
  10377. }
  10378. .mt-xl-2 {
  10379. margin-top: .5rem !important
  10380. }
  10381. .mt-xl-3 {
  10382. margin-top: 1rem !important
  10383. }
  10384. .mt-xl-4 {
  10385. margin-top: 1.5rem !important
  10386. }
  10387. .mt-xl-5 {
  10388. margin-top: 3rem !important
  10389. }
  10390. .mt-xl-auto {
  10391. margin-top: auto !important
  10392. }
  10393. .me-xl-0 {
  10394. margin-right: 0 !important
  10395. }
  10396. .me-xl-1 {
  10397. margin-right: .25rem !important
  10398. }
  10399. .me-xl-2 {
  10400. margin-right: .5rem !important
  10401. }
  10402. .me-xl-3 {
  10403. margin-right: 1rem !important
  10404. }
  10405. .me-xl-4 {
  10406. margin-right: 1.5rem !important
  10407. }
  10408. .me-xl-5 {
  10409. margin-right: 3rem !important
  10410. }
  10411. .me-xl-auto {
  10412. margin-right: auto !important
  10413. }
  10414. .mb-xl-0 {
  10415. margin-bottom: 0 !important
  10416. }
  10417. .mb-xl-1 {
  10418. margin-bottom: .25rem !important
  10419. }
  10420. .mb-xl-2 {
  10421. margin-bottom: .5rem !important
  10422. }
  10423. .mb-xl-3 {
  10424. margin-bottom: 1rem !important
  10425. }
  10426. .mb-xl-4 {
  10427. margin-bottom: 1.5rem !important
  10428. }
  10429. .mb-xl-5 {
  10430. margin-bottom: 3rem !important
  10431. }
  10432. .mb-xl-auto {
  10433. margin-bottom: auto !important
  10434. }
  10435. .ms-xl-0 {
  10436. margin-left: 0 !important
  10437. }
  10438. .ms-xl-1 {
  10439. margin-left: .25rem !important
  10440. }
  10441. .ms-xl-2 {
  10442. margin-left: .5rem !important
  10443. }
  10444. .ms-xl-3 {
  10445. margin-left: 1rem !important
  10446. }
  10447. .ms-xl-4 {
  10448. margin-left: 1.5rem !important
  10449. }
  10450. .ms-xl-5 {
  10451. margin-left: 3rem !important
  10452. }
  10453. .ms-xl-auto {
  10454. margin-left: auto !important
  10455. }
  10456. .p-xl-0 {
  10457. padding: 0 !important
  10458. }
  10459. .p-xl-1 {
  10460. padding: .25rem !important
  10461. }
  10462. .p-xl-2 {
  10463. padding: .5rem !important
  10464. }
  10465. .p-xl-3 {
  10466. padding: 1rem !important
  10467. }
  10468. .p-xl-4 {
  10469. padding: 1.5rem !important
  10470. }
  10471. .p-xl-5 {
  10472. padding: 3rem !important
  10473. }
  10474. .px-xl-0 {
  10475. padding-right: 0 !important;
  10476. padding-left: 0 !important
  10477. }
  10478. .px-xl-1 {
  10479. padding-right: .25rem !important;
  10480. padding-left: .25rem !important
  10481. }
  10482. .px-xl-2 {
  10483. padding-right: .5rem !important;
  10484. padding-left: .5rem !important
  10485. }
  10486. .px-xl-3 {
  10487. padding-right: 1rem !important;
  10488. padding-left: 1rem !important
  10489. }
  10490. .px-xl-4 {
  10491. padding-right: 1.5rem !important;
  10492. padding-left: 1.5rem !important
  10493. }
  10494. .px-xl-5 {
  10495. padding-right: 3rem !important;
  10496. padding-left: 3rem !important
  10497. }
  10498. .py-xl-0 {
  10499. padding-top: 0 !important;
  10500. padding-bottom: 0 !important
  10501. }
  10502. .py-xl-1 {
  10503. padding-top: .25rem !important;
  10504. padding-bottom: .25rem !important
  10505. }
  10506. .py-xl-2 {
  10507. padding-top: .5rem !important;
  10508. padding-bottom: .5rem !important
  10509. }
  10510. .py-xl-3 {
  10511. padding-top: 1rem !important;
  10512. padding-bottom: 1rem !important
  10513. }
  10514. .py-xl-4 {
  10515. padding-top: 1.5rem !important;
  10516. padding-bottom: 1.5rem !important
  10517. }
  10518. .py-xl-5 {
  10519. padding-top: 3rem !important;
  10520. padding-bottom: 3rem !important
  10521. }
  10522. .pt-xl-0 {
  10523. padding-top: 0 !important
  10524. }
  10525. .pt-xl-1 {
  10526. padding-top: .25rem !important
  10527. }
  10528. .pt-xl-2 {
  10529. padding-top: .5rem !important
  10530. }
  10531. .pt-xl-3 {
  10532. padding-top: 1rem !important
  10533. }
  10534. .pt-xl-4 {
  10535. padding-top: 1.5rem !important
  10536. }
  10537. .pt-xl-5 {
  10538. padding-top: 3rem !important
  10539. }
  10540. .pe-xl-0 {
  10541. padding-right: 0 !important
  10542. }
  10543. .pe-xl-1 {
  10544. padding-right: .25rem !important
  10545. }
  10546. .pe-xl-2 {
  10547. padding-right: .5rem !important
  10548. }
  10549. .pe-xl-3 {
  10550. padding-right: 1rem !important
  10551. }
  10552. .pe-xl-4 {
  10553. padding-right: 1.5rem !important
  10554. }
  10555. .pe-xl-5 {
  10556. padding-right: 3rem !important
  10557. }
  10558. .pb-xl-0 {
  10559. padding-bottom: 0 !important
  10560. }
  10561. .pb-xl-1 {
  10562. padding-bottom: .25rem !important
  10563. }
  10564. .pb-xl-2 {
  10565. padding-bottom: .5rem !important
  10566. }
  10567. .pb-xl-3 {
  10568. padding-bottom: 1rem !important
  10569. }
  10570. .pb-xl-4 {
  10571. padding-bottom: 1.5rem !important
  10572. }
  10573. .pb-xl-5 {
  10574. padding-bottom: 3rem !important
  10575. }
  10576. .ps-xl-0 {
  10577. padding-left: 0 !important
  10578. }
  10579. .ps-xl-1 {
  10580. padding-left: .25rem !important
  10581. }
  10582. .ps-xl-2 {
  10583. padding-left: .5rem !important
  10584. }
  10585. .ps-xl-3 {
  10586. padding-left: 1rem !important
  10587. }
  10588. .ps-xl-4 {
  10589. padding-left: 1.5rem !important
  10590. }
  10591. .ps-xl-5 {
  10592. padding-left: 3rem !important
  10593. }
  10594. .gap-xl-0 {
  10595. gap: 0 !important
  10596. }
  10597. .gap-xl-1 {
  10598. gap: .25rem !important
  10599. }
  10600. .gap-xl-2 {
  10601. gap: .5rem !important
  10602. }
  10603. .gap-xl-3 {
  10604. gap: 1rem !important
  10605. }
  10606. .gap-xl-4 {
  10607. gap: 1.5rem !important
  10608. }
  10609. .gap-xl-5 {
  10610. gap: 3rem !important
  10611. }
  10612. .row-gap-xl-0 {
  10613. row-gap: 0 !important
  10614. }
  10615. .row-gap-xl-1 {
  10616. row-gap: .25rem !important
  10617. }
  10618. .row-gap-xl-2 {
  10619. row-gap: .5rem !important
  10620. }
  10621. .row-gap-xl-3 {
  10622. row-gap: 1rem !important
  10623. }
  10624. .row-gap-xl-4 {
  10625. row-gap: 1.5rem !important
  10626. }
  10627. .row-gap-xl-5 {
  10628. row-gap: 3rem !important
  10629. }
  10630. .column-gap-xl-0 {
  10631. -webkit-column-gap: 0 !important;
  10632. -moz-column-gap: 0 !important;
  10633. column-gap: 0 !important
  10634. }
  10635. .column-gap-xl-1 {
  10636. -webkit-column-gap: .25rem !important;
  10637. -moz-column-gap: .25rem !important;
  10638. column-gap: .25rem !important
  10639. }
  10640. .column-gap-xl-2 {
  10641. -webkit-column-gap: .5rem !important;
  10642. -moz-column-gap: .5rem !important;
  10643. column-gap: .5rem !important
  10644. }
  10645. .column-gap-xl-3 {
  10646. -webkit-column-gap: 1rem !important;
  10647. -moz-column-gap: 1rem !important;
  10648. column-gap: 1rem !important
  10649. }
  10650. .column-gap-xl-4 {
  10651. -webkit-column-gap: 1.5rem !important;
  10652. -moz-column-gap: 1.5rem !important;
  10653. column-gap: 1.5rem !important
  10654. }
  10655. .column-gap-xl-5 {
  10656. -webkit-column-gap: 3rem !important;
  10657. -moz-column-gap: 3rem !important;
  10658. column-gap: 3rem !important
  10659. }
  10660. .text-xl-start {
  10661. text-align: left !important
  10662. }
  10663. .text-xl-end {
  10664. text-align: right !important
  10665. }
  10666. .text-xl-center {
  10667. text-align: center !important
  10668. }
  10669. }
  10670. @media(min-width: 1400px) {
  10671. .float-xxl-start {
  10672. float: left !important
  10673. }
  10674. .float-xxl-end {
  10675. float: right !important
  10676. }
  10677. .float-xxl-none {
  10678. float: none !important
  10679. }
  10680. .object-fit-xxl-contain {
  10681. -o-object-fit: contain !important;
  10682. object-fit: contain !important
  10683. }
  10684. .object-fit-xxl-cover {
  10685. -o-object-fit: cover !important;
  10686. object-fit: cover !important
  10687. }
  10688. .object-fit-xxl-fill {
  10689. -o-object-fit: fill !important;
  10690. object-fit: fill !important
  10691. }
  10692. .object-fit-xxl-scale {
  10693. -o-object-fit: scale-down !important;
  10694. object-fit: scale-down !important
  10695. }
  10696. .object-fit-xxl-none {
  10697. -o-object-fit: none !important;
  10698. object-fit: none !important
  10699. }
  10700. .d-xxl-inline {
  10701. display: inline !important
  10702. }
  10703. .d-xxl-inline-block {
  10704. display: inline-block !important
  10705. }
  10706. .d-xxl-block {
  10707. display: block !important
  10708. }
  10709. .d-xxl-grid {
  10710. display: grid !important
  10711. }
  10712. .d-xxl-inline-grid {
  10713. display: inline-grid !important
  10714. }
  10715. .d-xxl-table {
  10716. display: table !important
  10717. }
  10718. .d-xxl-table-row {
  10719. display: table-row !important
  10720. }
  10721. .d-xxl-table-cell {
  10722. display: table-cell !important
  10723. }
  10724. .d-xxl-flex {
  10725. display: flex !important
  10726. }
  10727. .d-xxl-inline-flex {
  10728. display: inline-flex !important
  10729. }
  10730. .d-xxl-none {
  10731. display: none !important
  10732. }
  10733. .flex-xxl-fill {
  10734. flex: 1 1 auto !important
  10735. }
  10736. .flex-xxl-row {
  10737. flex-direction: row !important
  10738. }
  10739. .flex-xxl-column {
  10740. flex-direction: column !important
  10741. }
  10742. .flex-xxl-row-reverse {
  10743. flex-direction: row-reverse !important
  10744. }
  10745. .flex-xxl-column-reverse {
  10746. flex-direction: column-reverse !important
  10747. }
  10748. .flex-xxl-grow-0 {
  10749. flex-grow: 0 !important
  10750. }
  10751. .flex-xxl-grow-1 {
  10752. flex-grow: 1 !important
  10753. }
  10754. .flex-xxl-shrink-0 {
  10755. flex-shrink: 0 !important
  10756. }
  10757. .flex-xxl-shrink-1 {
  10758. flex-shrink: 1 !important
  10759. }
  10760. .flex-xxl-wrap {
  10761. flex-wrap: wrap !important
  10762. }
  10763. .flex-xxl-nowrap {
  10764. flex-wrap: nowrap !important
  10765. }
  10766. .flex-xxl-wrap-reverse {
  10767. flex-wrap: wrap-reverse !important
  10768. }
  10769. .justify-content-xxl-start {
  10770. justify-content: flex-start !important
  10771. }
  10772. .justify-content-xxl-end {
  10773. justify-content: flex-end !important
  10774. }
  10775. .justify-content-xxl-center {
  10776. justify-content: center !important
  10777. }
  10778. .justify-content-xxl-between {
  10779. justify-content: space-between !important
  10780. }
  10781. .justify-content-xxl-around {
  10782. justify-content: space-around !important
  10783. }
  10784. .justify-content-xxl-evenly {
  10785. justify-content: space-evenly !important
  10786. }
  10787. .align-items-xxl-start {
  10788. align-items: flex-start !important
  10789. }
  10790. .align-items-xxl-end {
  10791. align-items: flex-end !important
  10792. }
  10793. .align-items-xxl-center {
  10794. align-items: center !important
  10795. }
  10796. .align-items-xxl-baseline {
  10797. align-items: baseline !important
  10798. }
  10799. .align-items-xxl-stretch {
  10800. align-items: stretch !important
  10801. }
  10802. .align-content-xxl-start {
  10803. align-content: flex-start !important
  10804. }
  10805. .align-content-xxl-end {
  10806. align-content: flex-end !important
  10807. }
  10808. .align-content-xxl-center {
  10809. align-content: center !important
  10810. }
  10811. .align-content-xxl-between {
  10812. align-content: space-between !important
  10813. }
  10814. .align-content-xxl-around {
  10815. align-content: space-around !important
  10816. }
  10817. .align-content-xxl-stretch {
  10818. align-content: stretch !important
  10819. }
  10820. .align-self-xxl-auto {
  10821. align-self: auto !important
  10822. }
  10823. .align-self-xxl-start {
  10824. align-self: flex-start !important
  10825. }
  10826. .align-self-xxl-end {
  10827. align-self: flex-end !important
  10828. }
  10829. .align-self-xxl-center {
  10830. align-self: center !important
  10831. }
  10832. .align-self-xxl-baseline {
  10833. align-self: baseline !important
  10834. }
  10835. .align-self-xxl-stretch {
  10836. align-self: stretch !important
  10837. }
  10838. .order-xxl-first {
  10839. order: -1 !important
  10840. }
  10841. .order-xxl-0 {
  10842. order: 0 !important
  10843. }
  10844. .order-xxl-1 {
  10845. order: 1 !important
  10846. }
  10847. .order-xxl-2 {
  10848. order: 2 !important
  10849. }
  10850. .order-xxl-3 {
  10851. order: 3 !important
  10852. }
  10853. .order-xxl-4 {
  10854. order: 4 !important
  10855. }
  10856. .order-xxl-5 {
  10857. order: 5 !important
  10858. }
  10859. .order-xxl-last {
  10860. order: 6 !important
  10861. }
  10862. .m-xxl-0 {
  10863. margin: 0 !important
  10864. }
  10865. .m-xxl-1 {
  10866. margin: .25rem !important
  10867. }
  10868. .m-xxl-2 {
  10869. margin: .5rem !important
  10870. }
  10871. .m-xxl-3 {
  10872. margin: 1rem !important
  10873. }
  10874. .m-xxl-4 {
  10875. margin: 1.5rem !important
  10876. }
  10877. .m-xxl-5 {
  10878. margin: 3rem !important
  10879. }
  10880. .m-xxl-auto {
  10881. margin: auto !important
  10882. }
  10883. .mx-xxl-0 {
  10884. margin-right: 0 !important;
  10885. margin-left: 0 !important
  10886. }
  10887. .mx-xxl-1 {
  10888. margin-right: .25rem !important;
  10889. margin-left: .25rem !important
  10890. }
  10891. .mx-xxl-2 {
  10892. margin-right: .5rem !important;
  10893. margin-left: .5rem !important
  10894. }
  10895. .mx-xxl-3 {
  10896. margin-right: 1rem !important;
  10897. margin-left: 1rem !important
  10898. }
  10899. .mx-xxl-4 {
  10900. margin-right: 1.5rem !important;
  10901. margin-left: 1.5rem !important
  10902. }
  10903. .mx-xxl-5 {
  10904. margin-right: 3rem !important;
  10905. margin-left: 3rem !important
  10906. }
  10907. .mx-xxl-auto {
  10908. margin-right: auto !important;
  10909. margin-left: auto !important
  10910. }
  10911. .my-xxl-0 {
  10912. margin-top: 0 !important;
  10913. margin-bottom: 0 !important
  10914. }
  10915. .my-xxl-1 {
  10916. margin-top: .25rem !important;
  10917. margin-bottom: .25rem !important
  10918. }
  10919. .my-xxl-2 {
  10920. margin-top: .5rem !important;
  10921. margin-bottom: .5rem !important
  10922. }
  10923. .my-xxl-3 {
  10924. margin-top: 1rem !important;
  10925. margin-bottom: 1rem !important
  10926. }
  10927. .my-xxl-4 {
  10928. margin-top: 1.5rem !important;
  10929. margin-bottom: 1.5rem !important
  10930. }
  10931. .my-xxl-5 {
  10932. margin-top: 3rem !important;
  10933. margin-bottom: 3rem !important
  10934. }
  10935. .my-xxl-auto {
  10936. margin-top: auto !important;
  10937. margin-bottom: auto !important
  10938. }
  10939. .mt-xxl-0 {
  10940. margin-top: 0 !important
  10941. }
  10942. .mt-xxl-1 {
  10943. margin-top: .25rem !important
  10944. }
  10945. .mt-xxl-2 {
  10946. margin-top: .5rem !important
  10947. }
  10948. .mt-xxl-3 {
  10949. margin-top: 1rem !important
  10950. }
  10951. .mt-xxl-4 {
  10952. margin-top: 1.5rem !important
  10953. }
  10954. .mt-xxl-5 {
  10955. margin-top: 3rem !important
  10956. }
  10957. .mt-xxl-auto {
  10958. margin-top: auto !important
  10959. }
  10960. .me-xxl-0 {
  10961. margin-right: 0 !important
  10962. }
  10963. .me-xxl-1 {
  10964. margin-right: .25rem !important
  10965. }
  10966. .me-xxl-2 {
  10967. margin-right: .5rem !important
  10968. }
  10969. .me-xxl-3 {
  10970. margin-right: 1rem !important
  10971. }
  10972. .me-xxl-4 {
  10973. margin-right: 1.5rem !important
  10974. }
  10975. .me-xxl-5 {
  10976. margin-right: 3rem !important
  10977. }
  10978. .me-xxl-auto {
  10979. margin-right: auto !important
  10980. }
  10981. .mb-xxl-0 {
  10982. margin-bottom: 0 !important
  10983. }
  10984. .mb-xxl-1 {
  10985. margin-bottom: .25rem !important
  10986. }
  10987. .mb-xxl-2 {
  10988. margin-bottom: .5rem !important
  10989. }
  10990. .mb-xxl-3 {
  10991. margin-bottom: 1rem !important
  10992. }
  10993. .mb-xxl-4 {
  10994. margin-bottom: 1.5rem !important
  10995. }
  10996. .mb-xxl-5 {
  10997. margin-bottom: 3rem !important
  10998. }
  10999. .mb-xxl-auto {
  11000. margin-bottom: auto !important
  11001. }
  11002. .ms-xxl-0 {
  11003. margin-left: 0 !important
  11004. }
  11005. .ms-xxl-1 {
  11006. margin-left: .25rem !important
  11007. }
  11008. .ms-xxl-2 {
  11009. margin-left: .5rem !important
  11010. }
  11011. .ms-xxl-3 {
  11012. margin-left: 1rem !important
  11013. }
  11014. .ms-xxl-4 {
  11015. margin-left: 1.5rem !important
  11016. }
  11017. .ms-xxl-5 {
  11018. margin-left: 3rem !important
  11019. }
  11020. .ms-xxl-auto {
  11021. margin-left: auto !important
  11022. }
  11023. .p-xxl-0 {
  11024. padding: 0 !important
  11025. }
  11026. .p-xxl-1 {
  11027. padding: .25rem !important
  11028. }
  11029. .p-xxl-2 {
  11030. padding: .5rem !important
  11031. }
  11032. .p-xxl-3 {
  11033. padding: 1rem !important
  11034. }
  11035. .p-xxl-4 {
  11036. padding: 1.5rem !important
  11037. }
  11038. .p-xxl-5 {
  11039. padding: 3rem !important
  11040. }
  11041. .px-xxl-0 {
  11042. padding-right: 0 !important;
  11043. padding-left: 0 !important
  11044. }
  11045. .px-xxl-1 {
  11046. padding-right: .25rem !important;
  11047. padding-left: .25rem !important
  11048. }
  11049. .px-xxl-2 {
  11050. padding-right: .5rem !important;
  11051. padding-left: .5rem !important
  11052. }
  11053. .px-xxl-3 {
  11054. padding-right: 1rem !important;
  11055. padding-left: 1rem !important
  11056. }
  11057. .px-xxl-4 {
  11058. padding-right: 1.5rem !important;
  11059. padding-left: 1.5rem !important
  11060. }
  11061. .px-xxl-5 {
  11062. padding-right: 3rem !important;
  11063. padding-left: 3rem !important
  11064. }
  11065. .py-xxl-0 {
  11066. padding-top: 0 !important;
  11067. padding-bottom: 0 !important
  11068. }
  11069. .py-xxl-1 {
  11070. padding-top: .25rem !important;
  11071. padding-bottom: .25rem !important
  11072. }
  11073. .py-xxl-2 {
  11074. padding-top: .5rem !important;
  11075. padding-bottom: .5rem !important
  11076. }
  11077. .py-xxl-3 {
  11078. padding-top: 1rem !important;
  11079. padding-bottom: 1rem !important
  11080. }
  11081. .py-xxl-4 {
  11082. padding-top: 1.5rem !important;
  11083. padding-bottom: 1.5rem !important
  11084. }
  11085. .py-xxl-5 {
  11086. padding-top: 3rem !important;
  11087. padding-bottom: 3rem !important
  11088. }
  11089. .pt-xxl-0 {
  11090. padding-top: 0 !important
  11091. }
  11092. .pt-xxl-1 {
  11093. padding-top: .25rem !important
  11094. }
  11095. .pt-xxl-2 {
  11096. padding-top: .5rem !important
  11097. }
  11098. .pt-xxl-3 {
  11099. padding-top: 1rem !important
  11100. }
  11101. .pt-xxl-4 {
  11102. padding-top: 1.5rem !important
  11103. }
  11104. .pt-xxl-5 {
  11105. padding-top: 3rem !important
  11106. }
  11107. .pe-xxl-0 {
  11108. padding-right: 0 !important
  11109. }
  11110. .pe-xxl-1 {
  11111. padding-right: .25rem !important
  11112. }
  11113. .pe-xxl-2 {
  11114. padding-right: .5rem !important
  11115. }
  11116. .pe-xxl-3 {
  11117. padding-right: 1rem !important
  11118. }
  11119. .pe-xxl-4 {
  11120. padding-right: 1.5rem !important
  11121. }
  11122. .pe-xxl-5 {
  11123. padding-right: 3rem !important
  11124. }
  11125. .pb-xxl-0 {
  11126. padding-bottom: 0 !important
  11127. }
  11128. .pb-xxl-1 {
  11129. padding-bottom: .25rem !important
  11130. }
  11131. .pb-xxl-2 {
  11132. padding-bottom: .5rem !important
  11133. }
  11134. .pb-xxl-3 {
  11135. padding-bottom: 1rem !important
  11136. }
  11137. .pb-xxl-4 {
  11138. padding-bottom: 1.5rem !important
  11139. }
  11140. .pb-xxl-5 {
  11141. padding-bottom: 3rem !important
  11142. }
  11143. .ps-xxl-0 {
  11144. padding-left: 0 !important
  11145. }
  11146. .ps-xxl-1 {
  11147. padding-left: .25rem !important
  11148. }
  11149. .ps-xxl-2 {
  11150. padding-left: .5rem !important
  11151. }
  11152. .ps-xxl-3 {
  11153. padding-left: 1rem !important
  11154. }
  11155. .ps-xxl-4 {
  11156. padding-left: 1.5rem !important
  11157. }
  11158. .ps-xxl-5 {
  11159. padding-left: 3rem !important
  11160. }
  11161. .gap-xxl-0 {
  11162. gap: 0 !important
  11163. }
  11164. .gap-xxl-1 {
  11165. gap: .25rem !important
  11166. }
  11167. .gap-xxl-2 {
  11168. gap: .5rem !important
  11169. }
  11170. .gap-xxl-3 {
  11171. gap: 1rem !important
  11172. }
  11173. .gap-xxl-4 {
  11174. gap: 1.5rem !important
  11175. }
  11176. .gap-xxl-5 {
  11177. gap: 3rem !important
  11178. }
  11179. .row-gap-xxl-0 {
  11180. row-gap: 0 !important
  11181. }
  11182. .row-gap-xxl-1 {
  11183. row-gap: .25rem !important
  11184. }
  11185. .row-gap-xxl-2 {
  11186. row-gap: .5rem !important
  11187. }
  11188. .row-gap-xxl-3 {
  11189. row-gap: 1rem !important
  11190. }
  11191. .row-gap-xxl-4 {
  11192. row-gap: 1.5rem !important
  11193. }
  11194. .row-gap-xxl-5 {
  11195. row-gap: 3rem !important
  11196. }
  11197. .column-gap-xxl-0 {
  11198. -webkit-column-gap: 0 !important;
  11199. -moz-column-gap: 0 !important;
  11200. column-gap: 0 !important
  11201. }
  11202. .column-gap-xxl-1 {
  11203. -webkit-column-gap: .25rem !important;
  11204. -moz-column-gap: .25rem !important;
  11205. column-gap: .25rem !important
  11206. }
  11207. .column-gap-xxl-2 {
  11208. -webkit-column-gap: .5rem !important;
  11209. -moz-column-gap: .5rem !important;
  11210. column-gap: .5rem !important
  11211. }
  11212. .column-gap-xxl-3 {
  11213. -webkit-column-gap: 1rem !important;
  11214. -moz-column-gap: 1rem !important;
  11215. column-gap: 1rem !important
  11216. }
  11217. .column-gap-xxl-4 {
  11218. -webkit-column-gap: 1.5rem !important;
  11219. -moz-column-gap: 1.5rem !important;
  11220. column-gap: 1.5rem !important
  11221. }
  11222. .column-gap-xxl-5 {
  11223. -webkit-column-gap: 3rem !important;
  11224. -moz-column-gap: 3rem !important;
  11225. column-gap: 3rem !important
  11226. }
  11227. .text-xxl-start {
  11228. text-align: left !important
  11229. }
  11230. .text-xxl-end {
  11231. text-align: right !important
  11232. }
  11233. .text-xxl-center {
  11234. text-align: center !important
  11235. }
  11236. }
  11237. @media(min-width: 1200px) {
  11238. .fs-1 {
  11239. font-size: 2.5rem !important
  11240. }
  11241. .fs-2 {
  11242. font-size: 2rem !important
  11243. }
  11244. .fs-3 {
  11245. font-size: 1.75rem !important
  11246. }
  11247. .fs-4 {
  11248. font-size: 1.5rem !important
  11249. }
  11250. }
  11251. @media print {
  11252. .d-print-inline {
  11253. display: inline !important
  11254. }
  11255. .d-print-inline-block {
  11256. display: inline-block !important
  11257. }
  11258. .d-print-block {
  11259. display: block !important
  11260. }
  11261. .d-print-grid {
  11262. display: grid !important
  11263. }
  11264. .d-print-inline-grid {
  11265. display: inline-grid !important
  11266. }
  11267. .d-print-table {
  11268. display: table !important
  11269. }
  11270. .d-print-table-row {
  11271. display: table-row !important
  11272. }
  11273. .d-print-table-cell {
  11274. display: table-cell !important
  11275. }
  11276. .d-print-flex {
  11277. display: flex !important
  11278. }
  11279. .d-print-inline-flex {
  11280. display: inline-flex !important
  11281. }
  11282. .d-print-none {
  11283. display: none !important
  11284. }
  11285. }
  11286. /*!
  11287. * Portal - Bootstrap 5 Admin Dashboard Template for Developers
  11288. * Version: 3.0
  11289. * Author: Xiaoying Riley
  11290. * Copyright: 3rd Wave Media Ltd.
  11291. * Website: http://themes.3rdwavemedia.com/
  11292. * Twitter: @3rdwave_themes
  11293. */
  11294. body {
  11295. -webkit-font-smoothing: antialiased;
  11296. -moz-osx-font-smoothing: grayscale;
  11297. color: #5d6778
  11298. }
  11299. h1,
  11300. .h1,
  11301. h2,
  11302. .h2,
  11303. h3,
  11304. .h3,
  11305. h4,
  11306. .h4,
  11307. h5,
  11308. .h5,
  11309. h6,
  11310. .h6 {
  11311. color: #252930;
  11312. font-weight: 600
  11313. }
  11314. a {
  11315. color: #15a362;
  11316. text-decoration: none
  11317. }
  11318. a:hover {
  11319. color: #128c54
  11320. }
  11321. hr {
  11322. background: #adb4c0
  11323. }
  11324. .text-muted {
  11325. color: #9fa7b5 !important
  11326. }
  11327. .table-dark {
  11328. background: #252930;
  11329. color: #fff
  11330. }
  11331. .table-bordered th,
  11332. .table-bordered td {
  11333. border-color: #e7e9ed
  11334. }
  11335. .table th,
  11336. .table td {
  11337. border-color: #e7e9ed
  11338. }
  11339. .table thead th {
  11340. border-color: #e7e9ed
  11341. }
  11342. .table-striped tbody tr:nth-of-type(odd) {
  11343. background-color: #f5f5f5
  11344. }
  11345. .table-dark th,
  11346. .table-dark td,
  11347. .table-dark thead th {
  11348. border-color: #515a6a
  11349. }
  11350. .table-hover>tbody>tr:hover {
  11351. background-color: #fff
  11352. }
  11353. .popover {
  11354. border-color: #dee1fc
  11355. }
  11356. .bs-popover-left>.arrow::before,
  11357. .bs-popover-auto[x-placement^=left]>.arrow::before {
  11358. border-left-color: #dee1fc
  11359. }
  11360. .bs-popover-right>.arrow::before,
  11361. .bs-popover-auto[x-placement^=right]>.arrow::before {
  11362. border-right-color: #dee1fc
  11363. }
  11364. .bs-popover-top>.arrow::before,
  11365. .bs-popover-auto[data-popper-placement^=top]>.arrow::before,
  11366. .bs-popover-auto[x-placement^=top]>.arrow::before {
  11367. border-top-color: #dee1fc
  11368. }
  11369. .bs-popover-bottom>.arrow::before,
  11370. .bs-popover-auto[data-popper-placement^=bottom]>.arrow::before,
  11371. .bs-popover-auto[x-placement^=bottom]>.arrow::before {
  11372. border-bottom-color: #dee1fc
  11373. }
  11374. a.app-link {
  11375. color: #252930;
  11376. text-decoration: underline;
  11377. text-decoration-color: rgba(37, 41, 48, .3)
  11378. }
  11379. a.app-link:hover {
  11380. color: #15a362;
  11381. text-decoration-color: rgba(21, 163, 98, .8)
  11382. }
  11383. button.close:focus {
  11384. outline: none;
  11385. box-shadow: none
  11386. }
  11387. .btn {
  11388. font-weight: 600;
  11389. padding: .5rem 1rem;
  11390. font-size: .875rem;
  11391. border: none
  11392. }
  11393. .btn:hover,
  11394. .btn:active,
  11395. .btn:focus {
  11396. text-decoration: none
  11397. }
  11398. .btn .bi {
  11399. position: relative;
  11400. top: -2px
  11401. }
  11402. .btn:focus,
  11403. .btn.focus {
  11404. box-shadow: none !important
  11405. }
  11406. .app-btn-primary {
  11407. background: #15a362;
  11408. color: #fff;
  11409. border-color: #15a362
  11410. }
  11411. .app-btn-primary:hover,
  11412. .app-btn-primary:active {
  11413. color: #fff;
  11414. background: #18ba70;
  11415. border-color: #18ba70
  11416. }
  11417. .app-btn-secondary {
  11418. background: #fff;
  11419. color: #5d6778;
  11420. border: 1px solid #bcc1cb
  11421. }
  11422. .app-btn-secondary:hover {
  11423. color: #15a362;
  11424. border: 1px solid #15a362;
  11425. background: #fff
  11426. }
  11427. .btn-light {
  11428. background: #f5f6fe;
  11429. color: #15a362
  11430. }
  11431. .btn-light:hover {
  11432. background: #f5f6fe;
  11433. color: #15a362
  11434. }
  11435. .form-control {
  11436. padding-top: .6rem;
  11437. padding-bottom: .6rem;
  11438. height: 2.5rem;
  11439. border-color: #e7e9ed;
  11440. color: #5d6778
  11441. }
  11442. .form-control:focus {
  11443. box-shadow: none;
  11444. outline: none;
  11445. color: #5d6778
  11446. }
  11447. .form-check-input:checked {
  11448. background-color: #15a362;
  11449. border-color: #15a362
  11450. }
  11451. .dropdown-menu {
  11452. border-color: #e7e9ed
  11453. }
  11454. .dropdown-menu .dropdown-item {
  11455. padding: .5rem 1rem
  11456. }
  11457. .dropdown-menu .dropdown-item:hover {
  11458. color: #252930
  11459. }
  11460. .dropdown-menu .dropdown-item:hover,
  11461. .dropdown-menu .dropdown-item:focus {
  11462. background: #fafbff
  11463. }
  11464. .dropdown-menu .dropdown-item.active,
  11465. .dropdown-menu .dropdown-item:active {
  11466. background: #fafbff
  11467. }
  11468. .dropdown-divider {
  11469. border-top-color: #e7e9ed;
  11470. -webkit-opacity: 1;
  11471. -moz-opacity: 1;
  11472. opacity: 1
  11473. }
  11474. .dropdown-toggle.no-toggle-arrow:after {
  11475. display: none !important
  11476. }
  11477. .app-header {
  11478. box-shadow: 0 1px 4px 0 rgba(0, 0, 0, .1);
  11479. border-bottom: 1px solid #e7e9ed;
  11480. height: 56px;
  11481. background: #fff
  11482. }
  11483. .app-header-inner {
  11484. position: relative
  11485. }
  11486. .app-search-form {
  11487. position: relative;
  11488. max-width: 600px
  11489. }
  11490. .app-search-form .search-input {
  11491. font-size: .875rem;
  11492. border-radius: .25rem;
  11493. padding-right: 3rem;
  11494. padding-left: 1rem
  11495. }
  11496. .app-search-form .search-input:focus {
  11497. border-color: #e7e9ed
  11498. }
  11499. .app-search-form .search-btn {
  11500. color: #828d9f;
  11501. background: none;
  11502. border: none;
  11503. position: absolute;
  11504. right: 0;
  11505. top: 0;
  11506. margin-right: 0;
  11507. padding: .5rem 1rem
  11508. }
  11509. .app-search-form .search-btn:active,
  11510. .app-search-form .search-btn:focus,
  11511. .app-search-form .search-btn:hover {
  11512. outline: none !important;
  11513. color: #15a362;
  11514. box-shadow: none
  11515. }
  11516. .app-utility-item {
  11517. display: inline-block;
  11518. margin-right: 1.25rem
  11519. }
  11520. .app-utility-item:last-child {
  11521. margin-right: 0
  11522. }
  11523. .app-utility-item>a {
  11524. color: #5d6778
  11525. }
  11526. .app-utility-item>a:hover {
  11527. color: #252930
  11528. }
  11529. .app-utility-item .dropdown-toggle {
  11530. position: relative
  11531. }
  11532. .app-utility-item .dropdown-menu {
  11533. font-size: .875rem;
  11534. margin: 0
  11535. }
  11536. .app-utility-item .dropdown-menu.show {
  11537. top: 23px !important
  11538. }
  11539. .app-utility-item .icon {
  11540. font-size: 1.25rem;
  11541. width: 24px;
  11542. height: 24px
  11543. }
  11544. .app-utility-item .icon-badge {
  11545. display: inline-block;
  11546. border-radius: 50%;
  11547. position: absolute;
  11548. right: -0.45rem;
  11549. top: -0.3rem;
  11550. width: 20px;
  11551. height: 20px;
  11552. font-size: .6rem;
  11553. font-weight: bold;
  11554. padding-top: 1px;
  11555. color: #fff;
  11556. text-align: center
  11557. }
  11558. .app-utility-item .icon-badge.icon-badge {
  11559. background: #ec776c;
  11560. border: 2px solid #fff
  11561. }
  11562. .app-notifications-dropdown .dropdown-menu {
  11563. width: 300px
  11564. }
  11565. .app-notifications-dropdown .dropdown-menu .dropdown-menu-header {
  11566. border-bottom: 1px solid #e7e9ed
  11567. }
  11568. .app-notifications-dropdown .dropdown-menu .dropdown-menu-title {
  11569. font-size: 1rem
  11570. }
  11571. .app-notifications-dropdown .dropdown-menu .profile-image {
  11572. width: 36px;
  11573. height: 36px
  11574. }
  11575. .app-notifications-dropdown .dropdown-menu .info {
  11576. padding-right: 80px;
  11577. position: relative
  11578. }
  11579. .app-notifications-dropdown .dropdown-menu .meta {
  11580. color: #828d9f;
  11581. position: absolute;
  11582. right: 0;
  11583. top: 0;
  11584. font-size: .75rem
  11585. }
  11586. .app-notifications-dropdown .dropdown-menu .dropdown-menu-footer {
  11587. border-top: 1px solid #e7e9ed
  11588. }
  11589. .app-notifications-dropdown .dropdown-menu .item {
  11590. min-width: 250px;
  11591. position: relative;
  11592. border-bottom: 1px solid #e7e9ed
  11593. }
  11594. .app-notifications-dropdown .dropdown-menu .item:last-child {
  11595. border-bottom: none
  11596. }
  11597. .app-notifications-dropdown .dropdown-menu .item:hover {
  11598. background: #f5f5f5
  11599. }
  11600. .app-notifications-dropdown .dropdown-menu .link-mask {
  11601. position: absolute;
  11602. width: 100%;
  11603. height: 100%;
  11604. display: block;
  11605. left: 0;
  11606. top: 0
  11607. }
  11608. .app-notifications-dropdown .app-icon-holder {
  11609. display: inline-block;
  11610. background: #edfdf6;
  11611. color: #15a362;
  11612. width: 36px;
  11613. height: 36px;
  11614. padding-top: 4px;
  11615. font-size: 1rem;
  11616. text-align: center;
  11617. border-radius: 50%
  11618. }
  11619. .app-notifications-dropdown .app-icon-holder.icon-holder-mono {
  11620. background: #f5f6fe;
  11621. color: #828d9f
  11622. }
  11623. .app-notifications-dropdown .app-icon-holder svg {
  11624. width: 20px;
  11625. height: 20px
  11626. }
  11627. .app-user-dropdown {
  11628. display: inline-block
  11629. }
  11630. .app-user-dropdown img {
  11631. width: 36px;
  11632. height: 36px
  11633. }
  11634. @media(min-width: 576px) {
  11635. .app-notifications-dropdown .dropdown-menu {
  11636. width: 400px
  11637. }
  11638. }
  11639. @media(min-width: 1200px) {
  11640. .app-header-inner {
  11641. margin-left: 250px
  11642. }
  11643. }
  11644. @media(max-width: 575.98px) {
  11645. .search-mobile-trigger {
  11646. cursor: pointer;
  11647. -webkit-opacity: .8;
  11648. -moz-opacity: .8;
  11649. opacity: .8
  11650. }
  11651. .search-mobile-trigger:hover {
  11652. color: #15a362;
  11653. -webkit-opacity: 1;
  11654. -moz-opacity: 1;
  11655. opacity: 1
  11656. }
  11657. .app-search-box {
  11658. display: none;
  11659. position: absolute;
  11660. left: 0;
  11661. top: 56px;
  11662. padding: 0;
  11663. height: 100vh;
  11664. background: rgba(0, 0, 0, .5);
  11665. transition: all .4s ease-in-out
  11666. }
  11667. }
  11668. @media(max-width: 575.98px)and (prefers-reduced-motion: reduce) {
  11669. .app-search-box {
  11670. transition: none
  11671. }
  11672. }
  11673. @media(max-width: 575.98px) {
  11674. .app-search-box .app-search-form .search-input {
  11675. border-radius: 0;
  11676. padding-top: 1.5rem;
  11677. padding-bottom: 1.5rem
  11678. }
  11679. .app-search-box .app-search-form .search-btn {
  11680. top: 7px
  11681. }
  11682. .app-search-box.is-visible {
  11683. display: block
  11684. }
  11685. }
  11686. .app-sidepanel {
  11687. position: fixed;
  11688. min-height: 100vh;
  11689. height: 100%;
  11690. left: 0;
  11691. top: 0;
  11692. font-size: .875rem;
  11693. border-right: 1px solid #e7e9ed
  11694. }
  11695. .app-sidepanel .panel-drop {
  11696. display: none
  11697. }
  11698. .app-sidepanel .sidepanel-inner {
  11699. position: relative;
  11700. z-index: 10;
  11701. background: #fff;
  11702. box-shadow: rgba(0, 0, 0, .05) 0px 8px 15px;
  11703. width: 250px;
  11704. height: 100%
  11705. }
  11706. .app-sidepanel .sidepanel-close {
  11707. display: none;
  11708. position: absolute;
  11709. z-index: 20;
  11710. right: -2rem;
  11711. top: 0;
  11712. color: #fff;
  11713. font-size: 2rem
  11714. }
  11715. .app-sidepanel.sidepanel-hidden {
  11716. left: -400px
  11717. }
  11718. .app-sidepanel.sidepanel-visible {
  11719. left: 0
  11720. }
  11721. .app-sidepanel .app-nav-main {
  11722. overflow-y: auto;
  11723. scrollbar-color: rgba(0, 0, 0, .1) #e7e9ed;
  11724. scrollbar-width: thin
  11725. }
  11726. .app-sidepanel .app-nav-main::-webkit-scrollbar {
  11727. width: 6px;
  11728. background-color: #e7e9ed
  11729. }
  11730. .app-sidepanel .app-nav-main::-webkit-scrollbar-thumb {
  11731. background-color: rgba(0, 0, 0, .1);
  11732. border-radius: .5rem
  11733. }
  11734. .app-branding {
  11735. height: 60px;
  11736. padding-top: 1rem;
  11737. padding-left: 1rem;
  11738. margin-bottom: 1rem
  11739. }
  11740. .app-branding .logo-icon {
  11741. width: 36px;
  11742. height: 36px
  11743. }
  11744. .app-branding .logo-text {
  11745. color: #252930;
  11746. font-size: 1.25rem;
  11747. font-weight: 600;
  11748. vertical-align: middle
  11749. }
  11750. .app-nav {
  11751. color: #5d6778;
  11752. display: block;
  11753. padding: 0;
  11754. width: 100%
  11755. }
  11756. .app-nav .app-menu {
  11757. margin-bottom: 0
  11758. }
  11759. .app-nav .nav-item {
  11760. display: block;
  11761. color: #5d6778;
  11762. background: #fff
  11763. }
  11764. .app-nav .nav-link {
  11765. display: block;
  11766. padding: .875rem 1rem;
  11767. color: #252930;
  11768. position: relative;
  11769. display: block;
  11770. padding-left: 3rem;
  11771. border-left: 3px solid rgba(0, 0, 0, 0)
  11772. }
  11773. .app-nav .nav-link.active {
  11774. color: #15a362;
  11775. background: #edfdf6;
  11776. border-left: 3px solid #15a362;
  11777. font-weight: 500
  11778. }
  11779. .app-nav .nav-link.submenu-toggle.active {
  11780. background: none;
  11781. border-color: rgba(0, 0, 0, 0)
  11782. }
  11783. .app-nav .nav-link:hover {
  11784. color: #15a362
  11785. }
  11786. .app-nav .nav-icon {
  11787. position: absolute;
  11788. left: 1rem;
  11789. top: .7rem
  11790. }
  11791. .app-nav .nav-icon .bi {
  11792. width: 1.25rem;
  11793. height: 1.25rem
  11794. }
  11795. .app-nav .submenu-arrow {
  11796. position: absolute;
  11797. right: 1rem;
  11798. top: .7rem;
  11799. color: #828d9f
  11800. }
  11801. .app-nav .submenu-arrow svg {
  11802. width: 14px;
  11803. height: 14px
  11804. }
  11805. .app-nav .submenu-toggle {
  11806. transition: all .4s ease-in-out
  11807. }
  11808. @media(prefers-reduced-motion: reduce) {
  11809. .app-nav .submenu-toggle {
  11810. transition: none
  11811. }
  11812. }
  11813. .app-nav .submenu-toggle[aria-expanded=true] .submenu-arrow {
  11814. color: #252930
  11815. }
  11816. .app-nav .submenu-toggle[aria-expanded=true] .submenu-arrow svg {
  11817. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  11818. transform: rotate(180deg);
  11819. -webkit-transform: rotate(180deg)
  11820. }
  11821. .app-nav .submenu-item {
  11822. margin-bottom: 0
  11823. }
  11824. .app-nav .submenu-link {
  11825. color: #5d6778;
  11826. font-size: .875rem;
  11827. margin-left: 2rem;
  11828. padding: .5rem 1rem;
  11829. padding-left: 1rem;
  11830. position: relative;
  11831. display: block;
  11832. margin-bottom: 0
  11833. }
  11834. .app-nav .submenu-link:before {
  11835. background-color: #e7e9ed;
  11836. content: " ";
  11837. display: inline-block;
  11838. height: inherit;
  11839. left: 0;
  11840. position: absolute;
  11841. width: 2px;
  11842. height: 100%;
  11843. margin-top: -0.5rem
  11844. }
  11845. .app-nav .submenu-link:hover {
  11846. color: #252930
  11847. }
  11848. .app-nav .submenu-link.active {
  11849. color: #15a362
  11850. }
  11851. .app-nav .submenu-link.active:before {
  11852. background-color: #15a362
  11853. }
  11854. .app-sidepanel-footer {
  11855. width: 100%;
  11856. bottom: 0;
  11857. left: 0;
  11858. border-top: 1px solid #e7e9ed;
  11859. background: #f5f6fe
  11860. }
  11861. .app-sidepanel-footer .app-nav-footer {
  11862. margin-bottom: 0
  11863. }
  11864. @media(max-width: 1199.98px) {
  11865. .app-sidepanel {
  11866. transition: all .4s ease-in-out;
  11867. left: -400px
  11868. }
  11869. }
  11870. @media(max-width: 1199.98px)and (prefers-reduced-motion: reduce) {
  11871. .app-sidepanel {
  11872. transition: none
  11873. }
  11874. }
  11875. @media(max-width: 1199.98px) {
  11876. .app-sidepanel.sidepanel-visible {
  11877. display: block
  11878. }
  11879. .sidepanel-visible .sidepanel-close {
  11880. display: inline-block
  11881. }
  11882. .sidepanel-visible .sidepanel-drop {
  11883. position: fixed;
  11884. display: block;
  11885. min-height: 100vh;
  11886. height: 100%;
  11887. width: 100%;
  11888. min-width: 100vw;
  11889. left: 0;
  11890. top: 0;
  11891. background: rgba(0, 0, 0, .35)
  11892. }
  11893. }
  11894. @media(min-width: 1200px) {
  11895. .app-wrapper {
  11896. margin-left: 250px
  11897. }
  11898. }
  11899. .app {
  11900. min-height: 100vh;
  11901. height: 100%;
  11902. width: 100%;
  11903. background: #f5f6fe;
  11904. padding-top: 56px;
  11905. overflow-x: hidden
  11906. }
  11907. .app-footer .copyright {
  11908. font-size: .8125rem
  11909. }
  11910. .app-wrapper {
  11911. transition: all .4s ease-in-out
  11912. }
  11913. @media(prefers-reduced-motion: reduce) {
  11914. .app-wrapper {
  11915. transition: none
  11916. }
  11917. }
  11918. .app-page-title {
  11919. font-size: 1.5rem;
  11920. font-weight: bolder;
  11921. margin-bottom: 1.5rem
  11922. }
  11923. .app-card {
  11924. position: relative;
  11925. background: #fff;
  11926. border-radius: .25rem
  11927. }
  11928. .app-card.border-left-decoration {
  11929. border-left: 3px solid #15a362
  11930. }
  11931. .app-card .app-card-link-mask {
  11932. position: absolute;
  11933. width: 100%;
  11934. height: 100%;
  11935. display: block;
  11936. left: 0;
  11937. top: 0
  11938. }
  11939. .app-card .app-card-header {
  11940. border-bottom: 1px solid #e7e9ed
  11941. }
  11942. .app-card .app-card-title {
  11943. font-size: 1.125rem;
  11944. margin-bottom: 0
  11945. }
  11946. .app-card .card-header-action {
  11947. font-size: .875rem
  11948. }
  11949. .app-card .card-header-action a:hover {
  11950. text-decoration: underline
  11951. }
  11952. .app-card .form-select-holder {
  11953. display: inline-block
  11954. }
  11955. .app-card .btn-close {
  11956. padding: 1rem
  11957. }
  11958. .app-card .btn-close:focus {
  11959. box-shadow: none
  11960. }
  11961. .app-card-stat {
  11962. text-align: center
  11963. }
  11964. .app-card-stat .stats-type {
  11965. font-size: .875rem;
  11966. color: #828d9f;
  11967. text-transform: uppercase
  11968. }
  11969. .app-card-stat .stats-figure {
  11970. font-size: 2rem;
  11971. color: #252930
  11972. }
  11973. .app-card-stat .stats-meta {
  11974. font-size: .875rem;
  11975. color: #828d9f
  11976. }
  11977. .app-card-progress-list .item {
  11978. position: relative;
  11979. border-bottom: 1px solid #e7e9ed
  11980. }
  11981. .app-card-progress-list .item:hover .title {
  11982. color: #252930
  11983. }
  11984. .app-card-progress-list .item:last-child {
  11985. border: none
  11986. }
  11987. .app-card-progress-list .item .title {
  11988. font-size: .875rem;
  11989. font-weight: 500
  11990. }
  11991. .app-card-progress-list .item .meta {
  11992. font-size: .875rem;
  11993. color: #828d9f
  11994. }
  11995. .app-card-progress-list .item-link-mask {
  11996. position: absolute;
  11997. width: 100%;
  11998. height: 100%;
  11999. display: block;
  12000. left: 0;
  12001. top: 0
  12002. }
  12003. .app-card-progress-list .progress {
  12004. height: .5rem
  12005. }
  12006. .app-card-stats-table .table {
  12007. font-size: .875rem
  12008. }
  12009. .app-card-stats-table .meta {
  12010. color: #828d9f;
  12011. font-weight: 500;
  12012. font-size: .875rem
  12013. }
  12014. .app-card-stats-table .stat-cell {
  12015. text-align: right
  12016. }
  12017. .app-card-basic {
  12018. height: 100%
  12019. }
  12020. .app-card-basic .title {
  12021. font-size: 1rem
  12022. }
  12023. .app-card .app-icon-holder {
  12024. display: inline-block;
  12025. background: #edfdf6;
  12026. color: #15a362;
  12027. width: 50px;
  12028. height: 50px;
  12029. padding-top: 10px;
  12030. font-size: 1rem;
  12031. text-align: center;
  12032. border-radius: 50%
  12033. }
  12034. .app-card .app-icon-holder.icon-holder-mono {
  12035. background: #f5f6fe;
  12036. color: #828d9f
  12037. }
  12038. .app-card .app-icon-holder svg {
  12039. width: 24px;
  12040. height: 24px
  12041. }
  12042. .app-card .app-card-body.has-card-actions {
  12043. position: relative;
  12044. padding-right: 1rem !important
  12045. }
  12046. .app-card .app-card-body .app-card-actions {
  12047. display: inline-block;
  12048. width: 30px;
  12049. height: 30px;
  12050. text-align: center;
  12051. border-radius: 50%;
  12052. position: absolute;
  12053. z-index: 10;
  12054. right: .75rem;
  12055. top: .75rem
  12056. }
  12057. .app-card .app-card-body .app-card-actions:hover {
  12058. background: #f5f6fe
  12059. }
  12060. .app-card .app-card-body .app-card-actions .dropdown-menu {
  12061. font-size: .8125rem
  12062. }
  12063. .app-card-doc:hover {
  12064. box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important
  12065. }
  12066. .app-card-doc .app-card-thumb-holder {
  12067. background: #e9eaf1;
  12068. text-align: center;
  12069. position: relative;
  12070. height: 112px
  12071. }
  12072. .app-card-doc .app-card-thumb-holder .app-card-thumb {
  12073. overflow: hidden;
  12074. position: absolute;
  12075. left: 0;
  12076. top: 0;
  12077. width: 100%;
  12078. height: 100%;
  12079. background: #000
  12080. }
  12081. .app-card-doc .app-card-thumb-holder .thumb-image {
  12082. -webkit-opacity: .7;
  12083. -moz-opacity: .7;
  12084. opacity: .7;
  12085. width: 100%;
  12086. height: auto
  12087. }
  12088. .app-card-doc .app-card-thumb-holder:hover {
  12089. background: #fafbff
  12090. }
  12091. .app-card-doc .app-card-thumb-holder:hover .thumb-image {
  12092. -webkit-opacity: 1;
  12093. -moz-opacity: 1;
  12094. opacity: 1
  12095. }
  12096. .app-card-doc .app-card-thumb-holder .badge {
  12097. position: absolute;
  12098. right: .5rem;
  12099. top: .5rem
  12100. }
  12101. .app-card-doc .app-card-thumb-holder .icon-holder {
  12102. font-size: 40px;
  12103. display: inline-block;
  12104. margin: 0 auto;
  12105. width: 80px;
  12106. height: 80px;
  12107. border-radius: 50%;
  12108. background: #fff;
  12109. padding-top: 10px
  12110. }
  12111. .app-card-doc .app-card-thumb-holder .icon-holder .pdf-file {
  12112. color: #da2d27
  12113. }
  12114. .app-card-doc .app-card-thumb-holder .icon-holder .text-file {
  12115. color: #66a0fd
  12116. }
  12117. .app-card-doc .app-card-thumb-holder .icon-holder .excel-file {
  12118. color: #0da95f
  12119. }
  12120. .app-card-doc .app-card-thumb-holder .icon-holder .ppt-file {
  12121. color: #f4b400
  12122. }
  12123. .app-card-doc .app-card-thumb-holder .icon-holder .video-file {
  12124. color: #935dc1
  12125. }
  12126. .app-card-doc .app-card-thumb-holder .icon-holder .zip-file {
  12127. color: #252930
  12128. }
  12129. .app-card-doc .app-doc-title {
  12130. font-size: .875rem
  12131. }
  12132. .app-card-doc .app-doc-title a {
  12133. color: #252930
  12134. }
  12135. .app-card-doc .app-doc-title.truncate {
  12136. max-width: calc(100% - 30px);
  12137. display: inline-block;
  12138. overflow: hidden;
  12139. text-overflow: ellipsis;
  12140. white-space: nowrap
  12141. }
  12142. .app-card-doc .app-doc-meta {
  12143. font-size: .75rem
  12144. }
  12145. .table-search-form .form-control {
  12146. height: 2rem;
  12147. min-width: auto
  12148. }
  12149. .app-dropdown-menu {
  12150. font-size: .875rem
  12151. }
  12152. .app-card-orders-table .table {
  12153. font-size: .875rem
  12154. }
  12155. .app-card-orders-table .table .cell {
  12156. border-color: #e7e9ed;
  12157. color: #5d6778;
  12158. vertical-align: middle
  12159. }
  12160. .app-card-orders-table .cell span {
  12161. display: inline-block
  12162. }
  12163. .app-card-orders-table .cell .note {
  12164. display: block;
  12165. color: #828d9f;
  12166. font-size: .75rem
  12167. }
  12168. .app-card-orders-table .btn-sm,
  12169. .app-card-orders-table .btn-group-sm>.btn {
  12170. padding: .125rem .5rem;
  12171. font-size: .75rem
  12172. }
  12173. .app-card-orders-table .truncate {
  12174. max-width: 250px;
  12175. display: inline-block;
  12176. overflow: hidden;
  12177. text-overflow: ellipsis;
  12178. white-space: nowrap
  12179. }
  12180. .app-nav-tabs {
  12181. background: #fff;
  12182. padding: 0
  12183. }
  12184. .app-nav-tabs .nav-link {
  12185. color: #5d6778;
  12186. font-size: .875rem;
  12187. font-weight: bold
  12188. }
  12189. .app-nav-tabs .nav-link.active {
  12190. color: #15a362;
  12191. border-bottom: 2px solid #15a362
  12192. }
  12193. .app-nav-tabs .nav-link.active:hover {
  12194. background: none
  12195. }
  12196. .app-nav-tabs .nav-link:hover {
  12197. background: #edfdf6;
  12198. color: #15a362
  12199. }
  12200. .app-pagination .pagination {
  12201. font-size: .875rem
  12202. }
  12203. .app-pagination .pagination .page-link {
  12204. color: #5d6778;
  12205. padding: .25rem .5rem
  12206. }
  12207. .app-pagination .pagination .page-item.active .page-link {
  12208. background: #747f94;
  12209. color: #fff;
  12210. border-color: #747f94
  12211. }
  12212. .app-pagination .pagination .page-item.disabled .page-link {
  12213. color: #9fa7b5
  12214. }
  12215. .app-card-accordion .app-card-title {
  12216. font-size: 1.125rem
  12217. }
  12218. .app-card-accordion .faq-accordion .accordion-item {
  12219. border-radius: 0;
  12220. border: none;
  12221. border-bottom: 1px solid #e7e9ed
  12222. }
  12223. .app-card-accordion .faq-accordion .accordion-item:last-child {
  12224. border-bottom: none
  12225. }
  12226. .app-card-accordion .faq-accordion .accordion-header {
  12227. border: none
  12228. }
  12229. .app-card-accordion .faq-accordion .accordion-button {
  12230. padding: 1rem;
  12231. border-radius: 0;
  12232. border: none;
  12233. box-shadow: none;
  12234. background: none;
  12235. padding-left: 0;
  12236. font-size: 1rem;
  12237. text-decoration: none;
  12238. color: #15a362
  12239. }
  12240. .app-card-accordion .faq-accordion .accordion-button:after {
  12241. display: none
  12242. }
  12243. .app-card-accordion .faq-accordion .accordion-body {
  12244. padding-left: 0;
  12245. padding-right: 0;
  12246. padding-top: 0;
  12247. font-size: 1rem
  12248. }
  12249. .app-card-account {
  12250. height: 100%
  12251. }
  12252. .app-card-account .item {
  12253. font-size: .875rem
  12254. }
  12255. .app-card-account .item .profile-image {
  12256. width: 60px;
  12257. height: 60px
  12258. }
  12259. .app-card-account .item .btn-sm,
  12260. .app-card-account .item .btn-group-sm>.btn {
  12261. padding: .125rem .5rem;
  12262. font-size: .75rem
  12263. }
  12264. .settings-section .section-title {
  12265. font-size: 1.25rem
  12266. }
  12267. .settings-section .section-intro {
  12268. font-size: .875rem
  12269. }
  12270. .app-card-settings {
  12271. font-size: 1rem
  12272. }
  12273. .app-card-settings .form-label {
  12274. font-weight: bold
  12275. }
  12276. .app-card-settings .form-control {
  12277. font-size: 1rem
  12278. }
  12279. .app-404-page {
  12280. padding-top: 2rem
  12281. }
  12282. .app-404-page .page-title {
  12283. font-size: 3rem;
  12284. line-height: .8;
  12285. font-weight: bold
  12286. }
  12287. .app-404-page .page-title span {
  12288. font-size: 1.5rem
  12289. }
  12290. .chart-container {
  12291. position: relative
  12292. }
  12293. .app-table-hover>tbody>tr:hover {
  12294. background-color: #fafbff
  12295. }
  12296. .app-card-notification .notification-type .badge {
  12297. font-size: .65rem;
  12298. text-transform: uppercase
  12299. }
  12300. .app-card-notification .profile-image {
  12301. width: 60px;
  12302. height: 60px
  12303. }
  12304. .app-card-notification .notification-title {
  12305. font-size: 1.125rem
  12306. }
  12307. .app-card-notification .notification-content {
  12308. font-size: .875rem
  12309. }
  12310. .app-card-notification .notification-meta {
  12311. font-size: .75rem;
  12312. color: #828d9f
  12313. }
  12314. .app-card-notification .action-link {
  12315. font-size: .875rem
  12316. }
  12317. .app-card-notification .app-card-footer {
  12318. background: #fafbff
  12319. }
  12320. @media(min-width: 1200px) {
  12321. .table-search-form .form-control {
  12322. min-width: 300px
  12323. }
  12324. }
  12325. @media(max-width: 575.98px) {
  12326. .app-card-stat .stats-figure {
  12327. font-size: 1.125rem
  12328. }
  12329. .app-card-stat .stats-type {
  12330. font-size: .75rem
  12331. }
  12332. }
  12333. .app-login .auth-background-holder {
  12334. background: url("../images/background/background-palmeras.jpg") no-repeat center center;
  12335. background-size: cover;
  12336. height: 100vh;
  12337. min-height: 100%
  12338. }
  12339. .app-signup .auth-background-holder {
  12340. background: url("../images/background/background-2.jpg") no-repeat center center;
  12341. background-size: cover;
  12342. height: 100vh;
  12343. min-height: 100%
  12344. }
  12345. .app-reset-password .auth-background-holder {
  12346. background: url("../images/background/background-3.jpg") no-repeat center center;
  12347. background-size: cover;
  12348. height: 100vh;
  12349. min-height: 100%
  12350. }
  12351. .auth-main-col,
  12352. .auth-background-col {
  12353. position: relative
  12354. }
  12355. .auth-background-mask {
  12356. position: absolute;
  12357. width: 100%;
  12358. height: 100%;
  12359. left: 0;
  12360. top: 0;
  12361. z-index: 10;
  12362. background: rgba(0, 0, 0, .1)
  12363. }
  12364. .auth-background-overlay {
  12365. position: absolute;
  12366. width: 100%;
  12367. height: 100%;
  12368. left: 0;
  12369. top: 0;
  12370. z-index: 11
  12371. }
  12372. .auth-background-overlay .overlay-title {
  12373. color: #fff;
  12374. font-size: 1rem;
  12375. font-weight: bold
  12376. }
  12377. .auth-background-overlay .overlay-content {
  12378. background: rgba(37, 41, 48, .6);
  12379. color: #fff
  12380. }
  12381. .auth-background-overlay .overlay-content a {
  12382. text-decoration: underline;
  12383. color: #fff
  12384. }
  12385. .app-auth-footer {
  12386. position: absolute;
  12387. bottom: 0;
  12388. left: 0;
  12389. width: 100%
  12390. }
  12391. .app-auth-wrapper {
  12392. background: #fff;
  12393. height: 100vh
  12394. }
  12395. .app-auth-wrapper .app-auth-body {
  12396. width: 360px
  12397. }
  12398. .app-auth-wrapper .app-logo .logo-icon {
  12399. width: 60px;
  12400. height: 60px
  12401. }
  12402. .app-auth-wrapper .auth-heading {
  12403. font-size: 1.5rem
  12404. }
  12405. .app-auth-wrapper .form-control::-webkit-input-placeholder {
  12406. color: #828d9f
  12407. }
  12408. .app-auth-wrapper .form-control:-moz-placeholder {
  12409. color: #828d9f
  12410. }
  12411. .app-auth-wrapper .form-control::-moz-placeholder {
  12412. color: #828d9f
  12413. }
  12414. .app-auth-wrapper .form-control:-ms-input-placeholder {
  12415. color: #828d9f
  12416. }
  12417. .app-auth-wrapper .legal-note {
  12418. font-size: .875rem
  12419. }
  12420. .app-auth-wrapper .extra {
  12421. font-size: .75rem
  12422. }
  12423. .app-auth-wrapper .extra a {
  12424. text-decoration: underline;
  12425. color: #828d9f
  12426. }
  12427. .app-auth-wrapper .extra a:hover {
  12428. color: #5d6778
  12429. }
  12430. .app-auth-wrapper .auth-heading-desc {
  12431. font-weight: 500;
  12432. font-size: 1.125rem
  12433. }
  12434. .app-auth-wrapper .legal-note {
  12435. font-size: .75rem
  12436. }
  12437. .app-auth-wrapper .auth-option {
  12438. font-size: .875rem
  12439. }
  12440. .app-auth-footer .copyright {
  12441. font-size: .75rem
  12442. }
  12443. @media(max-width: 767.98px) {
  12444. .auth-background-col {
  12445. display: none
  12446. }
  12447. .app-auth-wrapper .app-auth-body {
  12448. width: 100%
  12449. }
  12450. }