app.css 202 KB

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