bootstrap.css 188 KB

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