bootstrap.css 311 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614
  1. @charset "UTF-8";
  2. /*
  3. Template Name: Skote - Admin & Dashboard Template
  4. Author: Themesbrand
  5. Version: 4.0.0.
  6. Website: https://themesbrand.com/
  7. Contact: themesbrand@gmail.com
  8. File: Custom Bootstrap Css File
  9. */
  10. /*!
  11. * Bootstrap v5.2.0 (https://getbootstrap.com/)
  12. * Copyright 2011-2022 The Bootstrap Authors
  13. * Copyright 2011-2022 Twitter, Inc.
  14. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  15. */
  16. :root {
  17. --bs-blue: #556ee6;
  18. --bs-indigo: #564ab1;
  19. --bs-purple: #6f42c1;
  20. --bs-pink: #e83e8c;
  21. --bs-red: #f46a6a;
  22. --bs-orange: #f1734f;
  23. --bs-yellow: #f1b44c;
  24. --bs-green: #34c38f;
  25. --bs-teal: #050505;
  26. --bs-cyan: #50a5f1;
  27. --bs-black: #000;
  28. --bs-white: #fff;
  29. --bs-gray: #74788d;
  30. --bs-gray-dark: #343a40;
  31. --bs-gray-100: #f8f9fa;
  32. --bs-gray-200: #eff2f7;
  33. --bs-gray-300: #f6f6f6;
  34. --bs-gray-400: #ced4da;
  35. --bs-gray-500: #adb5bd;
  36. --bs-gray-600: #74788d;
  37. --bs-gray-700: #495057;
  38. --bs-gray-800: #343a40;
  39. --bs-gray-900: #212529;
  40. --bs-primary: #556ee6;
  41. --bs-secondary: #74788d;
  42. --bs-success: #34c38f;
  43. --bs-info: #50a5f1;
  44. --bs-warning: #f1b44c;
  45. --bs-danger: #f46a6a;
  46. --bs-pink: #e83e8c;
  47. --bs-light: #eff2f7;
  48. --bs-dark: #343a40;
  49. --bs-primary-rgb: 85, 110, 230;
  50. --bs-secondary-rgb: 116, 120, 141;
  51. --bs-success-rgb: 52, 195, 143;
  52. --bs-info-rgb: 80, 165, 241;
  53. --bs-warning-rgb: 241, 180, 76;
  54. --bs-danger-rgb: 244, 106, 106;
  55. --bs-pink-rgb: 232, 62, 140;
  56. --bs-light-rgb: 239, 242, 247;
  57. --bs-dark-rgb: 52, 58, 64;
  58. --bs-white-rgb: 255, 255, 255;
  59. --bs-black-rgb: 0, 0, 0;
  60. --bs-body-color-rgb: 73, 80, 87;
  61. --bs-body-bg-rgb: 248, 248, 251;
  62. --bs-font-sans-serif: "Poppins", sans-serif;
  63. --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  64. --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  65. --bs-body-font-family: var(--bs-font-sans-serif);
  66. --bs-body-font-size: 0.8125rem;
  67. --bs-body-font-weight: 400;
  68. --bs-body-line-height: 1.5;
  69. --bs-body-color: #495057;
  70. --bs-body-bg: #f8f8fb;
  71. --bs-border-width: 1px;
  72. --bs-border-style: solid;
  73. --bs-border-color: #eff2f7;
  74. --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  75. --bs-border-radius: 0.25rem;
  76. --bs-border-radius-sm: 0.2rem;
  77. --bs-border-radius-lg: 0.4rem;
  78. --bs-border-radius-xl: 1rem;
  79. --bs-border-radius-2xl: 2rem;
  80. --bs-border-radius-pill: 50rem;
  81. --bs-link-color: #556ee6;
  82. --bs-link-hover-color: #4458b8;
  83. --bs-code-color: #e83e8c;
  84. --bs-highlight-bg: #fcf8e3;
  85. }
  86. *,
  87. *::before,
  88. *::after {
  89. -webkit-box-sizing: border-box;
  90. box-sizing: border-box;
  91. }
  92. @media (prefers-reduced-motion: no-preference) {
  93. :root {
  94. scroll-behavior: smooth;
  95. }
  96. }
  97. body {
  98. margin: 0;
  99. font-family: var(--bs-body-font-family);
  100. font-size: var(--bs-body-font-size);
  101. font-weight: var(--bs-body-font-weight);
  102. line-height: var(--bs-body-line-height);
  103. color: var(--bs-body-color);
  104. text-align: var(--bs-body-text-align);
  105. background-color: var(--bs-body-bg);
  106. -webkit-text-size-adjust: 100%;
  107. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  108. }
  109. hr {
  110. margin: 1rem 0;
  111. color: inherit;
  112. border: 0;
  113. border-top: 1px solid var(--bs-hr-border-color);
  114. opacity: 0.8;
  115. }
  116. h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  117. margin-top: 0;
  118. margin-bottom: 0.5rem;
  119. font-weight: 500;
  120. line-height: 1.2;
  121. color: var(--bs-heading-color);
  122. }
  123. h1, .h1 {
  124. font-size: calc(1.328125rem + 0.9375vw);
  125. }
  126. @media (min-width: 1200px) {
  127. h1, .h1 {
  128. font-size: 2.03125rem;
  129. }
  130. }
  131. h2, .h2 {
  132. font-size: calc(1.2875rem + 0.45vw);
  133. }
  134. @media (min-width: 1200px) {
  135. h2, .h2 {
  136. font-size: 1.625rem;
  137. }
  138. }
  139. h3, .h3 {
  140. font-size: calc(1.2671875rem + 0.20625vw);
  141. }
  142. @media (min-width: 1200px) {
  143. h3, .h3 {
  144. font-size: 1.421875rem;
  145. }
  146. }
  147. h4, .h4 {
  148. font-size: 1.21875rem;
  149. }
  150. h5, .h5 {
  151. font-size: 1.015625rem;
  152. }
  153. h6, .h6 {
  154. font-size: 0.8125rem;
  155. }
  156. p {
  157. margin-top: 0;
  158. margin-bottom: 1rem;
  159. }
  160. abbr[title] {
  161. -webkit-text-decoration: underline dotted;
  162. text-decoration: underline dotted;
  163. cursor: help;
  164. -webkit-text-decoration-skip-ink: none;
  165. text-decoration-skip-ink: none;
  166. }
  167. address {
  168. margin-bottom: 1rem;
  169. font-style: normal;
  170. line-height: inherit;
  171. }
  172. ol,
  173. ul {
  174. padding-left: 2rem;
  175. }
  176. ol,
  177. ul,
  178. dl {
  179. margin-top: 0;
  180. margin-bottom: 1rem;
  181. }
  182. ol ol,
  183. ul ul,
  184. ol ul,
  185. ul ol {
  186. margin-bottom: 0;
  187. }
  188. dt {
  189. font-weight: 600;
  190. }
  191. dd {
  192. margin-bottom: 0.5rem;
  193. margin-left: 0;
  194. }
  195. blockquote {
  196. margin: 0 0 1rem;
  197. }
  198. b,
  199. strong {
  200. font-weight: bolder;
  201. }
  202. small, .small {
  203. font-size: 80%;
  204. }
  205. mark, .mark {
  206. padding: 0.2em;
  207. background-color: var(--bs-highlight-bg);
  208. }
  209. sub,
  210. sup {
  211. position: relative;
  212. font-size: 0.75em;
  213. line-height: 0;
  214. vertical-align: baseline;
  215. }
  216. sub {
  217. bottom: -0.25em;
  218. }
  219. sup {
  220. top: -0.5em;
  221. }
  222. a {
  223. color: var(--bs-link-color);
  224. text-decoration: none;
  225. }
  226. a:hover {
  227. color: var(--bs-link-hover-color);
  228. text-decoration: underline;
  229. }
  230. a:not([href]):not([class]), a:not([href]):not([class]):hover {
  231. color: inherit;
  232. text-decoration: none;
  233. }
  234. pre,
  235. code,
  236. kbd,
  237. samp {
  238. font-family: var(--bs-font-monospace);
  239. font-size: 1em;
  240. }
  241. pre {
  242. display: block;
  243. margin-top: 0;
  244. margin-bottom: 1rem;
  245. overflow: auto;
  246. font-size: 87.5%;
  247. color: #212529;
  248. }
  249. pre code {
  250. font-size: inherit;
  251. color: inherit;
  252. word-break: normal;
  253. }
  254. code {
  255. font-size: 87.5%;
  256. color: var(--bs-code-color);
  257. word-wrap: break-word;
  258. }
  259. a > code {
  260. color: inherit;
  261. }
  262. kbd {
  263. padding: 0.2rem 0.4rem;
  264. font-size: 87.5%;
  265. color: #fff;
  266. background-color: #212529;
  267. border-radius: 0.2rem;
  268. }
  269. kbd kbd {
  270. padding: 0;
  271. font-size: 1em;
  272. }
  273. figure {
  274. margin: 0 0 1rem;
  275. }
  276. img,
  277. svg {
  278. vertical-align: middle;
  279. }
  280. table {
  281. caption-side: bottom;
  282. border-collapse: collapse;
  283. }
  284. caption {
  285. padding-top: 0.75rem;
  286. padding-bottom: 0.75rem;
  287. color: var(--bs-gray-600);
  288. text-align: left;
  289. }
  290. th {
  291. text-align: inherit;
  292. text-align: -webkit-match-parent;
  293. }
  294. thead,
  295. tbody,
  296. tfoot,
  297. tr,
  298. td,
  299. th {
  300. border-color: inherit;
  301. border-style: solid;
  302. border-width: 0;
  303. }
  304. label {
  305. display: inline-block;
  306. }
  307. button {
  308. border-radius: 0;
  309. }
  310. button:focus:not(:focus-visible) {
  311. outline: 0;
  312. }
  313. input,
  314. button,
  315. select,
  316. optgroup,
  317. textarea {
  318. margin: 0;
  319. font-family: inherit;
  320. font-size: inherit;
  321. line-height: inherit;
  322. }
  323. button,
  324. select {
  325. text-transform: none;
  326. }
  327. [role=button] {
  328. cursor: pointer;
  329. }
  330. select {
  331. word-wrap: normal;
  332. }
  333. select:disabled {
  334. opacity: 1;
  335. }
  336. [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  337. display: none !important;
  338. }
  339. button,
  340. [type=button],
  341. [type=reset],
  342. [type=submit] {
  343. -webkit-appearance: button;
  344. }
  345. button:not(:disabled),
  346. [type=button]:not(:disabled),
  347. [type=reset]:not(:disabled),
  348. [type=submit]:not(:disabled) {
  349. cursor: pointer;
  350. }
  351. ::-moz-focus-inner {
  352. padding: 0;
  353. border-style: none;
  354. }
  355. textarea {
  356. resize: vertical;
  357. }
  358. fieldset {
  359. min-width: 0;
  360. padding: 0;
  361. margin: 0;
  362. border: 0;
  363. }
  364. legend {
  365. float: left;
  366. width: 100%;
  367. padding: 0;
  368. margin-bottom: 0.5rem;
  369. font-size: calc(1.275rem + 0.3vw);
  370. line-height: inherit;
  371. }
  372. @media (min-width: 1200px) {
  373. legend {
  374. font-size: 1.5rem;
  375. }
  376. }
  377. legend + * {
  378. clear: left;
  379. }
  380. ::-webkit-datetime-edit-fields-wrapper,
  381. ::-webkit-datetime-edit-text,
  382. ::-webkit-datetime-edit-minute,
  383. ::-webkit-datetime-edit-hour-field,
  384. ::-webkit-datetime-edit-day-field,
  385. ::-webkit-datetime-edit-month-field,
  386. ::-webkit-datetime-edit-year-field {
  387. padding: 0;
  388. }
  389. ::-webkit-inner-spin-button {
  390. height: auto;
  391. }
  392. [type=search] {
  393. outline-offset: -2px;
  394. -webkit-appearance: textfield;
  395. }
  396. /* rtl:raw:
  397. [type="tel"],
  398. [type="url"],
  399. [type="email"],
  400. [type="number"] {
  401. direction: ltr;
  402. }
  403. */
  404. ::-webkit-search-decoration {
  405. -webkit-appearance: none;
  406. }
  407. ::-webkit-color-swatch-wrapper {
  408. padding: 0;
  409. }
  410. ::-webkit-file-upload-button {
  411. font: inherit;
  412. -webkit-appearance: button;
  413. }
  414. ::file-selector-button {
  415. font: inherit;
  416. -webkit-appearance: button;
  417. }
  418. output {
  419. display: inline-block;
  420. }
  421. iframe {
  422. border: 0;
  423. }
  424. summary {
  425. display: list-item;
  426. cursor: pointer;
  427. }
  428. progress {
  429. vertical-align: baseline;
  430. }
  431. [hidden] {
  432. display: none !important;
  433. }
  434. .lead {
  435. font-size: 1.015625rem;
  436. font-weight: 300;
  437. }
  438. .display-1 {
  439. font-size: calc(1.725rem + 5.7vw);
  440. font-weight: 300;
  441. line-height: 1.2;
  442. }
  443. @media (min-width: 1200px) {
  444. .display-1 {
  445. font-size: 6rem;
  446. }
  447. }
  448. .display-2 {
  449. font-size: calc(1.675rem + 5.1vw);
  450. font-weight: 300;
  451. line-height: 1.2;
  452. }
  453. @media (min-width: 1200px) {
  454. .display-2 {
  455. font-size: 5.5rem;
  456. }
  457. }
  458. .display-3 {
  459. font-size: calc(1.575rem + 3.9vw);
  460. font-weight: 300;
  461. line-height: 1.2;
  462. }
  463. @media (min-width: 1200px) {
  464. .display-3 {
  465. font-size: 4.5rem;
  466. }
  467. }
  468. .display-4 {
  469. font-size: calc(1.475rem + 2.7vw);
  470. font-weight: 300;
  471. line-height: 1.2;
  472. }
  473. @media (min-width: 1200px) {
  474. .display-4 {
  475. font-size: 3.5rem;
  476. }
  477. }
  478. .display-5 {
  479. font-size: calc(1.425rem + 2.1vw);
  480. font-weight: 300;
  481. line-height: 1.2;
  482. }
  483. @media (min-width: 1200px) {
  484. .display-5 {
  485. font-size: 3rem;
  486. }
  487. }
  488. .display-6 {
  489. font-size: calc(1.375rem + 1.5vw);
  490. font-weight: 300;
  491. line-height: 1.2;
  492. }
  493. @media (min-width: 1200px) {
  494. .display-6 {
  495. font-size: 2.5rem;
  496. }
  497. }
  498. .list-unstyled {
  499. padding-left: 0;
  500. list-style: none;
  501. }
  502. .list-inline {
  503. padding-left: 0;
  504. list-style: none;
  505. }
  506. .list-inline-item {
  507. display: inline-block;
  508. }
  509. .list-inline-item:not(:last-child) {
  510. margin-right: 0.5rem;
  511. }
  512. .initialism {
  513. font-size: 80%;
  514. text-transform: uppercase;
  515. }
  516. .blockquote {
  517. margin-bottom: 1rem;
  518. font-size: 1.015625rem;
  519. }
  520. .blockquote > :last-child {
  521. margin-bottom: 0;
  522. }
  523. .blockquote-footer {
  524. margin-top: -1rem;
  525. margin-bottom: 1rem;
  526. font-size: 80%;
  527. color: var(--bs-gray-600);
  528. }
  529. .blockquote-footer::before {
  530. content: "— ";
  531. }
  532. .img-fluid {
  533. max-width: 100%;
  534. height: auto;
  535. }
  536. .img-thumbnail {
  537. padding: 0.25rem;
  538. background-color: var(--bs-body-bg);
  539. border: 1px solid var(--bs-gray-300);
  540. border-radius: 0.25rem;
  541. max-width: 100%;
  542. height: auto;
  543. }
  544. .figure {
  545. display: inline-block;
  546. }
  547. .figure-img {
  548. margin-bottom: 0.5rem;
  549. line-height: 1;
  550. }
  551. .figure-caption {
  552. font-size: 80%;
  553. color: #74788d;
  554. }
  555. .container,
  556. .container-fluid,
  557. .container-xxl,
  558. .container-xl,
  559. .container-lg,
  560. .container-md,
  561. .container-sm {
  562. --bs-gutter-x: 12px;
  563. --bs-gutter-y: 0;
  564. width: 100%;
  565. padding-right: calc(var(--bs-gutter-x) * 0.5);
  566. padding-left: calc(var(--bs-gutter-x) * 0.5);
  567. margin-right: auto;
  568. margin-left: auto;
  569. }
  570. @media (min-width: 576px) {
  571. .container-sm, .container {
  572. max-width: 540px;
  573. }
  574. }
  575. @media (min-width: 768px) {
  576. .container-md, .container-sm, .container {
  577. max-width: 720px;
  578. }
  579. }
  580. @media (min-width: 992px) {
  581. .container-lg, .container-md, .container-sm, .container {
  582. max-width: 960px;
  583. }
  584. }
  585. @media (min-width: 1200px) {
  586. .container-xl, .container-lg, .container-md, .container-sm, .container {
  587. max-width: 1140px;
  588. }
  589. }
  590. @media (min-width: 1400px) {
  591. .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
  592. max-width: 1320px;
  593. }
  594. }
  595. .row {
  596. --bs-gutter-x: 24px;
  597. --bs-gutter-y: 0;
  598. display: -webkit-box;
  599. display: -ms-flexbox;
  600. display: flex;
  601. -ms-flex-wrap: wrap;
  602. flex-wrap: wrap;
  603. margin-top: calc(-1 * var(--bs-gutter-y));
  604. margin-right: calc(-0.5 * var(--bs-gutter-x));
  605. margin-left: calc(-0.5 * var(--bs-gutter-x));
  606. }
  607. .row > * {
  608. -ms-flex-negative: 0;
  609. flex-shrink: 0;
  610. width: 100%;
  611. max-width: 100%;
  612. padding-right: calc(var(--bs-gutter-x) * 0.5);
  613. padding-left: calc(var(--bs-gutter-x) * 0.5);
  614. margin-top: var(--bs-gutter-y);
  615. }
  616. .col {
  617. -webkit-box-flex: 1;
  618. -ms-flex: 1 0 0%;
  619. flex: 1 0 0%;
  620. }
  621. .row-cols-auto > * {
  622. -webkit-box-flex: 0;
  623. -ms-flex: 0 0 auto;
  624. flex: 0 0 auto;
  625. width: auto;
  626. }
  627. .row-cols-1 > * {
  628. -webkit-box-flex: 0;
  629. -ms-flex: 0 0 auto;
  630. flex: 0 0 auto;
  631. width: 100%;
  632. }
  633. .row-cols-2 > * {
  634. -webkit-box-flex: 0;
  635. -ms-flex: 0 0 auto;
  636. flex: 0 0 auto;
  637. width: 50%;
  638. }
  639. .row-cols-3 > * {
  640. -webkit-box-flex: 0;
  641. -ms-flex: 0 0 auto;
  642. flex: 0 0 auto;
  643. width: 33.3333333333%;
  644. }
  645. .row-cols-4 > * {
  646. -webkit-box-flex: 0;
  647. -ms-flex: 0 0 auto;
  648. flex: 0 0 auto;
  649. width: 25%;
  650. }
  651. .row-cols-5 > * {
  652. -webkit-box-flex: 0;
  653. -ms-flex: 0 0 auto;
  654. flex: 0 0 auto;
  655. width: 20%;
  656. }
  657. .row-cols-6 > * {
  658. -webkit-box-flex: 0;
  659. -ms-flex: 0 0 auto;
  660. flex: 0 0 auto;
  661. width: 16.6666666667%;
  662. }
  663. .col-auto {
  664. -webkit-box-flex: 0;
  665. -ms-flex: 0 0 auto;
  666. flex: 0 0 auto;
  667. width: auto;
  668. }
  669. .col-1 {
  670. -webkit-box-flex: 0;
  671. -ms-flex: 0 0 auto;
  672. flex: 0 0 auto;
  673. width: 8.33333333%;
  674. }
  675. .col-2 {
  676. -webkit-box-flex: 0;
  677. -ms-flex: 0 0 auto;
  678. flex: 0 0 auto;
  679. width: 16.66666667%;
  680. }
  681. .col-3 {
  682. -webkit-box-flex: 0;
  683. -ms-flex: 0 0 auto;
  684. flex: 0 0 auto;
  685. width: 25%;
  686. }
  687. .col-4 {
  688. -webkit-box-flex: 0;
  689. -ms-flex: 0 0 auto;
  690. flex: 0 0 auto;
  691. width: 33.33333333%;
  692. }
  693. .col-5 {
  694. -webkit-box-flex: 0;
  695. -ms-flex: 0 0 auto;
  696. flex: 0 0 auto;
  697. width: 41.66666667%;
  698. }
  699. .col-6 {
  700. -webkit-box-flex: 0;
  701. -ms-flex: 0 0 auto;
  702. flex: 0 0 auto;
  703. width: 50%;
  704. }
  705. .col-7 {
  706. -webkit-box-flex: 0;
  707. -ms-flex: 0 0 auto;
  708. flex: 0 0 auto;
  709. width: 58.33333333%;
  710. }
  711. .col-8 {
  712. -webkit-box-flex: 0;
  713. -ms-flex: 0 0 auto;
  714. flex: 0 0 auto;
  715. width: 66.66666667%;
  716. }
  717. .col-9 {
  718. -webkit-box-flex: 0;
  719. -ms-flex: 0 0 auto;
  720. flex: 0 0 auto;
  721. width: 75%;
  722. }
  723. .col-10 {
  724. -webkit-box-flex: 0;
  725. -ms-flex: 0 0 auto;
  726. flex: 0 0 auto;
  727. width: 83.33333333%;
  728. }
  729. .col-11 {
  730. -webkit-box-flex: 0;
  731. -ms-flex: 0 0 auto;
  732. flex: 0 0 auto;
  733. width: 91.66666667%;
  734. }
  735. .col-12 {
  736. -webkit-box-flex: 0;
  737. -ms-flex: 0 0 auto;
  738. flex: 0 0 auto;
  739. width: 100%;
  740. }
  741. .offset-1 {
  742. margin-left: 8.33333333%;
  743. }
  744. .offset-2 {
  745. margin-left: 16.66666667%;
  746. }
  747. .offset-3 {
  748. margin-left: 25%;
  749. }
  750. .offset-4 {
  751. margin-left: 33.33333333%;
  752. }
  753. .offset-5 {
  754. margin-left: 41.66666667%;
  755. }
  756. .offset-6 {
  757. margin-left: 50%;
  758. }
  759. .offset-7 {
  760. margin-left: 58.33333333%;
  761. }
  762. .offset-8 {
  763. margin-left: 66.66666667%;
  764. }
  765. .offset-9 {
  766. margin-left: 75%;
  767. }
  768. .offset-10 {
  769. margin-left: 83.33333333%;
  770. }
  771. .offset-11 {
  772. margin-left: 91.66666667%;
  773. }
  774. .g-0,
  775. .gx-0 {
  776. --bs-gutter-x: 0;
  777. }
  778. .g-0,
  779. .gy-0 {
  780. --bs-gutter-y: 0;
  781. }
  782. .g-1,
  783. .gx-1 {
  784. --bs-gutter-x: 0.25rem;
  785. }
  786. .g-1,
  787. .gy-1 {
  788. --bs-gutter-y: 0.25rem;
  789. }
  790. .g-2,
  791. .gx-2 {
  792. --bs-gutter-x: 0.5rem;
  793. }
  794. .g-2,
  795. .gy-2 {
  796. --bs-gutter-y: 0.5rem;
  797. }
  798. .g-3,
  799. .gx-3 {
  800. --bs-gutter-x: 1rem;
  801. }
  802. .g-3,
  803. .gy-3 {
  804. --bs-gutter-y: 1rem;
  805. }
  806. .g-4,
  807. .gx-4 {
  808. --bs-gutter-x: 1.5rem;
  809. }
  810. .g-4,
  811. .gy-4 {
  812. --bs-gutter-y: 1.5rem;
  813. }
  814. .g-5,
  815. .gx-5 {
  816. --bs-gutter-x: 3rem;
  817. }
  818. .g-5,
  819. .gy-5 {
  820. --bs-gutter-y: 3rem;
  821. }
  822. @media (min-width: 576px) {
  823. .col-sm {
  824. -webkit-box-flex: 1;
  825. -ms-flex: 1 0 0%;
  826. flex: 1 0 0%;
  827. }
  828. .row-cols-sm-auto > * {
  829. -webkit-box-flex: 0;
  830. -ms-flex: 0 0 auto;
  831. flex: 0 0 auto;
  832. width: auto;
  833. }
  834. .row-cols-sm-1 > * {
  835. -webkit-box-flex: 0;
  836. -ms-flex: 0 0 auto;
  837. flex: 0 0 auto;
  838. width: 100%;
  839. }
  840. .row-cols-sm-2 > * {
  841. -webkit-box-flex: 0;
  842. -ms-flex: 0 0 auto;
  843. flex: 0 0 auto;
  844. width: 50%;
  845. }
  846. .row-cols-sm-3 > * {
  847. -webkit-box-flex: 0;
  848. -ms-flex: 0 0 auto;
  849. flex: 0 0 auto;
  850. width: 33.3333333333%;
  851. }
  852. .row-cols-sm-4 > * {
  853. -webkit-box-flex: 0;
  854. -ms-flex: 0 0 auto;
  855. flex: 0 0 auto;
  856. width: 25%;
  857. }
  858. .row-cols-sm-5 > * {
  859. -webkit-box-flex: 0;
  860. -ms-flex: 0 0 auto;
  861. flex: 0 0 auto;
  862. width: 20%;
  863. }
  864. .row-cols-sm-6 > * {
  865. -webkit-box-flex: 0;
  866. -ms-flex: 0 0 auto;
  867. flex: 0 0 auto;
  868. width: 16.6666666667%;
  869. }
  870. .col-sm-auto {
  871. -webkit-box-flex: 0;
  872. -ms-flex: 0 0 auto;
  873. flex: 0 0 auto;
  874. width: auto;
  875. }
  876. .col-sm-1 {
  877. -webkit-box-flex: 0;
  878. -ms-flex: 0 0 auto;
  879. flex: 0 0 auto;
  880. width: 8.33333333%;
  881. }
  882. .col-sm-2 {
  883. -webkit-box-flex: 0;
  884. -ms-flex: 0 0 auto;
  885. flex: 0 0 auto;
  886. width: 16.66666667%;
  887. }
  888. .col-sm-3 {
  889. -webkit-box-flex: 0;
  890. -ms-flex: 0 0 auto;
  891. flex: 0 0 auto;
  892. width: 25%;
  893. }
  894. .col-sm-4 {
  895. -webkit-box-flex: 0;
  896. -ms-flex: 0 0 auto;
  897. flex: 0 0 auto;
  898. width: 33.33333333%;
  899. }
  900. .col-sm-5 {
  901. -webkit-box-flex: 0;
  902. -ms-flex: 0 0 auto;
  903. flex: 0 0 auto;
  904. width: 41.66666667%;
  905. }
  906. .col-sm-6 {
  907. -webkit-box-flex: 0;
  908. -ms-flex: 0 0 auto;
  909. flex: 0 0 auto;
  910. width: 50%;
  911. }
  912. .col-sm-7 {
  913. -webkit-box-flex: 0;
  914. -ms-flex: 0 0 auto;
  915. flex: 0 0 auto;
  916. width: 58.33333333%;
  917. }
  918. .col-sm-8 {
  919. -webkit-box-flex: 0;
  920. -ms-flex: 0 0 auto;
  921. flex: 0 0 auto;
  922. width: 66.66666667%;
  923. }
  924. .col-sm-9 {
  925. -webkit-box-flex: 0;
  926. -ms-flex: 0 0 auto;
  927. flex: 0 0 auto;
  928. width: 75%;
  929. }
  930. .col-sm-10 {
  931. -webkit-box-flex: 0;
  932. -ms-flex: 0 0 auto;
  933. flex: 0 0 auto;
  934. width: 83.33333333%;
  935. }
  936. .col-sm-11 {
  937. -webkit-box-flex: 0;
  938. -ms-flex: 0 0 auto;
  939. flex: 0 0 auto;
  940. width: 91.66666667%;
  941. }
  942. .col-sm-12 {
  943. -webkit-box-flex: 0;
  944. -ms-flex: 0 0 auto;
  945. flex: 0 0 auto;
  946. width: 100%;
  947. }
  948. .offset-sm-0 {
  949. margin-left: 0;
  950. }
  951. .offset-sm-1 {
  952. margin-left: 8.33333333%;
  953. }
  954. .offset-sm-2 {
  955. margin-left: 16.66666667%;
  956. }
  957. .offset-sm-3 {
  958. margin-left: 25%;
  959. }
  960. .offset-sm-4 {
  961. margin-left: 33.33333333%;
  962. }
  963. .offset-sm-5 {
  964. margin-left: 41.66666667%;
  965. }
  966. .offset-sm-6 {
  967. margin-left: 50%;
  968. }
  969. .offset-sm-7 {
  970. margin-left: 58.33333333%;
  971. }
  972. .offset-sm-8 {
  973. margin-left: 66.66666667%;
  974. }
  975. .offset-sm-9 {
  976. margin-left: 75%;
  977. }
  978. .offset-sm-10 {
  979. margin-left: 83.33333333%;
  980. }
  981. .offset-sm-11 {
  982. margin-left: 91.66666667%;
  983. }
  984. .g-sm-0,
  985. .gx-sm-0 {
  986. --bs-gutter-x: 0;
  987. }
  988. .g-sm-0,
  989. .gy-sm-0 {
  990. --bs-gutter-y: 0;
  991. }
  992. .g-sm-1,
  993. .gx-sm-1 {
  994. --bs-gutter-x: 0.25rem;
  995. }
  996. .g-sm-1,
  997. .gy-sm-1 {
  998. --bs-gutter-y: 0.25rem;
  999. }
  1000. .g-sm-2,
  1001. .gx-sm-2 {
  1002. --bs-gutter-x: 0.5rem;
  1003. }
  1004. .g-sm-2,
  1005. .gy-sm-2 {
  1006. --bs-gutter-y: 0.5rem;
  1007. }
  1008. .g-sm-3,
  1009. .gx-sm-3 {
  1010. --bs-gutter-x: 1rem;
  1011. }
  1012. .g-sm-3,
  1013. .gy-sm-3 {
  1014. --bs-gutter-y: 1rem;
  1015. }
  1016. .g-sm-4,
  1017. .gx-sm-4 {
  1018. --bs-gutter-x: 1.5rem;
  1019. }
  1020. .g-sm-4,
  1021. .gy-sm-4 {
  1022. --bs-gutter-y: 1.5rem;
  1023. }
  1024. .g-sm-5,
  1025. .gx-sm-5 {
  1026. --bs-gutter-x: 3rem;
  1027. }
  1028. .g-sm-5,
  1029. .gy-sm-5 {
  1030. --bs-gutter-y: 3rem;
  1031. }
  1032. }
  1033. @media (min-width: 768px) {
  1034. .col-md {
  1035. -webkit-box-flex: 1;
  1036. -ms-flex: 1 0 0%;
  1037. flex: 1 0 0%;
  1038. }
  1039. .row-cols-md-auto > * {
  1040. -webkit-box-flex: 0;
  1041. -ms-flex: 0 0 auto;
  1042. flex: 0 0 auto;
  1043. width: auto;
  1044. }
  1045. .row-cols-md-1 > * {
  1046. -webkit-box-flex: 0;
  1047. -ms-flex: 0 0 auto;
  1048. flex: 0 0 auto;
  1049. width: 100%;
  1050. }
  1051. .row-cols-md-2 > * {
  1052. -webkit-box-flex: 0;
  1053. -ms-flex: 0 0 auto;
  1054. flex: 0 0 auto;
  1055. width: 50%;
  1056. }
  1057. .row-cols-md-3 > * {
  1058. -webkit-box-flex: 0;
  1059. -ms-flex: 0 0 auto;
  1060. flex: 0 0 auto;
  1061. width: 33.3333333333%;
  1062. }
  1063. .row-cols-md-4 > * {
  1064. -webkit-box-flex: 0;
  1065. -ms-flex: 0 0 auto;
  1066. flex: 0 0 auto;
  1067. width: 25%;
  1068. }
  1069. .row-cols-md-5 > * {
  1070. -webkit-box-flex: 0;
  1071. -ms-flex: 0 0 auto;
  1072. flex: 0 0 auto;
  1073. width: 20%;
  1074. }
  1075. .row-cols-md-6 > * {
  1076. -webkit-box-flex: 0;
  1077. -ms-flex: 0 0 auto;
  1078. flex: 0 0 auto;
  1079. width: 16.6666666667%;
  1080. }
  1081. .col-md-auto {
  1082. -webkit-box-flex: 0;
  1083. -ms-flex: 0 0 auto;
  1084. flex: 0 0 auto;
  1085. width: auto;
  1086. }
  1087. .col-md-1 {
  1088. -webkit-box-flex: 0;
  1089. -ms-flex: 0 0 auto;
  1090. flex: 0 0 auto;
  1091. width: 8.33333333%;
  1092. }
  1093. .col-md-2 {
  1094. -webkit-box-flex: 0;
  1095. -ms-flex: 0 0 auto;
  1096. flex: 0 0 auto;
  1097. width: 16.66666667%;
  1098. }
  1099. .col-md-3 {
  1100. -webkit-box-flex: 0;
  1101. -ms-flex: 0 0 auto;
  1102. flex: 0 0 auto;
  1103. width: 25%;
  1104. }
  1105. .col-md-4 {
  1106. -webkit-box-flex: 0;
  1107. -ms-flex: 0 0 auto;
  1108. flex: 0 0 auto;
  1109. width: 33.33333333%;
  1110. }
  1111. .col-md-5 {
  1112. -webkit-box-flex: 0;
  1113. -ms-flex: 0 0 auto;
  1114. flex: 0 0 auto;
  1115. width: 41.66666667%;
  1116. }
  1117. .col-md-6 {
  1118. -webkit-box-flex: 0;
  1119. -ms-flex: 0 0 auto;
  1120. flex: 0 0 auto;
  1121. width: 50%;
  1122. }
  1123. .col-md-7 {
  1124. -webkit-box-flex: 0;
  1125. -ms-flex: 0 0 auto;
  1126. flex: 0 0 auto;
  1127. width: 58.33333333%;
  1128. }
  1129. .col-md-8 {
  1130. -webkit-box-flex: 0;
  1131. -ms-flex: 0 0 auto;
  1132. flex: 0 0 auto;
  1133. width: 66.66666667%;
  1134. }
  1135. .col-md-9 {
  1136. -webkit-box-flex: 0;
  1137. -ms-flex: 0 0 auto;
  1138. flex: 0 0 auto;
  1139. width: 75%;
  1140. }
  1141. .col-md-10 {
  1142. -webkit-box-flex: 0;
  1143. -ms-flex: 0 0 auto;
  1144. flex: 0 0 auto;
  1145. width: 83.33333333%;
  1146. }
  1147. .col-md-11 {
  1148. -webkit-box-flex: 0;
  1149. -ms-flex: 0 0 auto;
  1150. flex: 0 0 auto;
  1151. width: 91.66666667%;
  1152. }
  1153. .col-md-12 {
  1154. -webkit-box-flex: 0;
  1155. -ms-flex: 0 0 auto;
  1156. flex: 0 0 auto;
  1157. width: 100%;
  1158. }
  1159. .offset-md-0 {
  1160. margin-left: 0;
  1161. }
  1162. .offset-md-1 {
  1163. margin-left: 8.33333333%;
  1164. }
  1165. .offset-md-2 {
  1166. margin-left: 16.66666667%;
  1167. }
  1168. .offset-md-3 {
  1169. margin-left: 25%;
  1170. }
  1171. .offset-md-4 {
  1172. margin-left: 33.33333333%;
  1173. }
  1174. .offset-md-5 {
  1175. margin-left: 41.66666667%;
  1176. }
  1177. .offset-md-6 {
  1178. margin-left: 50%;
  1179. }
  1180. .offset-md-7 {
  1181. margin-left: 58.33333333%;
  1182. }
  1183. .offset-md-8 {
  1184. margin-left: 66.66666667%;
  1185. }
  1186. .offset-md-9 {
  1187. margin-left: 75%;
  1188. }
  1189. .offset-md-10 {
  1190. margin-left: 83.33333333%;
  1191. }
  1192. .offset-md-11 {
  1193. margin-left: 91.66666667%;
  1194. }
  1195. .g-md-0,
  1196. .gx-md-0 {
  1197. --bs-gutter-x: 0;
  1198. }
  1199. .g-md-0,
  1200. .gy-md-0 {
  1201. --bs-gutter-y: 0;
  1202. }
  1203. .g-md-1,
  1204. .gx-md-1 {
  1205. --bs-gutter-x: 0.25rem;
  1206. }
  1207. .g-md-1,
  1208. .gy-md-1 {
  1209. --bs-gutter-y: 0.25rem;
  1210. }
  1211. .g-md-2,
  1212. .gx-md-2 {
  1213. --bs-gutter-x: 0.5rem;
  1214. }
  1215. .g-md-2,
  1216. .gy-md-2 {
  1217. --bs-gutter-y: 0.5rem;
  1218. }
  1219. .g-md-3,
  1220. .gx-md-3 {
  1221. --bs-gutter-x: 1rem;
  1222. }
  1223. .g-md-3,
  1224. .gy-md-3 {
  1225. --bs-gutter-y: 1rem;
  1226. }
  1227. .g-md-4,
  1228. .gx-md-4 {
  1229. --bs-gutter-x: 1.5rem;
  1230. }
  1231. .g-md-4,
  1232. .gy-md-4 {
  1233. --bs-gutter-y: 1.5rem;
  1234. }
  1235. .g-md-5,
  1236. .gx-md-5 {
  1237. --bs-gutter-x: 3rem;
  1238. }
  1239. .g-md-5,
  1240. .gy-md-5 {
  1241. --bs-gutter-y: 3rem;
  1242. }
  1243. }
  1244. @media (min-width: 992px) {
  1245. .col-lg {
  1246. -webkit-box-flex: 1;
  1247. -ms-flex: 1 0 0%;
  1248. flex: 1 0 0%;
  1249. }
  1250. .row-cols-lg-auto > * {
  1251. -webkit-box-flex: 0;
  1252. -ms-flex: 0 0 auto;
  1253. flex: 0 0 auto;
  1254. width: auto;
  1255. }
  1256. .row-cols-lg-1 > * {
  1257. -webkit-box-flex: 0;
  1258. -ms-flex: 0 0 auto;
  1259. flex: 0 0 auto;
  1260. width: 100%;
  1261. }
  1262. .row-cols-lg-2 > * {
  1263. -webkit-box-flex: 0;
  1264. -ms-flex: 0 0 auto;
  1265. flex: 0 0 auto;
  1266. width: 50%;
  1267. }
  1268. .row-cols-lg-3 > * {
  1269. -webkit-box-flex: 0;
  1270. -ms-flex: 0 0 auto;
  1271. flex: 0 0 auto;
  1272. width: 33.3333333333%;
  1273. }
  1274. .row-cols-lg-4 > * {
  1275. -webkit-box-flex: 0;
  1276. -ms-flex: 0 0 auto;
  1277. flex: 0 0 auto;
  1278. width: 25%;
  1279. }
  1280. .row-cols-lg-5 > * {
  1281. -webkit-box-flex: 0;
  1282. -ms-flex: 0 0 auto;
  1283. flex: 0 0 auto;
  1284. width: 20%;
  1285. }
  1286. .row-cols-lg-6 > * {
  1287. -webkit-box-flex: 0;
  1288. -ms-flex: 0 0 auto;
  1289. flex: 0 0 auto;
  1290. width: 16.6666666667%;
  1291. }
  1292. .col-lg-auto {
  1293. -webkit-box-flex: 0;
  1294. -ms-flex: 0 0 auto;
  1295. flex: 0 0 auto;
  1296. width: auto;
  1297. }
  1298. .col-lg-1 {
  1299. -webkit-box-flex: 0;
  1300. -ms-flex: 0 0 auto;
  1301. flex: 0 0 auto;
  1302. width: 8.33333333%;
  1303. }
  1304. .col-lg-2 {
  1305. -webkit-box-flex: 0;
  1306. -ms-flex: 0 0 auto;
  1307. flex: 0 0 auto;
  1308. width: 16.66666667%;
  1309. }
  1310. .col-lg-3 {
  1311. -webkit-box-flex: 0;
  1312. -ms-flex: 0 0 auto;
  1313. flex: 0 0 auto;
  1314. width: 25%;
  1315. }
  1316. .col-lg-4 {
  1317. -webkit-box-flex: 0;
  1318. -ms-flex: 0 0 auto;
  1319. flex: 0 0 auto;
  1320. width: 33.33333333%;
  1321. }
  1322. .col-lg-5 {
  1323. -webkit-box-flex: 0;
  1324. -ms-flex: 0 0 auto;
  1325. flex: 0 0 auto;
  1326. width: 41.66666667%;
  1327. }
  1328. .col-lg-6 {
  1329. -webkit-box-flex: 0;
  1330. -ms-flex: 0 0 auto;
  1331. flex: 0 0 auto;
  1332. width: 50%;
  1333. }
  1334. .col-lg-7 {
  1335. -webkit-box-flex: 0;
  1336. -ms-flex: 0 0 auto;
  1337. flex: 0 0 auto;
  1338. width: 58.33333333%;
  1339. }
  1340. .col-lg-8 {
  1341. -webkit-box-flex: 0;
  1342. -ms-flex: 0 0 auto;
  1343. flex: 0 0 auto;
  1344. width: 66.66666667%;
  1345. }
  1346. .col-lg-9 {
  1347. -webkit-box-flex: 0;
  1348. -ms-flex: 0 0 auto;
  1349. flex: 0 0 auto;
  1350. width: 75%;
  1351. }
  1352. .col-lg-10 {
  1353. -webkit-box-flex: 0;
  1354. -ms-flex: 0 0 auto;
  1355. flex: 0 0 auto;
  1356. width: 83.33333333%;
  1357. }
  1358. .col-lg-11 {
  1359. -webkit-box-flex: 0;
  1360. -ms-flex: 0 0 auto;
  1361. flex: 0 0 auto;
  1362. width: 91.66666667%;
  1363. }
  1364. .col-lg-12 {
  1365. -webkit-box-flex: 0;
  1366. -ms-flex: 0 0 auto;
  1367. flex: 0 0 auto;
  1368. width: 100%;
  1369. }
  1370. .offset-lg-0 {
  1371. margin-left: 0;
  1372. }
  1373. .offset-lg-1 {
  1374. margin-left: 8.33333333%;
  1375. }
  1376. .offset-lg-2 {
  1377. margin-left: 16.66666667%;
  1378. }
  1379. .offset-lg-3 {
  1380. margin-left: 25%;
  1381. }
  1382. .offset-lg-4 {
  1383. margin-left: 33.33333333%;
  1384. }
  1385. .offset-lg-5 {
  1386. margin-left: 41.66666667%;
  1387. }
  1388. .offset-lg-6 {
  1389. margin-left: 50%;
  1390. }
  1391. .offset-lg-7 {
  1392. margin-left: 58.33333333%;
  1393. }
  1394. .offset-lg-8 {
  1395. margin-left: 66.66666667%;
  1396. }
  1397. .offset-lg-9 {
  1398. margin-left: 75%;
  1399. }
  1400. .offset-lg-10 {
  1401. margin-left: 83.33333333%;
  1402. }
  1403. .offset-lg-11 {
  1404. margin-left: 91.66666667%;
  1405. }
  1406. .g-lg-0,
  1407. .gx-lg-0 {
  1408. --bs-gutter-x: 0;
  1409. }
  1410. .g-lg-0,
  1411. .gy-lg-0 {
  1412. --bs-gutter-y: 0;
  1413. }
  1414. .g-lg-1,
  1415. .gx-lg-1 {
  1416. --bs-gutter-x: 0.25rem;
  1417. }
  1418. .g-lg-1,
  1419. .gy-lg-1 {
  1420. --bs-gutter-y: 0.25rem;
  1421. }
  1422. .g-lg-2,
  1423. .gx-lg-2 {
  1424. --bs-gutter-x: 0.5rem;
  1425. }
  1426. .g-lg-2,
  1427. .gy-lg-2 {
  1428. --bs-gutter-y: 0.5rem;
  1429. }
  1430. .g-lg-3,
  1431. .gx-lg-3 {
  1432. --bs-gutter-x: 1rem;
  1433. }
  1434. .g-lg-3,
  1435. .gy-lg-3 {
  1436. --bs-gutter-y: 1rem;
  1437. }
  1438. .g-lg-4,
  1439. .gx-lg-4 {
  1440. --bs-gutter-x: 1.5rem;
  1441. }
  1442. .g-lg-4,
  1443. .gy-lg-4 {
  1444. --bs-gutter-y: 1.5rem;
  1445. }
  1446. .g-lg-5,
  1447. .gx-lg-5 {
  1448. --bs-gutter-x: 3rem;
  1449. }
  1450. .g-lg-5,
  1451. .gy-lg-5 {
  1452. --bs-gutter-y: 3rem;
  1453. }
  1454. }
  1455. @media (min-width: 1200px) {
  1456. .col-xl {
  1457. -webkit-box-flex: 1;
  1458. -ms-flex: 1 0 0%;
  1459. flex: 1 0 0%;
  1460. }
  1461. .row-cols-xl-auto > * {
  1462. -webkit-box-flex: 0;
  1463. -ms-flex: 0 0 auto;
  1464. flex: 0 0 auto;
  1465. width: auto;
  1466. }
  1467. .row-cols-xl-1 > * {
  1468. -webkit-box-flex: 0;
  1469. -ms-flex: 0 0 auto;
  1470. flex: 0 0 auto;
  1471. width: 100%;
  1472. }
  1473. .row-cols-xl-2 > * {
  1474. -webkit-box-flex: 0;
  1475. -ms-flex: 0 0 auto;
  1476. flex: 0 0 auto;
  1477. width: 50%;
  1478. }
  1479. .row-cols-xl-3 > * {
  1480. -webkit-box-flex: 0;
  1481. -ms-flex: 0 0 auto;
  1482. flex: 0 0 auto;
  1483. width: 33.3333333333%;
  1484. }
  1485. .row-cols-xl-4 > * {
  1486. -webkit-box-flex: 0;
  1487. -ms-flex: 0 0 auto;
  1488. flex: 0 0 auto;
  1489. width: 25%;
  1490. }
  1491. .row-cols-xl-5 > * {
  1492. -webkit-box-flex: 0;
  1493. -ms-flex: 0 0 auto;
  1494. flex: 0 0 auto;
  1495. width: 20%;
  1496. }
  1497. .row-cols-xl-6 > * {
  1498. -webkit-box-flex: 0;
  1499. -ms-flex: 0 0 auto;
  1500. flex: 0 0 auto;
  1501. width: 16.6666666667%;
  1502. }
  1503. .col-xl-auto {
  1504. -webkit-box-flex: 0;
  1505. -ms-flex: 0 0 auto;
  1506. flex: 0 0 auto;
  1507. width: auto;
  1508. }
  1509. .col-xl-1 {
  1510. -webkit-box-flex: 0;
  1511. -ms-flex: 0 0 auto;
  1512. flex: 0 0 auto;
  1513. width: 8.33333333%;
  1514. }
  1515. .col-xl-2 {
  1516. -webkit-box-flex: 0;
  1517. -ms-flex: 0 0 auto;
  1518. flex: 0 0 auto;
  1519. width: 16.66666667%;
  1520. }
  1521. .col-xl-3 {
  1522. -webkit-box-flex: 0;
  1523. -ms-flex: 0 0 auto;
  1524. flex: 0 0 auto;
  1525. width: 25%;
  1526. }
  1527. .col-xl-4 {
  1528. -webkit-box-flex: 0;
  1529. -ms-flex: 0 0 auto;
  1530. flex: 0 0 auto;
  1531. width: 33.33333333%;
  1532. }
  1533. .col-xl-5 {
  1534. -webkit-box-flex: 0;
  1535. -ms-flex: 0 0 auto;
  1536. flex: 0 0 auto;
  1537. width: 41.66666667%;
  1538. }
  1539. .col-xl-6 {
  1540. -webkit-box-flex: 0;
  1541. -ms-flex: 0 0 auto;
  1542. flex: 0 0 auto;
  1543. width: 50%;
  1544. }
  1545. .col-xl-7 {
  1546. -webkit-box-flex: 0;
  1547. -ms-flex: 0 0 auto;
  1548. flex: 0 0 auto;
  1549. width: 58.33333333%;
  1550. }
  1551. .col-xl-8 {
  1552. -webkit-box-flex: 0;
  1553. -ms-flex: 0 0 auto;
  1554. flex: 0 0 auto;
  1555. width: 66.66666667%;
  1556. }
  1557. .col-xl-9 {
  1558. -webkit-box-flex: 0;
  1559. -ms-flex: 0 0 auto;
  1560. flex: 0 0 auto;
  1561. width: 75%;
  1562. }
  1563. .col-xl-10 {
  1564. -webkit-box-flex: 0;
  1565. -ms-flex: 0 0 auto;
  1566. flex: 0 0 auto;
  1567. width: 83.33333333%;
  1568. }
  1569. .col-xl-11 {
  1570. -webkit-box-flex: 0;
  1571. -ms-flex: 0 0 auto;
  1572. flex: 0 0 auto;
  1573. width: 91.66666667%;
  1574. }
  1575. .col-xl-12 {
  1576. -webkit-box-flex: 0;
  1577. -ms-flex: 0 0 auto;
  1578. flex: 0 0 auto;
  1579. width: 100%;
  1580. }
  1581. .offset-xl-0 {
  1582. margin-left: 0;
  1583. }
  1584. .offset-xl-1 {
  1585. margin-left: 8.33333333%;
  1586. }
  1587. .offset-xl-2 {
  1588. margin-left: 16.66666667%;
  1589. }
  1590. .offset-xl-3 {
  1591. margin-left: 25%;
  1592. }
  1593. .offset-xl-4 {
  1594. margin-left: 33.33333333%;
  1595. }
  1596. .offset-xl-5 {
  1597. margin-left: 41.66666667%;
  1598. }
  1599. .offset-xl-6 {
  1600. margin-left: 50%;
  1601. }
  1602. .offset-xl-7 {
  1603. margin-left: 58.33333333%;
  1604. }
  1605. .offset-xl-8 {
  1606. margin-left: 66.66666667%;
  1607. }
  1608. .offset-xl-9 {
  1609. margin-left: 75%;
  1610. }
  1611. .offset-xl-10 {
  1612. margin-left: 83.33333333%;
  1613. }
  1614. .offset-xl-11 {
  1615. margin-left: 91.66666667%;
  1616. }
  1617. .g-xl-0,
  1618. .gx-xl-0 {
  1619. --bs-gutter-x: 0;
  1620. }
  1621. .g-xl-0,
  1622. .gy-xl-0 {
  1623. --bs-gutter-y: 0;
  1624. }
  1625. .g-xl-1,
  1626. .gx-xl-1 {
  1627. --bs-gutter-x: 0.25rem;
  1628. }
  1629. .g-xl-1,
  1630. .gy-xl-1 {
  1631. --bs-gutter-y: 0.25rem;
  1632. }
  1633. .g-xl-2,
  1634. .gx-xl-2 {
  1635. --bs-gutter-x: 0.5rem;
  1636. }
  1637. .g-xl-2,
  1638. .gy-xl-2 {
  1639. --bs-gutter-y: 0.5rem;
  1640. }
  1641. .g-xl-3,
  1642. .gx-xl-3 {
  1643. --bs-gutter-x: 1rem;
  1644. }
  1645. .g-xl-3,
  1646. .gy-xl-3 {
  1647. --bs-gutter-y: 1rem;
  1648. }
  1649. .g-xl-4,
  1650. .gx-xl-4 {
  1651. --bs-gutter-x: 1.5rem;
  1652. }
  1653. .g-xl-4,
  1654. .gy-xl-4 {
  1655. --bs-gutter-y: 1.5rem;
  1656. }
  1657. .g-xl-5,
  1658. .gx-xl-5 {
  1659. --bs-gutter-x: 3rem;
  1660. }
  1661. .g-xl-5,
  1662. .gy-xl-5 {
  1663. --bs-gutter-y: 3rem;
  1664. }
  1665. }
  1666. @media (min-width: 1400px) {
  1667. .col-xxl {
  1668. -webkit-box-flex: 1;
  1669. -ms-flex: 1 0 0%;
  1670. flex: 1 0 0%;
  1671. }
  1672. .row-cols-xxl-auto > * {
  1673. -webkit-box-flex: 0;
  1674. -ms-flex: 0 0 auto;
  1675. flex: 0 0 auto;
  1676. width: auto;
  1677. }
  1678. .row-cols-xxl-1 > * {
  1679. -webkit-box-flex: 0;
  1680. -ms-flex: 0 0 auto;
  1681. flex: 0 0 auto;
  1682. width: 100%;
  1683. }
  1684. .row-cols-xxl-2 > * {
  1685. -webkit-box-flex: 0;
  1686. -ms-flex: 0 0 auto;
  1687. flex: 0 0 auto;
  1688. width: 50%;
  1689. }
  1690. .row-cols-xxl-3 > * {
  1691. -webkit-box-flex: 0;
  1692. -ms-flex: 0 0 auto;
  1693. flex: 0 0 auto;
  1694. width: 33.3333333333%;
  1695. }
  1696. .row-cols-xxl-4 > * {
  1697. -webkit-box-flex: 0;
  1698. -ms-flex: 0 0 auto;
  1699. flex: 0 0 auto;
  1700. width: 25%;
  1701. }
  1702. .row-cols-xxl-5 > * {
  1703. -webkit-box-flex: 0;
  1704. -ms-flex: 0 0 auto;
  1705. flex: 0 0 auto;
  1706. width: 20%;
  1707. }
  1708. .row-cols-xxl-6 > * {
  1709. -webkit-box-flex: 0;
  1710. -ms-flex: 0 0 auto;
  1711. flex: 0 0 auto;
  1712. width: 16.6666666667%;
  1713. }
  1714. .col-xxl-auto {
  1715. -webkit-box-flex: 0;
  1716. -ms-flex: 0 0 auto;
  1717. flex: 0 0 auto;
  1718. width: auto;
  1719. }
  1720. .col-xxl-1 {
  1721. -webkit-box-flex: 0;
  1722. -ms-flex: 0 0 auto;
  1723. flex: 0 0 auto;
  1724. width: 8.33333333%;
  1725. }
  1726. .col-xxl-2 {
  1727. -webkit-box-flex: 0;
  1728. -ms-flex: 0 0 auto;
  1729. flex: 0 0 auto;
  1730. width: 16.66666667%;
  1731. }
  1732. .col-xxl-3 {
  1733. -webkit-box-flex: 0;
  1734. -ms-flex: 0 0 auto;
  1735. flex: 0 0 auto;
  1736. width: 25%;
  1737. }
  1738. .col-xxl-4 {
  1739. -webkit-box-flex: 0;
  1740. -ms-flex: 0 0 auto;
  1741. flex: 0 0 auto;
  1742. width: 33.33333333%;
  1743. }
  1744. .col-xxl-5 {
  1745. -webkit-box-flex: 0;
  1746. -ms-flex: 0 0 auto;
  1747. flex: 0 0 auto;
  1748. width: 41.66666667%;
  1749. }
  1750. .col-xxl-6 {
  1751. -webkit-box-flex: 0;
  1752. -ms-flex: 0 0 auto;
  1753. flex: 0 0 auto;
  1754. width: 50%;
  1755. }
  1756. .col-xxl-7 {
  1757. -webkit-box-flex: 0;
  1758. -ms-flex: 0 0 auto;
  1759. flex: 0 0 auto;
  1760. width: 58.33333333%;
  1761. }
  1762. .col-xxl-8 {
  1763. -webkit-box-flex: 0;
  1764. -ms-flex: 0 0 auto;
  1765. flex: 0 0 auto;
  1766. width: 66.66666667%;
  1767. }
  1768. .col-xxl-9 {
  1769. -webkit-box-flex: 0;
  1770. -ms-flex: 0 0 auto;
  1771. flex: 0 0 auto;
  1772. width: 75%;
  1773. }
  1774. .col-xxl-10 {
  1775. -webkit-box-flex: 0;
  1776. -ms-flex: 0 0 auto;
  1777. flex: 0 0 auto;
  1778. width: 83.33333333%;
  1779. }
  1780. .col-xxl-11 {
  1781. -webkit-box-flex: 0;
  1782. -ms-flex: 0 0 auto;
  1783. flex: 0 0 auto;
  1784. width: 91.66666667%;
  1785. }
  1786. .col-xxl-12 {
  1787. -webkit-box-flex: 0;
  1788. -ms-flex: 0 0 auto;
  1789. flex: 0 0 auto;
  1790. width: 100%;
  1791. }
  1792. .offset-xxl-0 {
  1793. margin-left: 0;
  1794. }
  1795. .offset-xxl-1 {
  1796. margin-left: 8.33333333%;
  1797. }
  1798. .offset-xxl-2 {
  1799. margin-left: 16.66666667%;
  1800. }
  1801. .offset-xxl-3 {
  1802. margin-left: 25%;
  1803. }
  1804. .offset-xxl-4 {
  1805. margin-left: 33.33333333%;
  1806. }
  1807. .offset-xxl-5 {
  1808. margin-left: 41.66666667%;
  1809. }
  1810. .offset-xxl-6 {
  1811. margin-left: 50%;
  1812. }
  1813. .offset-xxl-7 {
  1814. margin-left: 58.33333333%;
  1815. }
  1816. .offset-xxl-8 {
  1817. margin-left: 66.66666667%;
  1818. }
  1819. .offset-xxl-9 {
  1820. margin-left: 75%;
  1821. }
  1822. .offset-xxl-10 {
  1823. margin-left: 83.33333333%;
  1824. }
  1825. .offset-xxl-11 {
  1826. margin-left: 91.66666667%;
  1827. }
  1828. .g-xxl-0,
  1829. .gx-xxl-0 {
  1830. --bs-gutter-x: 0;
  1831. }
  1832. .g-xxl-0,
  1833. .gy-xxl-0 {
  1834. --bs-gutter-y: 0;
  1835. }
  1836. .g-xxl-1,
  1837. .gx-xxl-1 {
  1838. --bs-gutter-x: 0.25rem;
  1839. }
  1840. .g-xxl-1,
  1841. .gy-xxl-1 {
  1842. --bs-gutter-y: 0.25rem;
  1843. }
  1844. .g-xxl-2,
  1845. .gx-xxl-2 {
  1846. --bs-gutter-x: 0.5rem;
  1847. }
  1848. .g-xxl-2,
  1849. .gy-xxl-2 {
  1850. --bs-gutter-y: 0.5rem;
  1851. }
  1852. .g-xxl-3,
  1853. .gx-xxl-3 {
  1854. --bs-gutter-x: 1rem;
  1855. }
  1856. .g-xxl-3,
  1857. .gy-xxl-3 {
  1858. --bs-gutter-y: 1rem;
  1859. }
  1860. .g-xxl-4,
  1861. .gx-xxl-4 {
  1862. --bs-gutter-x: 1.5rem;
  1863. }
  1864. .g-xxl-4,
  1865. .gy-xxl-4 {
  1866. --bs-gutter-y: 1.5rem;
  1867. }
  1868. .g-xxl-5,
  1869. .gx-xxl-5 {
  1870. --bs-gutter-x: 3rem;
  1871. }
  1872. .g-xxl-5,
  1873. .gy-xxl-5 {
  1874. --bs-gutter-y: 3rem;
  1875. }
  1876. }
  1877. .table {
  1878. --bs-table-color: var(--bs-body-color);
  1879. --bs-table-bg: transparent;
  1880. --bs-table-border-color: var(--bs-border-color);
  1881. --bs-table-accent-bg: transparent;
  1882. --bs-table-striped-color: var(--bs-body-color);
  1883. --bs-table-striped-bg: var(--bs-gray-100);
  1884. --bs-table-active-color: var(--bs-body-color);
  1885. --bs-table-active-bg: var(--bs-gray-100);
  1886. --bs-table-hover-color: var(--bs-body-color);
  1887. --bs-table-hover-bg: var(--bs-gray-100);
  1888. width: 100%;
  1889. margin-bottom: 1rem;
  1890. color: var(--bs-table-color);
  1891. vertical-align: top;
  1892. border-color: var(--bs-table-border-color);
  1893. }
  1894. .table > :not(caption) > * > * {
  1895. padding: 0.75rem 0.75rem;
  1896. background-color: var(--bs-table-bg);
  1897. border-bottom-width: 1px;
  1898. -webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  1899. box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  1900. }
  1901. .table > tbody {
  1902. vertical-align: inherit;
  1903. }
  1904. .table > thead {
  1905. vertical-align: bottom;
  1906. }
  1907. .table-group-divider {
  1908. border-top: 2px solid var(--bs-border-color);
  1909. }
  1910. .caption-top {
  1911. caption-side: top;
  1912. }
  1913. .table-sm > :not(caption) > * > * {
  1914. padding: 0.3rem 0.3rem;
  1915. }
  1916. .table-bordered > :not(caption) > * {
  1917. border-width: 1px 0;
  1918. }
  1919. .table-bordered > :not(caption) > * > * {
  1920. border-width: 0 1px;
  1921. }
  1922. .table-borderless > :not(caption) > * > * {
  1923. border-bottom-width: 0;
  1924. }
  1925. .table-borderless > :not(:first-child) {
  1926. border-top-width: 0;
  1927. }
  1928. .table-striped > tbody > tr:nth-of-type(odd) > * {
  1929. --bs-table-accent-bg: var(--bs-table-striped-bg);
  1930. color: var(--bs-table-striped-color);
  1931. }
  1932. .table-striped-columns > :not(caption) > tr > :nth-child(even) {
  1933. --bs-table-accent-bg: var(--bs-table-striped-bg);
  1934. color: var(--bs-table-striped-color);
  1935. }
  1936. .table-active {
  1937. --bs-table-accent-bg: var(--bs-table-active-bg);
  1938. color: var(--bs-table-active-color);
  1939. }
  1940. .table-hover > tbody > tr:hover > * {
  1941. --bs-table-accent-bg: var(--bs-table-hover-bg);
  1942. color: var(--bs-table-hover-color);
  1943. }
  1944. .table-primary {
  1945. --bs-table-color: #000;
  1946. --bs-table-bg: #dde2fa;
  1947. --bs-table-border-color: #c7cbe1;
  1948. --bs-table-striped-bg: #d2d7ee;
  1949. --bs-table-striped-color: #000;
  1950. --bs-table-active-bg: #c7cbe1;
  1951. --bs-table-active-color: #000;
  1952. --bs-table-hover-bg: #ccd1e7;
  1953. --bs-table-hover-color: #000;
  1954. color: var(--bs-table-color);
  1955. border-color: var(--bs-table-border-color);
  1956. }
  1957. .table-secondary {
  1958. --bs-table-color: #000;
  1959. --bs-table-bg: #e3e4e8;
  1960. --bs-table-border-color: #cccdd1;
  1961. --bs-table-striped-bg: #d8d9dc;
  1962. --bs-table-striped-color: #000;
  1963. --bs-table-active-bg: #cccdd1;
  1964. --bs-table-active-color: #000;
  1965. --bs-table-hover-bg: #d2d3d7;
  1966. --bs-table-hover-color: #000;
  1967. color: var(--bs-table-color);
  1968. border-color: var(--bs-table-border-color);
  1969. }
  1970. .table-success {
  1971. --bs-table-color: #000;
  1972. --bs-table-bg: #d6f3e9;
  1973. --bs-table-border-color: #c1dbd2;
  1974. --bs-table-striped-bg: #cbe7dd;
  1975. --bs-table-striped-color: #000;
  1976. --bs-table-active-bg: #c1dbd2;
  1977. --bs-table-active-color: #000;
  1978. --bs-table-hover-bg: #c6e1d8;
  1979. --bs-table-hover-color: #000;
  1980. color: var(--bs-table-color);
  1981. border-color: var(--bs-table-border-color);
  1982. }
  1983. .table-info {
  1984. --bs-table-color: #000;
  1985. --bs-table-bg: #dcedfc;
  1986. --bs-table-border-color: #c6d5e3;
  1987. --bs-table-striped-bg: #d1e1ef;
  1988. --bs-table-striped-color: #000;
  1989. --bs-table-active-bg: #c6d5e3;
  1990. --bs-table-active-color: #000;
  1991. --bs-table-hover-bg: #ccdbe9;
  1992. --bs-table-hover-color: #000;
  1993. color: var(--bs-table-color);
  1994. border-color: var(--bs-table-border-color);
  1995. }
  1996. .table-warning {
  1997. --bs-table-color: #000;
  1998. --bs-table-bg: #fcf0db;
  1999. --bs-table-border-color: #e3d8c5;
  2000. --bs-table-striped-bg: #efe4d0;
  2001. --bs-table-striped-color: #000;
  2002. --bs-table-active-bg: #e3d8c5;
  2003. --bs-table-active-color: #000;
  2004. --bs-table-hover-bg: #e9decb;
  2005. --bs-table-hover-color: #000;
  2006. color: var(--bs-table-color);
  2007. border-color: var(--bs-table-border-color);
  2008. }
  2009. .table-danger {
  2010. --bs-table-color: #000;
  2011. --bs-table-bg: #fde1e1;
  2012. --bs-table-border-color: #e4cbcb;
  2013. --bs-table-striped-bg: #f0d6d6;
  2014. --bs-table-striped-color: #000;
  2015. --bs-table-active-bg: #e4cbcb;
  2016. --bs-table-active-color: #000;
  2017. --bs-table-hover-bg: #ead0d0;
  2018. --bs-table-hover-color: #000;
  2019. color: var(--bs-table-color);
  2020. border-color: var(--bs-table-border-color);
  2021. }
  2022. .table-light {
  2023. --bs-table-color: #000;
  2024. --bs-table-bg: #eff2f7;
  2025. --bs-table-border-color: #d7dade;
  2026. --bs-table-striped-bg: #e3e6eb;
  2027. --bs-table-striped-color: #000;
  2028. --bs-table-active-bg: #d7dade;
  2029. --bs-table-active-color: #000;
  2030. --bs-table-hover-bg: #dde0e4;
  2031. --bs-table-hover-color: #000;
  2032. color: var(--bs-table-color);
  2033. border-color: var(--bs-table-border-color);
  2034. }
  2035. .table-dark {
  2036. --bs-table-color: #fff;
  2037. --bs-table-bg: #343a40;
  2038. --bs-table-border-color: #484e53;
  2039. --bs-table-striped-bg: #3e444a;
  2040. --bs-table-striped-color: #fff;
  2041. --bs-table-active-bg: #484e53;
  2042. --bs-table-active-color: #fff;
  2043. --bs-table-hover-bg: #43494e;
  2044. --bs-table-hover-color: #fff;
  2045. color: var(--bs-table-color);
  2046. border-color: var(--bs-table-border-color);
  2047. }
  2048. .table-responsive {
  2049. overflow-x: auto;
  2050. -webkit-overflow-scrolling: touch;
  2051. }
  2052. @media (max-width: 575.98px) {
  2053. .table-responsive-sm {
  2054. overflow-x: auto;
  2055. -webkit-overflow-scrolling: touch;
  2056. }
  2057. }
  2058. @media (max-width: 767.98px) {
  2059. .table-responsive-md {
  2060. overflow-x: auto;
  2061. -webkit-overflow-scrolling: touch;
  2062. }
  2063. }
  2064. @media (max-width: 991.98px) {
  2065. .table-responsive-lg {
  2066. overflow-x: auto;
  2067. -webkit-overflow-scrolling: touch;
  2068. }
  2069. }
  2070. @media (max-width: 1199.98px) {
  2071. .table-responsive-xl {
  2072. overflow-x: auto;
  2073. -webkit-overflow-scrolling: touch;
  2074. }
  2075. }
  2076. @media (max-width: 1399.98px) {
  2077. .table-responsive-xxl {
  2078. overflow-x: auto;
  2079. -webkit-overflow-scrolling: touch;
  2080. }
  2081. }
  2082. .form-label {
  2083. margin-bottom: 0.5rem;
  2084. }
  2085. .col-form-label {
  2086. padding-top: calc(0.47rem + 1px);
  2087. padding-bottom: calc(0.47rem + 1px);
  2088. margin-bottom: 0;
  2089. font-size: inherit;
  2090. line-height: 1.5;
  2091. }
  2092. .col-form-label-lg {
  2093. padding-top: calc(0.5rem + 1px);
  2094. padding-bottom: calc(0.5rem + 1px);
  2095. font-size: 1.015625rem;
  2096. }
  2097. .col-form-label-sm {
  2098. padding-top: calc(0.25rem + 1px);
  2099. padding-bottom: calc(0.25rem + 1px);
  2100. font-size: 0.7109375rem;
  2101. }
  2102. .form-text {
  2103. margin-top: 0.25rem;
  2104. font-size: 80%;
  2105. color: var(--bs-gray-600);
  2106. }
  2107. .form-control {
  2108. display: block;
  2109. width: 100%;
  2110. padding: 0.47rem 0.75rem;
  2111. font-size: 0.8125rem;
  2112. font-weight: 400;
  2113. line-height: 1.5;
  2114. color: var(--bs-gray-700);
  2115. background-color: var(--bs-custom-white);
  2116. background-clip: padding-box;
  2117. border: 1px solid var(--bs-input-border-color);
  2118. -webkit-appearance: none;
  2119. -moz-appearance: none;
  2120. appearance: none;
  2121. border-radius: 0.25rem;
  2122. -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2123. transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2124. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2125. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2126. }
  2127. @media (prefers-reduced-motion: reduce) {
  2128. .form-control {
  2129. -webkit-transition: none;
  2130. transition: none;
  2131. }
  2132. }
  2133. .form-control[type=file] {
  2134. overflow: hidden;
  2135. }
  2136. .form-control[type=file]:not(:disabled):not([readonly]) {
  2137. cursor: pointer;
  2138. }
  2139. .form-control:focus {
  2140. color: var(--bs-gray-700);
  2141. background-color: var(--bs-custom-white);
  2142. border-color: var(--bs-input-focus-border-color);
  2143. outline: 0;
  2144. -webkit-box-shadow: none;
  2145. box-shadow: none;
  2146. }
  2147. .form-control::-webkit-date-and-time-value {
  2148. height: 1.5em;
  2149. }
  2150. .form-control::-webkit-input-placeholder {
  2151. color: var(--bs-gray-600);
  2152. opacity: 1;
  2153. }
  2154. .form-control::-moz-placeholder {
  2155. color: var(--bs-gray-600);
  2156. opacity: 1;
  2157. }
  2158. .form-control:-ms-input-placeholder {
  2159. color: var(--bs-gray-600);
  2160. opacity: 1;
  2161. }
  2162. .form-control::-ms-input-placeholder {
  2163. color: var(--bs-gray-600);
  2164. opacity: 1;
  2165. }
  2166. .form-control::placeholder {
  2167. color: var(--bs-gray-600);
  2168. opacity: 1;
  2169. }
  2170. .form-control:disabled {
  2171. background-color: var(--bs-gray-200);
  2172. opacity: 1;
  2173. }
  2174. .form-control::-webkit-file-upload-button {
  2175. padding: 0.47rem 0.75rem;
  2176. margin: -0.47rem -0.75rem;
  2177. -webkit-margin-end: 0.75rem;
  2178. margin-inline-end: 0.75rem;
  2179. color: var(--bs-gray-700);
  2180. background-color: var(--bs-gray-200);
  2181. pointer-events: none;
  2182. border-color: inherit;
  2183. border-style: solid;
  2184. border-width: 0;
  2185. border-inline-end-width: 1px;
  2186. border-radius: 0;
  2187. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2188. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2189. 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;
  2190. 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, -webkit-box-shadow 0.15s ease-in-out;
  2191. }
  2192. .form-control::file-selector-button {
  2193. padding: 0.47rem 0.75rem;
  2194. margin: -0.47rem -0.75rem;
  2195. -webkit-margin-end: 0.75rem;
  2196. margin-inline-end: 0.75rem;
  2197. color: var(--bs-gray-700);
  2198. background-color: var(--bs-gray-200);
  2199. pointer-events: none;
  2200. border-color: inherit;
  2201. border-style: solid;
  2202. border-width: 0;
  2203. border-inline-end-width: 1px;
  2204. border-radius: 0;
  2205. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2206. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2207. 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;
  2208. 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, -webkit-box-shadow 0.15s ease-in-out;
  2209. }
  2210. @media (prefers-reduced-motion: reduce) {
  2211. .form-control::-webkit-file-upload-button {
  2212. -webkit-transition: none;
  2213. transition: none;
  2214. }
  2215. .form-control::file-selector-button {
  2216. -webkit-transition: none;
  2217. transition: none;
  2218. }
  2219. }
  2220. .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  2221. background-color: var(--bs-gray-200);
  2222. }
  2223. .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  2224. background-color: var(--bs-gray-200);
  2225. }
  2226. .form-control-plaintext {
  2227. display: block;
  2228. width: 100%;
  2229. padding: 0.47rem 0;
  2230. margin-bottom: 0;
  2231. line-height: 1.5;
  2232. color: var(--bs-body-color);
  2233. background-color: transparent;
  2234. border: solid transparent;
  2235. border-width: 1px 0;
  2236. }
  2237. .form-control-plaintext:focus {
  2238. outline: 0;
  2239. }
  2240. .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  2241. padding-right: 0;
  2242. padding-left: 0;
  2243. }
  2244. .form-control-sm {
  2245. min-height: calc(1.5em + 0.5rem + 2px);
  2246. padding: 0.25rem 0.5rem;
  2247. font-size: 0.7109375rem;
  2248. border-radius: 0.2rem;
  2249. }
  2250. .form-control-sm::-webkit-file-upload-button {
  2251. padding: 0.25rem 0.5rem;
  2252. margin: -0.25rem -0.5rem;
  2253. -webkit-margin-end: 0.5rem;
  2254. margin-inline-end: 0.5rem;
  2255. }
  2256. .form-control-sm::file-selector-button {
  2257. padding: 0.25rem 0.5rem;
  2258. margin: -0.25rem -0.5rem;
  2259. -webkit-margin-end: 0.5rem;
  2260. margin-inline-end: 0.5rem;
  2261. }
  2262. .form-control-lg {
  2263. min-height: calc(1.5em + 1rem + 2px);
  2264. padding: 0.5rem 1rem;
  2265. font-size: 1.015625rem;
  2266. border-radius: 0.4rem;
  2267. }
  2268. .form-control-lg::-webkit-file-upload-button {
  2269. padding: 0.5rem 1rem;
  2270. margin: -0.5rem -1rem;
  2271. -webkit-margin-end: 1rem;
  2272. margin-inline-end: 1rem;
  2273. }
  2274. .form-control-lg::file-selector-button {
  2275. padding: 0.5rem 1rem;
  2276. margin: -0.5rem -1rem;
  2277. -webkit-margin-end: 1rem;
  2278. margin-inline-end: 1rem;
  2279. }
  2280. textarea.form-control {
  2281. min-height: calc(1.5em + 0.94rem + 2px);
  2282. }
  2283. textarea.form-control-sm {
  2284. min-height: calc(1.5em + 0.5rem + 2px);
  2285. }
  2286. textarea.form-control-lg {
  2287. min-height: calc(1.5em + 1rem + 2px);
  2288. }
  2289. .form-control-color {
  2290. width: 3rem;
  2291. height: calc(1.5em + 0.94rem + 2px);
  2292. padding: 0.47rem;
  2293. }
  2294. .form-control-color:not(:disabled):not([readonly]) {
  2295. cursor: pointer;
  2296. }
  2297. .form-control-color::-moz-color-swatch {
  2298. border: 0 !important;
  2299. border-radius: 0.25rem;
  2300. }
  2301. .form-control-color::-webkit-color-swatch {
  2302. border-radius: 0.25rem;
  2303. }
  2304. .form-control-color.form-control-sm {
  2305. height: calc(1.5em + 0.5rem + 2px);
  2306. }
  2307. .form-control-color.form-control-lg {
  2308. height: calc(1.5em + 1rem + 2px);
  2309. }
  2310. .form-select {
  2311. display: block;
  2312. width: 100%;
  2313. padding: 0.47rem 1.75rem 0.47rem 0.75rem;
  2314. -moz-padding-start: calc(0.75rem - 3px);
  2315. font-size: 0.8125rem;
  2316. font-weight: 400;
  2317. line-height: 1.5;
  2318. color: var(--bs-gray-700);
  2319. background-color: var(--bs-custom-white);
  2320. 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");
  2321. background-repeat: no-repeat;
  2322. background-position: right 0.75rem center;
  2323. background-size: 16px 12px;
  2324. border: 1px solid var(--bs-input-border-color);
  2325. border-radius: 0.25rem;
  2326. -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2327. transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2328. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2329. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2330. -webkit-appearance: none;
  2331. -moz-appearance: none;
  2332. appearance: none;
  2333. }
  2334. @media (prefers-reduced-motion: reduce) {
  2335. .form-select {
  2336. -webkit-transition: none;
  2337. transition: none;
  2338. }
  2339. }
  2340. .form-select:focus {
  2341. border-color: var(--bs-input-focus-border-color);
  2342. outline: 0;
  2343. -webkit-box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
  2344. box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
  2345. }
  2346. .form-select[multiple], .form-select[size]:not([size="1"]) {
  2347. padding-right: 0.75rem;
  2348. background-image: none;
  2349. }
  2350. .form-select:disabled {
  2351. color: #74788d;
  2352. background-color: #eff2f7;
  2353. }
  2354. .form-select:-moz-focusring {
  2355. color: transparent;
  2356. text-shadow: 0 0 0 var(--bs-gray-700);
  2357. }
  2358. .form-select-sm {
  2359. padding-top: 0.25rem;
  2360. padding-bottom: 0.25rem;
  2361. padding-left: 0.5rem;
  2362. font-size: 0.7109375rem;
  2363. border-radius: 0.2rem;
  2364. }
  2365. .form-select-lg {
  2366. padding-top: 0.5rem;
  2367. padding-bottom: 0.5rem;
  2368. padding-left: 1rem;
  2369. font-size: 1.015625rem;
  2370. border-radius: 0.4rem;
  2371. }
  2372. .form-check {
  2373. display: block;
  2374. min-height: 1.21875rem;
  2375. padding-left: 1.5em;
  2376. margin-bottom: 0.125rem;
  2377. }
  2378. .form-check .form-check-input {
  2379. float: left;
  2380. margin-left: -1.5em;
  2381. }
  2382. .form-check-reverse {
  2383. padding-right: 1.5em;
  2384. padding-left: 0;
  2385. text-align: right;
  2386. }
  2387. .form-check-reverse .form-check-input {
  2388. float: right;
  2389. margin-right: -1.5em;
  2390. margin-left: 0;
  2391. }
  2392. .form-check-input {
  2393. width: 1em;
  2394. height: 1em;
  2395. margin-top: 0.25em;
  2396. vertical-align: top;
  2397. background-color: var(--bs-custom-white);
  2398. background-repeat: no-repeat;
  2399. background-position: center;
  2400. background-size: contain;
  2401. border: 1px solid var(--bs-form-check-input-border);
  2402. -webkit-appearance: none;
  2403. -moz-appearance: none;
  2404. appearance: none;
  2405. -webkit-print-color-adjust: exact;
  2406. print-color-adjust: exact;
  2407. -webkit-transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2408. transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2409. 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;
  2410. 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, -webkit-box-shadow 0.15s ease-in-out;
  2411. }
  2412. @media (prefers-reduced-motion: reduce) {
  2413. .form-check-input {
  2414. -webkit-transition: none;
  2415. transition: none;
  2416. }
  2417. }
  2418. .form-check-input[type=checkbox] {
  2419. border-radius: 0.25em;
  2420. }
  2421. .form-check-input[type=radio] {
  2422. border-radius: 50%;
  2423. }
  2424. .form-check-input:active {
  2425. -webkit-filter: brightness(90%);
  2426. filter: brightness(90%);
  2427. }
  2428. .form-check-input:focus {
  2429. border-color: var(--bs-input-focus-border-color);
  2430. outline: 0;
  2431. -webkit-box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
  2432. box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
  2433. }
  2434. .form-check-input:checked {
  2435. background-color: #556ee6;
  2436. border-color: #556ee6;
  2437. }
  2438. .form-check-input:checked[type=checkbox] {
  2439. 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");
  2440. }
  2441. .form-check-input:checked[type=radio] {
  2442. 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");
  2443. }
  2444. .form-check-input[type=checkbox]:indeterminate {
  2445. background-color: #556ee6;
  2446. border-color: #556ee6;
  2447. background-image: url("data:image/svg +xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='none' stroke='#fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/></svg>");
  2448. }
  2449. .form-check-input:disabled {
  2450. pointer-events: none;
  2451. -webkit-filter: none;
  2452. filter: none;
  2453. opacity: 0.5;
  2454. }
  2455. .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  2456. cursor: default;
  2457. opacity: 0.5;
  2458. }
  2459. .form-switch {
  2460. padding-left: 2.5em;
  2461. }
  2462. .form-switch .form-check-input {
  2463. width: 2em;
  2464. margin-left: -2.5em;
  2465. 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='var%28--bs-body-color%29'/%3e%3c/svg%3e");
  2466. background-position: left center;
  2467. border-radius: 2em;
  2468. -webkit-transition: background-position 0.15s ease-in-out;
  2469. transition: background-position 0.15s ease-in-out;
  2470. }
  2471. @media (prefers-reduced-motion: reduce) {
  2472. .form-switch .form-check-input {
  2473. -webkit-transition: none;
  2474. transition: none;
  2475. }
  2476. }
  2477. .form-switch .form-check-input:focus {
  2478. 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='var%28--bs-input-focus-border-color%29'/%3e%3c/svg%3e");
  2479. }
  2480. .form-switch .form-check-input:checked {
  2481. background-position: right center;
  2482. 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");
  2483. }
  2484. .form-switch.form-check-reverse {
  2485. padding-right: 2.5em;
  2486. padding-left: 0;
  2487. }
  2488. .form-switch.form-check-reverse .form-check-input {
  2489. margin-right: -2.5em;
  2490. margin-left: 0;
  2491. }
  2492. .form-check-inline {
  2493. display: inline-block;
  2494. margin-right: 1rem;
  2495. }
  2496. .btn-check {
  2497. position: absolute;
  2498. clip: rect(0, 0, 0, 0);
  2499. pointer-events: none;
  2500. }
  2501. .btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  2502. pointer-events: none;
  2503. -webkit-filter: none;
  2504. filter: none;
  2505. opacity: 0.65;
  2506. }
  2507. .form-range {
  2508. width: 100%;
  2509. height: 1.3rem;
  2510. padding: 0;
  2511. background-color: transparent;
  2512. -webkit-appearance: none;
  2513. -moz-appearance: none;
  2514. appearance: none;
  2515. }
  2516. .form-range:focus {
  2517. outline: 0;
  2518. }
  2519. .form-range:focus::-webkit-slider-thumb {
  2520. -webkit-box-shadow: 0 0 0 1px #f8f8fb, none;
  2521. box-shadow: 0 0 0 1px #f8f8fb, none;
  2522. }
  2523. .form-range:focus::-moz-range-thumb {
  2524. box-shadow: 0 0 0 1px #f8f8fb, none;
  2525. }
  2526. .form-range::-moz-focus-outer {
  2527. border: 0;
  2528. }
  2529. .form-range::-webkit-slider-thumb {
  2530. width: 1rem;
  2531. height: 1rem;
  2532. margin-top: -0.25rem;
  2533. background-color: #556ee6;
  2534. border: 0;
  2535. border-radius: 1rem;
  2536. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2537. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2538. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2539. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2540. -webkit-appearance: none;
  2541. appearance: none;
  2542. }
  2543. @media (prefers-reduced-motion: reduce) {
  2544. .form-range::-webkit-slider-thumb {
  2545. -webkit-transition: none;
  2546. transition: none;
  2547. }
  2548. }
  2549. .form-range::-webkit-slider-thumb:active {
  2550. background-color: #ccd4f8;
  2551. }
  2552. .form-range::-webkit-slider-runnable-track {
  2553. width: 100%;
  2554. height: 0.5rem;
  2555. color: transparent;
  2556. cursor: pointer;
  2557. background-color: var(--bs-gray-300);
  2558. border-color: transparent;
  2559. border-radius: 1rem;
  2560. }
  2561. .form-range::-moz-range-thumb {
  2562. width: 1rem;
  2563. height: 1rem;
  2564. background-color: #556ee6;
  2565. border: 0;
  2566. border-radius: 1rem;
  2567. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2568. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2569. -moz-appearance: none;
  2570. appearance: none;
  2571. }
  2572. @media (prefers-reduced-motion: reduce) {
  2573. .form-range::-moz-range-thumb {
  2574. -moz-transition: none;
  2575. transition: none;
  2576. }
  2577. }
  2578. .form-range::-moz-range-thumb:active {
  2579. background-color: #ccd4f8;
  2580. }
  2581. .form-range::-moz-range-track {
  2582. width: 100%;
  2583. height: 0.5rem;
  2584. color: transparent;
  2585. cursor: pointer;
  2586. background-color: var(--bs-gray-300);
  2587. border-color: transparent;
  2588. border-radius: 1rem;
  2589. }
  2590. .form-range:disabled {
  2591. pointer-events: none;
  2592. }
  2593. .form-range:disabled::-webkit-slider-thumb {
  2594. background-color: #adb5bd;
  2595. }
  2596. .form-range:disabled::-moz-range-thumb {
  2597. background-color: #adb5bd;
  2598. }
  2599. .form-floating {
  2600. position: relative;
  2601. }
  2602. .form-floating > .form-control,
  2603. .form-floating > .form-control-plaintext,
  2604. .form-floating > .form-select {
  2605. height: calc(3.5rem + 2px);
  2606. line-height: 1.25;
  2607. }
  2608. .form-floating > label {
  2609. position: absolute;
  2610. top: 0;
  2611. left: 0;
  2612. width: 100%;
  2613. height: 100%;
  2614. padding: 1rem 0.75rem;
  2615. overflow: hidden;
  2616. text-overflow: ellipsis;
  2617. white-space: nowrap;
  2618. pointer-events: none;
  2619. border: 1px solid transparent;
  2620. -webkit-transform-origin: 0 0;
  2621. transform-origin: 0 0;
  2622. -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  2623. transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  2624. transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  2625. transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  2626. }
  2627. @media (prefers-reduced-motion: reduce) {
  2628. .form-floating > label {
  2629. -webkit-transition: none;
  2630. transition: none;
  2631. }
  2632. }
  2633. .form-floating > .form-control,
  2634. .form-floating > .form-control-plaintext {
  2635. padding: 1rem 0.75rem;
  2636. }
  2637. .form-floating > .form-control::-webkit-input-placeholder, .form-floating > .form-control-plaintext::-webkit-input-placeholder {
  2638. color: transparent;
  2639. }
  2640. .form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  2641. color: transparent;
  2642. }
  2643. .form-floating > .form-control:-ms-input-placeholder, .form-floating > .form-control-plaintext:-ms-input-placeholder {
  2644. color: transparent;
  2645. }
  2646. .form-floating > .form-control::-ms-input-placeholder, .form-floating > .form-control-plaintext::-ms-input-placeholder {
  2647. color: transparent;
  2648. }
  2649. .form-floating > .form-control::placeholder,
  2650. .form-floating > .form-control-plaintext::placeholder {
  2651. color: transparent;
  2652. }
  2653. .form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
  2654. padding-top: 1.625rem;
  2655. padding-bottom: 0.625rem;
  2656. }
  2657. .form-floating > .form-control:not(:-ms-input-placeholder), .form-floating > .form-control-plaintext:not(:-ms-input-placeholder) {
  2658. padding-top: 1.625rem;
  2659. padding-bottom: 0.625rem;
  2660. }
  2661. .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
  2662. .form-floating > .form-control-plaintext:focus,
  2663. .form-floating > .form-control-plaintext:not(:placeholder-shown) {
  2664. padding-top: 1.625rem;
  2665. padding-bottom: 0.625rem;
  2666. }
  2667. .form-floating > .form-control:-webkit-autofill,
  2668. .form-floating > .form-control-plaintext:-webkit-autofill {
  2669. padding-top: 1.625rem;
  2670. padding-bottom: 0.625rem;
  2671. }
  2672. .form-floating > .form-select {
  2673. padding-top: 1.625rem;
  2674. padding-bottom: 0.625rem;
  2675. }
  2676. .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  2677. opacity: 0.65;
  2678. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2679. }
  2680. .form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  2681. opacity: 0.65;
  2682. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2683. }
  2684. .form-floating > .form-control:focus ~ label,
  2685. .form-floating > .form-control:not(:placeholder-shown) ~ label,
  2686. .form-floating > .form-control-plaintext ~ label,
  2687. .form-floating > .form-select ~ label {
  2688. opacity: 0.65;
  2689. -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2690. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2691. }
  2692. .form-floating > .form-control:-webkit-autofill ~ label {
  2693. opacity: 0.65;
  2694. -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2695. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2696. }
  2697. .form-floating > .form-control-plaintext ~ label {
  2698. border-width: 1px 0;
  2699. }
  2700. .input-group {
  2701. position: relative;
  2702. display: -webkit-box;
  2703. display: -ms-flexbox;
  2704. display: flex;
  2705. -ms-flex-wrap: wrap;
  2706. flex-wrap: wrap;
  2707. -webkit-box-align: stretch;
  2708. -ms-flex-align: stretch;
  2709. align-items: stretch;
  2710. width: 100%;
  2711. }
  2712. .input-group > .form-control,
  2713. .input-group > .form-select,
  2714. .input-group > .form-floating {
  2715. position: relative;
  2716. -webkit-box-flex: 1;
  2717. -ms-flex: 1 1 auto;
  2718. flex: 1 1 auto;
  2719. width: 1%;
  2720. min-width: 0;
  2721. }
  2722. .input-group > .form-control:focus,
  2723. .input-group > .form-select:focus,
  2724. .input-group > .form-floating:focus-within {
  2725. z-index: 3;
  2726. }
  2727. .input-group .btn {
  2728. position: relative;
  2729. z-index: 2;
  2730. }
  2731. .input-group .btn:focus {
  2732. z-index: 3;
  2733. }
  2734. .input-group-text {
  2735. display: -webkit-box;
  2736. display: -ms-flexbox;
  2737. display: flex;
  2738. -webkit-box-align: center;
  2739. -ms-flex-align: center;
  2740. align-items: center;
  2741. padding: 0.47rem 0.75rem;
  2742. font-size: 0.8125rem;
  2743. font-weight: 400;
  2744. line-height: 1.5;
  2745. color: var(--bs-gray-700);
  2746. text-align: center;
  2747. white-space: nowrap;
  2748. background-color: var(--bs-gray-200);
  2749. border: 1px solid var(--bs-input-border-color);
  2750. border-radius: 0.25rem;
  2751. }
  2752. .input-group-lg > .form-control,
  2753. .input-group-lg > .form-select,
  2754. .input-group-lg > .input-group-text,
  2755. .input-group-lg > .btn {
  2756. padding: 0.5rem 1rem;
  2757. font-size: 1.015625rem;
  2758. border-radius: 0.4rem;
  2759. }
  2760. .input-group-sm > .form-control,
  2761. .input-group-sm > .form-select,
  2762. .input-group-sm > .input-group-text,
  2763. .input-group-sm > .btn {
  2764. padding: 0.25rem 0.5rem;
  2765. font-size: 0.7109375rem;
  2766. border-radius: 0.2rem;
  2767. }
  2768. .input-group-lg > .form-select,
  2769. .input-group-sm > .form-select {
  2770. padding-right: 2.5rem;
  2771. }
  2772. .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2773. .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3),
  2774. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control,
  2775. .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select {
  2776. border-top-right-radius: 0;
  2777. border-bottom-right-radius: 0;
  2778. }
  2779. .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
  2780. .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4),
  2781. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control,
  2782. .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select {
  2783. border-top-right-radius: 0;
  2784. border-bottom-right-radius: 0;
  2785. }
  2786. .input-group > :not(:first-child):not(.dropdown-menu):not(.form-floating):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback),
  2787. .input-group > .form-floating:not(:first-child) > .form-control,
  2788. .input-group > .form-floating:not(:first-child) > .form-select {
  2789. margin-left: -1px;
  2790. border-top-left-radius: 0;
  2791. border-bottom-left-radius: 0;
  2792. }
  2793. .valid-feedback {
  2794. display: none;
  2795. width: 100%;
  2796. margin-top: 0.25rem;
  2797. font-size: 80%;
  2798. color: #34c38f;
  2799. }
  2800. .valid-tooltip {
  2801. position: absolute;
  2802. top: 100%;
  2803. z-index: 5;
  2804. display: none;
  2805. max-width: 100%;
  2806. padding: 0.4rem 0.7rem;
  2807. margin-top: 0.1rem;
  2808. font-size: 0.7109375rem;
  2809. line-height: 1.5;
  2810. color: #fff;
  2811. background-color: rgba(52, 195, 143, 0.9);
  2812. border-radius: 0.25rem;
  2813. }
  2814. .was-validated :valid ~ .valid-feedback,
  2815. .was-validated :valid ~ .valid-tooltip,
  2816. .is-valid ~ .valid-feedback,
  2817. .is-valid ~ .valid-tooltip {
  2818. display: block;
  2819. }
  2820. .was-validated .form-control:valid, .form-control.is-valid {
  2821. border-color: #34c38f;
  2822. padding-right: calc(1.5em + 0.94rem);
  2823. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2334c38f' 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");
  2824. background-repeat: no-repeat;
  2825. background-position: right calc(0.375em + 0.235rem) center;
  2826. background-size: calc(0.75em + 0.47rem) calc(0.75em + 0.47rem);
  2827. }
  2828. .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  2829. border-color: #34c38f;
  2830. -webkit-box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.25);
  2831. box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.25);
  2832. }
  2833. .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  2834. padding-right: calc(1.5em + 0.94rem);
  2835. background-position: top calc(0.375em + 0.235rem) right calc(0.375em + 0.235rem);
  2836. }
  2837. .was-validated .form-select:valid, .form-select.is-valid {
  2838. border-color: #34c38f;
  2839. }
  2840. .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  2841. padding-right: calc(0.75em + 3.205rem);
  2842. 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='%2334c38f' 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");
  2843. background-position: right 0.75rem center, center right 2.5rem;
  2844. background-size: 16px 12px, calc(0.75em + 0.47rem) calc(0.75em + 0.47rem);
  2845. }
  2846. .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  2847. border-color: #34c38f;
  2848. -webkit-box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.25);
  2849. box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.25);
  2850. }
  2851. .was-validated .form-control-color:valid, .form-control-color.is-valid {
  2852. width: calc(3rem + calc(1.5em + 0.94rem));
  2853. }
  2854. .was-validated .form-check-input:valid, .form-check-input.is-valid {
  2855. border-color: #34c38f;
  2856. }
  2857. .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  2858. background-color: #34c38f;
  2859. }
  2860. .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  2861. -webkit-box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.25);
  2862. box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.25);
  2863. }
  2864. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  2865. color: #34c38f;
  2866. }
  2867. .form-check-inline .form-check-input ~ .valid-feedback {
  2868. margin-left: 0.5em;
  2869. }
  2870. .was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
  2871. .was-validated .input-group .form-select:valid,
  2872. .input-group .form-select.is-valid {
  2873. z-index: 1;
  2874. }
  2875. .was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
  2876. .was-validated .input-group .form-select:valid:focus,
  2877. .input-group .form-select.is-valid:focus {
  2878. z-index: 3;
  2879. }
  2880. .invalid-feedback {
  2881. display: none;
  2882. width: 100%;
  2883. margin-top: 0.25rem;
  2884. font-size: 80%;
  2885. color: #f46a6a;
  2886. }
  2887. .invalid-tooltip {
  2888. position: absolute;
  2889. top: 100%;
  2890. z-index: 5;
  2891. display: none;
  2892. max-width: 100%;
  2893. padding: 0.4rem 0.7rem;
  2894. margin-top: 0.1rem;
  2895. font-size: 0.7109375rem;
  2896. line-height: 1.5;
  2897. color: #fff;
  2898. background-color: rgba(244, 106, 106, 0.9);
  2899. border-radius: 0.25rem;
  2900. }
  2901. .was-validated :invalid ~ .invalid-feedback,
  2902. .was-validated :invalid ~ .invalid-tooltip,
  2903. .is-invalid ~ .invalid-feedback,
  2904. .is-invalid ~ .invalid-tooltip {
  2905. display: block;
  2906. }
  2907. .was-validated .form-control:invalid, .form-control.is-invalid {
  2908. border-color: #f46a6a;
  2909. padding-right: calc(1.5em + 0.94rem);
  2910. 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='%23f46a6a'%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='%23f46a6a' stroke='none'/%3e%3c/svg%3e");
  2911. background-repeat: no-repeat;
  2912. background-position: right calc(0.375em + 0.235rem) center;
  2913. background-size: calc(0.75em + 0.47rem) calc(0.75em + 0.47rem);
  2914. }
  2915. .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  2916. border-color: #f46a6a;
  2917. -webkit-box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.25);
  2918. box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.25);
  2919. }
  2920. .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  2921. padding-right: calc(1.5em + 0.94rem);
  2922. background-position: top calc(0.375em + 0.235rem) right calc(0.375em + 0.235rem);
  2923. }
  2924. .was-validated .form-select:invalid, .form-select.is-invalid {
  2925. border-color: #f46a6a;
  2926. }
  2927. .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  2928. padding-right: calc(0.75em + 3.205rem);
  2929. 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='%23f46a6a'%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='%23f46a6a' stroke='none'/%3e%3c/svg%3e");
  2930. background-position: right 0.75rem center, center right 2.5rem;
  2931. background-size: 16px 12px, calc(0.75em + 0.47rem) calc(0.75em + 0.47rem);
  2932. }
  2933. .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  2934. border-color: #f46a6a;
  2935. -webkit-box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.25);
  2936. box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.25);
  2937. }
  2938. .was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  2939. width: calc(3rem + calc(1.5em + 0.94rem));
  2940. }
  2941. .was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  2942. border-color: #f46a6a;
  2943. }
  2944. .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  2945. background-color: #f46a6a;
  2946. }
  2947. .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  2948. -webkit-box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.25);
  2949. box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.25);
  2950. }
  2951. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  2952. color: #f46a6a;
  2953. }
  2954. .form-check-inline .form-check-input ~ .invalid-feedback {
  2955. margin-left: 0.5em;
  2956. }
  2957. .was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
  2958. .was-validated .input-group .form-select:invalid,
  2959. .input-group .form-select.is-invalid {
  2960. z-index: 2;
  2961. }
  2962. .was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
  2963. .was-validated .input-group .form-select:invalid:focus,
  2964. .input-group .form-select.is-invalid:focus {
  2965. z-index: 3;
  2966. }
  2967. .btn {
  2968. --bs-btn-padding-x: 0.75rem;
  2969. --bs-btn-padding-y: 0.47rem;
  2970. --bs-btn-font-family: ;
  2971. --bs-btn-font-size: 0.8125rem;
  2972. --bs-btn-font-weight: 400;
  2973. --bs-btn-line-height: 1.5;
  2974. --bs-btn-color: #495057;
  2975. --bs-btn-bg: transparent;
  2976. --bs-btn-border-width: 1px;
  2977. --bs-btn-border-color: transparent;
  2978. --bs-btn-border-radius: 0.25rem;
  2979. --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  2980. --bs-btn-disabled-opacity: 0.65;
  2981. --bs-btn-focus-box-shadow: 0 0 0 0.15rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  2982. display: inline-block;
  2983. padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  2984. font-family: var(--bs-btn-font-family);
  2985. font-size: var(--bs-btn-font-size);
  2986. font-weight: var(--bs-btn-font-weight);
  2987. line-height: var(--bs-btn-line-height);
  2988. color: var(--bs-btn-color);
  2989. text-align: center;
  2990. vertical-align: middle;
  2991. cursor: pointer;
  2992. -webkit-user-select: none;
  2993. -moz-user-select: none;
  2994. -ms-user-select: none;
  2995. user-select: none;
  2996. border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  2997. border-radius: var(--bs-btn-border-radius);
  2998. background-color: var(--bs-btn-bg);
  2999. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3000. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  3001. 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;
  3002. 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, -webkit-box-shadow 0.15s ease-in-out;
  3003. }
  3004. @media (prefers-reduced-motion: reduce) {
  3005. .btn {
  3006. -webkit-transition: none;
  3007. transition: none;
  3008. }
  3009. }
  3010. .btn:hover {
  3011. color: var(--bs-btn-hover-color);
  3012. text-decoration: none;
  3013. background-color: var(--bs-btn-hover-bg);
  3014. border-color: var(--bs-btn-hover-border-color);
  3015. }
  3016. .btn-check:focus + .btn, .btn:focus {
  3017. color: var(--bs-btn-hover-color);
  3018. background-color: var(--bs-btn-hover-bg);
  3019. border-color: var(--bs-btn-hover-border-color);
  3020. outline: 0;
  3021. -webkit-box-shadow: var(--bs-btn-focus-box-shadow);
  3022. box-shadow: var(--bs-btn-focus-box-shadow);
  3023. }
  3024. .btn-check:checked + .btn, .btn-check:active + .btn, .btn:active, .btn.active, .btn.show {
  3025. color: var(--bs-btn-active-color);
  3026. background-color: var(--bs-btn-active-bg);
  3027. border-color: var(--bs-btn-active-border-color);
  3028. }
  3029. .btn-check:checked + .btn:focus, .btn-check:active + .btn:focus, .btn:active:focus, .btn.active:focus, .btn.show:focus {
  3030. -webkit-box-shadow: var(--bs-btn-focus-box-shadow);
  3031. box-shadow: var(--bs-btn-focus-box-shadow);
  3032. }
  3033. .btn:disabled, .btn.disabled, fieldset:disabled .btn {
  3034. color: var(--bs-btn-disabled-color);
  3035. pointer-events: none;
  3036. background-color: var(--bs-btn-disabled-bg);
  3037. border-color: var(--bs-btn-disabled-border-color);
  3038. opacity: var(--bs-btn-disabled-opacity);
  3039. }
  3040. .btn-primary {
  3041. --bs-btn-color: #fff;
  3042. --bs-btn-bg: #556ee6;
  3043. --bs-btn-border-color: #556ee6;
  3044. --bs-btn-hover-color: #fff;
  3045. --bs-btn-hover-bg: #485ec4;
  3046. --bs-btn-hover-border-color: #4458b8;
  3047. --bs-btn-focus-shadow-rgb: 111, 132, 234;
  3048. --bs-btn-active-color: #fff;
  3049. --bs-btn-active-bg: #4458b8;
  3050. --bs-btn-active-border-color: #4053ad;
  3051. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3052. --bs-btn-disabled-color: #fff;
  3053. --bs-btn-disabled-bg: #556ee6;
  3054. --bs-btn-disabled-border-color: #556ee6;
  3055. }
  3056. .btn-secondary {
  3057. --bs-btn-color: #fff;
  3058. --bs-btn-bg: #74788d;
  3059. --bs-btn-border-color: #74788d;
  3060. --bs-btn-hover-color: #fff;
  3061. --bs-btn-hover-bg: #636678;
  3062. --bs-btn-hover-border-color: #5d6071;
  3063. --bs-btn-focus-shadow-rgb: 137, 140, 158;
  3064. --bs-btn-active-color: #fff;
  3065. --bs-btn-active-bg: #5d6071;
  3066. --bs-btn-active-border-color: #575a6a;
  3067. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3068. --bs-btn-disabled-color: #fff;
  3069. --bs-btn-disabled-bg: #74788d;
  3070. --bs-btn-disabled-border-color: #74788d;
  3071. }
  3072. .btn-success {
  3073. --bs-btn-color: #fff;
  3074. --bs-btn-bg: #34c38f;
  3075. --bs-btn-border-color: #34c38f;
  3076. --bs-btn-hover-color: #fff;
  3077. --bs-btn-hover-bg: #2ca67a;
  3078. --bs-btn-hover-border-color: #2a9c72;
  3079. --bs-btn-focus-shadow-rgb: 82, 204, 160;
  3080. --bs-btn-active-color: #fff;
  3081. --bs-btn-active-bg: #2a9c72;
  3082. --bs-btn-active-border-color: #27926b;
  3083. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3084. --bs-btn-disabled-color: #fff;
  3085. --bs-btn-disabled-bg: #34c38f;
  3086. --bs-btn-disabled-border-color: #34c38f;
  3087. }
  3088. .btn-info {
  3089. --bs-btn-color: #fff;
  3090. --bs-btn-bg: #50a5f1;
  3091. --bs-btn-border-color: #50a5f1;
  3092. --bs-btn-hover-color: #fff;
  3093. --bs-btn-hover-bg: #448ccd;
  3094. --bs-btn-hover-border-color: #4084c1;
  3095. --bs-btn-focus-shadow-rgb: 106, 179, 243;
  3096. --bs-btn-active-color: #fff;
  3097. --bs-btn-active-bg: #4084c1;
  3098. --bs-btn-active-border-color: #3c7cb5;
  3099. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3100. --bs-btn-disabled-color: #fff;
  3101. --bs-btn-disabled-bg: #50a5f1;
  3102. --bs-btn-disabled-border-color: #50a5f1;
  3103. }
  3104. .btn-warning {
  3105. --bs-btn-color: #fff;
  3106. --bs-btn-bg: #f1b44c;
  3107. --bs-btn-border-color: #f1b44c;
  3108. --bs-btn-hover-color: #fff;
  3109. --bs-btn-hover-bg: #cd9941;
  3110. --bs-btn-hover-border-color: #c1903d;
  3111. --bs-btn-focus-shadow-rgb: 243, 191, 103;
  3112. --bs-btn-active-color: #fff;
  3113. --bs-btn-active-bg: #c1903d;
  3114. --bs-btn-active-border-color: #b58739;
  3115. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3116. --bs-btn-disabled-color: #fff;
  3117. --bs-btn-disabled-bg: #f1b44c;
  3118. --bs-btn-disabled-border-color: #f1b44c;
  3119. }
  3120. .btn-danger {
  3121. --bs-btn-color: #fff;
  3122. --bs-btn-bg: #f46a6a;
  3123. --bs-btn-border-color: #f46a6a;
  3124. --bs-btn-hover-color: #fff;
  3125. --bs-btn-hover-bg: #cf5a5a;
  3126. --bs-btn-hover-border-color: #c35555;
  3127. --bs-btn-focus-shadow-rgb: 246, 128, 128;
  3128. --bs-btn-active-color: #fff;
  3129. --bs-btn-active-bg: #c35555;
  3130. --bs-btn-active-border-color: #b75050;
  3131. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3132. --bs-btn-disabled-color: #fff;
  3133. --bs-btn-disabled-bg: #f46a6a;
  3134. --bs-btn-disabled-border-color: #f46a6a;
  3135. }
  3136. .btn-pink {
  3137. --bs-btn-color: #fff;
  3138. --bs-btn-bg: #e83e8c;
  3139. --bs-btn-border-color: #e83e8c;
  3140. --bs-btn-hover-color: #fff;
  3141. --bs-btn-hover-bg: #c53577;
  3142. --bs-btn-hover-border-color: #ba3270;
  3143. --bs-btn-focus-shadow-rgb: 235, 91, 157;
  3144. --bs-btn-active-color: #fff;
  3145. --bs-btn-active-bg: #ba3270;
  3146. --bs-btn-active-border-color: #ae2f69;
  3147. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3148. --bs-btn-disabled-color: #fff;
  3149. --bs-btn-disabled-bg: #e83e8c;
  3150. --bs-btn-disabled-border-color: #e83e8c;
  3151. }
  3152. .btn-light {
  3153. --bs-btn-color: #000;
  3154. --bs-btn-bg: #eff2f7;
  3155. --bs-btn-border-color: #eff2f7;
  3156. --bs-btn-hover-color: #000;
  3157. --bs-btn-hover-bg: #cbced2;
  3158. --bs-btn-hover-border-color: #bfc2c6;
  3159. --bs-btn-focus-shadow-rgb: 203, 206, 210;
  3160. --bs-btn-active-color: #000;
  3161. --bs-btn-active-bg: #bfc2c6;
  3162. --bs-btn-active-border-color: #b3b6b9;
  3163. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3164. --bs-btn-disabled-color: #000;
  3165. --bs-btn-disabled-bg: #eff2f7;
  3166. --bs-btn-disabled-border-color: #eff2f7;
  3167. }
  3168. .btn-dark {
  3169. --bs-btn-color: #fff;
  3170. --bs-btn-bg: #343a40;
  3171. --bs-btn-border-color: #343a40;
  3172. --bs-btn-hover-color: #fff;
  3173. --bs-btn-hover-bg: #52585d;
  3174. --bs-btn-hover-border-color: #484e53;
  3175. --bs-btn-focus-shadow-rgb: 82, 88, 93;
  3176. --bs-btn-active-color: #fff;
  3177. --bs-btn-active-bg: #5d6166;
  3178. --bs-btn-active-border-color: #484e53;
  3179. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3180. --bs-btn-disabled-color: #fff;
  3181. --bs-btn-disabled-bg: #343a40;
  3182. --bs-btn-disabled-border-color: #343a40;
  3183. }
  3184. .btn-outline-primary {
  3185. --bs-btn-color: #556ee6;
  3186. --bs-btn-border-color: #556ee6;
  3187. --bs-btn-hover-color: #fff;
  3188. --bs-btn-hover-bg: #556ee6;
  3189. --bs-btn-hover-border-color: #556ee6;
  3190. --bs-btn-focus-shadow-rgb: 85, 110, 230;
  3191. --bs-btn-active-color: #fff;
  3192. --bs-btn-active-bg: #556ee6;
  3193. --bs-btn-active-border-color: #556ee6;
  3194. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3195. --bs-btn-disabled-color: #556ee6;
  3196. --bs-btn-disabled-bg: transparent;
  3197. --bs-btn-disabled-border-color: #556ee6;
  3198. --bs-gradient: none;
  3199. }
  3200. .btn-outline-secondary {
  3201. --bs-btn-color: #74788d;
  3202. --bs-btn-border-color: #74788d;
  3203. --bs-btn-hover-color: #fff;
  3204. --bs-btn-hover-bg: #74788d;
  3205. --bs-btn-hover-border-color: #74788d;
  3206. --bs-btn-focus-shadow-rgb: 116, 120, 141;
  3207. --bs-btn-active-color: #fff;
  3208. --bs-btn-active-bg: #74788d;
  3209. --bs-btn-active-border-color: #74788d;
  3210. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3211. --bs-btn-disabled-color: #74788d;
  3212. --bs-btn-disabled-bg: transparent;
  3213. --bs-btn-disabled-border-color: #74788d;
  3214. --bs-gradient: none;
  3215. }
  3216. .btn-outline-success {
  3217. --bs-btn-color: #34c38f;
  3218. --bs-btn-border-color: #34c38f;
  3219. --bs-btn-hover-color: #fff;
  3220. --bs-btn-hover-bg: #34c38f;
  3221. --bs-btn-hover-border-color: #34c38f;
  3222. --bs-btn-focus-shadow-rgb: 52, 195, 143;
  3223. --bs-btn-active-color: #fff;
  3224. --bs-btn-active-bg: #34c38f;
  3225. --bs-btn-active-border-color: #34c38f;
  3226. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3227. --bs-btn-disabled-color: #34c38f;
  3228. --bs-btn-disabled-bg: transparent;
  3229. --bs-btn-disabled-border-color: #34c38f;
  3230. --bs-gradient: none;
  3231. }
  3232. .btn-outline-info {
  3233. --bs-btn-color: #50a5f1;
  3234. --bs-btn-border-color: #50a5f1;
  3235. --bs-btn-hover-color: #fff;
  3236. --bs-btn-hover-bg: #50a5f1;
  3237. --bs-btn-hover-border-color: #50a5f1;
  3238. --bs-btn-focus-shadow-rgb: 80, 165, 241;
  3239. --bs-btn-active-color: #fff;
  3240. --bs-btn-active-bg: #50a5f1;
  3241. --bs-btn-active-border-color: #50a5f1;
  3242. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3243. --bs-btn-disabled-color: #50a5f1;
  3244. --bs-btn-disabled-bg: transparent;
  3245. --bs-btn-disabled-border-color: #50a5f1;
  3246. --bs-gradient: none;
  3247. }
  3248. .btn-outline-warning {
  3249. --bs-btn-color: #f1b44c;
  3250. --bs-btn-border-color: #f1b44c;
  3251. --bs-btn-hover-color: #fff;
  3252. --bs-btn-hover-bg: #f1b44c;
  3253. --bs-btn-hover-border-color: #f1b44c;
  3254. --bs-btn-focus-shadow-rgb: 241, 180, 76;
  3255. --bs-btn-active-color: #fff;
  3256. --bs-btn-active-bg: #f1b44c;
  3257. --bs-btn-active-border-color: #f1b44c;
  3258. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3259. --bs-btn-disabled-color: #f1b44c;
  3260. --bs-btn-disabled-bg: transparent;
  3261. --bs-btn-disabled-border-color: #f1b44c;
  3262. --bs-gradient: none;
  3263. }
  3264. .btn-outline-danger {
  3265. --bs-btn-color: #f46a6a;
  3266. --bs-btn-border-color: #f46a6a;
  3267. --bs-btn-hover-color: #fff;
  3268. --bs-btn-hover-bg: #f46a6a;
  3269. --bs-btn-hover-border-color: #f46a6a;
  3270. --bs-btn-focus-shadow-rgb: 244, 106, 106;
  3271. --bs-btn-active-color: #fff;
  3272. --bs-btn-active-bg: #f46a6a;
  3273. --bs-btn-active-border-color: #f46a6a;
  3274. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3275. --bs-btn-disabled-color: #f46a6a;
  3276. --bs-btn-disabled-bg: transparent;
  3277. --bs-btn-disabled-border-color: #f46a6a;
  3278. --bs-gradient: none;
  3279. }
  3280. .btn-outline-pink {
  3281. --bs-btn-color: #e83e8c;
  3282. --bs-btn-border-color: #e83e8c;
  3283. --bs-btn-hover-color: #fff;
  3284. --bs-btn-hover-bg: #e83e8c;
  3285. --bs-btn-hover-border-color: #e83e8c;
  3286. --bs-btn-focus-shadow-rgb: 232, 62, 140;
  3287. --bs-btn-active-color: #fff;
  3288. --bs-btn-active-bg: #e83e8c;
  3289. --bs-btn-active-border-color: #e83e8c;
  3290. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3291. --bs-btn-disabled-color: #e83e8c;
  3292. --bs-btn-disabled-bg: transparent;
  3293. --bs-btn-disabled-border-color: #e83e8c;
  3294. --bs-gradient: none;
  3295. }
  3296. .btn-outline-light {
  3297. --bs-btn-color: #eff2f7;
  3298. --bs-btn-border-color: #eff2f7;
  3299. --bs-btn-hover-color: #000;
  3300. --bs-btn-hover-bg: #eff2f7;
  3301. --bs-btn-hover-border-color: #eff2f7;
  3302. --bs-btn-focus-shadow-rgb: 239, 242, 247;
  3303. --bs-btn-active-color: #000;
  3304. --bs-btn-active-bg: #eff2f7;
  3305. --bs-btn-active-border-color: #eff2f7;
  3306. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3307. --bs-btn-disabled-color: #eff2f7;
  3308. --bs-btn-disabled-bg: transparent;
  3309. --bs-btn-disabled-border-color: #eff2f7;
  3310. --bs-gradient: none;
  3311. }
  3312. .btn-outline-dark {
  3313. --bs-btn-color: #343a40;
  3314. --bs-btn-border-color: #343a40;
  3315. --bs-btn-hover-color: #fff;
  3316. --bs-btn-hover-bg: #343a40;
  3317. --bs-btn-hover-border-color: #343a40;
  3318. --bs-btn-focus-shadow-rgb: 52, 58, 64;
  3319. --bs-btn-active-color: #fff;
  3320. --bs-btn-active-bg: #343a40;
  3321. --bs-btn-active-border-color: #343a40;
  3322. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3323. --bs-btn-disabled-color: #343a40;
  3324. --bs-btn-disabled-bg: transparent;
  3325. --bs-btn-disabled-border-color: #343a40;
  3326. --bs-gradient: none;
  3327. }
  3328. .btn-link {
  3329. --bs-btn-font-weight: 400;
  3330. --bs-btn-color: var(--bs-link-color);
  3331. --bs-btn-bg: transparent;
  3332. --bs-btn-border-color: transparent;
  3333. --bs-btn-hover-color: var(--bs-link-hover-color);
  3334. --bs-btn-hover-border-color: transparent;
  3335. --bs-btn-active-color: var(--bs-link-hover-color);
  3336. --bs-btn-active-border-color: transparent;
  3337. --bs-btn-disabled-color: #74788d;
  3338. --bs-btn-disabled-border-color: transparent;
  3339. --bs-btn-box-shadow: none;
  3340. --bs-btn-focus-shadow-rgb: 111, 132, 234;
  3341. text-decoration: none;
  3342. }
  3343. .btn-link:hover, .btn-link:focus {
  3344. text-decoration: underline;
  3345. }
  3346. .btn-link:focus {
  3347. color: var(--bs-btn-color);
  3348. }
  3349. .btn-link:hover {
  3350. color: var(--bs-btn-hover-color);
  3351. }
  3352. .btn-lg, .btn-group-lg > .btn {
  3353. --bs-btn-padding-y: 0.5rem;
  3354. --bs-btn-padding-x: 1rem;
  3355. --bs-btn-font-size: 1.015625rem;
  3356. --bs-btn-border-radius: 0.4rem;
  3357. }
  3358. .btn-sm, .btn-group-sm > .btn {
  3359. --bs-btn-padding-y: 0.25rem;
  3360. --bs-btn-padding-x: 0.5rem;
  3361. --bs-btn-font-size: 0.7109375rem;
  3362. --bs-btn-border-radius: 0.2rem;
  3363. }
  3364. .fade {
  3365. -webkit-transition: opacity 0.15s linear;
  3366. transition: opacity 0.15s linear;
  3367. }
  3368. @media (prefers-reduced-motion: reduce) {
  3369. .fade {
  3370. -webkit-transition: none;
  3371. transition: none;
  3372. }
  3373. }
  3374. .fade:not(.show) {
  3375. opacity: 0;
  3376. }
  3377. .collapse:not(.show) {
  3378. display: none;
  3379. }
  3380. .collapsing {
  3381. height: 0;
  3382. overflow: hidden;
  3383. -webkit-transition: height 0.35s ease;
  3384. transition: height 0.35s ease;
  3385. }
  3386. @media (prefers-reduced-motion: reduce) {
  3387. .collapsing {
  3388. -webkit-transition: none;
  3389. transition: none;
  3390. }
  3391. }
  3392. .collapsing.collapse-horizontal {
  3393. width: 0;
  3394. height: auto;
  3395. -webkit-transition: width 0.35s ease;
  3396. transition: width 0.35s ease;
  3397. }
  3398. @media (prefers-reduced-motion: reduce) {
  3399. .collapsing.collapse-horizontal {
  3400. -webkit-transition: none;
  3401. transition: none;
  3402. }
  3403. }
  3404. .dropup,
  3405. .dropend,
  3406. .dropdown,
  3407. .dropstart,
  3408. .dropup-center,
  3409. .dropdown-center {
  3410. position: relative;
  3411. }
  3412. .dropdown-toggle {
  3413. white-space: nowrap;
  3414. }
  3415. .dropdown-menu {
  3416. --bs-dropdown-min-width: 10rem;
  3417. --bs-dropdown-padding-x: 0;
  3418. --bs-dropdown-padding-y: 0.5rem;
  3419. --bs-dropdown-spacer: 0.125rem;
  3420. --bs-dropdown-font-size: 0.8125rem;
  3421. --bs-dropdown-color: #495057;
  3422. --bs-dropdown-bg: #fff;
  3423. --bs-dropdown-border-color: rgba(0, 0, 0, 0.15);
  3424. --bs-dropdown-border-radius: 0.25rem;
  3425. --bs-dropdown-border-width: 0;
  3426. --bs-dropdown-inner-border-radius: calc(0.25rem - 0);
  3427. --bs-dropdown-divider-bg: #eff2f7;
  3428. --bs-dropdown-divider-margin-y: 0.5rem;
  3429. --bs-dropdown-box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
  3430. --bs-dropdown-link-color: #212529;
  3431. --bs-dropdown-link-hover-color: #1e2125;
  3432. --bs-dropdown-link-hover-bg: #f8f9fa;
  3433. --bs-dropdown-link-active-color: #343a40;
  3434. --bs-dropdown-link-active-bg: #f8f9fa;
  3435. --bs-dropdown-link-disabled-color: #74788d;
  3436. --bs-dropdown-item-padding-x: 1.5rem;
  3437. --bs-dropdown-item-padding-y: 0.35rem;
  3438. --bs-dropdown-header-color: #74788d;
  3439. --bs-dropdown-header-padding-x: 1.5rem;
  3440. --bs-dropdown-header-padding-y: 0.5rem;
  3441. position: absolute;
  3442. z-index: 1000;
  3443. display: none;
  3444. min-width: var(--bs-dropdown-min-width);
  3445. padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  3446. margin: 0;
  3447. font-size: var(--bs-dropdown-font-size);
  3448. color: var(--bs-dropdown-color);
  3449. text-align: left;
  3450. list-style: none;
  3451. background-color: var(--bs-dropdown-bg);
  3452. background-clip: padding-box;
  3453. border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  3454. border-radius: var(--bs-dropdown-border-radius);
  3455. }
  3456. .dropdown-menu[data-bs-popper] {
  3457. top: 100%;
  3458. left: 0;
  3459. margin-top: var(--bs-dropdown-spacer);
  3460. }
  3461. .dropdown-menu-start {
  3462. --bs-position: start;
  3463. }
  3464. .dropdown-menu-start[data-bs-popper] {
  3465. right: auto;
  3466. left: 0;
  3467. }
  3468. .dropdown-menu-end {
  3469. --bs-position: end;
  3470. }
  3471. .dropdown-menu-end[data-bs-popper] {
  3472. right: 0;
  3473. left: auto;
  3474. }
  3475. @media (min-width: 576px) {
  3476. .dropdown-menu-sm-start {
  3477. --bs-position: start;
  3478. }
  3479. .dropdown-menu-sm-start[data-bs-popper] {
  3480. right: auto;
  3481. left: 0;
  3482. }
  3483. .dropdown-menu-sm-end {
  3484. --bs-position: end;
  3485. }
  3486. .dropdown-menu-sm-end[data-bs-popper] {
  3487. right: 0;
  3488. left: auto;
  3489. }
  3490. }
  3491. @media (min-width: 768px) {
  3492. .dropdown-menu-md-start {
  3493. --bs-position: start;
  3494. }
  3495. .dropdown-menu-md-start[data-bs-popper] {
  3496. right: auto;
  3497. left: 0;
  3498. }
  3499. .dropdown-menu-md-end {
  3500. --bs-position: end;
  3501. }
  3502. .dropdown-menu-md-end[data-bs-popper] {
  3503. right: 0;
  3504. left: auto;
  3505. }
  3506. }
  3507. @media (min-width: 992px) {
  3508. .dropdown-menu-lg-start {
  3509. --bs-position: start;
  3510. }
  3511. .dropdown-menu-lg-start[data-bs-popper] {
  3512. right: auto;
  3513. left: 0;
  3514. }
  3515. .dropdown-menu-lg-end {
  3516. --bs-position: end;
  3517. }
  3518. .dropdown-menu-lg-end[data-bs-popper] {
  3519. right: 0;
  3520. left: auto;
  3521. }
  3522. }
  3523. @media (min-width: 1200px) {
  3524. .dropdown-menu-xl-start {
  3525. --bs-position: start;
  3526. }
  3527. .dropdown-menu-xl-start[data-bs-popper] {
  3528. right: auto;
  3529. left: 0;
  3530. }
  3531. .dropdown-menu-xl-end {
  3532. --bs-position: end;
  3533. }
  3534. .dropdown-menu-xl-end[data-bs-popper] {
  3535. right: 0;
  3536. left: auto;
  3537. }
  3538. }
  3539. @media (min-width: 1400px) {
  3540. .dropdown-menu-xxl-start {
  3541. --bs-position: start;
  3542. }
  3543. .dropdown-menu-xxl-start[data-bs-popper] {
  3544. right: auto;
  3545. left: 0;
  3546. }
  3547. .dropdown-menu-xxl-end {
  3548. --bs-position: end;
  3549. }
  3550. .dropdown-menu-xxl-end[data-bs-popper] {
  3551. right: 0;
  3552. left: auto;
  3553. }
  3554. }
  3555. .dropup .dropdown-menu[data-bs-popper] {
  3556. top: auto;
  3557. bottom: 100%;
  3558. margin-top: 0;
  3559. margin-bottom: var(--bs-dropdown-spacer);
  3560. }
  3561. .dropend .dropdown-menu[data-bs-popper] {
  3562. top: 0;
  3563. right: auto;
  3564. left: 100%;
  3565. margin-top: 0;
  3566. margin-left: var(--bs-dropdown-spacer);
  3567. }
  3568. .dropend .dropdown-toggle::after {
  3569. vertical-align: 0;
  3570. }
  3571. .dropstart .dropdown-menu[data-bs-popper] {
  3572. top: 0;
  3573. right: 100%;
  3574. left: auto;
  3575. margin-top: 0;
  3576. margin-right: var(--bs-dropdown-spacer);
  3577. }
  3578. .dropstart .dropdown-toggle::before {
  3579. vertical-align: 0;
  3580. }
  3581. .dropdown-divider {
  3582. height: 0;
  3583. margin: var(--bs-dropdown-divider-margin-y) 0;
  3584. overflow: hidden;
  3585. border-top: 1px solid var(--bs-dropdown-divider-bg);
  3586. opacity: 1;
  3587. }
  3588. .dropdown-item {
  3589. display: block;
  3590. width: 100%;
  3591. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3592. clear: both;
  3593. font-weight: 400;
  3594. color: var(--bs-dropdown-link-color);
  3595. text-align: inherit;
  3596. white-space: nowrap;
  3597. background-color: transparent;
  3598. border: 0;
  3599. }
  3600. .dropdown-item:hover, .dropdown-item:focus {
  3601. color: var(--bs-dropdown-link-hover-color);
  3602. text-decoration: none;
  3603. background-color: var(--bs-dropdown-link-hover-bg);
  3604. }
  3605. .dropdown-item.active, .dropdown-item:active {
  3606. color: var(--bs-dropdown-link-active-color);
  3607. text-decoration: none;
  3608. background-color: var(--bs-dropdown-link-active-bg);
  3609. }
  3610. .dropdown-item.disabled, .dropdown-item:disabled {
  3611. color: var(--bs-dropdown-link-disabled-color);
  3612. pointer-events: none;
  3613. background-color: transparent;
  3614. }
  3615. .dropdown-menu.show {
  3616. display: block;
  3617. }
  3618. .dropdown-header {
  3619. display: block;
  3620. padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  3621. margin-bottom: 0;
  3622. font-size: 0.7109375rem;
  3623. color: var(--bs-dropdown-header-color);
  3624. white-space: nowrap;
  3625. }
  3626. .dropdown-item-text {
  3627. display: block;
  3628. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3629. color: var(--bs-dropdown-link-color);
  3630. }
  3631. .dropdown-menu-dark {
  3632. --bs-dropdown-color: #f6f6f6;
  3633. --bs-dropdown-bg: #343a40;
  3634. --bs-dropdown-border-color: rgba(0, 0, 0, 0.15);
  3635. --bs-dropdown-box-shadow: ;
  3636. --bs-dropdown-link-color: #f6f6f6;
  3637. --bs-dropdown-link-hover-color: #fff;
  3638. --bs-dropdown-divider-bg: #eff2f7;
  3639. --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  3640. --bs-dropdown-link-active-color: #343a40;
  3641. --bs-dropdown-link-active-bg: #f8f9fa;
  3642. --bs-dropdown-link-disabled-color: #adb5bd;
  3643. --bs-dropdown-header-color: #adb5bd;
  3644. }
  3645. .btn-group,
  3646. .btn-group-vertical {
  3647. position: relative;
  3648. display: -webkit-inline-box;
  3649. display: -ms-inline-flexbox;
  3650. display: inline-flex;
  3651. vertical-align: middle;
  3652. }
  3653. .btn-group > .btn,
  3654. .btn-group-vertical > .btn {
  3655. position: relative;
  3656. -webkit-box-flex: 1;
  3657. -ms-flex: 1 1 auto;
  3658. flex: 1 1 auto;
  3659. }
  3660. .btn-group > .btn-check:checked + .btn,
  3661. .btn-group > .btn-check:focus + .btn,
  3662. .btn-group > .btn:hover,
  3663. .btn-group > .btn:focus,
  3664. .btn-group > .btn:active,
  3665. .btn-group > .btn.active,
  3666. .btn-group-vertical > .btn-check:checked + .btn,
  3667. .btn-group-vertical > .btn-check:focus + .btn,
  3668. .btn-group-vertical > .btn:hover,
  3669. .btn-group-vertical > .btn:focus,
  3670. .btn-group-vertical > .btn:active,
  3671. .btn-group-vertical > .btn.active {
  3672. z-index: 1;
  3673. }
  3674. .btn-toolbar {
  3675. display: -webkit-box;
  3676. display: -ms-flexbox;
  3677. display: flex;
  3678. -ms-flex-wrap: wrap;
  3679. flex-wrap: wrap;
  3680. -webkit-box-pack: start;
  3681. -ms-flex-pack: start;
  3682. justify-content: flex-start;
  3683. }
  3684. .btn-toolbar .input-group {
  3685. width: auto;
  3686. }
  3687. .btn-group {
  3688. border-radius: 0.25rem;
  3689. }
  3690. .btn-group > .btn:not(:first-child),
  3691. .btn-group > .btn-group:not(:first-child) {
  3692. margin-left: -1px;
  3693. }
  3694. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  3695. .btn-group > .btn.dropdown-toggle-split:first-child,
  3696. .btn-group > .btn-group:not(:last-child) > .btn {
  3697. border-top-right-radius: 0;
  3698. border-bottom-right-radius: 0;
  3699. }
  3700. .btn-group > .btn:nth-child(n+3),
  3701. .btn-group > :not(.btn-check) + .btn,
  3702. .btn-group > .btn-group:not(:first-child) > .btn {
  3703. border-top-left-radius: 0;
  3704. border-bottom-left-radius: 0;
  3705. }
  3706. .dropdown-toggle-split {
  3707. padding-right: 0.5625rem;
  3708. padding-left: 0.5625rem;
  3709. }
  3710. .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  3711. margin-left: 0;
  3712. }
  3713. .dropstart .dropdown-toggle-split::before {
  3714. margin-right: 0;
  3715. }
  3716. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  3717. padding-right: 0.375rem;
  3718. padding-left: 0.375rem;
  3719. }
  3720. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  3721. padding-right: 0.75rem;
  3722. padding-left: 0.75rem;
  3723. }
  3724. .btn-group-vertical {
  3725. -webkit-box-orient: vertical;
  3726. -webkit-box-direction: normal;
  3727. -ms-flex-direction: column;
  3728. flex-direction: column;
  3729. -webkit-box-align: start;
  3730. -ms-flex-align: start;
  3731. align-items: flex-start;
  3732. -webkit-box-pack: center;
  3733. -ms-flex-pack: center;
  3734. justify-content: center;
  3735. }
  3736. .btn-group-vertical > .btn,
  3737. .btn-group-vertical > .btn-group {
  3738. width: 100%;
  3739. }
  3740. .btn-group-vertical > .btn:not(:first-child),
  3741. .btn-group-vertical > .btn-group:not(:first-child) {
  3742. margin-top: -1px;
  3743. }
  3744. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  3745. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  3746. border-bottom-right-radius: 0;
  3747. border-bottom-left-radius: 0;
  3748. }
  3749. .btn-group-vertical > .btn ~ .btn,
  3750. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  3751. border-top-left-radius: 0;
  3752. border-top-right-radius: 0;
  3753. }
  3754. .nav {
  3755. --bs-nav-link-padding-x: 1rem;
  3756. --bs-nav-link-padding-y: 0.5rem;
  3757. --bs-nav-link-font-weight: ;
  3758. --bs-nav-link-color: var(--bs-link-color);
  3759. --bs-nav-link-hover-color: var(--bs-link-hover-color);
  3760. --bs-nav-link-disabled-color: #74788d;
  3761. display: -webkit-box;
  3762. display: -ms-flexbox;
  3763. display: flex;
  3764. -ms-flex-wrap: wrap;
  3765. flex-wrap: wrap;
  3766. padding-left: 0;
  3767. margin-bottom: 0;
  3768. list-style: none;
  3769. }
  3770. .nav-link {
  3771. display: block;
  3772. padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  3773. font-size: var(--bs-nav-link-font-size);
  3774. font-weight: var(--bs-nav-link-font-weight);
  3775. color: var(--bs-nav-link-color);
  3776. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  3777. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  3778. }
  3779. @media (prefers-reduced-motion: reduce) {
  3780. .nav-link {
  3781. -webkit-transition: none;
  3782. transition: none;
  3783. }
  3784. }
  3785. .nav-link:hover, .nav-link:focus {
  3786. color: var(--bs-nav-link-hover-color);
  3787. text-decoration: none;
  3788. }
  3789. .nav-link.disabled {
  3790. color: var(--bs-nav-link-disabled-color);
  3791. pointer-events: none;
  3792. cursor: default;
  3793. }
  3794. .nav-tabs {
  3795. --bs-nav-tabs-border-width: 1px;
  3796. --bs-nav-tabs-border-color: #ced4da;
  3797. --bs-nav-tabs-border-radius: 0.25rem;
  3798. --bs-nav-tabs-link-hover-border-color: #eff2f7 #eff2f7 #ced4da;
  3799. --bs-nav-tabs-link-active-color: #495057;
  3800. --bs-nav-tabs-link-active-bg: #fff;
  3801. --bs-nav-tabs-link-active-border-color: #ced4da #ced4da #fff;
  3802. border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
  3803. }
  3804. .nav-tabs .nav-link {
  3805. margin-bottom: calc(var(--bs-nav-tabs-border-width) * -1);
  3806. background: none;
  3807. border: var(--bs-nav-tabs-border-width) solid transparent;
  3808. border-top-left-radius: var(--bs-nav-tabs-border-radius);
  3809. border-top-right-radius: var(--bs-nav-tabs-border-radius);
  3810. }
  3811. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  3812. isolation: isolate;
  3813. border-color: var(--bs-nav-tabs-link-hover-border-color);
  3814. }
  3815. .nav-tabs .nav-link.disabled, .nav-tabs .nav-link:disabled {
  3816. color: var(--bs-nav-link-disabled-color);
  3817. background-color: transparent;
  3818. border-color: transparent;
  3819. }
  3820. .nav-tabs .nav-link.active,
  3821. .nav-tabs .nav-item.show .nav-link {
  3822. color: var(--bs-nav-tabs-link-active-color);
  3823. background-color: var(--bs-nav-tabs-link-active-bg);
  3824. border-color: var(--bs-nav-tabs-link-active-border-color);
  3825. }
  3826. .nav-tabs .dropdown-menu {
  3827. margin-top: calc(var(--bs-nav-tabs-border-width) * -1);
  3828. border-top-left-radius: 0;
  3829. border-top-right-radius: 0;
  3830. }
  3831. .nav-pills {
  3832. --bs-nav-pills-border-radius: 0.25rem;
  3833. --bs-nav-pills-link-active-color: #fff;
  3834. --bs-nav-pills-link-active-bg: #556ee6;
  3835. }
  3836. .nav-pills .nav-link {
  3837. background: none;
  3838. border: 0;
  3839. border-radius: var(--bs-nav-pills-border-radius);
  3840. }
  3841. .nav-pills .nav-link:disabled {
  3842. color: var(--bs-nav-link-disabled-color);
  3843. background-color: transparent;
  3844. border-color: transparent;
  3845. }
  3846. .nav-pills .nav-link.active,
  3847. .nav-pills .show > .nav-link {
  3848. color: var(--bs-nav-pills-link-active-color);
  3849. background-color: var(--bs-nav-pills-link-active-bg);
  3850. }
  3851. .nav-fill > .nav-link,
  3852. .nav-fill .nav-item {
  3853. -webkit-box-flex: 1;
  3854. -ms-flex: 1 1 auto;
  3855. flex: 1 1 auto;
  3856. text-align: center;
  3857. }
  3858. .nav-justified > .nav-link,
  3859. .nav-justified .nav-item {
  3860. -ms-flex-preferred-size: 0;
  3861. flex-basis: 0;
  3862. -webkit-box-flex: 1;
  3863. -ms-flex-positive: 1;
  3864. flex-grow: 1;
  3865. text-align: center;
  3866. }
  3867. .nav-fill .nav-item .nav-link,
  3868. .nav-justified .nav-item .nav-link {
  3869. width: 100%;
  3870. }
  3871. .tab-content > .tab-pane {
  3872. display: none;
  3873. }
  3874. .tab-content > .active {
  3875. display: block;
  3876. }
  3877. .navbar {
  3878. --bs-navbar-padding-x: 0;
  3879. --bs-navbar-padding-y: 0.5rem;
  3880. --bs-navbar-color: rgba(0, 0, 0, 0.55);
  3881. --bs-navbar-hover-color: rgba(0, 0, 0, 0.7);
  3882. --bs-navbar-disabled-color: rgba(0, 0, 0, 0.3);
  3883. --bs-navbar-active-color: rgba(0, 0, 0, 0.9);
  3884. --bs-navbar-brand-padding-y: 0.34765625rem;
  3885. --bs-navbar-brand-margin-end: 1rem;
  3886. --bs-navbar-brand-font-size: 1.015625rem;
  3887. --bs-navbar-brand-color: rgba(0, 0, 0, 0.9);
  3888. --bs-navbar-brand-hover-color: rgba(0, 0, 0, 0.9);
  3889. --bs-navbar-nav-link-padding-x: 0.5rem;
  3890. --bs-navbar-toggler-padding-y: 0.25rem;
  3891. --bs-navbar-toggler-padding-x: 0.75rem;
  3892. --bs-navbar-toggler-font-size: 1.015625rem;
  3893. --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  3894. --bs-navbar-toggler-border-color: rgba(0, 0, 0, 0.1);
  3895. --bs-navbar-toggler-border-radius: 0.25rem;
  3896. --bs-navbar-toggler-focus-width: 0.15rem;
  3897. --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  3898. position: relative;
  3899. display: -webkit-box;
  3900. display: -ms-flexbox;
  3901. display: flex;
  3902. -ms-flex-wrap: wrap;
  3903. flex-wrap: wrap;
  3904. -webkit-box-align: center;
  3905. -ms-flex-align: center;
  3906. align-items: center;
  3907. -webkit-box-pack: justify;
  3908. -ms-flex-pack: justify;
  3909. justify-content: space-between;
  3910. padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
  3911. }
  3912. .navbar > .container,
  3913. .navbar > .container-fluid,
  3914. .navbar > .container-sm,
  3915. .navbar > .container-md,
  3916. .navbar > .container-lg,
  3917. .navbar > .container-xl,
  3918. .navbar > .container-xxl {
  3919. display: -webkit-box;
  3920. display: -ms-flexbox;
  3921. display: flex;
  3922. -ms-flex-wrap: inherit;
  3923. flex-wrap: inherit;
  3924. -webkit-box-align: center;
  3925. -ms-flex-align: center;
  3926. align-items: center;
  3927. -webkit-box-pack: justify;
  3928. -ms-flex-pack: justify;
  3929. justify-content: space-between;
  3930. }
  3931. .navbar-brand {
  3932. padding-top: var(--bs-navbar-brand-padding-y);
  3933. padding-bottom: var(--bs-navbar-brand-padding-y);
  3934. margin-right: var(--bs-navbar-brand-margin-end);
  3935. font-size: var(--bs-navbar-brand-font-size);
  3936. color: var(--bs-navbar-brand-color);
  3937. white-space: nowrap;
  3938. }
  3939. .navbar-brand:hover, .navbar-brand:focus {
  3940. color: var(--bs-navbar-brand-hover-color);
  3941. text-decoration: none;
  3942. }
  3943. .navbar-nav {
  3944. --bs-nav-link-padding-x: 0;
  3945. --bs-nav-link-padding-y: 0.5rem;
  3946. --bs-nav-link-font-weight: ;
  3947. --bs-nav-link-color: var(--bs-navbar-color);
  3948. --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  3949. --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  3950. display: -webkit-box;
  3951. display: -ms-flexbox;
  3952. display: flex;
  3953. -webkit-box-orient: vertical;
  3954. -webkit-box-direction: normal;
  3955. -ms-flex-direction: column;
  3956. flex-direction: column;
  3957. padding-left: 0;
  3958. margin-bottom: 0;
  3959. list-style: none;
  3960. }
  3961. .navbar-nav .show > .nav-link,
  3962. .navbar-nav .nav-link.active {
  3963. color: var(--bs-navbar-active-color);
  3964. }
  3965. .navbar-nav .dropdown-menu {
  3966. position: static;
  3967. }
  3968. .navbar-text {
  3969. padding-top: 0.5rem;
  3970. padding-bottom: 0.5rem;
  3971. color: var(--bs-navbar-color);
  3972. }
  3973. .navbar-text a,
  3974. .navbar-text a:hover,
  3975. .navbar-text a:focus {
  3976. color: var(--bs-navbar-active-color);
  3977. }
  3978. .navbar-collapse {
  3979. -ms-flex-preferred-size: 100%;
  3980. flex-basis: 100%;
  3981. -webkit-box-flex: 1;
  3982. -ms-flex-positive: 1;
  3983. flex-grow: 1;
  3984. -webkit-box-align: center;
  3985. -ms-flex-align: center;
  3986. align-items: center;
  3987. }
  3988. .navbar-toggler {
  3989. padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  3990. font-size: var(--bs-navbar-toggler-font-size);
  3991. line-height: 1;
  3992. color: var(--bs-navbar-color);
  3993. background-color: transparent;
  3994. border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  3995. border-radius: var(--bs-navbar-toggler-border-radius);
  3996. -webkit-transition: var(--bs-navbar-toggler-transition);
  3997. transition: var(--bs-navbar-toggler-transition);
  3998. }
  3999. @media (prefers-reduced-motion: reduce) {
  4000. .navbar-toggler {
  4001. -webkit-transition: none;
  4002. transition: none;
  4003. }
  4004. }
  4005. .navbar-toggler:hover {
  4006. text-decoration: none;
  4007. }
  4008. .navbar-toggler:focus {
  4009. text-decoration: none;
  4010. outline: 0;
  4011. -webkit-box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
  4012. box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
  4013. }
  4014. .navbar-toggler-icon {
  4015. display: inline-block;
  4016. width: 1.5em;
  4017. height: 1.5em;
  4018. vertical-align: middle;
  4019. background-image: var(--bs-navbar-toggler-icon-bg);
  4020. background-repeat: no-repeat;
  4021. background-position: center;
  4022. background-size: 100%;
  4023. }
  4024. .navbar-nav-scroll {
  4025. max-height: var(--bs-scroll-height, 75vh);
  4026. overflow-y: auto;
  4027. }
  4028. @media (min-width: 576px) {
  4029. .navbar-expand-sm {
  4030. -ms-flex-wrap: nowrap;
  4031. flex-wrap: nowrap;
  4032. -webkit-box-pack: start;
  4033. -ms-flex-pack: start;
  4034. justify-content: flex-start;
  4035. }
  4036. .navbar-expand-sm .navbar-nav {
  4037. -webkit-box-orient: horizontal;
  4038. -webkit-box-direction: normal;
  4039. -ms-flex-direction: row;
  4040. flex-direction: row;
  4041. }
  4042. .navbar-expand-sm .navbar-nav .dropdown-menu {
  4043. position: absolute;
  4044. }
  4045. .navbar-expand-sm .navbar-nav .nav-link {
  4046. padding-right: var(--bs-navbar-nav-link-padding-x);
  4047. padding-left: var(--bs-navbar-nav-link-padding-x);
  4048. }
  4049. .navbar-expand-sm .navbar-nav-scroll {
  4050. overflow: visible;
  4051. }
  4052. .navbar-expand-sm .navbar-collapse {
  4053. display: -webkit-box !important;
  4054. display: -ms-flexbox !important;
  4055. display: flex !important;
  4056. -ms-flex-preferred-size: auto;
  4057. flex-basis: auto;
  4058. }
  4059. .navbar-expand-sm .navbar-toggler {
  4060. display: none;
  4061. }
  4062. .navbar-expand-sm .offcanvas {
  4063. position: static;
  4064. z-index: auto;
  4065. -webkit-box-flex: 1;
  4066. -ms-flex-positive: 1;
  4067. flex-grow: 1;
  4068. width: auto !important;
  4069. height: auto !important;
  4070. visibility: visible !important;
  4071. background-color: transparent !important;
  4072. border: 0 !important;
  4073. -webkit-transform: none !important;
  4074. transform: none !important;
  4075. -webkit-transition: none;
  4076. transition: none;
  4077. }
  4078. .navbar-expand-sm .offcanvas .offcanvas-header {
  4079. display: none;
  4080. }
  4081. .navbar-expand-sm .offcanvas .offcanvas-body {
  4082. display: -webkit-box;
  4083. display: -ms-flexbox;
  4084. display: flex;
  4085. -webkit-box-flex: 0;
  4086. -ms-flex-positive: 0;
  4087. flex-grow: 0;
  4088. padding: 0;
  4089. overflow-y: visible;
  4090. }
  4091. }
  4092. @media (min-width: 768px) {
  4093. .navbar-expand-md {
  4094. -ms-flex-wrap: nowrap;
  4095. flex-wrap: nowrap;
  4096. -webkit-box-pack: start;
  4097. -ms-flex-pack: start;
  4098. justify-content: flex-start;
  4099. }
  4100. .navbar-expand-md .navbar-nav {
  4101. -webkit-box-orient: horizontal;
  4102. -webkit-box-direction: normal;
  4103. -ms-flex-direction: row;
  4104. flex-direction: row;
  4105. }
  4106. .navbar-expand-md .navbar-nav .dropdown-menu {
  4107. position: absolute;
  4108. }
  4109. .navbar-expand-md .navbar-nav .nav-link {
  4110. padding-right: var(--bs-navbar-nav-link-padding-x);
  4111. padding-left: var(--bs-navbar-nav-link-padding-x);
  4112. }
  4113. .navbar-expand-md .navbar-nav-scroll {
  4114. overflow: visible;
  4115. }
  4116. .navbar-expand-md .navbar-collapse {
  4117. display: -webkit-box !important;
  4118. display: -ms-flexbox !important;
  4119. display: flex !important;
  4120. -ms-flex-preferred-size: auto;
  4121. flex-basis: auto;
  4122. }
  4123. .navbar-expand-md .navbar-toggler {
  4124. display: none;
  4125. }
  4126. .navbar-expand-md .offcanvas {
  4127. position: static;
  4128. z-index: auto;
  4129. -webkit-box-flex: 1;
  4130. -ms-flex-positive: 1;
  4131. flex-grow: 1;
  4132. width: auto !important;
  4133. height: auto !important;
  4134. visibility: visible !important;
  4135. background-color: transparent !important;
  4136. border: 0 !important;
  4137. -webkit-transform: none !important;
  4138. transform: none !important;
  4139. -webkit-transition: none;
  4140. transition: none;
  4141. }
  4142. .navbar-expand-md .offcanvas .offcanvas-header {
  4143. display: none;
  4144. }
  4145. .navbar-expand-md .offcanvas .offcanvas-body {
  4146. display: -webkit-box;
  4147. display: -ms-flexbox;
  4148. display: flex;
  4149. -webkit-box-flex: 0;
  4150. -ms-flex-positive: 0;
  4151. flex-grow: 0;
  4152. padding: 0;
  4153. overflow-y: visible;
  4154. }
  4155. }
  4156. @media (min-width: 992px) {
  4157. .navbar-expand-lg {
  4158. -ms-flex-wrap: nowrap;
  4159. flex-wrap: nowrap;
  4160. -webkit-box-pack: start;
  4161. -ms-flex-pack: start;
  4162. justify-content: flex-start;
  4163. }
  4164. .navbar-expand-lg .navbar-nav {
  4165. -webkit-box-orient: horizontal;
  4166. -webkit-box-direction: normal;
  4167. -ms-flex-direction: row;
  4168. flex-direction: row;
  4169. }
  4170. .navbar-expand-lg .navbar-nav .dropdown-menu {
  4171. position: absolute;
  4172. }
  4173. .navbar-expand-lg .navbar-nav .nav-link {
  4174. padding-right: var(--bs-navbar-nav-link-padding-x);
  4175. padding-left: var(--bs-navbar-nav-link-padding-x);
  4176. }
  4177. .navbar-expand-lg .navbar-nav-scroll {
  4178. overflow: visible;
  4179. }
  4180. .navbar-expand-lg .navbar-collapse {
  4181. display: -webkit-box !important;
  4182. display: -ms-flexbox !important;
  4183. display: flex !important;
  4184. -ms-flex-preferred-size: auto;
  4185. flex-basis: auto;
  4186. }
  4187. .navbar-expand-lg .navbar-toggler {
  4188. display: none;
  4189. }
  4190. .navbar-expand-lg .offcanvas {
  4191. position: static;
  4192. z-index: auto;
  4193. -webkit-box-flex: 1;
  4194. -ms-flex-positive: 1;
  4195. flex-grow: 1;
  4196. width: auto !important;
  4197. height: auto !important;
  4198. visibility: visible !important;
  4199. background-color: transparent !important;
  4200. border: 0 !important;
  4201. -webkit-transform: none !important;
  4202. transform: none !important;
  4203. -webkit-transition: none;
  4204. transition: none;
  4205. }
  4206. .navbar-expand-lg .offcanvas .offcanvas-header {
  4207. display: none;
  4208. }
  4209. .navbar-expand-lg .offcanvas .offcanvas-body {
  4210. display: -webkit-box;
  4211. display: -ms-flexbox;
  4212. display: flex;
  4213. -webkit-box-flex: 0;
  4214. -ms-flex-positive: 0;
  4215. flex-grow: 0;
  4216. padding: 0;
  4217. overflow-y: visible;
  4218. }
  4219. }
  4220. @media (min-width: 1200px) {
  4221. .navbar-expand-xl {
  4222. -ms-flex-wrap: nowrap;
  4223. flex-wrap: nowrap;
  4224. -webkit-box-pack: start;
  4225. -ms-flex-pack: start;
  4226. justify-content: flex-start;
  4227. }
  4228. .navbar-expand-xl .navbar-nav {
  4229. -webkit-box-orient: horizontal;
  4230. -webkit-box-direction: normal;
  4231. -ms-flex-direction: row;
  4232. flex-direction: row;
  4233. }
  4234. .navbar-expand-xl .navbar-nav .dropdown-menu {
  4235. position: absolute;
  4236. }
  4237. .navbar-expand-xl .navbar-nav .nav-link {
  4238. padding-right: var(--bs-navbar-nav-link-padding-x);
  4239. padding-left: var(--bs-navbar-nav-link-padding-x);
  4240. }
  4241. .navbar-expand-xl .navbar-nav-scroll {
  4242. overflow: visible;
  4243. }
  4244. .navbar-expand-xl .navbar-collapse {
  4245. display: -webkit-box !important;
  4246. display: -ms-flexbox !important;
  4247. display: flex !important;
  4248. -ms-flex-preferred-size: auto;
  4249. flex-basis: auto;
  4250. }
  4251. .navbar-expand-xl .navbar-toggler {
  4252. display: none;
  4253. }
  4254. .navbar-expand-xl .offcanvas {
  4255. position: static;
  4256. z-index: auto;
  4257. -webkit-box-flex: 1;
  4258. -ms-flex-positive: 1;
  4259. flex-grow: 1;
  4260. width: auto !important;
  4261. height: auto !important;
  4262. visibility: visible !important;
  4263. background-color: transparent !important;
  4264. border: 0 !important;
  4265. -webkit-transform: none !important;
  4266. transform: none !important;
  4267. -webkit-transition: none;
  4268. transition: none;
  4269. }
  4270. .navbar-expand-xl .offcanvas .offcanvas-header {
  4271. display: none;
  4272. }
  4273. .navbar-expand-xl .offcanvas .offcanvas-body {
  4274. display: -webkit-box;
  4275. display: -ms-flexbox;
  4276. display: flex;
  4277. -webkit-box-flex: 0;
  4278. -ms-flex-positive: 0;
  4279. flex-grow: 0;
  4280. padding: 0;
  4281. overflow-y: visible;
  4282. }
  4283. }
  4284. @media (min-width: 1400px) {
  4285. .navbar-expand-xxl {
  4286. -ms-flex-wrap: nowrap;
  4287. flex-wrap: nowrap;
  4288. -webkit-box-pack: start;
  4289. -ms-flex-pack: start;
  4290. justify-content: flex-start;
  4291. }
  4292. .navbar-expand-xxl .navbar-nav {
  4293. -webkit-box-orient: horizontal;
  4294. -webkit-box-direction: normal;
  4295. -ms-flex-direction: row;
  4296. flex-direction: row;
  4297. }
  4298. .navbar-expand-xxl .navbar-nav .dropdown-menu {
  4299. position: absolute;
  4300. }
  4301. .navbar-expand-xxl .navbar-nav .nav-link {
  4302. padding-right: var(--bs-navbar-nav-link-padding-x);
  4303. padding-left: var(--bs-navbar-nav-link-padding-x);
  4304. }
  4305. .navbar-expand-xxl .navbar-nav-scroll {
  4306. overflow: visible;
  4307. }
  4308. .navbar-expand-xxl .navbar-collapse {
  4309. display: -webkit-box !important;
  4310. display: -ms-flexbox !important;
  4311. display: flex !important;
  4312. -ms-flex-preferred-size: auto;
  4313. flex-basis: auto;
  4314. }
  4315. .navbar-expand-xxl .navbar-toggler {
  4316. display: none;
  4317. }
  4318. .navbar-expand-xxl .offcanvas {
  4319. position: static;
  4320. z-index: auto;
  4321. -webkit-box-flex: 1;
  4322. -ms-flex-positive: 1;
  4323. flex-grow: 1;
  4324. width: auto !important;
  4325. height: auto !important;
  4326. visibility: visible !important;
  4327. background-color: transparent !important;
  4328. border: 0 !important;
  4329. -webkit-transform: none !important;
  4330. transform: none !important;
  4331. -webkit-transition: none;
  4332. transition: none;
  4333. }
  4334. .navbar-expand-xxl .offcanvas .offcanvas-header {
  4335. display: none;
  4336. }
  4337. .navbar-expand-xxl .offcanvas .offcanvas-body {
  4338. display: -webkit-box;
  4339. display: -ms-flexbox;
  4340. display: flex;
  4341. -webkit-box-flex: 0;
  4342. -ms-flex-positive: 0;
  4343. flex-grow: 0;
  4344. padding: 0;
  4345. overflow-y: visible;
  4346. }
  4347. }
  4348. .navbar-expand {
  4349. -ms-flex-wrap: nowrap;
  4350. flex-wrap: nowrap;
  4351. -webkit-box-pack: start;
  4352. -ms-flex-pack: start;
  4353. justify-content: flex-start;
  4354. }
  4355. .navbar-expand .navbar-nav {
  4356. -webkit-box-orient: horizontal;
  4357. -webkit-box-direction: normal;
  4358. -ms-flex-direction: row;
  4359. flex-direction: row;
  4360. }
  4361. .navbar-expand .navbar-nav .dropdown-menu {
  4362. position: absolute;
  4363. }
  4364. .navbar-expand .navbar-nav .nav-link {
  4365. padding-right: var(--bs-navbar-nav-link-padding-x);
  4366. padding-left: var(--bs-navbar-nav-link-padding-x);
  4367. }
  4368. .navbar-expand .navbar-nav-scroll {
  4369. overflow: visible;
  4370. }
  4371. .navbar-expand .navbar-collapse {
  4372. display: -webkit-box !important;
  4373. display: -ms-flexbox !important;
  4374. display: flex !important;
  4375. -ms-flex-preferred-size: auto;
  4376. flex-basis: auto;
  4377. }
  4378. .navbar-expand .navbar-toggler {
  4379. display: none;
  4380. }
  4381. .navbar-expand .offcanvas {
  4382. position: static;
  4383. z-index: auto;
  4384. -webkit-box-flex: 1;
  4385. -ms-flex-positive: 1;
  4386. flex-grow: 1;
  4387. width: auto !important;
  4388. height: auto !important;
  4389. visibility: visible !important;
  4390. background-color: transparent !important;
  4391. border: 0 !important;
  4392. -webkit-transform: none !important;
  4393. transform: none !important;
  4394. -webkit-transition: none;
  4395. transition: none;
  4396. }
  4397. .navbar-expand .offcanvas .offcanvas-header {
  4398. display: none;
  4399. }
  4400. .navbar-expand .offcanvas .offcanvas-body {
  4401. display: -webkit-box;
  4402. display: -ms-flexbox;
  4403. display: flex;
  4404. -webkit-box-flex: 0;
  4405. -ms-flex-positive: 0;
  4406. flex-grow: 0;
  4407. padding: 0;
  4408. overflow-y: visible;
  4409. }
  4410. .navbar-dark {
  4411. --bs-navbar-color: rgba(255, 255, 255, 0.55);
  4412. --bs-navbar-hover-color: rgba(255, 255, 255, 0.75);
  4413. --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  4414. --bs-navbar-active-color: #fff;
  4415. --bs-navbar-brand-color: #fff;
  4416. --bs-navbar-brand-hover-color: #fff;
  4417. --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  4418. --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  4419. }
  4420. .card {
  4421. --bs-card-spacer-y: 1.25rem;
  4422. --bs-card-spacer-x: 1.25rem;
  4423. --bs-card-title-spacer-y: 0.5rem;
  4424. --bs-card-border-width: 0;
  4425. --bs-card-border-color: #f6f6f6;
  4426. --bs-card-border-radius: 0.25rem;
  4427. --bs-card-box-shadow: ;
  4428. --bs-card-inner-border-radius: calc(0.25rem - 0);
  4429. --bs-card-cap-padding-y: 0.625rem;
  4430. --bs-card-cap-padding-x: 1.25rem;
  4431. --bs-card-cap-bg: rgba(0, 0, 0, 0.03);
  4432. --bs-card-cap-color: ;
  4433. --bs-card-height: ;
  4434. --bs-card-color: ;
  4435. --bs-card-bg: #fff;
  4436. --bs-card-img-overlay-padding: 1rem;
  4437. --bs-card-group-margin: 12px;
  4438. position: relative;
  4439. display: -webkit-box;
  4440. display: -ms-flexbox;
  4441. display: flex;
  4442. -webkit-box-orient: vertical;
  4443. -webkit-box-direction: normal;
  4444. -ms-flex-direction: column;
  4445. flex-direction: column;
  4446. min-width: 0;
  4447. height: var(--bs-card-height);
  4448. word-wrap: break-word;
  4449. background-color: var(--bs-card-bg);
  4450. background-clip: border-box;
  4451. border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4452. border-radius: var(--bs-card-border-radius);
  4453. }
  4454. .card > hr {
  4455. margin-right: 0;
  4456. margin-left: 0;
  4457. }
  4458. .card > .list-group {
  4459. border-top: inherit;
  4460. border-bottom: inherit;
  4461. }
  4462. .card > .list-group:first-child {
  4463. border-top-width: 0;
  4464. border-top-left-radius: var(--bs-card-inner-border-radius);
  4465. border-top-right-radius: var(--bs-card-inner-border-radius);
  4466. }
  4467. .card > .list-group:last-child {
  4468. border-bottom-width: 0;
  4469. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  4470. border-bottom-left-radius: var(--bs-card-inner-border-radius);
  4471. }
  4472. .card > .card-header + .list-group,
  4473. .card > .list-group + .card-footer {
  4474. border-top: 0;
  4475. }
  4476. .card-body {
  4477. -webkit-box-flex: 1;
  4478. -ms-flex: 1 1 auto;
  4479. flex: 1 1 auto;
  4480. padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  4481. color: var(--bs-card-color);
  4482. }
  4483. .card-title {
  4484. margin-bottom: var(--bs-card-title-spacer-y);
  4485. }
  4486. .card-subtitle {
  4487. margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  4488. margin-bottom: 0;
  4489. }
  4490. .card-text:last-child {
  4491. margin-bottom: 0;
  4492. }
  4493. .card-link:hover {
  4494. text-decoration: none;
  4495. }
  4496. .card-link + .card-link {
  4497. margin-left: var(--bs-card-spacer-x);
  4498. }
  4499. .card-header {
  4500. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  4501. margin-bottom: 0;
  4502. color: var(--bs-card-cap-color);
  4503. background-color: var(--bs-card-cap-bg);
  4504. border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4505. }
  4506. .card-header:first-child {
  4507. border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
  4508. }
  4509. .card-footer {
  4510. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  4511. color: var(--bs-card-cap-color);
  4512. background-color: var(--bs-card-cap-bg);
  4513. border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4514. }
  4515. .card-footer:last-child {
  4516. border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
  4517. }
  4518. .card-header-tabs {
  4519. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4520. margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  4521. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4522. border-bottom: 0;
  4523. }
  4524. .card-header-tabs .nav-link.active {
  4525. background-color: var(--bs-card-bg);
  4526. border-bottom-color: var(--bs-card-bg);
  4527. }
  4528. .card-header-pills {
  4529. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4530. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4531. }
  4532. .card-img-overlay {
  4533. position: absolute;
  4534. top: 0;
  4535. right: 0;
  4536. bottom: 0;
  4537. left: 0;
  4538. padding: var(--bs-card-img-overlay-padding);
  4539. border-radius: var(--bs-card-inner-border-radius);
  4540. }
  4541. .card-img,
  4542. .card-img-top,
  4543. .card-img-bottom {
  4544. width: 100%;
  4545. }
  4546. .card-img,
  4547. .card-img-top {
  4548. border-top-left-radius: var(--bs-card-inner-border-radius);
  4549. border-top-right-radius: var(--bs-card-inner-border-radius);
  4550. }
  4551. .card-img,
  4552. .card-img-bottom {
  4553. border-bottom-right-radius: var(--bs-card-inner-border-radius);
  4554. border-bottom-left-radius: var(--bs-card-inner-border-radius);
  4555. }
  4556. .card-group > .card {
  4557. margin-bottom: var(--bs-card-group-margin);
  4558. }
  4559. @media (min-width: 576px) {
  4560. .card-group {
  4561. display: -webkit-box;
  4562. display: -ms-flexbox;
  4563. display: flex;
  4564. -webkit-box-orient: horizontal;
  4565. -webkit-box-direction: normal;
  4566. -ms-flex-flow: row wrap;
  4567. flex-flow: row wrap;
  4568. }
  4569. .card-group > .card {
  4570. -webkit-box-flex: 1;
  4571. -ms-flex: 1 0 0%;
  4572. flex: 1 0 0%;
  4573. margin-bottom: 0;
  4574. }
  4575. .card-group > .card + .card {
  4576. margin-left: 0;
  4577. border-left: 0;
  4578. }
  4579. .card-group > .card:not(:last-child) {
  4580. border-top-right-radius: 0;
  4581. border-bottom-right-radius: 0;
  4582. }
  4583. .card-group > .card:not(:last-child) .card-img-top,
  4584. .card-group > .card:not(:last-child) .card-header {
  4585. border-top-right-radius: 0;
  4586. }
  4587. .card-group > .card:not(:last-child) .card-img-bottom,
  4588. .card-group > .card:not(:last-child) .card-footer {
  4589. border-bottom-right-radius: 0;
  4590. }
  4591. .card-group > .card:not(:first-child) {
  4592. border-top-left-radius: 0;
  4593. border-bottom-left-radius: 0;
  4594. }
  4595. .card-group > .card:not(:first-child) .card-img-top,
  4596. .card-group > .card:not(:first-child) .card-header {
  4597. border-top-left-radius: 0;
  4598. }
  4599. .card-group > .card:not(:first-child) .card-img-bottom,
  4600. .card-group > .card:not(:first-child) .card-footer {
  4601. border-bottom-left-radius: 0;
  4602. }
  4603. }
  4604. .accordion {
  4605. --bs-accordion-color: #fff;
  4606. --bs-accordion-bg: transparent;
  4607. --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  4608. --bs-accordion-border-color: rgba(0, 0, 0, 0.125);
  4609. --bs-accordion-border-width: 1px;
  4610. --bs-accordion-border-radius: 0.25rem;
  4611. --bs-accordion-inner-border-radius: calc(0.25rem - 1px);
  4612. --bs-accordion-btn-padding-x: 1.25rem;
  4613. --bs-accordion-btn-padding-y: 1rem;
  4614. --bs-accordion-btn-color: var(--bs-body-color);
  4615. --bs-accordion-btn-bg: transparent;
  4616. --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var%28--bs-body-color%29'%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");
  4617. --bs-accordion-btn-icon-width: 16px;
  4618. --bs-accordion-btn-icon-transform: rotate(180deg);
  4619. --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  4620. --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234d63cf'%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");
  4621. --bs-accordion-btn-focus-border-color: var(--bs-input-focus-border-color);
  4622. --bs-accordion-btn-focus-box-shadow: none;
  4623. --bs-accordion-body-padding-x: 1.25rem;
  4624. --bs-accordion-body-padding-y: 1rem;
  4625. --bs-accordion-active-color: #4d63cf;
  4626. --bs-accordion-active-bg: #eef1fd;
  4627. }
  4628. .accordion-button {
  4629. position: relative;
  4630. display: -webkit-box;
  4631. display: -ms-flexbox;
  4632. display: flex;
  4633. -webkit-box-align: center;
  4634. -ms-flex-align: center;
  4635. align-items: center;
  4636. width: 100%;
  4637. padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  4638. font-size: 0.8125rem;
  4639. color: var(--bs-accordion-btn-color);
  4640. text-align: left;
  4641. background-color: var(--bs-accordion-btn-bg);
  4642. border: 0;
  4643. border-radius: 0;
  4644. overflow-anchor: none;
  4645. -webkit-transition: var(--bs-accordion-transition);
  4646. transition: var(--bs-accordion-transition);
  4647. }
  4648. @media (prefers-reduced-motion: reduce) {
  4649. .accordion-button {
  4650. -webkit-transition: none;
  4651. transition: none;
  4652. }
  4653. }
  4654. .accordion-button:not(.collapsed) {
  4655. color: var(--bs-accordion-active-color);
  4656. background-color: var(--bs-accordion-active-bg);
  4657. -webkit-box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
  4658. box-shadow: inset 0 calc(var(--bs-accordion-border-width) * -1) 0 var(--bs-accordion-border-color);
  4659. }
  4660. .accordion-button:not(.collapsed)::after {
  4661. background-image: var(--bs-accordion-btn-active-icon);
  4662. -webkit-transform: var(--bs-accordion-btn-icon-transform);
  4663. transform: var(--bs-accordion-btn-icon-transform);
  4664. }
  4665. .accordion-button::after {
  4666. -ms-flex-negative: 0;
  4667. flex-shrink: 0;
  4668. width: var(--bs-accordion-btn-icon-width);
  4669. height: var(--bs-accordion-btn-icon-width);
  4670. margin-left: auto;
  4671. content: "";
  4672. background-image: var(--bs-accordion-btn-icon);
  4673. background-repeat: no-repeat;
  4674. background-size: var(--bs-accordion-btn-icon-width);
  4675. -webkit-transition: var(--bs-accordion-btn-icon-transition);
  4676. transition: var(--bs-accordion-btn-icon-transition);
  4677. }
  4678. @media (prefers-reduced-motion: reduce) {
  4679. .accordion-button::after {
  4680. -webkit-transition: none;
  4681. transition: none;
  4682. }
  4683. }
  4684. .accordion-button:hover {
  4685. z-index: 2;
  4686. }
  4687. .accordion-button:focus {
  4688. z-index: 3;
  4689. border-color: var(--bs-accordion-btn-focus-border-color);
  4690. outline: 0;
  4691. -webkit-box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  4692. box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  4693. }
  4694. .accordion-header {
  4695. margin-bottom: 0;
  4696. }
  4697. .accordion-item {
  4698. color: var(--bs-accordion-color);
  4699. background-color: var(--bs-accordion-bg);
  4700. border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
  4701. }
  4702. .accordion-item:first-of-type {
  4703. border-top-left-radius: var(--bs-accordion-border-radius);
  4704. border-top-right-radius: var(--bs-accordion-border-radius);
  4705. }
  4706. .accordion-item:first-of-type .accordion-button {
  4707. border-top-left-radius: var(--bs-accordion-inner-border-radius);
  4708. border-top-right-radius: var(--bs-accordion-inner-border-radius);
  4709. }
  4710. .accordion-item:not(:first-of-type) {
  4711. border-top: 0;
  4712. }
  4713. .accordion-item:last-of-type {
  4714. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4715. border-bottom-left-radius: var(--bs-accordion-border-radius);
  4716. }
  4717. .accordion-item:last-of-type .accordion-button.collapsed {
  4718. border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  4719. border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
  4720. }
  4721. .accordion-item:last-of-type .accordion-collapse {
  4722. border-bottom-right-radius: var(--bs-accordion-border-radius);
  4723. border-bottom-left-radius: var(--bs-accordion-border-radius);
  4724. }
  4725. .accordion-body {
  4726. padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  4727. }
  4728. .accordion-flush .accordion-collapse {
  4729. border-width: 0;
  4730. }
  4731. .accordion-flush .accordion-item {
  4732. border-right: 0;
  4733. border-left: 0;
  4734. border-radius: 0;
  4735. }
  4736. .accordion-flush .accordion-item:first-child {
  4737. border-top: 0;
  4738. }
  4739. .accordion-flush .accordion-item:last-child {
  4740. border-bottom: 0;
  4741. }
  4742. .accordion-flush .accordion-item .accordion-button {
  4743. border-radius: 0;
  4744. }
  4745. .breadcrumb {
  4746. --bs-breadcrumb-padding-x: 1rem;
  4747. --bs-breadcrumb-padding-y: 0.75rem;
  4748. --bs-breadcrumb-margin-bottom: 1rem;
  4749. --bs-breadcrumb-bg: ;
  4750. --bs-breadcrumb-border-radius: ;
  4751. --bs-breadcrumb-divider-color: var(--bs-gray-600);
  4752. --bs-breadcrumb-item-padding-x: 0.5rem;
  4753. --bs-breadcrumb-item-active-color: var(--bs-gray-600);
  4754. display: -webkit-box;
  4755. display: -ms-flexbox;
  4756. display: flex;
  4757. -ms-flex-wrap: wrap;
  4758. flex-wrap: wrap;
  4759. padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  4760. margin-bottom: var(--bs-breadcrumb-margin-bottom);
  4761. font-size: var(--bs-breadcrumb-font-size);
  4762. list-style: none;
  4763. background-color: var(--bs-breadcrumb-bg);
  4764. border-radius: var(--bs-breadcrumb-border-radius);
  4765. }
  4766. .breadcrumb-item + .breadcrumb-item {
  4767. padding-left: var(--bs-breadcrumb-item-padding-x);
  4768. }
  4769. .breadcrumb-item + .breadcrumb-item::before {
  4770. float: left;
  4771. padding-right: var(--bs-breadcrumb-item-padding-x);
  4772. color: var(--bs-breadcrumb-divider-color);
  4773. content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
  4774. }
  4775. .breadcrumb-item.active {
  4776. color: var(--bs-breadcrumb-item-active-color);
  4777. }
  4778. .pagination {
  4779. --bs-pagination-padding-x: 0.75rem;
  4780. --bs-pagination-padding-y: 0.5rem;
  4781. --bs-pagination-font-size: 0.8125rem;
  4782. --bs-pagination-color: var(--bs-gray-600);
  4783. --bs-pagination-bg: var(--bs-custom-white);
  4784. --bs-pagination-border-width: 1px;
  4785. --bs-pagination-border-color: var(--bs-gray-400);
  4786. --bs-pagination-border-radius: 0.25rem;
  4787. --bs-pagination-hover-color: #4458b8;
  4788. --bs-pagination-hover-bg: var(--bs-gray-200);
  4789. --bs-pagination-hover-border-color: var(--bs-gray-400);
  4790. --bs-pagination-focus-color: #4458b8;
  4791. --bs-pagination-focus-bg: var(--bs-gray-200);
  4792. --bs-pagination-focus-box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
  4793. --bs-pagination-active-color: #fff;
  4794. --bs-pagination-active-bg: #556ee6;
  4795. --bs-pagination-active-border-color: #556ee6;
  4796. --bs-pagination-disabled-color: var(--bs-gray-400);
  4797. --bs-pagination-disabled-bg: var(--bs-custom-white);
  4798. --bs-pagination-disabled-border-color: var(--bs-gray-400);
  4799. display: -webkit-box;
  4800. display: -ms-flexbox;
  4801. display: flex;
  4802. padding-left: 0;
  4803. list-style: none;
  4804. }
  4805. .page-link {
  4806. position: relative;
  4807. display: block;
  4808. padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  4809. font-size: var(--bs-pagination-font-size);
  4810. color: var(--bs-pagination-color);
  4811. background-color: var(--bs-pagination-bg);
  4812. border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  4813. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  4814. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  4815. 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;
  4816. 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, -webkit-box-shadow 0.15s ease-in-out;
  4817. }
  4818. @media (prefers-reduced-motion: reduce) {
  4819. .page-link {
  4820. -webkit-transition: none;
  4821. transition: none;
  4822. }
  4823. }
  4824. .page-link:hover {
  4825. z-index: 2;
  4826. color: var(--bs-pagination-hover-color);
  4827. text-decoration: none;
  4828. background-color: var(--bs-pagination-hover-bg);
  4829. border-color: var(--bs-pagination-hover-border-color);
  4830. }
  4831. .page-link:focus {
  4832. z-index: 3;
  4833. color: var(--bs-pagination-focus-color);
  4834. background-color: var(--bs-pagination-focus-bg);
  4835. outline: 0;
  4836. -webkit-box-shadow: var(--bs-pagination-focus-box-shadow);
  4837. box-shadow: var(--bs-pagination-focus-box-shadow);
  4838. }
  4839. .page-link.active, .active > .page-link {
  4840. z-index: 3;
  4841. color: var(--bs-pagination-active-color);
  4842. background-color: var(--bs-pagination-active-bg);
  4843. border-color: var(--bs-pagination-active-border-color);
  4844. }
  4845. .page-link.disabled, .disabled > .page-link {
  4846. color: var(--bs-pagination-disabled-color);
  4847. pointer-events: none;
  4848. background-color: var(--bs-pagination-disabled-bg);
  4849. border-color: var(--bs-pagination-disabled-border-color);
  4850. }
  4851. .page-item:not(:first-child) .page-link {
  4852. margin-left: -1px;
  4853. }
  4854. .page-item:first-child .page-link {
  4855. border-top-left-radius: var(--bs-pagination-border-radius);
  4856. border-bottom-left-radius: var(--bs-pagination-border-radius);
  4857. }
  4858. .page-item:last-child .page-link {
  4859. border-top-right-radius: var(--bs-pagination-border-radius);
  4860. border-bottom-right-radius: var(--bs-pagination-border-radius);
  4861. }
  4862. .pagination-lg {
  4863. --bs-pagination-padding-x: 1.5rem;
  4864. --bs-pagination-padding-y: 0.75rem;
  4865. --bs-pagination-font-size: 1.015625rem;
  4866. --bs-pagination-border-radius: 0.4rem;
  4867. }
  4868. .pagination-sm {
  4869. --bs-pagination-padding-x: 0.5rem;
  4870. --bs-pagination-padding-y: 0.25rem;
  4871. --bs-pagination-font-size: 0.7109375rem;
  4872. --bs-pagination-border-radius: 0.2rem;
  4873. }
  4874. .badge {
  4875. --bs-badge-padding-x: 0.4em;
  4876. --bs-badge-padding-y: 0.25em;
  4877. --bs-badge-font-size: 75%;
  4878. --bs-badge-font-weight: 500;
  4879. --bs-badge-color: #fff;
  4880. --bs-badge-border-radius: 0.25rem;
  4881. display: inline-block;
  4882. padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  4883. font-size: var(--bs-badge-font-size);
  4884. font-weight: var(--bs-badge-font-weight);
  4885. line-height: 1;
  4886. color: var(--bs-badge-color);
  4887. text-align: center;
  4888. white-space: nowrap;
  4889. vertical-align: baseline;
  4890. border-radius: var(--bs-badge-border-radius);
  4891. }
  4892. .badge:empty {
  4893. display: none;
  4894. }
  4895. .btn .badge {
  4896. position: relative;
  4897. top: -1px;
  4898. }
  4899. .alert {
  4900. --bs-alert-bg: transparent;
  4901. --bs-alert-padding-x: 1.25rem;
  4902. --bs-alert-padding-y: 0.75rem;
  4903. --bs-alert-margin-bottom: 1rem;
  4904. --bs-alert-color: inherit;
  4905. --bs-alert-border-color: transparent;
  4906. --bs-alert-border: 1px solid var(--bs-alert-border-color);
  4907. --bs-alert-border-radius: 0.25rem;
  4908. position: relative;
  4909. padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  4910. margin-bottom: var(--bs-alert-margin-bottom);
  4911. color: var(--bs-alert-color);
  4912. background-color: var(--bs-alert-bg);
  4913. border: var(--bs-alert-border);
  4914. border-radius: var(--bs-alert-border-radius);
  4915. }
  4916. .alert-heading {
  4917. color: inherit;
  4918. }
  4919. .alert-link {
  4920. font-weight: 600;
  4921. }
  4922. .alert-dismissible {
  4923. padding-right: 3.75rem;
  4924. }
  4925. .alert-dismissible .btn-close {
  4926. position: absolute;
  4927. top: 0;
  4928. right: 0;
  4929. z-index: 2;
  4930. padding: 0.9375rem 1.25rem;
  4931. }
  4932. .alert-primary {
  4933. --bs-alert-color: #33428a;
  4934. --bs-alert-bg: #dde2fa;
  4935. --bs-alert-border-color: #ccd4f8;
  4936. }
  4937. .alert-primary .alert-link {
  4938. color: #29356e;
  4939. }
  4940. .alert-secondary {
  4941. --bs-alert-color: #464855;
  4942. --bs-alert-bg: #e3e4e8;
  4943. --bs-alert-border-color: #d5d7dd;
  4944. }
  4945. .alert-secondary .alert-link {
  4946. color: #383a44;
  4947. }
  4948. .alert-success {
  4949. --bs-alert-color: #1f7556;
  4950. --bs-alert-bg: #d6f3e9;
  4951. --bs-alert-border-color: #c2eddd;
  4952. }
  4953. .alert-success .alert-link {
  4954. color: #195e45;
  4955. }
  4956. .alert-info {
  4957. --bs-alert-color: #306391;
  4958. --bs-alert-bg: #dcedfc;
  4959. --bs-alert-border-color: #cbe4fb;
  4960. }
  4961. .alert-info .alert-link {
  4962. color: #264f74;
  4963. }
  4964. .alert-warning {
  4965. --bs-alert-color: #916c2e;
  4966. --bs-alert-bg: #fcf0db;
  4967. --bs-alert-border-color: #fbe9c9;
  4968. }
  4969. .alert-warning .alert-link {
  4970. color: #745625;
  4971. }
  4972. .alert-danger {
  4973. --bs-alert-color: #924040;
  4974. --bs-alert-bg: #fde1e1;
  4975. --bs-alert-border-color: #fcd2d2;
  4976. }
  4977. .alert-danger .alert-link {
  4978. color: #753333;
  4979. }
  4980. .alert-pink {
  4981. --bs-alert-color: #8b2554;
  4982. --bs-alert-bg: #fad8e8;
  4983. --bs-alert-border-color: #f8c5dd;
  4984. }
  4985. .alert-pink .alert-link {
  4986. color: #6f1e43;
  4987. }
  4988. .alert-light {
  4989. --bs-alert-color: #8f9194;
  4990. --bs-alert-bg: #fcfcfd;
  4991. --bs-alert-border-color: #fafbfd;
  4992. }
  4993. .alert-light .alert-link {
  4994. color: #727476;
  4995. }
  4996. .alert-dark {
  4997. --bs-alert-color: #1f2326;
  4998. --bs-alert-bg: #d6d8d9;
  4999. --bs-alert-border-color: #c2c4c6;
  5000. }
  5001. .alert-dark .alert-link {
  5002. color: #191c1e;
  5003. }
  5004. @-webkit-keyframes progress-bar-stripes {
  5005. 0% {
  5006. background-position-x: 0.625rem;
  5007. }
  5008. }
  5009. @keyframes progress-bar-stripes {
  5010. 0% {
  5011. background-position-x: 0.625rem;
  5012. }
  5013. }
  5014. .progress {
  5015. --bs-progress-height: 0.625rem;
  5016. --bs-progress-font-size: 0.609375rem;
  5017. --bs-progress-bg: var(--bs-gray-300);
  5018. --bs-progress-border-radius: 0.25rem;
  5019. --bs-progress-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  5020. --bs-progress-bar-color: #fff;
  5021. --bs-progress-bar-bg: #556ee6;
  5022. --bs-progress-bar-transition: width 0.6s ease;
  5023. display: -webkit-box;
  5024. display: -ms-flexbox;
  5025. display: flex;
  5026. height: var(--bs-progress-height);
  5027. overflow: hidden;
  5028. font-size: var(--bs-progress-font-size);
  5029. background-color: var(--bs-progress-bg);
  5030. border-radius: var(--bs-progress-border-radius);
  5031. }
  5032. .progress-bar {
  5033. display: -webkit-box;
  5034. display: -ms-flexbox;
  5035. display: flex;
  5036. -webkit-box-orient: vertical;
  5037. -webkit-box-direction: normal;
  5038. -ms-flex-direction: column;
  5039. flex-direction: column;
  5040. -webkit-box-pack: center;
  5041. -ms-flex-pack: center;
  5042. justify-content: center;
  5043. overflow: hidden;
  5044. color: var(--bs-progress-bar-color);
  5045. text-align: center;
  5046. white-space: nowrap;
  5047. background-color: var(--bs-progress-bar-bg);
  5048. -webkit-transition: var(--bs-progress-bar-transition);
  5049. transition: var(--bs-progress-bar-transition);
  5050. }
  5051. @media (prefers-reduced-motion: reduce) {
  5052. .progress-bar {
  5053. -webkit-transition: none;
  5054. transition: none;
  5055. }
  5056. }
  5057. .progress-bar-striped {
  5058. 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);
  5059. background-size: var(--bs-progress-height) var(--bs-progress-height);
  5060. }
  5061. .progress-bar-animated {
  5062. -webkit-animation: 1s linear infinite progress-bar-stripes;
  5063. animation: 1s linear infinite progress-bar-stripes;
  5064. }
  5065. @media (prefers-reduced-motion: reduce) {
  5066. .progress-bar-animated {
  5067. -webkit-animation: none;
  5068. animation: none;
  5069. }
  5070. }
  5071. .list-group {
  5072. --bs-list-group-color: #212529;
  5073. --bs-list-group-bg: #fff;
  5074. --bs-list-group-border-color: #eff2f7;
  5075. --bs-list-group-border-width: 1px;
  5076. --bs-list-group-border-radius: 0.25rem;
  5077. --bs-list-group-item-padding-x: 1.25rem;
  5078. --bs-list-group-item-padding-y: 0.75rem;
  5079. --bs-list-group-action-color: #495057;
  5080. --bs-list-group-action-hover-color: #495057;
  5081. --bs-list-group-action-hover-bg: #f8f9fa;
  5082. --bs-list-group-action-active-color: #495057;
  5083. --bs-list-group-action-active-bg: #eff2f7;
  5084. --bs-list-group-disabled-color: #74788d;
  5085. --bs-list-group-disabled-bg: #fff;
  5086. --bs-list-group-active-color: #fff;
  5087. --bs-list-group-active-bg: #556ee6;
  5088. --bs-list-group-active-border-color: #556ee6;
  5089. display: -webkit-box;
  5090. display: -ms-flexbox;
  5091. display: flex;
  5092. -webkit-box-orient: vertical;
  5093. -webkit-box-direction: normal;
  5094. -ms-flex-direction: column;
  5095. flex-direction: column;
  5096. padding-left: 0;
  5097. margin-bottom: 0;
  5098. border-radius: var(--bs-list-group-border-radius);
  5099. }
  5100. .list-group-numbered {
  5101. list-style-type: none;
  5102. counter-reset: section;
  5103. }
  5104. .list-group-numbered > .list-group-item::before {
  5105. content: counters(section, ".") ". ";
  5106. counter-increment: section;
  5107. }
  5108. .list-group-item-action {
  5109. width: 100%;
  5110. color: var(--bs-list-group-action-color);
  5111. text-align: inherit;
  5112. }
  5113. .list-group-item-action:hover, .list-group-item-action:focus {
  5114. z-index: 1;
  5115. color: var(--bs-list-group-action-hover-color);
  5116. text-decoration: none;
  5117. background-color: var(--bs-list-group-action-hover-bg);
  5118. }
  5119. .list-group-item-action:active {
  5120. color: var(--bs-list-group-action-active-color);
  5121. background-color: var(--bs-list-group-action-active-bg);
  5122. }
  5123. .list-group-item {
  5124. position: relative;
  5125. display: block;
  5126. padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  5127. color: var(--bs-list-group-color);
  5128. background-color: var(--bs-list-group-bg);
  5129. border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
  5130. }
  5131. .list-group-item:first-child {
  5132. border-top-left-radius: inherit;
  5133. border-top-right-radius: inherit;
  5134. }
  5135. .list-group-item:last-child {
  5136. border-bottom-right-radius: inherit;
  5137. border-bottom-left-radius: inherit;
  5138. }
  5139. .list-group-item.disabled, .list-group-item:disabled {
  5140. color: var(--bs-list-group-disabled-color);
  5141. pointer-events: none;
  5142. background-color: var(--bs-list-group-disabled-bg);
  5143. }
  5144. .list-group-item.active {
  5145. z-index: 2;
  5146. color: var(--bs-list-group-active-color);
  5147. background-color: var(--bs-list-group-active-bg);
  5148. border-color: var(--bs-list-group-active-border-color);
  5149. }
  5150. .list-group-item + .list-group-item {
  5151. border-top-width: 0;
  5152. }
  5153. .list-group-item + .list-group-item.active {
  5154. margin-top: calc(var(--bs-list-group-border-width) * -1);
  5155. border-top-width: var(--bs-list-group-border-width);
  5156. }
  5157. .list-group-horizontal {
  5158. -webkit-box-orient: horizontal;
  5159. -webkit-box-direction: normal;
  5160. -ms-flex-direction: row;
  5161. flex-direction: row;
  5162. }
  5163. .list-group-horizontal > .list-group-item:first-child {
  5164. border-bottom-left-radius: var(--bs-list-group-border-radius);
  5165. border-top-right-radius: 0;
  5166. }
  5167. .list-group-horizontal > .list-group-item:last-child {
  5168. border-top-right-radius: var(--bs-list-group-border-radius);
  5169. border-bottom-left-radius: 0;
  5170. }
  5171. .list-group-horizontal > .list-group-item.active {
  5172. margin-top: 0;
  5173. }
  5174. .list-group-horizontal > .list-group-item + .list-group-item {
  5175. border-top-width: var(--bs-list-group-border-width);
  5176. border-left-width: 0;
  5177. }
  5178. .list-group-horizontal > .list-group-item + .list-group-item.active {
  5179. margin-left: calc(var(--bs-list-group-border-width) * -1);
  5180. border-left-width: var(--bs-list-group-border-width);
  5181. }
  5182. @media (min-width: 576px) {
  5183. .list-group-horizontal-sm {
  5184. -webkit-box-orient: horizontal;
  5185. -webkit-box-direction: normal;
  5186. -ms-flex-direction: row;
  5187. flex-direction: row;
  5188. }
  5189. .list-group-horizontal-sm > .list-group-item:first-child {
  5190. border-bottom-left-radius: var(--bs-list-group-border-radius);
  5191. border-top-right-radius: 0;
  5192. }
  5193. .list-group-horizontal-sm > .list-group-item:last-child {
  5194. border-top-right-radius: var(--bs-list-group-border-radius);
  5195. border-bottom-left-radius: 0;
  5196. }
  5197. .list-group-horizontal-sm > .list-group-item.active {
  5198. margin-top: 0;
  5199. }
  5200. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  5201. border-top-width: var(--bs-list-group-border-width);
  5202. border-left-width: 0;
  5203. }
  5204. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  5205. margin-left: calc(var(--bs-list-group-border-width) * -1);
  5206. border-left-width: var(--bs-list-group-border-width);
  5207. }
  5208. }
  5209. @media (min-width: 768px) {
  5210. .list-group-horizontal-md {
  5211. -webkit-box-orient: horizontal;
  5212. -webkit-box-direction: normal;
  5213. -ms-flex-direction: row;
  5214. flex-direction: row;
  5215. }
  5216. .list-group-horizontal-md > .list-group-item:first-child {
  5217. border-bottom-left-radius: var(--bs-list-group-border-radius);
  5218. border-top-right-radius: 0;
  5219. }
  5220. .list-group-horizontal-md > .list-group-item:last-child {
  5221. border-top-right-radius: var(--bs-list-group-border-radius);
  5222. border-bottom-left-radius: 0;
  5223. }
  5224. .list-group-horizontal-md > .list-group-item.active {
  5225. margin-top: 0;
  5226. }
  5227. .list-group-horizontal-md > .list-group-item + .list-group-item {
  5228. border-top-width: var(--bs-list-group-border-width);
  5229. border-left-width: 0;
  5230. }
  5231. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  5232. margin-left: calc(var(--bs-list-group-border-width) * -1);
  5233. border-left-width: var(--bs-list-group-border-width);
  5234. }
  5235. }
  5236. @media (min-width: 992px) {
  5237. .list-group-horizontal-lg {
  5238. -webkit-box-orient: horizontal;
  5239. -webkit-box-direction: normal;
  5240. -ms-flex-direction: row;
  5241. flex-direction: row;
  5242. }
  5243. .list-group-horizontal-lg > .list-group-item:first-child {
  5244. border-bottom-left-radius: var(--bs-list-group-border-radius);
  5245. border-top-right-radius: 0;
  5246. }
  5247. .list-group-horizontal-lg > .list-group-item:last-child {
  5248. border-top-right-radius: var(--bs-list-group-border-radius);
  5249. border-bottom-left-radius: 0;
  5250. }
  5251. .list-group-horizontal-lg > .list-group-item.active {
  5252. margin-top: 0;
  5253. }
  5254. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  5255. border-top-width: var(--bs-list-group-border-width);
  5256. border-left-width: 0;
  5257. }
  5258. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  5259. margin-left: calc(var(--bs-list-group-border-width) * -1);
  5260. border-left-width: var(--bs-list-group-border-width);
  5261. }
  5262. }
  5263. @media (min-width: 1200px) {
  5264. .list-group-horizontal-xl {
  5265. -webkit-box-orient: horizontal;
  5266. -webkit-box-direction: normal;
  5267. -ms-flex-direction: row;
  5268. flex-direction: row;
  5269. }
  5270. .list-group-horizontal-xl > .list-group-item:first-child {
  5271. border-bottom-left-radius: var(--bs-list-group-border-radius);
  5272. border-top-right-radius: 0;
  5273. }
  5274. .list-group-horizontal-xl > .list-group-item:last-child {
  5275. border-top-right-radius: var(--bs-list-group-border-radius);
  5276. border-bottom-left-radius: 0;
  5277. }
  5278. .list-group-horizontal-xl > .list-group-item.active {
  5279. margin-top: 0;
  5280. }
  5281. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  5282. border-top-width: var(--bs-list-group-border-width);
  5283. border-left-width: 0;
  5284. }
  5285. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  5286. margin-left: calc(var(--bs-list-group-border-width) * -1);
  5287. border-left-width: var(--bs-list-group-border-width);
  5288. }
  5289. }
  5290. @media (min-width: 1400px) {
  5291. .list-group-horizontal-xxl {
  5292. -webkit-box-orient: horizontal;
  5293. -webkit-box-direction: normal;
  5294. -ms-flex-direction: row;
  5295. flex-direction: row;
  5296. }
  5297. .list-group-horizontal-xxl > .list-group-item:first-child {
  5298. border-bottom-left-radius: var(--bs-list-group-border-radius);
  5299. border-top-right-radius: 0;
  5300. }
  5301. .list-group-horizontal-xxl > .list-group-item:last-child {
  5302. border-top-right-radius: var(--bs-list-group-border-radius);
  5303. border-bottom-left-radius: 0;
  5304. }
  5305. .list-group-horizontal-xxl > .list-group-item.active {
  5306. margin-top: 0;
  5307. }
  5308. .list-group-horizontal-xxl > .list-group-item + .list-group-item {
  5309. border-top-width: var(--bs-list-group-border-width);
  5310. border-left-width: 0;
  5311. }
  5312. .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
  5313. margin-left: calc(var(--bs-list-group-border-width) * -1);
  5314. border-left-width: var(--bs-list-group-border-width);
  5315. }
  5316. }
  5317. .list-group-flush {
  5318. border-radius: 0;
  5319. }
  5320. .list-group-flush > .list-group-item {
  5321. border-width: 0 0 var(--bs-list-group-border-width);
  5322. }
  5323. .list-group-flush > .list-group-item:last-child {
  5324. border-bottom-width: 0;
  5325. }
  5326. .list-group-item-primary {
  5327. color: #33428a;
  5328. background-color: #dde2fa;
  5329. }
  5330. .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  5331. color: #33428a;
  5332. background-color: #c7cbe1;
  5333. }
  5334. .list-group-item-primary.list-group-item-action.active {
  5335. color: #fff;
  5336. background-color: #33428a;
  5337. border-color: #33428a;
  5338. }
  5339. .list-group-item-secondary {
  5340. color: #464855;
  5341. background-color: #e3e4e8;
  5342. }
  5343. .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  5344. color: #464855;
  5345. background-color: #cccdd1;
  5346. }
  5347. .list-group-item-secondary.list-group-item-action.active {
  5348. color: #fff;
  5349. background-color: #464855;
  5350. border-color: #464855;
  5351. }
  5352. .list-group-item-success {
  5353. color: #1f7556;
  5354. background-color: #d6f3e9;
  5355. }
  5356. .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  5357. color: #1f7556;
  5358. background-color: #c1dbd2;
  5359. }
  5360. .list-group-item-success.list-group-item-action.active {
  5361. color: #fff;
  5362. background-color: #1f7556;
  5363. border-color: #1f7556;
  5364. }
  5365. .list-group-item-info {
  5366. color: #306391;
  5367. background-color: #dcedfc;
  5368. }
  5369. .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  5370. color: #306391;
  5371. background-color: #c6d5e3;
  5372. }
  5373. .list-group-item-info.list-group-item-action.active {
  5374. color: #fff;
  5375. background-color: #306391;
  5376. border-color: #306391;
  5377. }
  5378. .list-group-item-warning {
  5379. color: #916c2e;
  5380. background-color: #fcf0db;
  5381. }
  5382. .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  5383. color: #916c2e;
  5384. background-color: #e3d8c5;
  5385. }
  5386. .list-group-item-warning.list-group-item-action.active {
  5387. color: #fff;
  5388. background-color: #916c2e;
  5389. border-color: #916c2e;
  5390. }
  5391. .list-group-item-danger {
  5392. color: #924040;
  5393. background-color: #fde1e1;
  5394. }
  5395. .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  5396. color: #924040;
  5397. background-color: #e4cbcb;
  5398. }
  5399. .list-group-item-danger.list-group-item-action.active {
  5400. color: #fff;
  5401. background-color: #924040;
  5402. border-color: #924040;
  5403. }
  5404. .list-group-item-pink {
  5405. color: #8b2554;
  5406. background-color: #fad8e8;
  5407. }
  5408. .list-group-item-pink.list-group-item-action:hover, .list-group-item-pink.list-group-item-action:focus {
  5409. color: #8b2554;
  5410. background-color: #e1c2d1;
  5411. }
  5412. .list-group-item-pink.list-group-item-action.active {
  5413. color: #fff;
  5414. background-color: #8b2554;
  5415. border-color: #8b2554;
  5416. }
  5417. .list-group-item-light {
  5418. color: #8f9194;
  5419. background-color: #fcfcfd;
  5420. }
  5421. .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  5422. color: #8f9194;
  5423. background-color: #e3e3e4;
  5424. }
  5425. .list-group-item-light.list-group-item-action.active {
  5426. color: #fff;
  5427. background-color: #8f9194;
  5428. border-color: #8f9194;
  5429. }
  5430. .list-group-item-dark {
  5431. color: #1f2326;
  5432. background-color: #d6d8d9;
  5433. }
  5434. .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  5435. color: #1f2326;
  5436. background-color: #c1c2c3;
  5437. }
  5438. .list-group-item-dark.list-group-item-action.active {
  5439. color: #fff;
  5440. background-color: #1f2326;
  5441. border-color: #1f2326;
  5442. }
  5443. .btn-close {
  5444. -webkit-box-sizing: content-box;
  5445. box-sizing: content-box;
  5446. width: 1em;
  5447. height: 1em;
  5448. padding: 0.25em 0.25em;
  5449. color: #000;
  5450. 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;
  5451. border: 0;
  5452. border-radius: 0.25rem;
  5453. opacity: 0.5;
  5454. }
  5455. .btn-close:hover {
  5456. color: #000;
  5457. text-decoration: none;
  5458. opacity: 0.75;
  5459. }
  5460. .btn-close:focus {
  5461. outline: 0;
  5462. -webkit-box-shadow: none;
  5463. box-shadow: none;
  5464. opacity: 1;
  5465. }
  5466. .btn-close:disabled, .btn-close.disabled {
  5467. pointer-events: none;
  5468. -webkit-user-select: none;
  5469. -moz-user-select: none;
  5470. -ms-user-select: none;
  5471. user-select: none;
  5472. opacity: 0.25;
  5473. }
  5474. .btn-close-white {
  5475. -webkit-filter: invert(1) grayscale(100%) brightness(200%);
  5476. filter: invert(1) grayscale(100%) brightness(200%);
  5477. }
  5478. .toast {
  5479. --bs-toast-padding-x: 0.75rem;
  5480. --bs-toast-padding-y: 0.25rem;
  5481. --bs-toast-spacing: 12px;
  5482. --bs-toast-max-width: 350px;
  5483. --bs-toast-font-size: 0.875rem;
  5484. --bs-toast-color: ;
  5485. --bs-toast-bg: rgba(255, 255, 255, 0.85);
  5486. --bs-toast-border-width: 1px;
  5487. --bs-toast-border-color: var(--bs-border-color);
  5488. --bs-toast-border-radius: 0.25rem;
  5489. --bs-toast-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  5490. --bs-toast-header-color: var(--bs-gray-600);
  5491. --bs-toast-header-bg: rgba(255, 255, 255, 0.85);
  5492. --bs-toast-header-border-color: var(--bs-border-color);
  5493. width: var(--bs-toast-max-width);
  5494. max-width: 100%;
  5495. font-size: var(--bs-toast-font-size);
  5496. color: var(--bs-toast-color);
  5497. pointer-events: auto;
  5498. background-color: var(--bs-toast-bg);
  5499. background-clip: padding-box;
  5500. border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  5501. -webkit-box-shadow: var(--bs-toast-box-shadow);
  5502. box-shadow: var(--bs-toast-box-shadow);
  5503. border-radius: var(--bs-toast-border-radius);
  5504. }
  5505. .toast.showing {
  5506. opacity: 0;
  5507. }
  5508. .toast:not(.show) {
  5509. display: none;
  5510. }
  5511. .toast-container {
  5512. position: absolute;
  5513. z-index: 1090;
  5514. width: -webkit-max-content;
  5515. width: -moz-max-content;
  5516. width: max-content;
  5517. max-width: 100%;
  5518. pointer-events: none;
  5519. }
  5520. .toast-container > :not(:last-child) {
  5521. margin-bottom: var(--bs-toast-spacing);
  5522. }
  5523. .toast-header {
  5524. display: -webkit-box;
  5525. display: -ms-flexbox;
  5526. display: flex;
  5527. -webkit-box-align: center;
  5528. -ms-flex-align: center;
  5529. align-items: center;
  5530. padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  5531. color: var(--bs-toast-header-color);
  5532. background-color: var(--bs-toast-header-bg);
  5533. background-clip: padding-box;
  5534. border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  5535. border-top-left-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  5536. border-top-right-radius: calc(var(--bs-toast-border-radius) - var(--bs-toast-border-width));
  5537. }
  5538. .toast-header .btn-close {
  5539. margin-right: calc(var(--bs-toast-padding-x) * -0.5);
  5540. margin-left: var(--bs-toast-padding-x);
  5541. }
  5542. .toast-body {
  5543. padding: var(--bs-toast-padding-x);
  5544. word-wrap: break-word;
  5545. }
  5546. .modal {
  5547. --bs-modal-zindex: 1055;
  5548. --bs-modal-width: 500px;
  5549. --bs-modal-padding: 1rem;
  5550. --bs-modal-margin: 0.5rem;
  5551. --bs-modal-color: ;
  5552. --bs-modal-bg: #fff;
  5553. --bs-modal-border-color: var(--bs-gray-300);
  5554. --bs-modal-border-width: 1px;
  5555. --bs-modal-border-radius: 0.4rem;
  5556. --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  5557. --bs-modal-inner-border-radius: calc(0.4rem - 1px);
  5558. --bs-modal-header-padding-x: 1rem;
  5559. --bs-modal-header-padding-y: 1rem;
  5560. --bs-modal-header-padding: 1rem 1rem;
  5561. --bs-modal-header-border-color: var(--bs-border-color);
  5562. --bs-modal-header-border-width: 1px;
  5563. --bs-modal-title-line-height: 1.5;
  5564. --bs-modal-footer-gap: 0.5rem;
  5565. --bs-modal-footer-bg: ;
  5566. --bs-modal-footer-border-color: var(--bs-border-color);
  5567. --bs-modal-footer-border-width: 1px;
  5568. position: fixed;
  5569. top: 0;
  5570. left: 0;
  5571. z-index: var(--bs-modal-zindex);
  5572. display: none;
  5573. width: 100%;
  5574. height: 100%;
  5575. overflow-x: hidden;
  5576. overflow-y: auto;
  5577. outline: 0;
  5578. }
  5579. .modal-dialog {
  5580. position: relative;
  5581. width: auto;
  5582. margin: var(--bs-modal-margin);
  5583. pointer-events: none;
  5584. }
  5585. .modal.fade .modal-dialog {
  5586. -webkit-transition: -webkit-transform 0.3s ease-out;
  5587. transition: -webkit-transform 0.3s ease-out;
  5588. transition: transform 0.3s ease-out;
  5589. transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  5590. -webkit-transform: translate(0, -50px);
  5591. transform: translate(0, -50px);
  5592. }
  5593. @media (prefers-reduced-motion: reduce) {
  5594. .modal.fade .modal-dialog {
  5595. -webkit-transition: none;
  5596. transition: none;
  5597. }
  5598. }
  5599. .modal.show .modal-dialog {
  5600. -webkit-transform: none;
  5601. transform: none;
  5602. }
  5603. .modal.modal-static .modal-dialog {
  5604. -webkit-transform: scale(1.02);
  5605. transform: scale(1.02);
  5606. }
  5607. .modal-dialog-scrollable {
  5608. height: calc(100% - var(--bs-modal-margin) * 2);
  5609. }
  5610. .modal-dialog-scrollable .modal-content {
  5611. max-height: 100%;
  5612. overflow: hidden;
  5613. }
  5614. .modal-dialog-scrollable .modal-body {
  5615. overflow-y: auto;
  5616. }
  5617. .modal-dialog-centered {
  5618. display: -webkit-box;
  5619. display: -ms-flexbox;
  5620. display: flex;
  5621. -webkit-box-align: center;
  5622. -ms-flex-align: center;
  5623. align-items: center;
  5624. min-height: calc(100% - var(--bs-modal-margin) * 2);
  5625. }
  5626. .modal-content {
  5627. position: relative;
  5628. display: -webkit-box;
  5629. display: -ms-flexbox;
  5630. display: flex;
  5631. -webkit-box-orient: vertical;
  5632. -webkit-box-direction: normal;
  5633. -ms-flex-direction: column;
  5634. flex-direction: column;
  5635. width: 100%;
  5636. color: var(--bs-modal-color);
  5637. pointer-events: auto;
  5638. background-color: var(--bs-modal-bg);
  5639. background-clip: padding-box;
  5640. border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  5641. border-radius: var(--bs-modal-border-radius);
  5642. outline: 0;
  5643. }
  5644. .modal-backdrop {
  5645. --bs-backdrop-zindex: 1050;
  5646. --bs-backdrop-bg: #000;
  5647. --bs-backdrop-opacity: 0.5;
  5648. position: fixed;
  5649. top: 0;
  5650. left: 0;
  5651. z-index: var(--bs-backdrop-zindex);
  5652. width: 100vw;
  5653. height: 100vh;
  5654. background-color: var(--bs-backdrop-bg);
  5655. }
  5656. .modal-backdrop.fade {
  5657. opacity: 0;
  5658. }
  5659. .modal-backdrop.show {
  5660. opacity: var(--bs-backdrop-opacity);
  5661. }
  5662. .modal-header {
  5663. display: -webkit-box;
  5664. display: -ms-flexbox;
  5665. display: flex;
  5666. -ms-flex-negative: 0;
  5667. flex-shrink: 0;
  5668. -webkit-box-align: center;
  5669. -ms-flex-align: center;
  5670. align-items: center;
  5671. -webkit-box-pack: justify;
  5672. -ms-flex-pack: justify;
  5673. justify-content: space-between;
  5674. padding: var(--bs-modal-header-padding);
  5675. border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  5676. border-top-left-radius: var(--bs-modal-inner-border-radius);
  5677. border-top-right-radius: var(--bs-modal-inner-border-radius);
  5678. }
  5679. .modal-header .btn-close {
  5680. padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  5681. margin: calc(var(--bs-modal-header-padding-y) * -0.5) calc(var(--bs-modal-header-padding-x) * -0.5) calc(var(--bs-modal-header-padding-y) * -0.5) auto;
  5682. }
  5683. .modal-title {
  5684. margin-bottom: 0;
  5685. line-height: var(--bs-modal-title-line-height);
  5686. }
  5687. .modal-body {
  5688. position: relative;
  5689. -webkit-box-flex: 1;
  5690. -ms-flex: 1 1 auto;
  5691. flex: 1 1 auto;
  5692. padding: var(--bs-modal-padding);
  5693. }
  5694. .modal-footer {
  5695. display: -webkit-box;
  5696. display: -ms-flexbox;
  5697. display: flex;
  5698. -ms-flex-negative: 0;
  5699. flex-shrink: 0;
  5700. -ms-flex-wrap: wrap;
  5701. flex-wrap: wrap;
  5702. -webkit-box-align: center;
  5703. -ms-flex-align: center;
  5704. align-items: center;
  5705. -webkit-box-pack: end;
  5706. -ms-flex-pack: end;
  5707. justify-content: flex-end;
  5708. padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  5709. background-color: var(--bs-modal-footer-bg);
  5710. border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  5711. border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  5712. border-bottom-left-radius: var(--bs-modal-inner-border-radius);
  5713. }
  5714. .modal-footer > * {
  5715. margin: calc(var(--bs-modal-footer-gap) * 0.5);
  5716. }
  5717. @media (min-width: 576px) {
  5718. .modal {
  5719. --bs-modal-margin: 1.75rem;
  5720. --bs-modal-box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
  5721. }
  5722. .modal-dialog {
  5723. max-width: var(--bs-modal-width);
  5724. margin-right: auto;
  5725. margin-left: auto;
  5726. }
  5727. .modal-sm {
  5728. --bs-modal-width: 300px;
  5729. }
  5730. }
  5731. @media (min-width: 992px) {
  5732. .modal-lg,
  5733. .modal-xl {
  5734. --bs-modal-width: 800px;
  5735. }
  5736. }
  5737. @media (min-width: 1200px) {
  5738. .modal-xl {
  5739. --bs-modal-width: 1140px;
  5740. }
  5741. }
  5742. .modal-fullscreen {
  5743. width: 100vw;
  5744. max-width: none;
  5745. height: 100%;
  5746. margin: 0;
  5747. }
  5748. .modal-fullscreen .modal-content {
  5749. height: 100%;
  5750. border: 0;
  5751. border-radius: 0;
  5752. }
  5753. .modal-fullscreen .modal-header,
  5754. .modal-fullscreen .modal-footer {
  5755. border-radius: 0;
  5756. }
  5757. .modal-fullscreen .modal-body {
  5758. overflow-y: auto;
  5759. }
  5760. @media (max-width: 575.98px) {
  5761. .modal-fullscreen-sm-down {
  5762. width: 100vw;
  5763. max-width: none;
  5764. height: 100%;
  5765. margin: 0;
  5766. }
  5767. .modal-fullscreen-sm-down .modal-content {
  5768. height: 100%;
  5769. border: 0;
  5770. border-radius: 0;
  5771. }
  5772. .modal-fullscreen-sm-down .modal-header,
  5773. .modal-fullscreen-sm-down .modal-footer {
  5774. border-radius: 0;
  5775. }
  5776. .modal-fullscreen-sm-down .modal-body {
  5777. overflow-y: auto;
  5778. }
  5779. }
  5780. @media (max-width: 767.98px) {
  5781. .modal-fullscreen-md-down {
  5782. width: 100vw;
  5783. max-width: none;
  5784. height: 100%;
  5785. margin: 0;
  5786. }
  5787. .modal-fullscreen-md-down .modal-content {
  5788. height: 100%;
  5789. border: 0;
  5790. border-radius: 0;
  5791. }
  5792. .modal-fullscreen-md-down .modal-header,
  5793. .modal-fullscreen-md-down .modal-footer {
  5794. border-radius: 0;
  5795. }
  5796. .modal-fullscreen-md-down .modal-body {
  5797. overflow-y: auto;
  5798. }
  5799. }
  5800. @media (max-width: 991.98px) {
  5801. .modal-fullscreen-lg-down {
  5802. width: 100vw;
  5803. max-width: none;
  5804. height: 100%;
  5805. margin: 0;
  5806. }
  5807. .modal-fullscreen-lg-down .modal-content {
  5808. height: 100%;
  5809. border: 0;
  5810. border-radius: 0;
  5811. }
  5812. .modal-fullscreen-lg-down .modal-header,
  5813. .modal-fullscreen-lg-down .modal-footer {
  5814. border-radius: 0;
  5815. }
  5816. .modal-fullscreen-lg-down .modal-body {
  5817. overflow-y: auto;
  5818. }
  5819. }
  5820. @media (max-width: 1199.98px) {
  5821. .modal-fullscreen-xl-down {
  5822. width: 100vw;
  5823. max-width: none;
  5824. height: 100%;
  5825. margin: 0;
  5826. }
  5827. .modal-fullscreen-xl-down .modal-content {
  5828. height: 100%;
  5829. border: 0;
  5830. border-radius: 0;
  5831. }
  5832. .modal-fullscreen-xl-down .modal-header,
  5833. .modal-fullscreen-xl-down .modal-footer {
  5834. border-radius: 0;
  5835. }
  5836. .modal-fullscreen-xl-down .modal-body {
  5837. overflow-y: auto;
  5838. }
  5839. }
  5840. @media (max-width: 1399.98px) {
  5841. .modal-fullscreen-xxl-down {
  5842. width: 100vw;
  5843. max-width: none;
  5844. height: 100%;
  5845. margin: 0;
  5846. }
  5847. .modal-fullscreen-xxl-down .modal-content {
  5848. height: 100%;
  5849. border: 0;
  5850. border-radius: 0;
  5851. }
  5852. .modal-fullscreen-xxl-down .modal-header,
  5853. .modal-fullscreen-xxl-down .modal-footer {
  5854. border-radius: 0;
  5855. }
  5856. .modal-fullscreen-xxl-down .modal-body {
  5857. overflow-y: auto;
  5858. }
  5859. }
  5860. .tooltip {
  5861. --bs-tooltip-zindex: 1080;
  5862. --bs-tooltip-max-width: 200px;
  5863. --bs-tooltip-padding-x: 0.7rem;
  5864. --bs-tooltip-padding-y: 0.4rem;
  5865. --bs-tooltip-margin: 0;
  5866. --bs-tooltip-font-size: 0.7109375rem;
  5867. --bs-tooltip-color: #fff;
  5868. --bs-tooltip-bg: #000;
  5869. --bs-tooltip-border-radius: 0.25rem;
  5870. --bs-tooltip-opacity: 0.9;
  5871. --bs-tooltip-arrow-width: 0.8rem;
  5872. --bs-tooltip-arrow-height: 0.4rem;
  5873. z-index: var(--bs-tooltip-zindex);
  5874. display: block;
  5875. padding: var(--bs-tooltip-arrow-height);
  5876. margin: var(--bs-tooltip-margin);
  5877. font-family: var(--bs-font-sans-serif);
  5878. font-style: normal;
  5879. font-weight: 400;
  5880. line-height: 1.5;
  5881. text-align: left;
  5882. text-align: start;
  5883. text-decoration: none;
  5884. text-shadow: none;
  5885. text-transform: none;
  5886. letter-spacing: normal;
  5887. word-break: normal;
  5888. white-space: normal;
  5889. word-spacing: normal;
  5890. line-break: auto;
  5891. font-size: var(--bs-tooltip-font-size);
  5892. word-wrap: break-word;
  5893. opacity: 0;
  5894. }
  5895. .tooltip.show {
  5896. opacity: var(--bs-tooltip-opacity);
  5897. }
  5898. .tooltip .tooltip-arrow {
  5899. display: block;
  5900. width: var(--bs-tooltip-arrow-width);
  5901. height: var(--bs-tooltip-arrow-height);
  5902. }
  5903. .tooltip .tooltip-arrow::before {
  5904. position: absolute;
  5905. content: "";
  5906. border-color: transparent;
  5907. border-style: solid;
  5908. }
  5909. .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  5910. bottom: 0;
  5911. }
  5912. .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  5913. top: -1px;
  5914. border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5915. border-top-color: var(--bs-tooltip-bg);
  5916. }
  5917. /* rtl:begin:ignore */
  5918. .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  5919. left: 0;
  5920. width: var(--bs-tooltip-arrow-height);
  5921. height: var(--bs-tooltip-arrow-width);
  5922. }
  5923. .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  5924. right: -1px;
  5925. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5926. border-right-color: var(--bs-tooltip-bg);
  5927. }
  5928. /* rtl:end:ignore */
  5929. .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  5930. top: 0;
  5931. }
  5932. .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  5933. bottom: -1px;
  5934. border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5935. border-bottom-color: var(--bs-tooltip-bg);
  5936. }
  5937. /* rtl:begin:ignore */
  5938. .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  5939. right: 0;
  5940. width: var(--bs-tooltip-arrow-height);
  5941. height: var(--bs-tooltip-arrow-width);
  5942. }
  5943. .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  5944. left: -1px;
  5945. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5946. border-left-color: var(--bs-tooltip-bg);
  5947. }
  5948. /* rtl:end:ignore */
  5949. .tooltip-inner {
  5950. max-width: var(--bs-tooltip-max-width);
  5951. padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  5952. color: var(--bs-tooltip-color);
  5953. text-align: center;
  5954. background-color: var(--bs-tooltip-bg);
  5955. border-radius: var(--bs-tooltip-border-radius);
  5956. }
  5957. .popover {
  5958. --bs-popover-zindex: 1070;
  5959. --bs-popover-max-width: 276px;
  5960. --bs-popover-font-size: 0.7109375rem;
  5961. --bs-popover-bg: #fff;
  5962. --bs-popover-border-width: 1px;
  5963. --bs-popover-border-color: #f6f6f6;
  5964. --bs-popover-border-radius: 0.4rem;
  5965. --bs-popover-inner-border-radius: calc(0.4rem - 1px);
  5966. --bs-popover-box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
  5967. --bs-popover-header-padding-x: 1rem;
  5968. --bs-popover-header-padding-y: 0.5rem;
  5969. --bs-popover-header-font-size: 0.8125rem;
  5970. --bs-popover-header-color: var(--bs-heading-color);
  5971. --bs-popover-header-bg: whitesmoke;
  5972. --bs-popover-body-padding-x: 1rem;
  5973. --bs-popover-body-padding-y: 1rem;
  5974. --bs-popover-body-color: #495057;
  5975. --bs-popover-arrow-width: 1rem;
  5976. --bs-popover-arrow-height: 0.5rem;
  5977. --bs-popover-arrow-border: var(--bs-popover-border-color);
  5978. z-index: var(--bs-popover-zindex);
  5979. display: block;
  5980. max-width: var(--bs-popover-max-width);
  5981. font-family: var(--bs-font-sans-serif);
  5982. font-style: normal;
  5983. font-weight: 400;
  5984. line-height: 1.5;
  5985. text-align: left;
  5986. text-align: start;
  5987. text-decoration: none;
  5988. text-shadow: none;
  5989. text-transform: none;
  5990. letter-spacing: normal;
  5991. word-break: normal;
  5992. white-space: normal;
  5993. word-spacing: normal;
  5994. line-break: auto;
  5995. font-size: var(--bs-popover-font-size);
  5996. word-wrap: break-word;
  5997. background-color: var(--bs-popover-bg);
  5998. background-clip: padding-box;
  5999. border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  6000. border-radius: var(--bs-popover-border-radius);
  6001. }
  6002. .popover .popover-arrow {
  6003. display: block;
  6004. width: var(--bs-popover-arrow-width);
  6005. height: var(--bs-popover-arrow-height);
  6006. }
  6007. .popover .popover-arrow::before, .popover .popover-arrow::after {
  6008. position: absolute;
  6009. display: block;
  6010. content: "";
  6011. border-color: transparent;
  6012. border-style: solid;
  6013. border-width: 0;
  6014. }
  6015. .bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  6016. bottom: calc(var(--bs-popover-arrow-height) * -1 - var(--bs-popover-border-width));
  6017. }
  6018. .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before, .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  6019. border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  6020. }
  6021. .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  6022. bottom: 0;
  6023. border-top-color: var(--bs-popover-arrow-border);
  6024. }
  6025. .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  6026. bottom: var(--bs-popover-border-width);
  6027. border-top-color: var(--bs-popover-bg);
  6028. }
  6029. /* rtl:begin:ignore */
  6030. .bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  6031. left: calc(var(--bs-popover-arrow-height) * -1 - var(--bs-popover-border-width));
  6032. width: var(--bs-popover-arrow-height);
  6033. height: var(--bs-popover-arrow-width);
  6034. }
  6035. .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before, .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  6036. border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  6037. }
  6038. .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  6039. left: 0;
  6040. border-right-color: var(--bs-popover-arrow-border);
  6041. }
  6042. .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  6043. left: var(--bs-popover-border-width);
  6044. border-right-color: var(--bs-popover-bg);
  6045. }
  6046. /* rtl:end:ignore */
  6047. .bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  6048. top: calc(var(--bs-popover-arrow-height) * -1 - var(--bs-popover-border-width));
  6049. }
  6050. .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before, .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  6051. border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  6052. }
  6053. .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  6054. top: 0;
  6055. border-bottom-color: var(--bs-popover-arrow-border);
  6056. }
  6057. .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  6058. top: var(--bs-popover-border-width);
  6059. border-bottom-color: var(--bs-popover-bg);
  6060. }
  6061. .bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  6062. position: absolute;
  6063. top: 0;
  6064. left: 50%;
  6065. display: block;
  6066. width: var(--bs-popover-arrow-width);
  6067. margin-left: calc(var(--bs-popover-arrow-width) * -0.5);
  6068. content: "";
  6069. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
  6070. }
  6071. /* rtl:begin:ignore */
  6072. .bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  6073. right: calc(var(--bs-popover-arrow-height) * -1 - var(--bs-popover-border-width));
  6074. width: var(--bs-popover-arrow-height);
  6075. height: var(--bs-popover-arrow-width);
  6076. }
  6077. .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before, .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  6078. border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  6079. }
  6080. .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  6081. right: 0;
  6082. border-left-color: var(--bs-popover-arrow-border);
  6083. }
  6084. .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  6085. right: var(--bs-popover-border-width);
  6086. border-left-color: var(--bs-popover-bg);
  6087. }
  6088. /* rtl:end:ignore */
  6089. .popover-header {
  6090. padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  6091. margin-bottom: 0;
  6092. font-size: var(--bs-popover-header-font-size);
  6093. color: var(--bs-popover-header-color);
  6094. background-color: var(--bs-popover-header-bg);
  6095. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  6096. border-top-left-radius: var(--bs-popover-inner-border-radius);
  6097. border-top-right-radius: var(--bs-popover-inner-border-radius);
  6098. }
  6099. .popover-header:empty {
  6100. display: none;
  6101. }
  6102. .popover-body {
  6103. padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  6104. color: var(--bs-popover-body-color);
  6105. }
  6106. .carousel {
  6107. position: relative;
  6108. }
  6109. .carousel.pointer-event {
  6110. -ms-touch-action: pan-y;
  6111. touch-action: pan-y;
  6112. }
  6113. .carousel-inner {
  6114. position: relative;
  6115. width: 100%;
  6116. overflow: hidden;
  6117. }
  6118. .carousel-inner::after {
  6119. display: block;
  6120. clear: both;
  6121. content: "";
  6122. }
  6123. .carousel-item {
  6124. position: relative;
  6125. display: none;
  6126. float: left;
  6127. width: 100%;
  6128. margin-right: -100%;
  6129. -webkit-backface-visibility: hidden;
  6130. backface-visibility: hidden;
  6131. -webkit-transition: -webkit-transform 0.6s ease-in-out;
  6132. transition: -webkit-transform 0.6s ease-in-out;
  6133. transition: transform 0.6s ease-in-out;
  6134. transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  6135. }
  6136. @media (prefers-reduced-motion: reduce) {
  6137. .carousel-item {
  6138. -webkit-transition: none;
  6139. transition: none;
  6140. }
  6141. }
  6142. .carousel-item.active,
  6143. .carousel-item-next,
  6144. .carousel-item-prev {
  6145. display: block;
  6146. }
  6147. /* rtl:begin:ignore */
  6148. .carousel-item-next:not(.carousel-item-start),
  6149. .active.carousel-item-end {
  6150. -webkit-transform: translateX(100%);
  6151. transform: translateX(100%);
  6152. }
  6153. .carousel-item-prev:not(.carousel-item-end),
  6154. .active.carousel-item-start {
  6155. -webkit-transform: translateX(-100%);
  6156. transform: translateX(-100%);
  6157. }
  6158. /* rtl:end:ignore */
  6159. .carousel-fade .carousel-item {
  6160. opacity: 0;
  6161. -webkit-transition-property: opacity;
  6162. transition-property: opacity;
  6163. -webkit-transform: none;
  6164. transform: none;
  6165. }
  6166. .carousel-fade .carousel-item.active,
  6167. .carousel-fade .carousel-item-next.carousel-item-start,
  6168. .carousel-fade .carousel-item-prev.carousel-item-end {
  6169. z-index: 1;
  6170. opacity: 1;
  6171. }
  6172. .carousel-fade .active.carousel-item-start,
  6173. .carousel-fade .active.carousel-item-end {
  6174. z-index: 0;
  6175. opacity: 0;
  6176. -webkit-transition: opacity 0s 0.6s;
  6177. transition: opacity 0s 0.6s;
  6178. }
  6179. @media (prefers-reduced-motion: reduce) {
  6180. .carousel-fade .active.carousel-item-start,
  6181. .carousel-fade .active.carousel-item-end {
  6182. -webkit-transition: none;
  6183. transition: none;
  6184. }
  6185. }
  6186. .carousel-control-prev,
  6187. .carousel-control-next {
  6188. position: absolute;
  6189. top: 0;
  6190. bottom: 0;
  6191. z-index: 1;
  6192. display: -webkit-box;
  6193. display: -ms-flexbox;
  6194. display: flex;
  6195. -webkit-box-align: center;
  6196. -ms-flex-align: center;
  6197. align-items: center;
  6198. -webkit-box-pack: center;
  6199. -ms-flex-pack: center;
  6200. justify-content: center;
  6201. width: 15%;
  6202. padding: 0;
  6203. color: #fff;
  6204. text-align: center;
  6205. background: none;
  6206. border: 0;
  6207. opacity: 0.5;
  6208. -webkit-transition: opacity 0.15s ease;
  6209. transition: opacity 0.15s ease;
  6210. }
  6211. @media (prefers-reduced-motion: reduce) {
  6212. .carousel-control-prev,
  6213. .carousel-control-next {
  6214. -webkit-transition: none;
  6215. transition: none;
  6216. }
  6217. }
  6218. .carousel-control-prev:hover, .carousel-control-prev:focus,
  6219. .carousel-control-next:hover,
  6220. .carousel-control-next:focus {
  6221. color: #fff;
  6222. text-decoration: none;
  6223. outline: 0;
  6224. opacity: 0.9;
  6225. }
  6226. .carousel-control-prev {
  6227. left: 0;
  6228. }
  6229. .carousel-control-next {
  6230. right: 0;
  6231. }
  6232. .carousel-control-prev-icon,
  6233. .carousel-control-next-icon {
  6234. display: inline-block;
  6235. width: 2rem;
  6236. height: 2rem;
  6237. background-repeat: no-repeat;
  6238. background-position: 50%;
  6239. background-size: 100% 100%;
  6240. }
  6241. /* rtl:options: {
  6242. "autoRename": true,
  6243. "stringMap":[ {
  6244. "name" : "prev-next",
  6245. "search" : "prev",
  6246. "replace" : "next"
  6247. } ]
  6248. } */
  6249. .carousel-control-prev-icon {
  6250. 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");
  6251. }
  6252. .carousel-control-next-icon {
  6253. 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");
  6254. }
  6255. .carousel-indicators {
  6256. position: absolute;
  6257. right: 0;
  6258. bottom: 0;
  6259. left: 0;
  6260. z-index: 2;
  6261. display: -webkit-box;
  6262. display: -ms-flexbox;
  6263. display: flex;
  6264. -webkit-box-pack: center;
  6265. -ms-flex-pack: center;
  6266. justify-content: center;
  6267. padding: 0;
  6268. margin-right: 15%;
  6269. margin-bottom: 1rem;
  6270. margin-left: 15%;
  6271. list-style: none;
  6272. }
  6273. .carousel-indicators [data-bs-target] {
  6274. -webkit-box-sizing: content-box;
  6275. box-sizing: content-box;
  6276. -webkit-box-flex: 0;
  6277. -ms-flex: 0 1 auto;
  6278. flex: 0 1 auto;
  6279. width: 30px;
  6280. height: 3px;
  6281. padding: 0;
  6282. margin-right: 3px;
  6283. margin-left: 3px;
  6284. text-indent: -999px;
  6285. cursor: pointer;
  6286. background-color: #fff;
  6287. background-clip: padding-box;
  6288. border: 0;
  6289. border-top: 10px solid transparent;
  6290. border-bottom: 10px solid transparent;
  6291. opacity: 0.5;
  6292. -webkit-transition: opacity 0.6s ease;
  6293. transition: opacity 0.6s ease;
  6294. }
  6295. @media (prefers-reduced-motion: reduce) {
  6296. .carousel-indicators [data-bs-target] {
  6297. -webkit-transition: none;
  6298. transition: none;
  6299. }
  6300. }
  6301. .carousel-indicators .active {
  6302. opacity: 1;
  6303. }
  6304. .carousel-caption {
  6305. position: absolute;
  6306. right: 15%;
  6307. bottom: 1.25rem;
  6308. left: 15%;
  6309. padding-top: 1.25rem;
  6310. padding-bottom: 1.25rem;
  6311. color: #fff;
  6312. text-align: center;
  6313. }
  6314. .carousel-dark .carousel-control-prev-icon,
  6315. .carousel-dark .carousel-control-next-icon {
  6316. -webkit-filter: invert(1) grayscale(100);
  6317. filter: invert(1) grayscale(100);
  6318. }
  6319. .carousel-dark .carousel-indicators [data-bs-target] {
  6320. background-color: #000;
  6321. }
  6322. .carousel-dark .carousel-caption {
  6323. color: #000;
  6324. }
  6325. .spinner-grow,
  6326. .spinner-border {
  6327. display: inline-block;
  6328. width: var(--bs-spinner-width);
  6329. height: var(--bs-spinner-height);
  6330. vertical-align: var(--bs-spinner-vertical-align);
  6331. border-radius: 50%;
  6332. -webkit-animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
  6333. animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
  6334. }
  6335. @-webkit-keyframes spinner-border {
  6336. to {
  6337. -webkit-transform: rotate(360deg) /* rtl:ignore */;
  6338. transform: rotate(360deg) /* rtl:ignore */;
  6339. }
  6340. }
  6341. @keyframes spinner-border {
  6342. to {
  6343. -webkit-transform: rotate(360deg) /* rtl:ignore */;
  6344. transform: rotate(360deg) /* rtl:ignore */;
  6345. }
  6346. }
  6347. .spinner-border {
  6348. --bs-spinner-width: 2rem;
  6349. --bs-spinner-height: 2rem;
  6350. --bs-spinner-vertical-align: -0.125em;
  6351. --bs-spinner-border-width: 0.25em;
  6352. --bs-spinner-animation-speed: 0.75s;
  6353. --bs-spinner-animation-name: spinner-border;
  6354. border: var(--bs-spinner-border-width) solid currentcolor;
  6355. border-right-color: transparent;
  6356. }
  6357. .spinner-border-sm {
  6358. --bs-spinner-width: 1rem;
  6359. --bs-spinner-height: 1rem;
  6360. --bs-spinner-border-width: 0.2em;
  6361. }
  6362. @-webkit-keyframes spinner-grow {
  6363. 0% {
  6364. -webkit-transform: scale(0);
  6365. transform: scale(0);
  6366. }
  6367. 50% {
  6368. opacity: 1;
  6369. -webkit-transform: none;
  6370. transform: none;
  6371. }
  6372. }
  6373. @keyframes spinner-grow {
  6374. 0% {
  6375. -webkit-transform: scale(0);
  6376. transform: scale(0);
  6377. }
  6378. 50% {
  6379. opacity: 1;
  6380. -webkit-transform: none;
  6381. transform: none;
  6382. }
  6383. }
  6384. .spinner-grow {
  6385. --bs-spinner-width: 2rem;
  6386. --bs-spinner-height: 2rem;
  6387. --bs-spinner-vertical-align: -0.125em;
  6388. --bs-spinner-animation-speed: 0.75s;
  6389. --bs-spinner-animation-name: spinner-grow;
  6390. background-color: currentcolor;
  6391. opacity: 0;
  6392. }
  6393. .spinner-grow-sm {
  6394. --bs-spinner-width: 1rem;
  6395. --bs-spinner-height: 1rem;
  6396. }
  6397. @media (prefers-reduced-motion: reduce) {
  6398. .spinner-border,
  6399. .spinner-grow {
  6400. --bs-spinner-animation-speed: 1.5s;
  6401. }
  6402. }
  6403. .offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  6404. --bs-offcanvas-width: 400px;
  6405. --bs-offcanvas-height: 30vh;
  6406. --bs-offcanvas-padding-x: 1rem;
  6407. --bs-offcanvas-padding-y: 1rem;
  6408. --bs-offcanvas-color: ;
  6409. --bs-offcanvas-bg: #fff;
  6410. --bs-offcanvas-border-width: 1px;
  6411. --bs-offcanvas-border-color: var(--bs-gray-300);
  6412. --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  6413. }
  6414. @media (max-width: 575.98px) {
  6415. .offcanvas-sm {
  6416. position: fixed;
  6417. bottom: 0;
  6418. z-index: 1045;
  6419. display: -webkit-box;
  6420. display: -ms-flexbox;
  6421. display: flex;
  6422. -webkit-box-orient: vertical;
  6423. -webkit-box-direction: normal;
  6424. -ms-flex-direction: column;
  6425. flex-direction: column;
  6426. max-width: 100%;
  6427. color: var(--bs-offcanvas-color);
  6428. visibility: hidden;
  6429. background-color: var(--bs-offcanvas-bg);
  6430. background-clip: padding-box;
  6431. outline: 0;
  6432. -webkit-transition: -webkit-transform 0.3s ease-in-out;
  6433. transition: -webkit-transform 0.3s ease-in-out;
  6434. transition: transform 0.3s ease-in-out;
  6435. transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  6436. }
  6437. }
  6438. @media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  6439. .offcanvas-sm {
  6440. -webkit-transition: none;
  6441. transition: none;
  6442. }
  6443. }
  6444. @media (max-width: 575.98px) {
  6445. .offcanvas-sm.offcanvas-start {
  6446. top: 0;
  6447. left: 0;
  6448. width: var(--bs-offcanvas-width);
  6449. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6450. -webkit-transform: translateX(-100%);
  6451. transform: translateX(-100%);
  6452. }
  6453. }
  6454. @media (max-width: 575.98px) {
  6455. .offcanvas-sm.offcanvas-end {
  6456. top: 0;
  6457. right: 0;
  6458. width: var(--bs-offcanvas-width);
  6459. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6460. -webkit-transform: translateX(100%);
  6461. transform: translateX(100%);
  6462. }
  6463. }
  6464. @media (max-width: 575.98px) {
  6465. .offcanvas-sm.offcanvas-top {
  6466. top: 0;
  6467. right: 0;
  6468. left: 0;
  6469. height: var(--bs-offcanvas-height);
  6470. max-height: 100%;
  6471. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6472. -webkit-transform: translateY(-100%);
  6473. transform: translateY(-100%);
  6474. }
  6475. }
  6476. @media (max-width: 575.98px) {
  6477. .offcanvas-sm.offcanvas-bottom {
  6478. right: 0;
  6479. left: 0;
  6480. height: var(--bs-offcanvas-height);
  6481. max-height: 100%;
  6482. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6483. -webkit-transform: translateY(100%);
  6484. transform: translateY(100%);
  6485. }
  6486. }
  6487. @media (max-width: 575.98px) {
  6488. .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
  6489. -webkit-transform: none;
  6490. transform: none;
  6491. }
  6492. }
  6493. @media (max-width: 575.98px) {
  6494. .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
  6495. visibility: visible;
  6496. }
  6497. }
  6498. @media (min-width: 576px) {
  6499. .offcanvas-sm {
  6500. --bs-offcanvas-height: auto;
  6501. --bs-offcanvas-border-width: 0;
  6502. background-color: transparent !important;
  6503. }
  6504. .offcanvas-sm .offcanvas-header {
  6505. display: none;
  6506. }
  6507. .offcanvas-sm .offcanvas-body {
  6508. display: -webkit-box;
  6509. display: -ms-flexbox;
  6510. display: flex;
  6511. -webkit-box-flex: 0;
  6512. -ms-flex-positive: 0;
  6513. flex-grow: 0;
  6514. padding: 0;
  6515. overflow-y: visible;
  6516. background-color: transparent !important;
  6517. }
  6518. }
  6519. @media (max-width: 767.98px) {
  6520. .offcanvas-md {
  6521. position: fixed;
  6522. bottom: 0;
  6523. z-index: 1045;
  6524. display: -webkit-box;
  6525. display: -ms-flexbox;
  6526. display: flex;
  6527. -webkit-box-orient: vertical;
  6528. -webkit-box-direction: normal;
  6529. -ms-flex-direction: column;
  6530. flex-direction: column;
  6531. max-width: 100%;
  6532. color: var(--bs-offcanvas-color);
  6533. visibility: hidden;
  6534. background-color: var(--bs-offcanvas-bg);
  6535. background-clip: padding-box;
  6536. outline: 0;
  6537. -webkit-transition: -webkit-transform 0.3s ease-in-out;
  6538. transition: -webkit-transform 0.3s ease-in-out;
  6539. transition: transform 0.3s ease-in-out;
  6540. transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  6541. }
  6542. }
  6543. @media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  6544. .offcanvas-md {
  6545. -webkit-transition: none;
  6546. transition: none;
  6547. }
  6548. }
  6549. @media (max-width: 767.98px) {
  6550. .offcanvas-md.offcanvas-start {
  6551. top: 0;
  6552. left: 0;
  6553. width: var(--bs-offcanvas-width);
  6554. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6555. -webkit-transform: translateX(-100%);
  6556. transform: translateX(-100%);
  6557. }
  6558. }
  6559. @media (max-width: 767.98px) {
  6560. .offcanvas-md.offcanvas-end {
  6561. top: 0;
  6562. right: 0;
  6563. width: var(--bs-offcanvas-width);
  6564. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6565. -webkit-transform: translateX(100%);
  6566. transform: translateX(100%);
  6567. }
  6568. }
  6569. @media (max-width: 767.98px) {
  6570. .offcanvas-md.offcanvas-top {
  6571. top: 0;
  6572. right: 0;
  6573. left: 0;
  6574. height: var(--bs-offcanvas-height);
  6575. max-height: 100%;
  6576. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6577. -webkit-transform: translateY(-100%);
  6578. transform: translateY(-100%);
  6579. }
  6580. }
  6581. @media (max-width: 767.98px) {
  6582. .offcanvas-md.offcanvas-bottom {
  6583. right: 0;
  6584. left: 0;
  6585. height: var(--bs-offcanvas-height);
  6586. max-height: 100%;
  6587. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6588. -webkit-transform: translateY(100%);
  6589. transform: translateY(100%);
  6590. }
  6591. }
  6592. @media (max-width: 767.98px) {
  6593. .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
  6594. -webkit-transform: none;
  6595. transform: none;
  6596. }
  6597. }
  6598. @media (max-width: 767.98px) {
  6599. .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
  6600. visibility: visible;
  6601. }
  6602. }
  6603. @media (min-width: 768px) {
  6604. .offcanvas-md {
  6605. --bs-offcanvas-height: auto;
  6606. --bs-offcanvas-border-width: 0;
  6607. background-color: transparent !important;
  6608. }
  6609. .offcanvas-md .offcanvas-header {
  6610. display: none;
  6611. }
  6612. .offcanvas-md .offcanvas-body {
  6613. display: -webkit-box;
  6614. display: -ms-flexbox;
  6615. display: flex;
  6616. -webkit-box-flex: 0;
  6617. -ms-flex-positive: 0;
  6618. flex-grow: 0;
  6619. padding: 0;
  6620. overflow-y: visible;
  6621. background-color: transparent !important;
  6622. }
  6623. }
  6624. @media (max-width: 991.98px) {
  6625. .offcanvas-lg {
  6626. position: fixed;
  6627. bottom: 0;
  6628. z-index: 1045;
  6629. display: -webkit-box;
  6630. display: -ms-flexbox;
  6631. display: flex;
  6632. -webkit-box-orient: vertical;
  6633. -webkit-box-direction: normal;
  6634. -ms-flex-direction: column;
  6635. flex-direction: column;
  6636. max-width: 100%;
  6637. color: var(--bs-offcanvas-color);
  6638. visibility: hidden;
  6639. background-color: var(--bs-offcanvas-bg);
  6640. background-clip: padding-box;
  6641. outline: 0;
  6642. -webkit-transition: -webkit-transform 0.3s ease-in-out;
  6643. transition: -webkit-transform 0.3s ease-in-out;
  6644. transition: transform 0.3s ease-in-out;
  6645. transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  6646. }
  6647. }
  6648. @media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  6649. .offcanvas-lg {
  6650. -webkit-transition: none;
  6651. transition: none;
  6652. }
  6653. }
  6654. @media (max-width: 991.98px) {
  6655. .offcanvas-lg.offcanvas-start {
  6656. top: 0;
  6657. left: 0;
  6658. width: var(--bs-offcanvas-width);
  6659. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6660. -webkit-transform: translateX(-100%);
  6661. transform: translateX(-100%);
  6662. }
  6663. }
  6664. @media (max-width: 991.98px) {
  6665. .offcanvas-lg.offcanvas-end {
  6666. top: 0;
  6667. right: 0;
  6668. width: var(--bs-offcanvas-width);
  6669. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6670. -webkit-transform: translateX(100%);
  6671. transform: translateX(100%);
  6672. }
  6673. }
  6674. @media (max-width: 991.98px) {
  6675. .offcanvas-lg.offcanvas-top {
  6676. top: 0;
  6677. right: 0;
  6678. left: 0;
  6679. height: var(--bs-offcanvas-height);
  6680. max-height: 100%;
  6681. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6682. -webkit-transform: translateY(-100%);
  6683. transform: translateY(-100%);
  6684. }
  6685. }
  6686. @media (max-width: 991.98px) {
  6687. .offcanvas-lg.offcanvas-bottom {
  6688. right: 0;
  6689. left: 0;
  6690. height: var(--bs-offcanvas-height);
  6691. max-height: 100%;
  6692. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6693. -webkit-transform: translateY(100%);
  6694. transform: translateY(100%);
  6695. }
  6696. }
  6697. @media (max-width: 991.98px) {
  6698. .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
  6699. -webkit-transform: none;
  6700. transform: none;
  6701. }
  6702. }
  6703. @media (max-width: 991.98px) {
  6704. .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
  6705. visibility: visible;
  6706. }
  6707. }
  6708. @media (min-width: 992px) {
  6709. .offcanvas-lg {
  6710. --bs-offcanvas-height: auto;
  6711. --bs-offcanvas-border-width: 0;
  6712. background-color: transparent !important;
  6713. }
  6714. .offcanvas-lg .offcanvas-header {
  6715. display: none;
  6716. }
  6717. .offcanvas-lg .offcanvas-body {
  6718. display: -webkit-box;
  6719. display: -ms-flexbox;
  6720. display: flex;
  6721. -webkit-box-flex: 0;
  6722. -ms-flex-positive: 0;
  6723. flex-grow: 0;
  6724. padding: 0;
  6725. overflow-y: visible;
  6726. background-color: transparent !important;
  6727. }
  6728. }
  6729. @media (max-width: 1199.98px) {
  6730. .offcanvas-xl {
  6731. position: fixed;
  6732. bottom: 0;
  6733. z-index: 1045;
  6734. display: -webkit-box;
  6735. display: -ms-flexbox;
  6736. display: flex;
  6737. -webkit-box-orient: vertical;
  6738. -webkit-box-direction: normal;
  6739. -ms-flex-direction: column;
  6740. flex-direction: column;
  6741. max-width: 100%;
  6742. color: var(--bs-offcanvas-color);
  6743. visibility: hidden;
  6744. background-color: var(--bs-offcanvas-bg);
  6745. background-clip: padding-box;
  6746. outline: 0;
  6747. -webkit-transition: -webkit-transform 0.3s ease-in-out;
  6748. transition: -webkit-transform 0.3s ease-in-out;
  6749. transition: transform 0.3s ease-in-out;
  6750. transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  6751. }
  6752. }
  6753. @media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  6754. .offcanvas-xl {
  6755. -webkit-transition: none;
  6756. transition: none;
  6757. }
  6758. }
  6759. @media (max-width: 1199.98px) {
  6760. .offcanvas-xl.offcanvas-start {
  6761. top: 0;
  6762. left: 0;
  6763. width: var(--bs-offcanvas-width);
  6764. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6765. -webkit-transform: translateX(-100%);
  6766. transform: translateX(-100%);
  6767. }
  6768. }
  6769. @media (max-width: 1199.98px) {
  6770. .offcanvas-xl.offcanvas-end {
  6771. top: 0;
  6772. right: 0;
  6773. width: var(--bs-offcanvas-width);
  6774. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6775. -webkit-transform: translateX(100%);
  6776. transform: translateX(100%);
  6777. }
  6778. }
  6779. @media (max-width: 1199.98px) {
  6780. .offcanvas-xl.offcanvas-top {
  6781. top: 0;
  6782. right: 0;
  6783. left: 0;
  6784. height: var(--bs-offcanvas-height);
  6785. max-height: 100%;
  6786. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6787. -webkit-transform: translateY(-100%);
  6788. transform: translateY(-100%);
  6789. }
  6790. }
  6791. @media (max-width: 1199.98px) {
  6792. .offcanvas-xl.offcanvas-bottom {
  6793. right: 0;
  6794. left: 0;
  6795. height: var(--bs-offcanvas-height);
  6796. max-height: 100%;
  6797. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6798. -webkit-transform: translateY(100%);
  6799. transform: translateY(100%);
  6800. }
  6801. }
  6802. @media (max-width: 1199.98px) {
  6803. .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
  6804. -webkit-transform: none;
  6805. transform: none;
  6806. }
  6807. }
  6808. @media (max-width: 1199.98px) {
  6809. .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
  6810. visibility: visible;
  6811. }
  6812. }
  6813. @media (min-width: 1200px) {
  6814. .offcanvas-xl {
  6815. --bs-offcanvas-height: auto;
  6816. --bs-offcanvas-border-width: 0;
  6817. background-color: transparent !important;
  6818. }
  6819. .offcanvas-xl .offcanvas-header {
  6820. display: none;
  6821. }
  6822. .offcanvas-xl .offcanvas-body {
  6823. display: -webkit-box;
  6824. display: -ms-flexbox;
  6825. display: flex;
  6826. -webkit-box-flex: 0;
  6827. -ms-flex-positive: 0;
  6828. flex-grow: 0;
  6829. padding: 0;
  6830. overflow-y: visible;
  6831. background-color: transparent !important;
  6832. }
  6833. }
  6834. @media (max-width: 1399.98px) {
  6835. .offcanvas-xxl {
  6836. position: fixed;
  6837. bottom: 0;
  6838. z-index: 1045;
  6839. display: -webkit-box;
  6840. display: -ms-flexbox;
  6841. display: flex;
  6842. -webkit-box-orient: vertical;
  6843. -webkit-box-direction: normal;
  6844. -ms-flex-direction: column;
  6845. flex-direction: column;
  6846. max-width: 100%;
  6847. color: var(--bs-offcanvas-color);
  6848. visibility: hidden;
  6849. background-color: var(--bs-offcanvas-bg);
  6850. background-clip: padding-box;
  6851. outline: 0;
  6852. -webkit-transition: -webkit-transform 0.3s ease-in-out;
  6853. transition: -webkit-transform 0.3s ease-in-out;
  6854. transition: transform 0.3s ease-in-out;
  6855. transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  6856. }
  6857. }
  6858. @media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  6859. .offcanvas-xxl {
  6860. -webkit-transition: none;
  6861. transition: none;
  6862. }
  6863. }
  6864. @media (max-width: 1399.98px) {
  6865. .offcanvas-xxl.offcanvas-start {
  6866. top: 0;
  6867. left: 0;
  6868. width: var(--bs-offcanvas-width);
  6869. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6870. -webkit-transform: translateX(-100%);
  6871. transform: translateX(-100%);
  6872. }
  6873. }
  6874. @media (max-width: 1399.98px) {
  6875. .offcanvas-xxl.offcanvas-end {
  6876. top: 0;
  6877. right: 0;
  6878. width: var(--bs-offcanvas-width);
  6879. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6880. -webkit-transform: translateX(100%);
  6881. transform: translateX(100%);
  6882. }
  6883. }
  6884. @media (max-width: 1399.98px) {
  6885. .offcanvas-xxl.offcanvas-top {
  6886. top: 0;
  6887. right: 0;
  6888. left: 0;
  6889. height: var(--bs-offcanvas-height);
  6890. max-height: 100%;
  6891. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6892. -webkit-transform: translateY(-100%);
  6893. transform: translateY(-100%);
  6894. }
  6895. }
  6896. @media (max-width: 1399.98px) {
  6897. .offcanvas-xxl.offcanvas-bottom {
  6898. right: 0;
  6899. left: 0;
  6900. height: var(--bs-offcanvas-height);
  6901. max-height: 100%;
  6902. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6903. -webkit-transform: translateY(100%);
  6904. transform: translateY(100%);
  6905. }
  6906. }
  6907. @media (max-width: 1399.98px) {
  6908. .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
  6909. -webkit-transform: none;
  6910. transform: none;
  6911. }
  6912. }
  6913. @media (max-width: 1399.98px) {
  6914. .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
  6915. visibility: visible;
  6916. }
  6917. }
  6918. @media (min-width: 1400px) {
  6919. .offcanvas-xxl {
  6920. --bs-offcanvas-height: auto;
  6921. --bs-offcanvas-border-width: 0;
  6922. background-color: transparent !important;
  6923. }
  6924. .offcanvas-xxl .offcanvas-header {
  6925. display: none;
  6926. }
  6927. .offcanvas-xxl .offcanvas-body {
  6928. display: -webkit-box;
  6929. display: -ms-flexbox;
  6930. display: flex;
  6931. -webkit-box-flex: 0;
  6932. -ms-flex-positive: 0;
  6933. flex-grow: 0;
  6934. padding: 0;
  6935. overflow-y: visible;
  6936. background-color: transparent !important;
  6937. }
  6938. }
  6939. .offcanvas {
  6940. position: fixed;
  6941. bottom: 0;
  6942. z-index: 1045;
  6943. display: -webkit-box;
  6944. display: -ms-flexbox;
  6945. display: flex;
  6946. -webkit-box-orient: vertical;
  6947. -webkit-box-direction: normal;
  6948. -ms-flex-direction: column;
  6949. flex-direction: column;
  6950. max-width: 100%;
  6951. color: var(--bs-offcanvas-color);
  6952. visibility: hidden;
  6953. background-color: var(--bs-offcanvas-bg);
  6954. background-clip: padding-box;
  6955. outline: 0;
  6956. -webkit-transition: -webkit-transform 0.3s ease-in-out;
  6957. transition: -webkit-transform 0.3s ease-in-out;
  6958. transition: transform 0.3s ease-in-out;
  6959. transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  6960. }
  6961. @media (prefers-reduced-motion: reduce) {
  6962. .offcanvas {
  6963. -webkit-transition: none;
  6964. transition: none;
  6965. }
  6966. }
  6967. .offcanvas.offcanvas-start {
  6968. top: 0;
  6969. left: 0;
  6970. width: var(--bs-offcanvas-width);
  6971. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6972. -webkit-transform: translateX(-100%);
  6973. transform: translateX(-100%);
  6974. }
  6975. .offcanvas.offcanvas-end {
  6976. top: 0;
  6977. right: 0;
  6978. width: var(--bs-offcanvas-width);
  6979. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6980. -webkit-transform: translateX(100%);
  6981. transform: translateX(100%);
  6982. }
  6983. .offcanvas.offcanvas-top {
  6984. top: 0;
  6985. right: 0;
  6986. left: 0;
  6987. height: var(--bs-offcanvas-height);
  6988. max-height: 100%;
  6989. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6990. -webkit-transform: translateY(-100%);
  6991. transform: translateY(-100%);
  6992. }
  6993. .offcanvas.offcanvas-bottom {
  6994. right: 0;
  6995. left: 0;
  6996. height: var(--bs-offcanvas-height);
  6997. max-height: 100%;
  6998. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6999. -webkit-transform: translateY(100%);
  7000. transform: translateY(100%);
  7001. }
  7002. .offcanvas.showing, .offcanvas.show:not(.hiding) {
  7003. -webkit-transform: none;
  7004. transform: none;
  7005. }
  7006. .offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  7007. visibility: visible;
  7008. }
  7009. .offcanvas-backdrop {
  7010. position: fixed;
  7011. top: 0;
  7012. left: 0;
  7013. z-index: 1040;
  7014. width: 100vw;
  7015. height: 100vh;
  7016. background-color: #000;
  7017. }
  7018. .offcanvas-backdrop.fade {
  7019. opacity: 0;
  7020. }
  7021. .offcanvas-backdrop.show {
  7022. opacity: 0.5;
  7023. }
  7024. .offcanvas-header {
  7025. display: -webkit-box;
  7026. display: -ms-flexbox;
  7027. display: flex;
  7028. -webkit-box-align: center;
  7029. -ms-flex-align: center;
  7030. align-items: center;
  7031. -webkit-box-pack: justify;
  7032. -ms-flex-pack: justify;
  7033. justify-content: space-between;
  7034. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  7035. }
  7036. .offcanvas-header .btn-close {
  7037. padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  7038. margin-top: calc(var(--bs-offcanvas-padding-y) * -0.5);
  7039. margin-right: calc(var(--bs-offcanvas-padding-x) * -0.5);
  7040. margin-bottom: calc(var(--bs-offcanvas-padding-y) * -0.5);
  7041. }
  7042. .offcanvas-title {
  7043. margin-bottom: 0;
  7044. line-height: 1.5;
  7045. }
  7046. .offcanvas-body {
  7047. -webkit-box-flex: 1;
  7048. -ms-flex-positive: 1;
  7049. flex-grow: 1;
  7050. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  7051. overflow-y: auto;
  7052. }
  7053. .placeholder {
  7054. display: inline-block;
  7055. min-height: 1em;
  7056. vertical-align: middle;
  7057. cursor: wait;
  7058. background-color: currentcolor;
  7059. opacity: 0.5;
  7060. }
  7061. .placeholder.btn::before {
  7062. display: inline-block;
  7063. content: "";
  7064. }
  7065. .placeholder-xs {
  7066. min-height: 0.6em;
  7067. }
  7068. .placeholder-sm {
  7069. min-height: 0.8em;
  7070. }
  7071. .placeholder-lg {
  7072. min-height: 1.2em;
  7073. }
  7074. .placeholder-glow .placeholder {
  7075. -webkit-animation: placeholder-glow 2s ease-in-out infinite;
  7076. animation: placeholder-glow 2s ease-in-out infinite;
  7077. }
  7078. @-webkit-keyframes placeholder-glow {
  7079. 50% {
  7080. opacity: 0.2;
  7081. }
  7082. }
  7083. @keyframes placeholder-glow {
  7084. 50% {
  7085. opacity: 0.2;
  7086. }
  7087. }
  7088. .placeholder-wave {
  7089. -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  7090. mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  7091. -webkit-mask-size: 200% 100%;
  7092. mask-size: 200% 100%;
  7093. -webkit-animation: placeholder-wave 2s linear infinite;
  7094. animation: placeholder-wave 2s linear infinite;
  7095. }
  7096. @-webkit-keyframes placeholder-wave {
  7097. 100% {
  7098. -webkit-mask-position: -200% 0%;
  7099. mask-position: -200% 0%;
  7100. }
  7101. }
  7102. @keyframes placeholder-wave {
  7103. 100% {
  7104. -webkit-mask-position: -200% 0%;
  7105. mask-position: -200% 0%;
  7106. }
  7107. }
  7108. .clearfix::after {
  7109. display: block;
  7110. clear: both;
  7111. content: "";
  7112. }
  7113. .text-bg-primary {
  7114. color: #fff !important;
  7115. background-color: RGBA(85, 110, 230, var(--bs-bg-opacity, 1)) !important;
  7116. }
  7117. .text-bg-secondary {
  7118. color: #fff !important;
  7119. background-color: RGBA(116, 120, 141, var(--bs-bg-opacity, 1)) !important;
  7120. }
  7121. .text-bg-success {
  7122. color: #fff !important;
  7123. background-color: RGBA(52, 195, 143, var(--bs-bg-opacity, 1)) !important;
  7124. }
  7125. .text-bg-info {
  7126. color: #fff !important;
  7127. background-color: RGBA(80, 165, 241, var(--bs-bg-opacity, 1)) !important;
  7128. }
  7129. .text-bg-warning {
  7130. color: #fff !important;
  7131. background-color: RGBA(241, 180, 76, var(--bs-bg-opacity, 1)) !important;
  7132. }
  7133. .text-bg-danger {
  7134. color: #fff !important;
  7135. background-color: RGBA(244, 106, 106, var(--bs-bg-opacity, 1)) !important;
  7136. }
  7137. .text-bg-pink {
  7138. color: #fff !important;
  7139. background-color: RGBA(232, 62, 140, var(--bs-bg-opacity, 1)) !important;
  7140. }
  7141. .text-bg-light {
  7142. color: #000 !important;
  7143. background-color: RGBA(239, 242, 247, var(--bs-bg-opacity, 1)) !important;
  7144. }
  7145. .text-bg-dark {
  7146. color: #fff !important;
  7147. background-color: RGBA(52, 58, 64, var(--bs-bg-opacity, 1)) !important;
  7148. }
  7149. .link-primary {
  7150. color: #556ee6 !important;
  7151. }
  7152. .link-primary:hover, .link-primary:focus {
  7153. color: #4458b8 !important;
  7154. }
  7155. .link-secondary {
  7156. color: #74788d !important;
  7157. }
  7158. .link-secondary:hover, .link-secondary:focus {
  7159. color: #5d6071 !important;
  7160. }
  7161. .link-success {
  7162. color: #34c38f !important;
  7163. }
  7164. .link-success:hover, .link-success:focus {
  7165. color: #2a9c72 !important;
  7166. }
  7167. .link-info {
  7168. color: #50a5f1 !important;
  7169. }
  7170. .link-info:hover, .link-info:focus {
  7171. color: #4084c1 !important;
  7172. }
  7173. .link-warning {
  7174. color: #f1b44c !important;
  7175. }
  7176. .link-warning:hover, .link-warning:focus {
  7177. color: #c1903d !important;
  7178. }
  7179. .link-danger {
  7180. color: #f46a6a !important;
  7181. }
  7182. .link-danger:hover, .link-danger:focus {
  7183. color: #c35555 !important;
  7184. }
  7185. .link-pink {
  7186. color: #e83e8c !important;
  7187. }
  7188. .link-pink:hover, .link-pink:focus {
  7189. color: #ba3270 !important;
  7190. }
  7191. .link-light {
  7192. color: #eff2f7 !important;
  7193. }
  7194. .link-light:hover, .link-light:focus {
  7195. color: #f2f5f9 !important;
  7196. }
  7197. .link-dark {
  7198. color: #343a40 !important;
  7199. }
  7200. .link-dark:hover, .link-dark:focus {
  7201. color: #2a2e33 !important;
  7202. }
  7203. .ratio {
  7204. position: relative;
  7205. width: 100%;
  7206. }
  7207. .ratio::before {
  7208. display: block;
  7209. padding-top: var(--bs-aspect-ratio);
  7210. content: "";
  7211. }
  7212. .ratio > * {
  7213. position: absolute;
  7214. top: 0;
  7215. left: 0;
  7216. width: 100%;
  7217. height: 100%;
  7218. }
  7219. .ratio-1x1 {
  7220. --bs-aspect-ratio: 100%;
  7221. }
  7222. .ratio-4x3 {
  7223. --bs-aspect-ratio: 75%;
  7224. }
  7225. .ratio-16x9 {
  7226. --bs-aspect-ratio: 56.25%;
  7227. }
  7228. .ratio-21x9 {
  7229. --bs-aspect-ratio: 42.8571428571%;
  7230. }
  7231. .fixed-top {
  7232. position: fixed;
  7233. top: 0;
  7234. right: 0;
  7235. left: 0;
  7236. z-index: 1030;
  7237. }
  7238. .fixed-bottom {
  7239. position: fixed;
  7240. right: 0;
  7241. bottom: 0;
  7242. left: 0;
  7243. z-index: 1030;
  7244. }
  7245. .sticky-top {
  7246. position: sticky;
  7247. top: 0;
  7248. z-index: 1020;
  7249. }
  7250. .sticky-bottom {
  7251. position: sticky;
  7252. bottom: 0;
  7253. z-index: 1020;
  7254. }
  7255. @media (min-width: 576px) {
  7256. .sticky-sm-top {
  7257. position: sticky;
  7258. top: 0;
  7259. z-index: 1020;
  7260. }
  7261. .sticky-sm-bottom {
  7262. position: sticky;
  7263. bottom: 0;
  7264. z-index: 1020;
  7265. }
  7266. }
  7267. @media (min-width: 768px) {
  7268. .sticky-md-top {
  7269. position: sticky;
  7270. top: 0;
  7271. z-index: 1020;
  7272. }
  7273. .sticky-md-bottom {
  7274. position: sticky;
  7275. bottom: 0;
  7276. z-index: 1020;
  7277. }
  7278. }
  7279. @media (min-width: 992px) {
  7280. .sticky-lg-top {
  7281. position: sticky;
  7282. top: 0;
  7283. z-index: 1020;
  7284. }
  7285. .sticky-lg-bottom {
  7286. position: sticky;
  7287. bottom: 0;
  7288. z-index: 1020;
  7289. }
  7290. }
  7291. @media (min-width: 1200px) {
  7292. .sticky-xl-top {
  7293. position: sticky;
  7294. top: 0;
  7295. z-index: 1020;
  7296. }
  7297. .sticky-xl-bottom {
  7298. position: sticky;
  7299. bottom: 0;
  7300. z-index: 1020;
  7301. }
  7302. }
  7303. @media (min-width: 1400px) {
  7304. .sticky-xxl-top {
  7305. position: sticky;
  7306. top: 0;
  7307. z-index: 1020;
  7308. }
  7309. .sticky-xxl-bottom {
  7310. position: sticky;
  7311. bottom: 0;
  7312. z-index: 1020;
  7313. }
  7314. }
  7315. .hstack {
  7316. display: -webkit-box;
  7317. display: -ms-flexbox;
  7318. display: flex;
  7319. -webkit-box-orient: horizontal;
  7320. -webkit-box-direction: normal;
  7321. -ms-flex-direction: row;
  7322. flex-direction: row;
  7323. -webkit-box-align: center;
  7324. -ms-flex-align: center;
  7325. align-items: center;
  7326. -ms-flex-item-align: stretch;
  7327. align-self: stretch;
  7328. }
  7329. .vstack {
  7330. display: -webkit-box;
  7331. display: -ms-flexbox;
  7332. display: flex;
  7333. -webkit-box-flex: 1;
  7334. -ms-flex: 1 1 auto;
  7335. flex: 1 1 auto;
  7336. -webkit-box-orient: vertical;
  7337. -webkit-box-direction: normal;
  7338. -ms-flex-direction: column;
  7339. flex-direction: column;
  7340. -ms-flex-item-align: stretch;
  7341. align-self: stretch;
  7342. }
  7343. .visually-hidden,
  7344. .visually-hidden-focusable:not(:focus):not(:focus-within) {
  7345. position: absolute !important;
  7346. width: 1px !important;
  7347. height: 1px !important;
  7348. padding: 0 !important;
  7349. margin: -1px !important;
  7350. overflow: hidden !important;
  7351. clip: rect(0, 0, 0, 0) !important;
  7352. white-space: nowrap !important;
  7353. border: 0 !important;
  7354. }
  7355. .stretched-link::after {
  7356. position: absolute;
  7357. top: 0;
  7358. right: 0;
  7359. bottom: 0;
  7360. left: 0;
  7361. z-index: 1;
  7362. content: "";
  7363. }
  7364. .text-truncate {
  7365. overflow: hidden;
  7366. text-overflow: ellipsis;
  7367. white-space: nowrap;
  7368. }
  7369. .vr {
  7370. display: inline-block;
  7371. -ms-flex-item-align: stretch;
  7372. align-self: stretch;
  7373. width: 1px;
  7374. min-height: 1em;
  7375. background-color: currentcolor;
  7376. opacity: 0.8;
  7377. }
  7378. .align-baseline {
  7379. vertical-align: baseline !important;
  7380. }
  7381. .align-top {
  7382. vertical-align: top !important;
  7383. }
  7384. .align-middle {
  7385. vertical-align: middle !important;
  7386. }
  7387. .align-bottom {
  7388. vertical-align: bottom !important;
  7389. }
  7390. .align-text-bottom {
  7391. vertical-align: text-bottom !important;
  7392. }
  7393. .align-text-top {
  7394. vertical-align: text-top !important;
  7395. }
  7396. .float-start {
  7397. float: left !important;
  7398. }
  7399. .float-end {
  7400. float: right !important;
  7401. }
  7402. .float-none {
  7403. float: none !important;
  7404. }
  7405. .opacity-0 {
  7406. opacity: 0 !important;
  7407. }
  7408. .opacity-25 {
  7409. opacity: 0.25 !important;
  7410. }
  7411. .opacity-50 {
  7412. opacity: 0.5 !important;
  7413. }
  7414. .opacity-75 {
  7415. opacity: 0.75 !important;
  7416. }
  7417. .opacity-100 {
  7418. opacity: 1 !important;
  7419. }
  7420. .overflow-auto {
  7421. overflow: auto !important;
  7422. }
  7423. .overflow-hidden {
  7424. overflow: hidden !important;
  7425. }
  7426. .overflow-visible {
  7427. overflow: visible !important;
  7428. }
  7429. .overflow-scroll {
  7430. overflow: scroll !important;
  7431. }
  7432. .d-inline {
  7433. display: inline !important;
  7434. }
  7435. .d-inline-block {
  7436. display: inline-block !important;
  7437. }
  7438. .d-block {
  7439. display: block !important;
  7440. }
  7441. .d-grid {
  7442. display: grid !important;
  7443. }
  7444. .d-table {
  7445. display: table !important;
  7446. }
  7447. .d-table-row {
  7448. display: table-row !important;
  7449. }
  7450. .d-table-cell {
  7451. display: table-cell !important;
  7452. }
  7453. .d-flex {
  7454. display: -webkit-box !important;
  7455. display: -ms-flexbox !important;
  7456. display: flex !important;
  7457. }
  7458. .d-inline-flex {
  7459. display: -webkit-inline-box !important;
  7460. display: -ms-inline-flexbox !important;
  7461. display: inline-flex !important;
  7462. }
  7463. .d-none {
  7464. display: none !important;
  7465. }
  7466. .shadow {
  7467. -webkit-box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03) !important;
  7468. box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03) !important;
  7469. }
  7470. .shadow-sm {
  7471. -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  7472. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  7473. }
  7474. .shadow-lg {
  7475. -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  7476. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  7477. }
  7478. .shadow-none {
  7479. -webkit-box-shadow: none !important;
  7480. box-shadow: none !important;
  7481. }
  7482. .position-static {
  7483. position: static !important;
  7484. }
  7485. .position-relative {
  7486. position: relative !important;
  7487. }
  7488. .position-absolute {
  7489. position: absolute !important;
  7490. }
  7491. .position-fixed {
  7492. position: fixed !important;
  7493. }
  7494. .position-sticky {
  7495. position: sticky !important;
  7496. }
  7497. .top-0 {
  7498. top: 0 !important;
  7499. }
  7500. .top-50 {
  7501. top: 50% !important;
  7502. }
  7503. .top-100 {
  7504. top: 100% !important;
  7505. }
  7506. .bottom-0 {
  7507. bottom: 0 !important;
  7508. }
  7509. .bottom-50 {
  7510. bottom: 50% !important;
  7511. }
  7512. .bottom-100 {
  7513. bottom: 100% !important;
  7514. }
  7515. .start-0 {
  7516. left: 0 !important;
  7517. }
  7518. .start-50 {
  7519. left: 50% !important;
  7520. }
  7521. .start-100 {
  7522. left: 100% !important;
  7523. }
  7524. .end-0 {
  7525. right: 0 !important;
  7526. }
  7527. .end-50 {
  7528. right: 50% !important;
  7529. }
  7530. .end-100 {
  7531. right: 100% !important;
  7532. }
  7533. .translate-middle {
  7534. -webkit-transform: translate(-50%, -50%) !important;
  7535. transform: translate(-50%, -50%) !important;
  7536. }
  7537. .translate-middle-x {
  7538. -webkit-transform: translateX(-50%) !important;
  7539. transform: translateX(-50%) !important;
  7540. }
  7541. .translate-middle-y {
  7542. -webkit-transform: translateY(-50%) !important;
  7543. transform: translateY(-50%) !important;
  7544. }
  7545. .border {
  7546. border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  7547. }
  7548. .border-0 {
  7549. border: 0 !important;
  7550. }
  7551. .border-top {
  7552. border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  7553. }
  7554. .border-top-0 {
  7555. border-top: 0 !important;
  7556. }
  7557. .border-end {
  7558. border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  7559. }
  7560. .border-end-0 {
  7561. border-right: 0 !important;
  7562. }
  7563. .border-bottom {
  7564. border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  7565. }
  7566. .border-bottom-0 {
  7567. border-bottom: 0 !important;
  7568. }
  7569. .border-start {
  7570. border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  7571. }
  7572. .border-start-0 {
  7573. border-left: 0 !important;
  7574. }
  7575. .border-primary {
  7576. --bs-border-opacity: 1;
  7577. border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
  7578. }
  7579. .border-secondary {
  7580. --bs-border-opacity: 1;
  7581. border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
  7582. }
  7583. .border-success {
  7584. --bs-border-opacity: 1;
  7585. border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
  7586. }
  7587. .border-info {
  7588. --bs-border-opacity: 1;
  7589. border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
  7590. }
  7591. .border-warning {
  7592. --bs-border-opacity: 1;
  7593. border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
  7594. }
  7595. .border-danger {
  7596. --bs-border-opacity: 1;
  7597. border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
  7598. }
  7599. .border-pink {
  7600. --bs-border-opacity: 1;
  7601. border-color: rgba(var(--bs-pink-rgb), var(--bs-border-opacity)) !important;
  7602. }
  7603. .border-light {
  7604. --bs-border-opacity: 1;
  7605. border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
  7606. }
  7607. .border-dark {
  7608. --bs-border-opacity: 1;
  7609. border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
  7610. }
  7611. .border-white {
  7612. --bs-border-opacity: 1;
  7613. border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
  7614. }
  7615. .border-0 {
  7616. --bs-border-width: 0;
  7617. }
  7618. .border-1 {
  7619. --bs-border-width: 1px;
  7620. }
  7621. .border-2 {
  7622. --bs-border-width: 2px;
  7623. }
  7624. .border-3 {
  7625. --bs-border-width: 3px;
  7626. }
  7627. .border-4 {
  7628. --bs-border-width: 4px;
  7629. }
  7630. .border-5 {
  7631. --bs-border-width: 5px;
  7632. }
  7633. .border-opacity-10 {
  7634. --bs-border-opacity: 0.1;
  7635. }
  7636. .border-opacity-25 {
  7637. --bs-border-opacity: 0.25;
  7638. }
  7639. .border-opacity-50 {
  7640. --bs-border-opacity: 0.5;
  7641. }
  7642. .border-opacity-75 {
  7643. --bs-border-opacity: 0.75;
  7644. }
  7645. .border-opacity-100 {
  7646. --bs-border-opacity: 1;
  7647. }
  7648. .w-25 {
  7649. width: 25% !important;
  7650. }
  7651. .w-50 {
  7652. width: 50% !important;
  7653. }
  7654. .w-75 {
  7655. width: 75% !important;
  7656. }
  7657. .w-100 {
  7658. width: 100% !important;
  7659. }
  7660. .w-auto {
  7661. width: auto !important;
  7662. }
  7663. .mw-100 {
  7664. max-width: 100% !important;
  7665. }
  7666. .vw-100 {
  7667. width: 100vw !important;
  7668. }
  7669. .min-vw-100 {
  7670. min-width: 100vw !important;
  7671. }
  7672. .h-25 {
  7673. height: 25% !important;
  7674. }
  7675. .h-50 {
  7676. height: 50% !important;
  7677. }
  7678. .h-75 {
  7679. height: 75% !important;
  7680. }
  7681. .h-100 {
  7682. height: 100% !important;
  7683. }
  7684. .h-auto {
  7685. height: auto !important;
  7686. }
  7687. .mh-100 {
  7688. max-height: 100% !important;
  7689. }
  7690. .vh-100 {
  7691. height: 100vh !important;
  7692. }
  7693. .min-vh-100 {
  7694. min-height: 100vh !important;
  7695. }
  7696. .flex-fill {
  7697. -webkit-box-flex: 1 !important;
  7698. -ms-flex: 1 1 auto !important;
  7699. flex: 1 1 auto !important;
  7700. }
  7701. .flex-row {
  7702. -webkit-box-orient: horizontal !important;
  7703. -webkit-box-direction: normal !important;
  7704. -ms-flex-direction: row !important;
  7705. flex-direction: row !important;
  7706. }
  7707. .flex-column {
  7708. -webkit-box-orient: vertical !important;
  7709. -webkit-box-direction: normal !important;
  7710. -ms-flex-direction: column !important;
  7711. flex-direction: column !important;
  7712. }
  7713. .flex-row-reverse {
  7714. -webkit-box-orient: horizontal !important;
  7715. -webkit-box-direction: reverse !important;
  7716. -ms-flex-direction: row-reverse !important;
  7717. flex-direction: row-reverse !important;
  7718. }
  7719. .flex-column-reverse {
  7720. -webkit-box-orient: vertical !important;
  7721. -webkit-box-direction: reverse !important;
  7722. -ms-flex-direction: column-reverse !important;
  7723. flex-direction: column-reverse !important;
  7724. }
  7725. .flex-grow-0 {
  7726. -webkit-box-flex: 0 !important;
  7727. -ms-flex-positive: 0 !important;
  7728. flex-grow: 0 !important;
  7729. }
  7730. .flex-grow-1 {
  7731. -webkit-box-flex: 1 !important;
  7732. -ms-flex-positive: 1 !important;
  7733. flex-grow: 1 !important;
  7734. }
  7735. .flex-shrink-0 {
  7736. -ms-flex-negative: 0 !important;
  7737. flex-shrink: 0 !important;
  7738. }
  7739. .flex-shrink-1 {
  7740. -ms-flex-negative: 1 !important;
  7741. flex-shrink: 1 !important;
  7742. }
  7743. .flex-wrap {
  7744. -ms-flex-wrap: wrap !important;
  7745. flex-wrap: wrap !important;
  7746. }
  7747. .flex-nowrap {
  7748. -ms-flex-wrap: nowrap !important;
  7749. flex-wrap: nowrap !important;
  7750. }
  7751. .flex-wrap-reverse {
  7752. -ms-flex-wrap: wrap-reverse !important;
  7753. flex-wrap: wrap-reverse !important;
  7754. }
  7755. .justify-content-start {
  7756. -webkit-box-pack: start !important;
  7757. -ms-flex-pack: start !important;
  7758. justify-content: flex-start !important;
  7759. }
  7760. .justify-content-end {
  7761. -webkit-box-pack: end !important;
  7762. -ms-flex-pack: end !important;
  7763. justify-content: flex-end !important;
  7764. }
  7765. .justify-content-center {
  7766. -webkit-box-pack: center !important;
  7767. -ms-flex-pack: center !important;
  7768. justify-content: center !important;
  7769. }
  7770. .justify-content-between {
  7771. -webkit-box-pack: justify !important;
  7772. -ms-flex-pack: justify !important;
  7773. justify-content: space-between !important;
  7774. }
  7775. .justify-content-around {
  7776. -ms-flex-pack: distribute !important;
  7777. justify-content: space-around !important;
  7778. }
  7779. .justify-content-evenly {
  7780. -webkit-box-pack: space-evenly !important;
  7781. -ms-flex-pack: space-evenly !important;
  7782. justify-content: space-evenly !important;
  7783. }
  7784. .align-items-start {
  7785. -webkit-box-align: start !important;
  7786. -ms-flex-align: start !important;
  7787. align-items: flex-start !important;
  7788. }
  7789. .align-items-end {
  7790. -webkit-box-align: end !important;
  7791. -ms-flex-align: end !important;
  7792. align-items: flex-end !important;
  7793. }
  7794. .align-items-center {
  7795. -webkit-box-align: center !important;
  7796. -ms-flex-align: center !important;
  7797. align-items: center !important;
  7798. }
  7799. .align-items-baseline {
  7800. -webkit-box-align: baseline !important;
  7801. -ms-flex-align: baseline !important;
  7802. align-items: baseline !important;
  7803. }
  7804. .align-items-stretch {
  7805. -webkit-box-align: stretch !important;
  7806. -ms-flex-align: stretch !important;
  7807. align-items: stretch !important;
  7808. }
  7809. .align-content-start {
  7810. -ms-flex-line-pack: start !important;
  7811. align-content: flex-start !important;
  7812. }
  7813. .align-content-end {
  7814. -ms-flex-line-pack: end !important;
  7815. align-content: flex-end !important;
  7816. }
  7817. .align-content-center {
  7818. -ms-flex-line-pack: center !important;
  7819. align-content: center !important;
  7820. }
  7821. .align-content-between {
  7822. -ms-flex-line-pack: justify !important;
  7823. align-content: space-between !important;
  7824. }
  7825. .align-content-around {
  7826. -ms-flex-line-pack: distribute !important;
  7827. align-content: space-around !important;
  7828. }
  7829. .align-content-stretch {
  7830. -ms-flex-line-pack: stretch !important;
  7831. align-content: stretch !important;
  7832. }
  7833. .align-self-auto {
  7834. -ms-flex-item-align: auto !important;
  7835. align-self: auto !important;
  7836. }
  7837. .align-self-start {
  7838. -ms-flex-item-align: start !important;
  7839. align-self: flex-start !important;
  7840. }
  7841. .align-self-end {
  7842. -ms-flex-item-align: end !important;
  7843. align-self: flex-end !important;
  7844. }
  7845. .align-self-center {
  7846. -ms-flex-item-align: center !important;
  7847. align-self: center !important;
  7848. }
  7849. .align-self-baseline {
  7850. -ms-flex-item-align: baseline !important;
  7851. align-self: baseline !important;
  7852. }
  7853. .align-self-stretch {
  7854. -ms-flex-item-align: stretch !important;
  7855. align-self: stretch !important;
  7856. }
  7857. .order-first {
  7858. -webkit-box-ordinal-group: 0 !important;
  7859. -ms-flex-order: -1 !important;
  7860. order: -1 !important;
  7861. }
  7862. .order-0 {
  7863. -webkit-box-ordinal-group: 1 !important;
  7864. -ms-flex-order: 0 !important;
  7865. order: 0 !important;
  7866. }
  7867. .order-1 {
  7868. -webkit-box-ordinal-group: 2 !important;
  7869. -ms-flex-order: 1 !important;
  7870. order: 1 !important;
  7871. }
  7872. .order-2 {
  7873. -webkit-box-ordinal-group: 3 !important;
  7874. -ms-flex-order: 2 !important;
  7875. order: 2 !important;
  7876. }
  7877. .order-3 {
  7878. -webkit-box-ordinal-group: 4 !important;
  7879. -ms-flex-order: 3 !important;
  7880. order: 3 !important;
  7881. }
  7882. .order-4 {
  7883. -webkit-box-ordinal-group: 5 !important;
  7884. -ms-flex-order: 4 !important;
  7885. order: 4 !important;
  7886. }
  7887. .order-5 {
  7888. -webkit-box-ordinal-group: 6 !important;
  7889. -ms-flex-order: 5 !important;
  7890. order: 5 !important;
  7891. }
  7892. .order-last {
  7893. -webkit-box-ordinal-group: 7 !important;
  7894. -ms-flex-order: 6 !important;
  7895. order: 6 !important;
  7896. }
  7897. .m-0 {
  7898. margin: 0 !important;
  7899. }
  7900. .m-1 {
  7901. margin: 0.25rem !important;
  7902. }
  7903. .m-2 {
  7904. margin: 0.5rem !important;
  7905. }
  7906. .m-3 {
  7907. margin: 1rem !important;
  7908. }
  7909. .m-4 {
  7910. margin: 1.5rem !important;
  7911. }
  7912. .m-5 {
  7913. margin: 3rem !important;
  7914. }
  7915. .m-auto {
  7916. margin: auto !important;
  7917. }
  7918. .mx-0 {
  7919. margin-right: 0 !important;
  7920. margin-left: 0 !important;
  7921. }
  7922. .mx-1 {
  7923. margin-right: 0.25rem !important;
  7924. margin-left: 0.25rem !important;
  7925. }
  7926. .mx-2 {
  7927. margin-right: 0.5rem !important;
  7928. margin-left: 0.5rem !important;
  7929. }
  7930. .mx-3 {
  7931. margin-right: 1rem !important;
  7932. margin-left: 1rem !important;
  7933. }
  7934. .mx-4 {
  7935. margin-right: 1.5rem !important;
  7936. margin-left: 1.5rem !important;
  7937. }
  7938. .mx-5 {
  7939. margin-right: 3rem !important;
  7940. margin-left: 3rem !important;
  7941. }
  7942. .mx-auto {
  7943. margin-right: auto !important;
  7944. margin-left: auto !important;
  7945. }
  7946. .my-0 {
  7947. margin-top: 0 !important;
  7948. margin-bottom: 0 !important;
  7949. }
  7950. .my-1 {
  7951. margin-top: 0.25rem !important;
  7952. margin-bottom: 0.25rem !important;
  7953. }
  7954. .my-2 {
  7955. margin-top: 0.5rem !important;
  7956. margin-bottom: 0.5rem !important;
  7957. }
  7958. .my-3 {
  7959. margin-top: 1rem !important;
  7960. margin-bottom: 1rem !important;
  7961. }
  7962. .my-4 {
  7963. margin-top: 1.5rem !important;
  7964. margin-bottom: 1.5rem !important;
  7965. }
  7966. .my-5 {
  7967. margin-top: 3rem !important;
  7968. margin-bottom: 3rem !important;
  7969. }
  7970. .my-auto {
  7971. margin-top: auto !important;
  7972. margin-bottom: auto !important;
  7973. }
  7974. .mt-0 {
  7975. margin-top: 0 !important;
  7976. }
  7977. .mt-1 {
  7978. margin-top: 0.25rem !important;
  7979. }
  7980. .mt-2 {
  7981. margin-top: 0.5rem !important;
  7982. }
  7983. .mt-3 {
  7984. margin-top: 1rem !important;
  7985. }
  7986. .mt-4 {
  7987. margin-top: 1.5rem !important;
  7988. }
  7989. .mt-5 {
  7990. margin-top: 3rem !important;
  7991. }
  7992. .mt-auto {
  7993. margin-top: auto !important;
  7994. }
  7995. .me-0 {
  7996. margin-right: 0 !important;
  7997. }
  7998. .me-1 {
  7999. margin-right: 0.25rem !important;
  8000. }
  8001. .me-2 {
  8002. margin-right: 0.5rem !important;
  8003. }
  8004. .me-3 {
  8005. margin-right: 1rem !important;
  8006. }
  8007. .me-4 {
  8008. margin-right: 1.5rem !important;
  8009. }
  8010. .me-5 {
  8011. margin-right: 3rem !important;
  8012. }
  8013. .me-auto {
  8014. margin-right: auto !important;
  8015. }
  8016. .mb-0 {
  8017. margin-bottom: 0 !important;
  8018. }
  8019. .mb-1 {
  8020. margin-bottom: 0.25rem !important;
  8021. }
  8022. .mb-2 {
  8023. margin-bottom: 0.5rem !important;
  8024. }
  8025. .mb-3 {
  8026. margin-bottom: 1rem !important;
  8027. }
  8028. .mb-4 {
  8029. margin-bottom: 1.5rem !important;
  8030. }
  8031. .mb-5 {
  8032. margin-bottom: 3rem !important;
  8033. }
  8034. .mb-auto {
  8035. margin-bottom: auto !important;
  8036. }
  8037. .ms-0 {
  8038. margin-left: 0 !important;
  8039. }
  8040. .ms-1 {
  8041. margin-left: 0.25rem !important;
  8042. }
  8043. .ms-2 {
  8044. margin-left: 0.5rem !important;
  8045. }
  8046. .ms-3 {
  8047. margin-left: 1rem !important;
  8048. }
  8049. .ms-4 {
  8050. margin-left: 1.5rem !important;
  8051. }
  8052. .ms-5 {
  8053. margin-left: 3rem !important;
  8054. }
  8055. .ms-auto {
  8056. margin-left: auto !important;
  8057. }
  8058. .m-n1 {
  8059. margin: -0.25rem !important;
  8060. }
  8061. .m-n2 {
  8062. margin: -0.5rem !important;
  8063. }
  8064. .m-n3 {
  8065. margin: -1rem !important;
  8066. }
  8067. .m-n4 {
  8068. margin: -1.5rem !important;
  8069. }
  8070. .m-n5 {
  8071. margin: -3rem !important;
  8072. }
  8073. .mx-n1 {
  8074. margin-right: -0.25rem !important;
  8075. margin-left: -0.25rem !important;
  8076. }
  8077. .mx-n2 {
  8078. margin-right: -0.5rem !important;
  8079. margin-left: -0.5rem !important;
  8080. }
  8081. .mx-n3 {
  8082. margin-right: -1rem !important;
  8083. margin-left: -1rem !important;
  8084. }
  8085. .mx-n4 {
  8086. margin-right: -1.5rem !important;
  8087. margin-left: -1.5rem !important;
  8088. }
  8089. .mx-n5 {
  8090. margin-right: -3rem !important;
  8091. margin-left: -3rem !important;
  8092. }
  8093. .my-n1 {
  8094. margin-top: -0.25rem !important;
  8095. margin-bottom: -0.25rem !important;
  8096. }
  8097. .my-n2 {
  8098. margin-top: -0.5rem !important;
  8099. margin-bottom: -0.5rem !important;
  8100. }
  8101. .my-n3 {
  8102. margin-top: -1rem !important;
  8103. margin-bottom: -1rem !important;
  8104. }
  8105. .my-n4 {
  8106. margin-top: -1.5rem !important;
  8107. margin-bottom: -1.5rem !important;
  8108. }
  8109. .my-n5 {
  8110. margin-top: -3rem !important;
  8111. margin-bottom: -3rem !important;
  8112. }
  8113. .mt-n1 {
  8114. margin-top: -0.25rem !important;
  8115. }
  8116. .mt-n2 {
  8117. margin-top: -0.5rem !important;
  8118. }
  8119. .mt-n3 {
  8120. margin-top: -1rem !important;
  8121. }
  8122. .mt-n4 {
  8123. margin-top: -1.5rem !important;
  8124. }
  8125. .mt-n5 {
  8126. margin-top: -3rem !important;
  8127. }
  8128. .me-n1 {
  8129. margin-right: -0.25rem !important;
  8130. }
  8131. .me-n2 {
  8132. margin-right: -0.5rem !important;
  8133. }
  8134. .me-n3 {
  8135. margin-right: -1rem !important;
  8136. }
  8137. .me-n4 {
  8138. margin-right: -1.5rem !important;
  8139. }
  8140. .me-n5 {
  8141. margin-right: -3rem !important;
  8142. }
  8143. .mb-n1 {
  8144. margin-bottom: -0.25rem !important;
  8145. }
  8146. .mb-n2 {
  8147. margin-bottom: -0.5rem !important;
  8148. }
  8149. .mb-n3 {
  8150. margin-bottom: -1rem !important;
  8151. }
  8152. .mb-n4 {
  8153. margin-bottom: -1.5rem !important;
  8154. }
  8155. .mb-n5 {
  8156. margin-bottom: -3rem !important;
  8157. }
  8158. .ms-n1 {
  8159. margin-left: -0.25rem !important;
  8160. }
  8161. .ms-n2 {
  8162. margin-left: -0.5rem !important;
  8163. }
  8164. .ms-n3 {
  8165. margin-left: -1rem !important;
  8166. }
  8167. .ms-n4 {
  8168. margin-left: -1.5rem !important;
  8169. }
  8170. .ms-n5 {
  8171. margin-left: -3rem !important;
  8172. }
  8173. .p-0 {
  8174. padding: 0 !important;
  8175. }
  8176. .p-1 {
  8177. padding: 0.25rem !important;
  8178. }
  8179. .p-2 {
  8180. padding: 0.5rem !important;
  8181. }
  8182. .p-3 {
  8183. padding: 1rem !important;
  8184. }
  8185. .p-4 {
  8186. padding: 1.5rem !important;
  8187. }
  8188. .p-5 {
  8189. padding: 3rem !important;
  8190. }
  8191. .px-0 {
  8192. padding-right: 0 !important;
  8193. padding-left: 0 !important;
  8194. }
  8195. .px-1 {
  8196. padding-right: 0.25rem !important;
  8197. padding-left: 0.25rem !important;
  8198. }
  8199. .px-2 {
  8200. padding-right: 0.5rem !important;
  8201. padding-left: 0.5rem !important;
  8202. }
  8203. .px-3 {
  8204. padding-right: 1rem !important;
  8205. padding-left: 1rem !important;
  8206. }
  8207. .px-4 {
  8208. padding-right: 1.5rem !important;
  8209. padding-left: 1.5rem !important;
  8210. }
  8211. .px-5 {
  8212. padding-right: 3rem !important;
  8213. padding-left: 3rem !important;
  8214. }
  8215. .py-0 {
  8216. padding-top: 0 !important;
  8217. padding-bottom: 0 !important;
  8218. }
  8219. .py-1 {
  8220. padding-top: 0.25rem !important;
  8221. padding-bottom: 0.25rem !important;
  8222. }
  8223. .py-2 {
  8224. padding-top: 0.5rem !important;
  8225. padding-bottom: 0.5rem !important;
  8226. }
  8227. .py-3 {
  8228. padding-top: 1rem !important;
  8229. padding-bottom: 1rem !important;
  8230. }
  8231. .py-4 {
  8232. padding-top: 1.5rem !important;
  8233. padding-bottom: 1.5rem !important;
  8234. }
  8235. .py-5 {
  8236. padding-top: 3rem !important;
  8237. padding-bottom: 3rem !important;
  8238. }
  8239. .pt-0 {
  8240. padding-top: 0 !important;
  8241. }
  8242. .pt-1 {
  8243. padding-top: 0.25rem !important;
  8244. }
  8245. .pt-2 {
  8246. padding-top: 0.5rem !important;
  8247. }
  8248. .pt-3 {
  8249. padding-top: 1rem !important;
  8250. }
  8251. .pt-4 {
  8252. padding-top: 1.5rem !important;
  8253. }
  8254. .pt-5 {
  8255. padding-top: 3rem !important;
  8256. }
  8257. .pe-0 {
  8258. padding-right: 0 !important;
  8259. }
  8260. .pe-1 {
  8261. padding-right: 0.25rem !important;
  8262. }
  8263. .pe-2 {
  8264. padding-right: 0.5rem !important;
  8265. }
  8266. .pe-3 {
  8267. padding-right: 1rem !important;
  8268. }
  8269. .pe-4 {
  8270. padding-right: 1.5rem !important;
  8271. }
  8272. .pe-5 {
  8273. padding-right: 3rem !important;
  8274. }
  8275. .pb-0 {
  8276. padding-bottom: 0 !important;
  8277. }
  8278. .pb-1 {
  8279. padding-bottom: 0.25rem !important;
  8280. }
  8281. .pb-2 {
  8282. padding-bottom: 0.5rem !important;
  8283. }
  8284. .pb-3 {
  8285. padding-bottom: 1rem !important;
  8286. }
  8287. .pb-4 {
  8288. padding-bottom: 1.5rem !important;
  8289. }
  8290. .pb-5 {
  8291. padding-bottom: 3rem !important;
  8292. }
  8293. .ps-0 {
  8294. padding-left: 0 !important;
  8295. }
  8296. .ps-1 {
  8297. padding-left: 0.25rem !important;
  8298. }
  8299. .ps-2 {
  8300. padding-left: 0.5rem !important;
  8301. }
  8302. .ps-3 {
  8303. padding-left: 1rem !important;
  8304. }
  8305. .ps-4 {
  8306. padding-left: 1.5rem !important;
  8307. }
  8308. .ps-5 {
  8309. padding-left: 3rem !important;
  8310. }
  8311. .gap-0 {
  8312. gap: 0 !important;
  8313. }
  8314. .gap-1 {
  8315. gap: 0.25rem !important;
  8316. }
  8317. .gap-2 {
  8318. gap: 0.5rem !important;
  8319. }
  8320. .gap-3 {
  8321. gap: 1rem !important;
  8322. }
  8323. .gap-4 {
  8324. gap: 1.5rem !important;
  8325. }
  8326. .gap-5 {
  8327. gap: 3rem !important;
  8328. }
  8329. .font-monospace {
  8330. font-family: var(--bs-font-monospace) !important;
  8331. }
  8332. .fs-1 {
  8333. font-size: calc(1.328125rem + 0.9375vw) !important;
  8334. }
  8335. .fs-2 {
  8336. font-size: calc(1.2875rem + 0.45vw) !important;
  8337. }
  8338. .fs-3 {
  8339. font-size: calc(1.2671875rem + 0.20625vw) !important;
  8340. }
  8341. .fs-4 {
  8342. font-size: 1.21875rem !important;
  8343. }
  8344. .fs-5 {
  8345. font-size: 1.015625rem !important;
  8346. }
  8347. .fs-6 {
  8348. font-size: 0.8125rem !important;
  8349. }
  8350. .fst-italic {
  8351. font-style: italic !important;
  8352. }
  8353. .fst-normal {
  8354. font-style: normal !important;
  8355. }
  8356. .fw-light {
  8357. font-weight: 300 !important;
  8358. }
  8359. .fw-lighter {
  8360. font-weight: lighter !important;
  8361. }
  8362. .fw-normal {
  8363. font-weight: 400 !important;
  8364. }
  8365. .fw-bold {
  8366. font-weight: 600 !important;
  8367. }
  8368. .fw-semibold {
  8369. font-weight: 600 !important;
  8370. }
  8371. .fw-bolder {
  8372. font-weight: bolder !important;
  8373. }
  8374. .lh-1 {
  8375. line-height: 1 !important;
  8376. }
  8377. .lh-sm {
  8378. line-height: 1.25 !important;
  8379. }
  8380. .lh-base {
  8381. line-height: 1.5 !important;
  8382. }
  8383. .lh-lg {
  8384. line-height: 2 !important;
  8385. }
  8386. .text-start {
  8387. text-align: left !important;
  8388. }
  8389. .text-end {
  8390. text-align: right !important;
  8391. }
  8392. .text-center {
  8393. text-align: center !important;
  8394. }
  8395. .text-decoration-none {
  8396. text-decoration: none !important;
  8397. }
  8398. .text-decoration-underline {
  8399. text-decoration: underline !important;
  8400. }
  8401. .text-decoration-line-through {
  8402. text-decoration: line-through !important;
  8403. }
  8404. .text-lowercase {
  8405. text-transform: lowercase !important;
  8406. }
  8407. .text-uppercase {
  8408. text-transform: uppercase !important;
  8409. }
  8410. .text-capitalize {
  8411. text-transform: capitalize !important;
  8412. }
  8413. .text-wrap {
  8414. white-space: normal !important;
  8415. }
  8416. .text-nowrap {
  8417. white-space: nowrap !important;
  8418. }
  8419. /* rtl:begin:remove */
  8420. .text-break {
  8421. word-wrap: break-word !important;
  8422. word-break: break-word !important;
  8423. }
  8424. /* rtl:end:remove */
  8425. .text-primary {
  8426. --bs-text-opacity: 1;
  8427. color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
  8428. }
  8429. .text-secondary {
  8430. --bs-text-opacity: 1;
  8431. color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
  8432. }
  8433. .text-success {
  8434. --bs-text-opacity: 1;
  8435. color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
  8436. }
  8437. .text-info {
  8438. --bs-text-opacity: 1;
  8439. color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
  8440. }
  8441. .text-warning {
  8442. --bs-text-opacity: 1;
  8443. color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
  8444. }
  8445. .text-danger {
  8446. --bs-text-opacity: 1;
  8447. color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
  8448. }
  8449. .text-pink {
  8450. --bs-text-opacity: 1;
  8451. color: rgba(var(--bs-pink-rgb), var(--bs-text-opacity)) !important;
  8452. }
  8453. .text-light {
  8454. --bs-text-opacity: 1;
  8455. color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
  8456. }
  8457. .text-dark {
  8458. --bs-text-opacity: 1;
  8459. color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
  8460. }
  8461. .text-black {
  8462. --bs-text-opacity: 1;
  8463. color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
  8464. }
  8465. .text-white {
  8466. --bs-text-opacity: 1;
  8467. color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
  8468. }
  8469. .text-body {
  8470. --bs-text-opacity: 1;
  8471. color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
  8472. }
  8473. .text-muted {
  8474. --bs-text-opacity: 1;
  8475. color: var(--bs-gray-600) !important;
  8476. }
  8477. .text-black-50 {
  8478. --bs-text-opacity: 1;
  8479. color: rgba(0, 0, 0, 0.5) !important;
  8480. }
  8481. .text-white-50 {
  8482. --bs-text-opacity: 1;
  8483. color: rgba(255, 255, 255, 0.5) !important;
  8484. }
  8485. .text-reset {
  8486. --bs-text-opacity: 1;
  8487. color: inherit !important;
  8488. }
  8489. .text-opacity-25 {
  8490. --bs-text-opacity: 0.25;
  8491. }
  8492. .text-opacity-50 {
  8493. --bs-text-opacity: 0.5;
  8494. }
  8495. .text-opacity-75 {
  8496. --bs-text-opacity: 0.75;
  8497. }
  8498. .text-opacity-100 {
  8499. --bs-text-opacity: 1;
  8500. }
  8501. .bg-primary {
  8502. --bs-bg-opacity: 1;
  8503. background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
  8504. }
  8505. .bg-secondary {
  8506. --bs-bg-opacity: 1;
  8507. background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
  8508. }
  8509. .bg-success {
  8510. --bs-bg-opacity: 1;
  8511. background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
  8512. }
  8513. .bg-info {
  8514. --bs-bg-opacity: 1;
  8515. background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
  8516. }
  8517. .bg-warning {
  8518. --bs-bg-opacity: 1;
  8519. background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  8520. }
  8521. .bg-danger {
  8522. --bs-bg-opacity: 1;
  8523. background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
  8524. }
  8525. .bg-pink {
  8526. --bs-bg-opacity: 1;
  8527. background-color: rgba(var(--bs-pink-rgb), var(--bs-bg-opacity)) !important;
  8528. }
  8529. .bg-light {
  8530. --bs-bg-opacity: 1;
  8531. background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  8532. }
  8533. .bg-dark {
  8534. --bs-bg-opacity: 1;
  8535. background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  8536. }
  8537. .bg-black {
  8538. --bs-bg-opacity: 1;
  8539. background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
  8540. }
  8541. .bg-white {
  8542. --bs-bg-opacity: 1;
  8543. background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  8544. }
  8545. .bg-body {
  8546. --bs-bg-opacity: 1;
  8547. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  8548. }
  8549. .bg-transparent {
  8550. --bs-bg-opacity: 1;
  8551. background-color: transparent !important;
  8552. }
  8553. .bg-opacity-10 {
  8554. --bs-bg-opacity: 0.1;
  8555. }
  8556. .bg-opacity-25 {
  8557. --bs-bg-opacity: 0.25;
  8558. }
  8559. .bg-opacity-50 {
  8560. --bs-bg-opacity: 0.5;
  8561. }
  8562. .bg-opacity-75 {
  8563. --bs-bg-opacity: 0.75;
  8564. }
  8565. .bg-opacity-100 {
  8566. --bs-bg-opacity: 1;
  8567. }
  8568. .bg-gradient {
  8569. background-image: var(--bs-gradient) !important;
  8570. }
  8571. .user-select-all {
  8572. -webkit-user-select: all !important;
  8573. -moz-user-select: all !important;
  8574. user-select: all !important;
  8575. }
  8576. .user-select-auto {
  8577. -webkit-user-select: auto !important;
  8578. -moz-user-select: auto !important;
  8579. -ms-user-select: auto !important;
  8580. user-select: auto !important;
  8581. }
  8582. .user-select-none {
  8583. -webkit-user-select: none !important;
  8584. -moz-user-select: none !important;
  8585. -ms-user-select: none !important;
  8586. user-select: none !important;
  8587. }
  8588. .pe-none {
  8589. pointer-events: none !important;
  8590. }
  8591. .pe-auto {
  8592. pointer-events: auto !important;
  8593. }
  8594. .rounded {
  8595. border-radius: var(--bs-border-radius) !important;
  8596. }
  8597. .rounded-0 {
  8598. border-radius: 0 !important;
  8599. }
  8600. .rounded-1 {
  8601. border-radius: var(--bs-border-radius-sm) !important;
  8602. }
  8603. .rounded-2 {
  8604. border-radius: var(--bs-border-radius) !important;
  8605. }
  8606. .rounded-3 {
  8607. border-radius: var(--bs-border-radius-lg) !important;
  8608. }
  8609. .rounded-4 {
  8610. border-radius: var(--bs-border-radius-xl) !important;
  8611. }
  8612. .rounded-5 {
  8613. border-radius: var(--bs-border-radius-2xl) !important;
  8614. }
  8615. .rounded-circle {
  8616. border-radius: 50% !important;
  8617. }
  8618. .rounded-pill {
  8619. border-radius: var(--bs-border-radius-pill) !important;
  8620. }
  8621. .rounded-top {
  8622. border-top-left-radius: var(--bs-border-radius) !important;
  8623. border-top-right-radius: var(--bs-border-radius) !important;
  8624. }
  8625. .rounded-end {
  8626. border-top-right-radius: var(--bs-border-radius) !important;
  8627. border-bottom-right-radius: var(--bs-border-radius) !important;
  8628. }
  8629. .rounded-bottom {
  8630. border-bottom-right-radius: var(--bs-border-radius) !important;
  8631. border-bottom-left-radius: var(--bs-border-radius) !important;
  8632. }
  8633. .rounded-start {
  8634. border-bottom-left-radius: var(--bs-border-radius) !important;
  8635. border-top-left-radius: var(--bs-border-radius) !important;
  8636. }
  8637. .visible {
  8638. visibility: visible !important;
  8639. }
  8640. .invisible {
  8641. visibility: hidden !important;
  8642. }
  8643. @media (min-width: 576px) {
  8644. .float-sm-start {
  8645. float: left !important;
  8646. }
  8647. .float-sm-end {
  8648. float: right !important;
  8649. }
  8650. .float-sm-none {
  8651. float: none !important;
  8652. }
  8653. .d-sm-inline {
  8654. display: inline !important;
  8655. }
  8656. .d-sm-inline-block {
  8657. display: inline-block !important;
  8658. }
  8659. .d-sm-block {
  8660. display: block !important;
  8661. }
  8662. .d-sm-grid {
  8663. display: grid !important;
  8664. }
  8665. .d-sm-table {
  8666. display: table !important;
  8667. }
  8668. .d-sm-table-row {
  8669. display: table-row !important;
  8670. }
  8671. .d-sm-table-cell {
  8672. display: table-cell !important;
  8673. }
  8674. .d-sm-flex {
  8675. display: -webkit-box !important;
  8676. display: -ms-flexbox !important;
  8677. display: flex !important;
  8678. }
  8679. .d-sm-inline-flex {
  8680. display: -webkit-inline-box !important;
  8681. display: -ms-inline-flexbox !important;
  8682. display: inline-flex !important;
  8683. }
  8684. .d-sm-none {
  8685. display: none !important;
  8686. }
  8687. .flex-sm-fill {
  8688. -webkit-box-flex: 1 !important;
  8689. -ms-flex: 1 1 auto !important;
  8690. flex: 1 1 auto !important;
  8691. }
  8692. .flex-sm-row {
  8693. -webkit-box-orient: horizontal !important;
  8694. -webkit-box-direction: normal !important;
  8695. -ms-flex-direction: row !important;
  8696. flex-direction: row !important;
  8697. }
  8698. .flex-sm-column {
  8699. -webkit-box-orient: vertical !important;
  8700. -webkit-box-direction: normal !important;
  8701. -ms-flex-direction: column !important;
  8702. flex-direction: column !important;
  8703. }
  8704. .flex-sm-row-reverse {
  8705. -webkit-box-orient: horizontal !important;
  8706. -webkit-box-direction: reverse !important;
  8707. -ms-flex-direction: row-reverse !important;
  8708. flex-direction: row-reverse !important;
  8709. }
  8710. .flex-sm-column-reverse {
  8711. -webkit-box-orient: vertical !important;
  8712. -webkit-box-direction: reverse !important;
  8713. -ms-flex-direction: column-reverse !important;
  8714. flex-direction: column-reverse !important;
  8715. }
  8716. .flex-sm-grow-0 {
  8717. -webkit-box-flex: 0 !important;
  8718. -ms-flex-positive: 0 !important;
  8719. flex-grow: 0 !important;
  8720. }
  8721. .flex-sm-grow-1 {
  8722. -webkit-box-flex: 1 !important;
  8723. -ms-flex-positive: 1 !important;
  8724. flex-grow: 1 !important;
  8725. }
  8726. .flex-sm-shrink-0 {
  8727. -ms-flex-negative: 0 !important;
  8728. flex-shrink: 0 !important;
  8729. }
  8730. .flex-sm-shrink-1 {
  8731. -ms-flex-negative: 1 !important;
  8732. flex-shrink: 1 !important;
  8733. }
  8734. .flex-sm-wrap {
  8735. -ms-flex-wrap: wrap !important;
  8736. flex-wrap: wrap !important;
  8737. }
  8738. .flex-sm-nowrap {
  8739. -ms-flex-wrap: nowrap !important;
  8740. flex-wrap: nowrap !important;
  8741. }
  8742. .flex-sm-wrap-reverse {
  8743. -ms-flex-wrap: wrap-reverse !important;
  8744. flex-wrap: wrap-reverse !important;
  8745. }
  8746. .justify-content-sm-start {
  8747. -webkit-box-pack: start !important;
  8748. -ms-flex-pack: start !important;
  8749. justify-content: flex-start !important;
  8750. }
  8751. .justify-content-sm-end {
  8752. -webkit-box-pack: end !important;
  8753. -ms-flex-pack: end !important;
  8754. justify-content: flex-end !important;
  8755. }
  8756. .justify-content-sm-center {
  8757. -webkit-box-pack: center !important;
  8758. -ms-flex-pack: center !important;
  8759. justify-content: center !important;
  8760. }
  8761. .justify-content-sm-between {
  8762. -webkit-box-pack: justify !important;
  8763. -ms-flex-pack: justify !important;
  8764. justify-content: space-between !important;
  8765. }
  8766. .justify-content-sm-around {
  8767. -ms-flex-pack: distribute !important;
  8768. justify-content: space-around !important;
  8769. }
  8770. .justify-content-sm-evenly {
  8771. -webkit-box-pack: space-evenly !important;
  8772. -ms-flex-pack: space-evenly !important;
  8773. justify-content: space-evenly !important;
  8774. }
  8775. .align-items-sm-start {
  8776. -webkit-box-align: start !important;
  8777. -ms-flex-align: start !important;
  8778. align-items: flex-start !important;
  8779. }
  8780. .align-items-sm-end {
  8781. -webkit-box-align: end !important;
  8782. -ms-flex-align: end !important;
  8783. align-items: flex-end !important;
  8784. }
  8785. .align-items-sm-center {
  8786. -webkit-box-align: center !important;
  8787. -ms-flex-align: center !important;
  8788. align-items: center !important;
  8789. }
  8790. .align-items-sm-baseline {
  8791. -webkit-box-align: baseline !important;
  8792. -ms-flex-align: baseline !important;
  8793. align-items: baseline !important;
  8794. }
  8795. .align-items-sm-stretch {
  8796. -webkit-box-align: stretch !important;
  8797. -ms-flex-align: stretch !important;
  8798. align-items: stretch !important;
  8799. }
  8800. .align-content-sm-start {
  8801. -ms-flex-line-pack: start !important;
  8802. align-content: flex-start !important;
  8803. }
  8804. .align-content-sm-end {
  8805. -ms-flex-line-pack: end !important;
  8806. align-content: flex-end !important;
  8807. }
  8808. .align-content-sm-center {
  8809. -ms-flex-line-pack: center !important;
  8810. align-content: center !important;
  8811. }
  8812. .align-content-sm-between {
  8813. -ms-flex-line-pack: justify !important;
  8814. align-content: space-between !important;
  8815. }
  8816. .align-content-sm-around {
  8817. -ms-flex-line-pack: distribute !important;
  8818. align-content: space-around !important;
  8819. }
  8820. .align-content-sm-stretch {
  8821. -ms-flex-line-pack: stretch !important;
  8822. align-content: stretch !important;
  8823. }
  8824. .align-self-sm-auto {
  8825. -ms-flex-item-align: auto !important;
  8826. align-self: auto !important;
  8827. }
  8828. .align-self-sm-start {
  8829. -ms-flex-item-align: start !important;
  8830. align-self: flex-start !important;
  8831. }
  8832. .align-self-sm-end {
  8833. -ms-flex-item-align: end !important;
  8834. align-self: flex-end !important;
  8835. }
  8836. .align-self-sm-center {
  8837. -ms-flex-item-align: center !important;
  8838. align-self: center !important;
  8839. }
  8840. .align-self-sm-baseline {
  8841. -ms-flex-item-align: baseline !important;
  8842. align-self: baseline !important;
  8843. }
  8844. .align-self-sm-stretch {
  8845. -ms-flex-item-align: stretch !important;
  8846. align-self: stretch !important;
  8847. }
  8848. .order-sm-first {
  8849. -webkit-box-ordinal-group: 0 !important;
  8850. -ms-flex-order: -1 !important;
  8851. order: -1 !important;
  8852. }
  8853. .order-sm-0 {
  8854. -webkit-box-ordinal-group: 1 !important;
  8855. -ms-flex-order: 0 !important;
  8856. order: 0 !important;
  8857. }
  8858. .order-sm-1 {
  8859. -webkit-box-ordinal-group: 2 !important;
  8860. -ms-flex-order: 1 !important;
  8861. order: 1 !important;
  8862. }
  8863. .order-sm-2 {
  8864. -webkit-box-ordinal-group: 3 !important;
  8865. -ms-flex-order: 2 !important;
  8866. order: 2 !important;
  8867. }
  8868. .order-sm-3 {
  8869. -webkit-box-ordinal-group: 4 !important;
  8870. -ms-flex-order: 3 !important;
  8871. order: 3 !important;
  8872. }
  8873. .order-sm-4 {
  8874. -webkit-box-ordinal-group: 5 !important;
  8875. -ms-flex-order: 4 !important;
  8876. order: 4 !important;
  8877. }
  8878. .order-sm-5 {
  8879. -webkit-box-ordinal-group: 6 !important;
  8880. -ms-flex-order: 5 !important;
  8881. order: 5 !important;
  8882. }
  8883. .order-sm-last {
  8884. -webkit-box-ordinal-group: 7 !important;
  8885. -ms-flex-order: 6 !important;
  8886. order: 6 !important;
  8887. }
  8888. .m-sm-0 {
  8889. margin: 0 !important;
  8890. }
  8891. .m-sm-1 {
  8892. margin: 0.25rem !important;
  8893. }
  8894. .m-sm-2 {
  8895. margin: 0.5rem !important;
  8896. }
  8897. .m-sm-3 {
  8898. margin: 1rem !important;
  8899. }
  8900. .m-sm-4 {
  8901. margin: 1.5rem !important;
  8902. }
  8903. .m-sm-5 {
  8904. margin: 3rem !important;
  8905. }
  8906. .m-sm-auto {
  8907. margin: auto !important;
  8908. }
  8909. .mx-sm-0 {
  8910. margin-right: 0 !important;
  8911. margin-left: 0 !important;
  8912. }
  8913. .mx-sm-1 {
  8914. margin-right: 0.25rem !important;
  8915. margin-left: 0.25rem !important;
  8916. }
  8917. .mx-sm-2 {
  8918. margin-right: 0.5rem !important;
  8919. margin-left: 0.5rem !important;
  8920. }
  8921. .mx-sm-3 {
  8922. margin-right: 1rem !important;
  8923. margin-left: 1rem !important;
  8924. }
  8925. .mx-sm-4 {
  8926. margin-right: 1.5rem !important;
  8927. margin-left: 1.5rem !important;
  8928. }
  8929. .mx-sm-5 {
  8930. margin-right: 3rem !important;
  8931. margin-left: 3rem !important;
  8932. }
  8933. .mx-sm-auto {
  8934. margin-right: auto !important;
  8935. margin-left: auto !important;
  8936. }
  8937. .my-sm-0 {
  8938. margin-top: 0 !important;
  8939. margin-bottom: 0 !important;
  8940. }
  8941. .my-sm-1 {
  8942. margin-top: 0.25rem !important;
  8943. margin-bottom: 0.25rem !important;
  8944. }
  8945. .my-sm-2 {
  8946. margin-top: 0.5rem !important;
  8947. margin-bottom: 0.5rem !important;
  8948. }
  8949. .my-sm-3 {
  8950. margin-top: 1rem !important;
  8951. margin-bottom: 1rem !important;
  8952. }
  8953. .my-sm-4 {
  8954. margin-top: 1.5rem !important;
  8955. margin-bottom: 1.5rem !important;
  8956. }
  8957. .my-sm-5 {
  8958. margin-top: 3rem !important;
  8959. margin-bottom: 3rem !important;
  8960. }
  8961. .my-sm-auto {
  8962. margin-top: auto !important;
  8963. margin-bottom: auto !important;
  8964. }
  8965. .mt-sm-0 {
  8966. margin-top: 0 !important;
  8967. }
  8968. .mt-sm-1 {
  8969. margin-top: 0.25rem !important;
  8970. }
  8971. .mt-sm-2 {
  8972. margin-top: 0.5rem !important;
  8973. }
  8974. .mt-sm-3 {
  8975. margin-top: 1rem !important;
  8976. }
  8977. .mt-sm-4 {
  8978. margin-top: 1.5rem !important;
  8979. }
  8980. .mt-sm-5 {
  8981. margin-top: 3rem !important;
  8982. }
  8983. .mt-sm-auto {
  8984. margin-top: auto !important;
  8985. }
  8986. .me-sm-0 {
  8987. margin-right: 0 !important;
  8988. }
  8989. .me-sm-1 {
  8990. margin-right: 0.25rem !important;
  8991. }
  8992. .me-sm-2 {
  8993. margin-right: 0.5rem !important;
  8994. }
  8995. .me-sm-3 {
  8996. margin-right: 1rem !important;
  8997. }
  8998. .me-sm-4 {
  8999. margin-right: 1.5rem !important;
  9000. }
  9001. .me-sm-5 {
  9002. margin-right: 3rem !important;
  9003. }
  9004. .me-sm-auto {
  9005. margin-right: auto !important;
  9006. }
  9007. .mb-sm-0 {
  9008. margin-bottom: 0 !important;
  9009. }
  9010. .mb-sm-1 {
  9011. margin-bottom: 0.25rem !important;
  9012. }
  9013. .mb-sm-2 {
  9014. margin-bottom: 0.5rem !important;
  9015. }
  9016. .mb-sm-3 {
  9017. margin-bottom: 1rem !important;
  9018. }
  9019. .mb-sm-4 {
  9020. margin-bottom: 1.5rem !important;
  9021. }
  9022. .mb-sm-5 {
  9023. margin-bottom: 3rem !important;
  9024. }
  9025. .mb-sm-auto {
  9026. margin-bottom: auto !important;
  9027. }
  9028. .ms-sm-0 {
  9029. margin-left: 0 !important;
  9030. }
  9031. .ms-sm-1 {
  9032. margin-left: 0.25rem !important;
  9033. }
  9034. .ms-sm-2 {
  9035. margin-left: 0.5rem !important;
  9036. }
  9037. .ms-sm-3 {
  9038. margin-left: 1rem !important;
  9039. }
  9040. .ms-sm-4 {
  9041. margin-left: 1.5rem !important;
  9042. }
  9043. .ms-sm-5 {
  9044. margin-left: 3rem !important;
  9045. }
  9046. .ms-sm-auto {
  9047. margin-left: auto !important;
  9048. }
  9049. .m-sm-n1 {
  9050. margin: -0.25rem !important;
  9051. }
  9052. .m-sm-n2 {
  9053. margin: -0.5rem !important;
  9054. }
  9055. .m-sm-n3 {
  9056. margin: -1rem !important;
  9057. }
  9058. .m-sm-n4 {
  9059. margin: -1.5rem !important;
  9060. }
  9061. .m-sm-n5 {
  9062. margin: -3rem !important;
  9063. }
  9064. .mx-sm-n1 {
  9065. margin-right: -0.25rem !important;
  9066. margin-left: -0.25rem !important;
  9067. }
  9068. .mx-sm-n2 {
  9069. margin-right: -0.5rem !important;
  9070. margin-left: -0.5rem !important;
  9071. }
  9072. .mx-sm-n3 {
  9073. margin-right: -1rem !important;
  9074. margin-left: -1rem !important;
  9075. }
  9076. .mx-sm-n4 {
  9077. margin-right: -1.5rem !important;
  9078. margin-left: -1.5rem !important;
  9079. }
  9080. .mx-sm-n5 {
  9081. margin-right: -3rem !important;
  9082. margin-left: -3rem !important;
  9083. }
  9084. .my-sm-n1 {
  9085. margin-top: -0.25rem !important;
  9086. margin-bottom: -0.25rem !important;
  9087. }
  9088. .my-sm-n2 {
  9089. margin-top: -0.5rem !important;
  9090. margin-bottom: -0.5rem !important;
  9091. }
  9092. .my-sm-n3 {
  9093. margin-top: -1rem !important;
  9094. margin-bottom: -1rem !important;
  9095. }
  9096. .my-sm-n4 {
  9097. margin-top: -1.5rem !important;
  9098. margin-bottom: -1.5rem !important;
  9099. }
  9100. .my-sm-n5 {
  9101. margin-top: -3rem !important;
  9102. margin-bottom: -3rem !important;
  9103. }
  9104. .mt-sm-n1 {
  9105. margin-top: -0.25rem !important;
  9106. }
  9107. .mt-sm-n2 {
  9108. margin-top: -0.5rem !important;
  9109. }
  9110. .mt-sm-n3 {
  9111. margin-top: -1rem !important;
  9112. }
  9113. .mt-sm-n4 {
  9114. margin-top: -1.5rem !important;
  9115. }
  9116. .mt-sm-n5 {
  9117. margin-top: -3rem !important;
  9118. }
  9119. .me-sm-n1 {
  9120. margin-right: -0.25rem !important;
  9121. }
  9122. .me-sm-n2 {
  9123. margin-right: -0.5rem !important;
  9124. }
  9125. .me-sm-n3 {
  9126. margin-right: -1rem !important;
  9127. }
  9128. .me-sm-n4 {
  9129. margin-right: -1.5rem !important;
  9130. }
  9131. .me-sm-n5 {
  9132. margin-right: -3rem !important;
  9133. }
  9134. .mb-sm-n1 {
  9135. margin-bottom: -0.25rem !important;
  9136. }
  9137. .mb-sm-n2 {
  9138. margin-bottom: -0.5rem !important;
  9139. }
  9140. .mb-sm-n3 {
  9141. margin-bottom: -1rem !important;
  9142. }
  9143. .mb-sm-n4 {
  9144. margin-bottom: -1.5rem !important;
  9145. }
  9146. .mb-sm-n5 {
  9147. margin-bottom: -3rem !important;
  9148. }
  9149. .ms-sm-n1 {
  9150. margin-left: -0.25rem !important;
  9151. }
  9152. .ms-sm-n2 {
  9153. margin-left: -0.5rem !important;
  9154. }
  9155. .ms-sm-n3 {
  9156. margin-left: -1rem !important;
  9157. }
  9158. .ms-sm-n4 {
  9159. margin-left: -1.5rem !important;
  9160. }
  9161. .ms-sm-n5 {
  9162. margin-left: -3rem !important;
  9163. }
  9164. .p-sm-0 {
  9165. padding: 0 !important;
  9166. }
  9167. .p-sm-1 {
  9168. padding: 0.25rem !important;
  9169. }
  9170. .p-sm-2 {
  9171. padding: 0.5rem !important;
  9172. }
  9173. .p-sm-3 {
  9174. padding: 1rem !important;
  9175. }
  9176. .p-sm-4 {
  9177. padding: 1.5rem !important;
  9178. }
  9179. .p-sm-5 {
  9180. padding: 3rem !important;
  9181. }
  9182. .px-sm-0 {
  9183. padding-right: 0 !important;
  9184. padding-left: 0 !important;
  9185. }
  9186. .px-sm-1 {
  9187. padding-right: 0.25rem !important;
  9188. padding-left: 0.25rem !important;
  9189. }
  9190. .px-sm-2 {
  9191. padding-right: 0.5rem !important;
  9192. padding-left: 0.5rem !important;
  9193. }
  9194. .px-sm-3 {
  9195. padding-right: 1rem !important;
  9196. padding-left: 1rem !important;
  9197. }
  9198. .px-sm-4 {
  9199. padding-right: 1.5rem !important;
  9200. padding-left: 1.5rem !important;
  9201. }
  9202. .px-sm-5 {
  9203. padding-right: 3rem !important;
  9204. padding-left: 3rem !important;
  9205. }
  9206. .py-sm-0 {
  9207. padding-top: 0 !important;
  9208. padding-bottom: 0 !important;
  9209. }
  9210. .py-sm-1 {
  9211. padding-top: 0.25rem !important;
  9212. padding-bottom: 0.25rem !important;
  9213. }
  9214. .py-sm-2 {
  9215. padding-top: 0.5rem !important;
  9216. padding-bottom: 0.5rem !important;
  9217. }
  9218. .py-sm-3 {
  9219. padding-top: 1rem !important;
  9220. padding-bottom: 1rem !important;
  9221. }
  9222. .py-sm-4 {
  9223. padding-top: 1.5rem !important;
  9224. padding-bottom: 1.5rem !important;
  9225. }
  9226. .py-sm-5 {
  9227. padding-top: 3rem !important;
  9228. padding-bottom: 3rem !important;
  9229. }
  9230. .pt-sm-0 {
  9231. padding-top: 0 !important;
  9232. }
  9233. .pt-sm-1 {
  9234. padding-top: 0.25rem !important;
  9235. }
  9236. .pt-sm-2 {
  9237. padding-top: 0.5rem !important;
  9238. }
  9239. .pt-sm-3 {
  9240. padding-top: 1rem !important;
  9241. }
  9242. .pt-sm-4 {
  9243. padding-top: 1.5rem !important;
  9244. }
  9245. .pt-sm-5 {
  9246. padding-top: 3rem !important;
  9247. }
  9248. .pe-sm-0 {
  9249. padding-right: 0 !important;
  9250. }
  9251. .pe-sm-1 {
  9252. padding-right: 0.25rem !important;
  9253. }
  9254. .pe-sm-2 {
  9255. padding-right: 0.5rem !important;
  9256. }
  9257. .pe-sm-3 {
  9258. padding-right: 1rem !important;
  9259. }
  9260. .pe-sm-4 {
  9261. padding-right: 1.5rem !important;
  9262. }
  9263. .pe-sm-5 {
  9264. padding-right: 3rem !important;
  9265. }
  9266. .pb-sm-0 {
  9267. padding-bottom: 0 !important;
  9268. }
  9269. .pb-sm-1 {
  9270. padding-bottom: 0.25rem !important;
  9271. }
  9272. .pb-sm-2 {
  9273. padding-bottom: 0.5rem !important;
  9274. }
  9275. .pb-sm-3 {
  9276. padding-bottom: 1rem !important;
  9277. }
  9278. .pb-sm-4 {
  9279. padding-bottom: 1.5rem !important;
  9280. }
  9281. .pb-sm-5 {
  9282. padding-bottom: 3rem !important;
  9283. }
  9284. .ps-sm-0 {
  9285. padding-left: 0 !important;
  9286. }
  9287. .ps-sm-1 {
  9288. padding-left: 0.25rem !important;
  9289. }
  9290. .ps-sm-2 {
  9291. padding-left: 0.5rem !important;
  9292. }
  9293. .ps-sm-3 {
  9294. padding-left: 1rem !important;
  9295. }
  9296. .ps-sm-4 {
  9297. padding-left: 1.5rem !important;
  9298. }
  9299. .ps-sm-5 {
  9300. padding-left: 3rem !important;
  9301. }
  9302. .gap-sm-0 {
  9303. gap: 0 !important;
  9304. }
  9305. .gap-sm-1 {
  9306. gap: 0.25rem !important;
  9307. }
  9308. .gap-sm-2 {
  9309. gap: 0.5rem !important;
  9310. }
  9311. .gap-sm-3 {
  9312. gap: 1rem !important;
  9313. }
  9314. .gap-sm-4 {
  9315. gap: 1.5rem !important;
  9316. }
  9317. .gap-sm-5 {
  9318. gap: 3rem !important;
  9319. }
  9320. .text-sm-start {
  9321. text-align: left !important;
  9322. }
  9323. .text-sm-end {
  9324. text-align: right !important;
  9325. }
  9326. .text-sm-center {
  9327. text-align: center !important;
  9328. }
  9329. }
  9330. @media (min-width: 768px) {
  9331. .float-md-start {
  9332. float: left !important;
  9333. }
  9334. .float-md-end {
  9335. float: right !important;
  9336. }
  9337. .float-md-none {
  9338. float: none !important;
  9339. }
  9340. .d-md-inline {
  9341. display: inline !important;
  9342. }
  9343. .d-md-inline-block {
  9344. display: inline-block !important;
  9345. }
  9346. .d-md-block {
  9347. display: block !important;
  9348. }
  9349. .d-md-grid {
  9350. display: grid !important;
  9351. }
  9352. .d-md-table {
  9353. display: table !important;
  9354. }
  9355. .d-md-table-row {
  9356. display: table-row !important;
  9357. }
  9358. .d-md-table-cell {
  9359. display: table-cell !important;
  9360. }
  9361. .d-md-flex {
  9362. display: -webkit-box !important;
  9363. display: -ms-flexbox !important;
  9364. display: flex !important;
  9365. }
  9366. .d-md-inline-flex {
  9367. display: -webkit-inline-box !important;
  9368. display: -ms-inline-flexbox !important;
  9369. display: inline-flex !important;
  9370. }
  9371. .d-md-none {
  9372. display: none !important;
  9373. }
  9374. .flex-md-fill {
  9375. -webkit-box-flex: 1 !important;
  9376. -ms-flex: 1 1 auto !important;
  9377. flex: 1 1 auto !important;
  9378. }
  9379. .flex-md-row {
  9380. -webkit-box-orient: horizontal !important;
  9381. -webkit-box-direction: normal !important;
  9382. -ms-flex-direction: row !important;
  9383. flex-direction: row !important;
  9384. }
  9385. .flex-md-column {
  9386. -webkit-box-orient: vertical !important;
  9387. -webkit-box-direction: normal !important;
  9388. -ms-flex-direction: column !important;
  9389. flex-direction: column !important;
  9390. }
  9391. .flex-md-row-reverse {
  9392. -webkit-box-orient: horizontal !important;
  9393. -webkit-box-direction: reverse !important;
  9394. -ms-flex-direction: row-reverse !important;
  9395. flex-direction: row-reverse !important;
  9396. }
  9397. .flex-md-column-reverse {
  9398. -webkit-box-orient: vertical !important;
  9399. -webkit-box-direction: reverse !important;
  9400. -ms-flex-direction: column-reverse !important;
  9401. flex-direction: column-reverse !important;
  9402. }
  9403. .flex-md-grow-0 {
  9404. -webkit-box-flex: 0 !important;
  9405. -ms-flex-positive: 0 !important;
  9406. flex-grow: 0 !important;
  9407. }
  9408. .flex-md-grow-1 {
  9409. -webkit-box-flex: 1 !important;
  9410. -ms-flex-positive: 1 !important;
  9411. flex-grow: 1 !important;
  9412. }
  9413. .flex-md-shrink-0 {
  9414. -ms-flex-negative: 0 !important;
  9415. flex-shrink: 0 !important;
  9416. }
  9417. .flex-md-shrink-1 {
  9418. -ms-flex-negative: 1 !important;
  9419. flex-shrink: 1 !important;
  9420. }
  9421. .flex-md-wrap {
  9422. -ms-flex-wrap: wrap !important;
  9423. flex-wrap: wrap !important;
  9424. }
  9425. .flex-md-nowrap {
  9426. -ms-flex-wrap: nowrap !important;
  9427. flex-wrap: nowrap !important;
  9428. }
  9429. .flex-md-wrap-reverse {
  9430. -ms-flex-wrap: wrap-reverse !important;
  9431. flex-wrap: wrap-reverse !important;
  9432. }
  9433. .justify-content-md-start {
  9434. -webkit-box-pack: start !important;
  9435. -ms-flex-pack: start !important;
  9436. justify-content: flex-start !important;
  9437. }
  9438. .justify-content-md-end {
  9439. -webkit-box-pack: end !important;
  9440. -ms-flex-pack: end !important;
  9441. justify-content: flex-end !important;
  9442. }
  9443. .justify-content-md-center {
  9444. -webkit-box-pack: center !important;
  9445. -ms-flex-pack: center !important;
  9446. justify-content: center !important;
  9447. }
  9448. .justify-content-md-between {
  9449. -webkit-box-pack: justify !important;
  9450. -ms-flex-pack: justify !important;
  9451. justify-content: space-between !important;
  9452. }
  9453. .justify-content-md-around {
  9454. -ms-flex-pack: distribute !important;
  9455. justify-content: space-around !important;
  9456. }
  9457. .justify-content-md-evenly {
  9458. -webkit-box-pack: space-evenly !important;
  9459. -ms-flex-pack: space-evenly !important;
  9460. justify-content: space-evenly !important;
  9461. }
  9462. .align-items-md-start {
  9463. -webkit-box-align: start !important;
  9464. -ms-flex-align: start !important;
  9465. align-items: flex-start !important;
  9466. }
  9467. .align-items-md-end {
  9468. -webkit-box-align: end !important;
  9469. -ms-flex-align: end !important;
  9470. align-items: flex-end !important;
  9471. }
  9472. .align-items-md-center {
  9473. -webkit-box-align: center !important;
  9474. -ms-flex-align: center !important;
  9475. align-items: center !important;
  9476. }
  9477. .align-items-md-baseline {
  9478. -webkit-box-align: baseline !important;
  9479. -ms-flex-align: baseline !important;
  9480. align-items: baseline !important;
  9481. }
  9482. .align-items-md-stretch {
  9483. -webkit-box-align: stretch !important;
  9484. -ms-flex-align: stretch !important;
  9485. align-items: stretch !important;
  9486. }
  9487. .align-content-md-start {
  9488. -ms-flex-line-pack: start !important;
  9489. align-content: flex-start !important;
  9490. }
  9491. .align-content-md-end {
  9492. -ms-flex-line-pack: end !important;
  9493. align-content: flex-end !important;
  9494. }
  9495. .align-content-md-center {
  9496. -ms-flex-line-pack: center !important;
  9497. align-content: center !important;
  9498. }
  9499. .align-content-md-between {
  9500. -ms-flex-line-pack: justify !important;
  9501. align-content: space-between !important;
  9502. }
  9503. .align-content-md-around {
  9504. -ms-flex-line-pack: distribute !important;
  9505. align-content: space-around !important;
  9506. }
  9507. .align-content-md-stretch {
  9508. -ms-flex-line-pack: stretch !important;
  9509. align-content: stretch !important;
  9510. }
  9511. .align-self-md-auto {
  9512. -ms-flex-item-align: auto !important;
  9513. align-self: auto !important;
  9514. }
  9515. .align-self-md-start {
  9516. -ms-flex-item-align: start !important;
  9517. align-self: flex-start !important;
  9518. }
  9519. .align-self-md-end {
  9520. -ms-flex-item-align: end !important;
  9521. align-self: flex-end !important;
  9522. }
  9523. .align-self-md-center {
  9524. -ms-flex-item-align: center !important;
  9525. align-self: center !important;
  9526. }
  9527. .align-self-md-baseline {
  9528. -ms-flex-item-align: baseline !important;
  9529. align-self: baseline !important;
  9530. }
  9531. .align-self-md-stretch {
  9532. -ms-flex-item-align: stretch !important;
  9533. align-self: stretch !important;
  9534. }
  9535. .order-md-first {
  9536. -webkit-box-ordinal-group: 0 !important;
  9537. -ms-flex-order: -1 !important;
  9538. order: -1 !important;
  9539. }
  9540. .order-md-0 {
  9541. -webkit-box-ordinal-group: 1 !important;
  9542. -ms-flex-order: 0 !important;
  9543. order: 0 !important;
  9544. }
  9545. .order-md-1 {
  9546. -webkit-box-ordinal-group: 2 !important;
  9547. -ms-flex-order: 1 !important;
  9548. order: 1 !important;
  9549. }
  9550. .order-md-2 {
  9551. -webkit-box-ordinal-group: 3 !important;
  9552. -ms-flex-order: 2 !important;
  9553. order: 2 !important;
  9554. }
  9555. .order-md-3 {
  9556. -webkit-box-ordinal-group: 4 !important;
  9557. -ms-flex-order: 3 !important;
  9558. order: 3 !important;
  9559. }
  9560. .order-md-4 {
  9561. -webkit-box-ordinal-group: 5 !important;
  9562. -ms-flex-order: 4 !important;
  9563. order: 4 !important;
  9564. }
  9565. .order-md-5 {
  9566. -webkit-box-ordinal-group: 6 !important;
  9567. -ms-flex-order: 5 !important;
  9568. order: 5 !important;
  9569. }
  9570. .order-md-last {
  9571. -webkit-box-ordinal-group: 7 !important;
  9572. -ms-flex-order: 6 !important;
  9573. order: 6 !important;
  9574. }
  9575. .m-md-0 {
  9576. margin: 0 !important;
  9577. }
  9578. .m-md-1 {
  9579. margin: 0.25rem !important;
  9580. }
  9581. .m-md-2 {
  9582. margin: 0.5rem !important;
  9583. }
  9584. .m-md-3 {
  9585. margin: 1rem !important;
  9586. }
  9587. .m-md-4 {
  9588. margin: 1.5rem !important;
  9589. }
  9590. .m-md-5 {
  9591. margin: 3rem !important;
  9592. }
  9593. .m-md-auto {
  9594. margin: auto !important;
  9595. }
  9596. .mx-md-0 {
  9597. margin-right: 0 !important;
  9598. margin-left: 0 !important;
  9599. }
  9600. .mx-md-1 {
  9601. margin-right: 0.25rem !important;
  9602. margin-left: 0.25rem !important;
  9603. }
  9604. .mx-md-2 {
  9605. margin-right: 0.5rem !important;
  9606. margin-left: 0.5rem !important;
  9607. }
  9608. .mx-md-3 {
  9609. margin-right: 1rem !important;
  9610. margin-left: 1rem !important;
  9611. }
  9612. .mx-md-4 {
  9613. margin-right: 1.5rem !important;
  9614. margin-left: 1.5rem !important;
  9615. }
  9616. .mx-md-5 {
  9617. margin-right: 3rem !important;
  9618. margin-left: 3rem !important;
  9619. }
  9620. .mx-md-auto {
  9621. margin-right: auto !important;
  9622. margin-left: auto !important;
  9623. }
  9624. .my-md-0 {
  9625. margin-top: 0 !important;
  9626. margin-bottom: 0 !important;
  9627. }
  9628. .my-md-1 {
  9629. margin-top: 0.25rem !important;
  9630. margin-bottom: 0.25rem !important;
  9631. }
  9632. .my-md-2 {
  9633. margin-top: 0.5rem !important;
  9634. margin-bottom: 0.5rem !important;
  9635. }
  9636. .my-md-3 {
  9637. margin-top: 1rem !important;
  9638. margin-bottom: 1rem !important;
  9639. }
  9640. .my-md-4 {
  9641. margin-top: 1.5rem !important;
  9642. margin-bottom: 1.5rem !important;
  9643. }
  9644. .my-md-5 {
  9645. margin-top: 3rem !important;
  9646. margin-bottom: 3rem !important;
  9647. }
  9648. .my-md-auto {
  9649. margin-top: auto !important;
  9650. margin-bottom: auto !important;
  9651. }
  9652. .mt-md-0 {
  9653. margin-top: 0 !important;
  9654. }
  9655. .mt-md-1 {
  9656. margin-top: 0.25rem !important;
  9657. }
  9658. .mt-md-2 {
  9659. margin-top: 0.5rem !important;
  9660. }
  9661. .mt-md-3 {
  9662. margin-top: 1rem !important;
  9663. }
  9664. .mt-md-4 {
  9665. margin-top: 1.5rem !important;
  9666. }
  9667. .mt-md-5 {
  9668. margin-top: 3rem !important;
  9669. }
  9670. .mt-md-auto {
  9671. margin-top: auto !important;
  9672. }
  9673. .me-md-0 {
  9674. margin-right: 0 !important;
  9675. }
  9676. .me-md-1 {
  9677. margin-right: 0.25rem !important;
  9678. }
  9679. .me-md-2 {
  9680. margin-right: 0.5rem !important;
  9681. }
  9682. .me-md-3 {
  9683. margin-right: 1rem !important;
  9684. }
  9685. .me-md-4 {
  9686. margin-right: 1.5rem !important;
  9687. }
  9688. .me-md-5 {
  9689. margin-right: 3rem !important;
  9690. }
  9691. .me-md-auto {
  9692. margin-right: auto !important;
  9693. }
  9694. .mb-md-0 {
  9695. margin-bottom: 0 !important;
  9696. }
  9697. .mb-md-1 {
  9698. margin-bottom: 0.25rem !important;
  9699. }
  9700. .mb-md-2 {
  9701. margin-bottom: 0.5rem !important;
  9702. }
  9703. .mb-md-3 {
  9704. margin-bottom: 1rem !important;
  9705. }
  9706. .mb-md-4 {
  9707. margin-bottom: 1.5rem !important;
  9708. }
  9709. .mb-md-5 {
  9710. margin-bottom: 3rem !important;
  9711. }
  9712. .mb-md-auto {
  9713. margin-bottom: auto !important;
  9714. }
  9715. .ms-md-0 {
  9716. margin-left: 0 !important;
  9717. }
  9718. .ms-md-1 {
  9719. margin-left: 0.25rem !important;
  9720. }
  9721. .ms-md-2 {
  9722. margin-left: 0.5rem !important;
  9723. }
  9724. .ms-md-3 {
  9725. margin-left: 1rem !important;
  9726. }
  9727. .ms-md-4 {
  9728. margin-left: 1.5rem !important;
  9729. }
  9730. .ms-md-5 {
  9731. margin-left: 3rem !important;
  9732. }
  9733. .ms-md-auto {
  9734. margin-left: auto !important;
  9735. }
  9736. .m-md-n1 {
  9737. margin: -0.25rem !important;
  9738. }
  9739. .m-md-n2 {
  9740. margin: -0.5rem !important;
  9741. }
  9742. .m-md-n3 {
  9743. margin: -1rem !important;
  9744. }
  9745. .m-md-n4 {
  9746. margin: -1.5rem !important;
  9747. }
  9748. .m-md-n5 {
  9749. margin: -3rem !important;
  9750. }
  9751. .mx-md-n1 {
  9752. margin-right: -0.25rem !important;
  9753. margin-left: -0.25rem !important;
  9754. }
  9755. .mx-md-n2 {
  9756. margin-right: -0.5rem !important;
  9757. margin-left: -0.5rem !important;
  9758. }
  9759. .mx-md-n3 {
  9760. margin-right: -1rem !important;
  9761. margin-left: -1rem !important;
  9762. }
  9763. .mx-md-n4 {
  9764. margin-right: -1.5rem !important;
  9765. margin-left: -1.5rem !important;
  9766. }
  9767. .mx-md-n5 {
  9768. margin-right: -3rem !important;
  9769. margin-left: -3rem !important;
  9770. }
  9771. .my-md-n1 {
  9772. margin-top: -0.25rem !important;
  9773. margin-bottom: -0.25rem !important;
  9774. }
  9775. .my-md-n2 {
  9776. margin-top: -0.5rem !important;
  9777. margin-bottom: -0.5rem !important;
  9778. }
  9779. .my-md-n3 {
  9780. margin-top: -1rem !important;
  9781. margin-bottom: -1rem !important;
  9782. }
  9783. .my-md-n4 {
  9784. margin-top: -1.5rem !important;
  9785. margin-bottom: -1.5rem !important;
  9786. }
  9787. .my-md-n5 {
  9788. margin-top: -3rem !important;
  9789. margin-bottom: -3rem !important;
  9790. }
  9791. .mt-md-n1 {
  9792. margin-top: -0.25rem !important;
  9793. }
  9794. .mt-md-n2 {
  9795. margin-top: -0.5rem !important;
  9796. }
  9797. .mt-md-n3 {
  9798. margin-top: -1rem !important;
  9799. }
  9800. .mt-md-n4 {
  9801. margin-top: -1.5rem !important;
  9802. }
  9803. .mt-md-n5 {
  9804. margin-top: -3rem !important;
  9805. }
  9806. .me-md-n1 {
  9807. margin-right: -0.25rem !important;
  9808. }
  9809. .me-md-n2 {
  9810. margin-right: -0.5rem !important;
  9811. }
  9812. .me-md-n3 {
  9813. margin-right: -1rem !important;
  9814. }
  9815. .me-md-n4 {
  9816. margin-right: -1.5rem !important;
  9817. }
  9818. .me-md-n5 {
  9819. margin-right: -3rem !important;
  9820. }
  9821. .mb-md-n1 {
  9822. margin-bottom: -0.25rem !important;
  9823. }
  9824. .mb-md-n2 {
  9825. margin-bottom: -0.5rem !important;
  9826. }
  9827. .mb-md-n3 {
  9828. margin-bottom: -1rem !important;
  9829. }
  9830. .mb-md-n4 {
  9831. margin-bottom: -1.5rem !important;
  9832. }
  9833. .mb-md-n5 {
  9834. margin-bottom: -3rem !important;
  9835. }
  9836. .ms-md-n1 {
  9837. margin-left: -0.25rem !important;
  9838. }
  9839. .ms-md-n2 {
  9840. margin-left: -0.5rem !important;
  9841. }
  9842. .ms-md-n3 {
  9843. margin-left: -1rem !important;
  9844. }
  9845. .ms-md-n4 {
  9846. margin-left: -1.5rem !important;
  9847. }
  9848. .ms-md-n5 {
  9849. margin-left: -3rem !important;
  9850. }
  9851. .p-md-0 {
  9852. padding: 0 !important;
  9853. }
  9854. .p-md-1 {
  9855. padding: 0.25rem !important;
  9856. }
  9857. .p-md-2 {
  9858. padding: 0.5rem !important;
  9859. }
  9860. .p-md-3 {
  9861. padding: 1rem !important;
  9862. }
  9863. .p-md-4 {
  9864. padding: 1.5rem !important;
  9865. }
  9866. .p-md-5 {
  9867. padding: 3rem !important;
  9868. }
  9869. .px-md-0 {
  9870. padding-right: 0 !important;
  9871. padding-left: 0 !important;
  9872. }
  9873. .px-md-1 {
  9874. padding-right: 0.25rem !important;
  9875. padding-left: 0.25rem !important;
  9876. }
  9877. .px-md-2 {
  9878. padding-right: 0.5rem !important;
  9879. padding-left: 0.5rem !important;
  9880. }
  9881. .px-md-3 {
  9882. padding-right: 1rem !important;
  9883. padding-left: 1rem !important;
  9884. }
  9885. .px-md-4 {
  9886. padding-right: 1.5rem !important;
  9887. padding-left: 1.5rem !important;
  9888. }
  9889. .px-md-5 {
  9890. padding-right: 3rem !important;
  9891. padding-left: 3rem !important;
  9892. }
  9893. .py-md-0 {
  9894. padding-top: 0 !important;
  9895. padding-bottom: 0 !important;
  9896. }
  9897. .py-md-1 {
  9898. padding-top: 0.25rem !important;
  9899. padding-bottom: 0.25rem !important;
  9900. }
  9901. .py-md-2 {
  9902. padding-top: 0.5rem !important;
  9903. padding-bottom: 0.5rem !important;
  9904. }
  9905. .py-md-3 {
  9906. padding-top: 1rem !important;
  9907. padding-bottom: 1rem !important;
  9908. }
  9909. .py-md-4 {
  9910. padding-top: 1.5rem !important;
  9911. padding-bottom: 1.5rem !important;
  9912. }
  9913. .py-md-5 {
  9914. padding-top: 3rem !important;
  9915. padding-bottom: 3rem !important;
  9916. }
  9917. .pt-md-0 {
  9918. padding-top: 0 !important;
  9919. }
  9920. .pt-md-1 {
  9921. padding-top: 0.25rem !important;
  9922. }
  9923. .pt-md-2 {
  9924. padding-top: 0.5rem !important;
  9925. }
  9926. .pt-md-3 {
  9927. padding-top: 1rem !important;
  9928. }
  9929. .pt-md-4 {
  9930. padding-top: 1.5rem !important;
  9931. }
  9932. .pt-md-5 {
  9933. padding-top: 3rem !important;
  9934. }
  9935. .pe-md-0 {
  9936. padding-right: 0 !important;
  9937. }
  9938. .pe-md-1 {
  9939. padding-right: 0.25rem !important;
  9940. }
  9941. .pe-md-2 {
  9942. padding-right: 0.5rem !important;
  9943. }
  9944. .pe-md-3 {
  9945. padding-right: 1rem !important;
  9946. }
  9947. .pe-md-4 {
  9948. padding-right: 1.5rem !important;
  9949. }
  9950. .pe-md-5 {
  9951. padding-right: 3rem !important;
  9952. }
  9953. .pb-md-0 {
  9954. padding-bottom: 0 !important;
  9955. }
  9956. .pb-md-1 {
  9957. padding-bottom: 0.25rem !important;
  9958. }
  9959. .pb-md-2 {
  9960. padding-bottom: 0.5rem !important;
  9961. }
  9962. .pb-md-3 {
  9963. padding-bottom: 1rem !important;
  9964. }
  9965. .pb-md-4 {
  9966. padding-bottom: 1.5rem !important;
  9967. }
  9968. .pb-md-5 {
  9969. padding-bottom: 3rem !important;
  9970. }
  9971. .ps-md-0 {
  9972. padding-left: 0 !important;
  9973. }
  9974. .ps-md-1 {
  9975. padding-left: 0.25rem !important;
  9976. }
  9977. .ps-md-2 {
  9978. padding-left: 0.5rem !important;
  9979. }
  9980. .ps-md-3 {
  9981. padding-left: 1rem !important;
  9982. }
  9983. .ps-md-4 {
  9984. padding-left: 1.5rem !important;
  9985. }
  9986. .ps-md-5 {
  9987. padding-left: 3rem !important;
  9988. }
  9989. .gap-md-0 {
  9990. gap: 0 !important;
  9991. }
  9992. .gap-md-1 {
  9993. gap: 0.25rem !important;
  9994. }
  9995. .gap-md-2 {
  9996. gap: 0.5rem !important;
  9997. }
  9998. .gap-md-3 {
  9999. gap: 1rem !important;
  10000. }
  10001. .gap-md-4 {
  10002. gap: 1.5rem !important;
  10003. }
  10004. .gap-md-5 {
  10005. gap: 3rem !important;
  10006. }
  10007. .text-md-start {
  10008. text-align: left !important;
  10009. }
  10010. .text-md-end {
  10011. text-align: right !important;
  10012. }
  10013. .text-md-center {
  10014. text-align: center !important;
  10015. }
  10016. }
  10017. @media (min-width: 992px) {
  10018. .float-lg-start {
  10019. float: left !important;
  10020. }
  10021. .float-lg-end {
  10022. float: right !important;
  10023. }
  10024. .float-lg-none {
  10025. float: none !important;
  10026. }
  10027. .d-lg-inline {
  10028. display: inline !important;
  10029. }
  10030. .d-lg-inline-block {
  10031. display: inline-block !important;
  10032. }
  10033. .d-lg-block {
  10034. display: block !important;
  10035. }
  10036. .d-lg-grid {
  10037. display: grid !important;
  10038. }
  10039. .d-lg-table {
  10040. display: table !important;
  10041. }
  10042. .d-lg-table-row {
  10043. display: table-row !important;
  10044. }
  10045. .d-lg-table-cell {
  10046. display: table-cell !important;
  10047. }
  10048. .d-lg-flex {
  10049. display: -webkit-box !important;
  10050. display: -ms-flexbox !important;
  10051. display: flex !important;
  10052. }
  10053. .d-lg-inline-flex {
  10054. display: -webkit-inline-box !important;
  10055. display: -ms-inline-flexbox !important;
  10056. display: inline-flex !important;
  10057. }
  10058. .d-lg-none {
  10059. display: none !important;
  10060. }
  10061. .flex-lg-fill {
  10062. -webkit-box-flex: 1 !important;
  10063. -ms-flex: 1 1 auto !important;
  10064. flex: 1 1 auto !important;
  10065. }
  10066. .flex-lg-row {
  10067. -webkit-box-orient: horizontal !important;
  10068. -webkit-box-direction: normal !important;
  10069. -ms-flex-direction: row !important;
  10070. flex-direction: row !important;
  10071. }
  10072. .flex-lg-column {
  10073. -webkit-box-orient: vertical !important;
  10074. -webkit-box-direction: normal !important;
  10075. -ms-flex-direction: column !important;
  10076. flex-direction: column !important;
  10077. }
  10078. .flex-lg-row-reverse {
  10079. -webkit-box-orient: horizontal !important;
  10080. -webkit-box-direction: reverse !important;
  10081. -ms-flex-direction: row-reverse !important;
  10082. flex-direction: row-reverse !important;
  10083. }
  10084. .flex-lg-column-reverse {
  10085. -webkit-box-orient: vertical !important;
  10086. -webkit-box-direction: reverse !important;
  10087. -ms-flex-direction: column-reverse !important;
  10088. flex-direction: column-reverse !important;
  10089. }
  10090. .flex-lg-grow-0 {
  10091. -webkit-box-flex: 0 !important;
  10092. -ms-flex-positive: 0 !important;
  10093. flex-grow: 0 !important;
  10094. }
  10095. .flex-lg-grow-1 {
  10096. -webkit-box-flex: 1 !important;
  10097. -ms-flex-positive: 1 !important;
  10098. flex-grow: 1 !important;
  10099. }
  10100. .flex-lg-shrink-0 {
  10101. -ms-flex-negative: 0 !important;
  10102. flex-shrink: 0 !important;
  10103. }
  10104. .flex-lg-shrink-1 {
  10105. -ms-flex-negative: 1 !important;
  10106. flex-shrink: 1 !important;
  10107. }
  10108. .flex-lg-wrap {
  10109. -ms-flex-wrap: wrap !important;
  10110. flex-wrap: wrap !important;
  10111. }
  10112. .flex-lg-nowrap {
  10113. -ms-flex-wrap: nowrap !important;
  10114. flex-wrap: nowrap !important;
  10115. }
  10116. .flex-lg-wrap-reverse {
  10117. -ms-flex-wrap: wrap-reverse !important;
  10118. flex-wrap: wrap-reverse !important;
  10119. }
  10120. .justify-content-lg-start {
  10121. -webkit-box-pack: start !important;
  10122. -ms-flex-pack: start !important;
  10123. justify-content: flex-start !important;
  10124. }
  10125. .justify-content-lg-end {
  10126. -webkit-box-pack: end !important;
  10127. -ms-flex-pack: end !important;
  10128. justify-content: flex-end !important;
  10129. }
  10130. .justify-content-lg-center {
  10131. -webkit-box-pack: center !important;
  10132. -ms-flex-pack: center !important;
  10133. justify-content: center !important;
  10134. }
  10135. .justify-content-lg-between {
  10136. -webkit-box-pack: justify !important;
  10137. -ms-flex-pack: justify !important;
  10138. justify-content: space-between !important;
  10139. }
  10140. .justify-content-lg-around {
  10141. -ms-flex-pack: distribute !important;
  10142. justify-content: space-around !important;
  10143. }
  10144. .justify-content-lg-evenly {
  10145. -webkit-box-pack: space-evenly !important;
  10146. -ms-flex-pack: space-evenly !important;
  10147. justify-content: space-evenly !important;
  10148. }
  10149. .align-items-lg-start {
  10150. -webkit-box-align: start !important;
  10151. -ms-flex-align: start !important;
  10152. align-items: flex-start !important;
  10153. }
  10154. .align-items-lg-end {
  10155. -webkit-box-align: end !important;
  10156. -ms-flex-align: end !important;
  10157. align-items: flex-end !important;
  10158. }
  10159. .align-items-lg-center {
  10160. -webkit-box-align: center !important;
  10161. -ms-flex-align: center !important;
  10162. align-items: center !important;
  10163. }
  10164. .align-items-lg-baseline {
  10165. -webkit-box-align: baseline !important;
  10166. -ms-flex-align: baseline !important;
  10167. align-items: baseline !important;
  10168. }
  10169. .align-items-lg-stretch {
  10170. -webkit-box-align: stretch !important;
  10171. -ms-flex-align: stretch !important;
  10172. align-items: stretch !important;
  10173. }
  10174. .align-content-lg-start {
  10175. -ms-flex-line-pack: start !important;
  10176. align-content: flex-start !important;
  10177. }
  10178. .align-content-lg-end {
  10179. -ms-flex-line-pack: end !important;
  10180. align-content: flex-end !important;
  10181. }
  10182. .align-content-lg-center {
  10183. -ms-flex-line-pack: center !important;
  10184. align-content: center !important;
  10185. }
  10186. .align-content-lg-between {
  10187. -ms-flex-line-pack: justify !important;
  10188. align-content: space-between !important;
  10189. }
  10190. .align-content-lg-around {
  10191. -ms-flex-line-pack: distribute !important;
  10192. align-content: space-around !important;
  10193. }
  10194. .align-content-lg-stretch {
  10195. -ms-flex-line-pack: stretch !important;
  10196. align-content: stretch !important;
  10197. }
  10198. .align-self-lg-auto {
  10199. -ms-flex-item-align: auto !important;
  10200. align-self: auto !important;
  10201. }
  10202. .align-self-lg-start {
  10203. -ms-flex-item-align: start !important;
  10204. align-self: flex-start !important;
  10205. }
  10206. .align-self-lg-end {
  10207. -ms-flex-item-align: end !important;
  10208. align-self: flex-end !important;
  10209. }
  10210. .align-self-lg-center {
  10211. -ms-flex-item-align: center !important;
  10212. align-self: center !important;
  10213. }
  10214. .align-self-lg-baseline {
  10215. -ms-flex-item-align: baseline !important;
  10216. align-self: baseline !important;
  10217. }
  10218. .align-self-lg-stretch {
  10219. -ms-flex-item-align: stretch !important;
  10220. align-self: stretch !important;
  10221. }
  10222. .order-lg-first {
  10223. -webkit-box-ordinal-group: 0 !important;
  10224. -ms-flex-order: -1 !important;
  10225. order: -1 !important;
  10226. }
  10227. .order-lg-0 {
  10228. -webkit-box-ordinal-group: 1 !important;
  10229. -ms-flex-order: 0 !important;
  10230. order: 0 !important;
  10231. }
  10232. .order-lg-1 {
  10233. -webkit-box-ordinal-group: 2 !important;
  10234. -ms-flex-order: 1 !important;
  10235. order: 1 !important;
  10236. }
  10237. .order-lg-2 {
  10238. -webkit-box-ordinal-group: 3 !important;
  10239. -ms-flex-order: 2 !important;
  10240. order: 2 !important;
  10241. }
  10242. .order-lg-3 {
  10243. -webkit-box-ordinal-group: 4 !important;
  10244. -ms-flex-order: 3 !important;
  10245. order: 3 !important;
  10246. }
  10247. .order-lg-4 {
  10248. -webkit-box-ordinal-group: 5 !important;
  10249. -ms-flex-order: 4 !important;
  10250. order: 4 !important;
  10251. }
  10252. .order-lg-5 {
  10253. -webkit-box-ordinal-group: 6 !important;
  10254. -ms-flex-order: 5 !important;
  10255. order: 5 !important;
  10256. }
  10257. .order-lg-last {
  10258. -webkit-box-ordinal-group: 7 !important;
  10259. -ms-flex-order: 6 !important;
  10260. order: 6 !important;
  10261. }
  10262. .m-lg-0 {
  10263. margin: 0 !important;
  10264. }
  10265. .m-lg-1 {
  10266. margin: 0.25rem !important;
  10267. }
  10268. .m-lg-2 {
  10269. margin: 0.5rem !important;
  10270. }
  10271. .m-lg-3 {
  10272. margin: 1rem !important;
  10273. }
  10274. .m-lg-4 {
  10275. margin: 1.5rem !important;
  10276. }
  10277. .m-lg-5 {
  10278. margin: 3rem !important;
  10279. }
  10280. .m-lg-auto {
  10281. margin: auto !important;
  10282. }
  10283. .mx-lg-0 {
  10284. margin-right: 0 !important;
  10285. margin-left: 0 !important;
  10286. }
  10287. .mx-lg-1 {
  10288. margin-right: 0.25rem !important;
  10289. margin-left: 0.25rem !important;
  10290. }
  10291. .mx-lg-2 {
  10292. margin-right: 0.5rem !important;
  10293. margin-left: 0.5rem !important;
  10294. }
  10295. .mx-lg-3 {
  10296. margin-right: 1rem !important;
  10297. margin-left: 1rem !important;
  10298. }
  10299. .mx-lg-4 {
  10300. margin-right: 1.5rem !important;
  10301. margin-left: 1.5rem !important;
  10302. }
  10303. .mx-lg-5 {
  10304. margin-right: 3rem !important;
  10305. margin-left: 3rem !important;
  10306. }
  10307. .mx-lg-auto {
  10308. margin-right: auto !important;
  10309. margin-left: auto !important;
  10310. }
  10311. .my-lg-0 {
  10312. margin-top: 0 !important;
  10313. margin-bottom: 0 !important;
  10314. }
  10315. .my-lg-1 {
  10316. margin-top: 0.25rem !important;
  10317. margin-bottom: 0.25rem !important;
  10318. }
  10319. .my-lg-2 {
  10320. margin-top: 0.5rem !important;
  10321. margin-bottom: 0.5rem !important;
  10322. }
  10323. .my-lg-3 {
  10324. margin-top: 1rem !important;
  10325. margin-bottom: 1rem !important;
  10326. }
  10327. .my-lg-4 {
  10328. margin-top: 1.5rem !important;
  10329. margin-bottom: 1.5rem !important;
  10330. }
  10331. .my-lg-5 {
  10332. margin-top: 3rem !important;
  10333. margin-bottom: 3rem !important;
  10334. }
  10335. .my-lg-auto {
  10336. margin-top: auto !important;
  10337. margin-bottom: auto !important;
  10338. }
  10339. .mt-lg-0 {
  10340. margin-top: 0 !important;
  10341. }
  10342. .mt-lg-1 {
  10343. margin-top: 0.25rem !important;
  10344. }
  10345. .mt-lg-2 {
  10346. margin-top: 0.5rem !important;
  10347. }
  10348. .mt-lg-3 {
  10349. margin-top: 1rem !important;
  10350. }
  10351. .mt-lg-4 {
  10352. margin-top: 1.5rem !important;
  10353. }
  10354. .mt-lg-5 {
  10355. margin-top: 3rem !important;
  10356. }
  10357. .mt-lg-auto {
  10358. margin-top: auto !important;
  10359. }
  10360. .me-lg-0 {
  10361. margin-right: 0 !important;
  10362. }
  10363. .me-lg-1 {
  10364. margin-right: 0.25rem !important;
  10365. }
  10366. .me-lg-2 {
  10367. margin-right: 0.5rem !important;
  10368. }
  10369. .me-lg-3 {
  10370. margin-right: 1rem !important;
  10371. }
  10372. .me-lg-4 {
  10373. margin-right: 1.5rem !important;
  10374. }
  10375. .me-lg-5 {
  10376. margin-right: 3rem !important;
  10377. }
  10378. .me-lg-auto {
  10379. margin-right: auto !important;
  10380. }
  10381. .mb-lg-0 {
  10382. margin-bottom: 0 !important;
  10383. }
  10384. .mb-lg-1 {
  10385. margin-bottom: 0.25rem !important;
  10386. }
  10387. .mb-lg-2 {
  10388. margin-bottom: 0.5rem !important;
  10389. }
  10390. .mb-lg-3 {
  10391. margin-bottom: 1rem !important;
  10392. }
  10393. .mb-lg-4 {
  10394. margin-bottom: 1.5rem !important;
  10395. }
  10396. .mb-lg-5 {
  10397. margin-bottom: 3rem !important;
  10398. }
  10399. .mb-lg-auto {
  10400. margin-bottom: auto !important;
  10401. }
  10402. .ms-lg-0 {
  10403. margin-left: 0 !important;
  10404. }
  10405. .ms-lg-1 {
  10406. margin-left: 0.25rem !important;
  10407. }
  10408. .ms-lg-2 {
  10409. margin-left: 0.5rem !important;
  10410. }
  10411. .ms-lg-3 {
  10412. margin-left: 1rem !important;
  10413. }
  10414. .ms-lg-4 {
  10415. margin-left: 1.5rem !important;
  10416. }
  10417. .ms-lg-5 {
  10418. margin-left: 3rem !important;
  10419. }
  10420. .ms-lg-auto {
  10421. margin-left: auto !important;
  10422. }
  10423. .m-lg-n1 {
  10424. margin: -0.25rem !important;
  10425. }
  10426. .m-lg-n2 {
  10427. margin: -0.5rem !important;
  10428. }
  10429. .m-lg-n3 {
  10430. margin: -1rem !important;
  10431. }
  10432. .m-lg-n4 {
  10433. margin: -1.5rem !important;
  10434. }
  10435. .m-lg-n5 {
  10436. margin: -3rem !important;
  10437. }
  10438. .mx-lg-n1 {
  10439. margin-right: -0.25rem !important;
  10440. margin-left: -0.25rem !important;
  10441. }
  10442. .mx-lg-n2 {
  10443. margin-right: -0.5rem !important;
  10444. margin-left: -0.5rem !important;
  10445. }
  10446. .mx-lg-n3 {
  10447. margin-right: -1rem !important;
  10448. margin-left: -1rem !important;
  10449. }
  10450. .mx-lg-n4 {
  10451. margin-right: -1.5rem !important;
  10452. margin-left: -1.5rem !important;
  10453. }
  10454. .mx-lg-n5 {
  10455. margin-right: -3rem !important;
  10456. margin-left: -3rem !important;
  10457. }
  10458. .my-lg-n1 {
  10459. margin-top: -0.25rem !important;
  10460. margin-bottom: -0.25rem !important;
  10461. }
  10462. .my-lg-n2 {
  10463. margin-top: -0.5rem !important;
  10464. margin-bottom: -0.5rem !important;
  10465. }
  10466. .my-lg-n3 {
  10467. margin-top: -1rem !important;
  10468. margin-bottom: -1rem !important;
  10469. }
  10470. .my-lg-n4 {
  10471. margin-top: -1.5rem !important;
  10472. margin-bottom: -1.5rem !important;
  10473. }
  10474. .my-lg-n5 {
  10475. margin-top: -3rem !important;
  10476. margin-bottom: -3rem !important;
  10477. }
  10478. .mt-lg-n1 {
  10479. margin-top: -0.25rem !important;
  10480. }
  10481. .mt-lg-n2 {
  10482. margin-top: -0.5rem !important;
  10483. }
  10484. .mt-lg-n3 {
  10485. margin-top: -1rem !important;
  10486. }
  10487. .mt-lg-n4 {
  10488. margin-top: -1.5rem !important;
  10489. }
  10490. .mt-lg-n5 {
  10491. margin-top: -3rem !important;
  10492. }
  10493. .me-lg-n1 {
  10494. margin-right: -0.25rem !important;
  10495. }
  10496. .me-lg-n2 {
  10497. margin-right: -0.5rem !important;
  10498. }
  10499. .me-lg-n3 {
  10500. margin-right: -1rem !important;
  10501. }
  10502. .me-lg-n4 {
  10503. margin-right: -1.5rem !important;
  10504. }
  10505. .me-lg-n5 {
  10506. margin-right: -3rem !important;
  10507. }
  10508. .mb-lg-n1 {
  10509. margin-bottom: -0.25rem !important;
  10510. }
  10511. .mb-lg-n2 {
  10512. margin-bottom: -0.5rem !important;
  10513. }
  10514. .mb-lg-n3 {
  10515. margin-bottom: -1rem !important;
  10516. }
  10517. .mb-lg-n4 {
  10518. margin-bottom: -1.5rem !important;
  10519. }
  10520. .mb-lg-n5 {
  10521. margin-bottom: -3rem !important;
  10522. }
  10523. .ms-lg-n1 {
  10524. margin-left: -0.25rem !important;
  10525. }
  10526. .ms-lg-n2 {
  10527. margin-left: -0.5rem !important;
  10528. }
  10529. .ms-lg-n3 {
  10530. margin-left: -1rem !important;
  10531. }
  10532. .ms-lg-n4 {
  10533. margin-left: -1.5rem !important;
  10534. }
  10535. .ms-lg-n5 {
  10536. margin-left: -3rem !important;
  10537. }
  10538. .p-lg-0 {
  10539. padding: 0 !important;
  10540. }
  10541. .p-lg-1 {
  10542. padding: 0.25rem !important;
  10543. }
  10544. .p-lg-2 {
  10545. padding: 0.5rem !important;
  10546. }
  10547. .p-lg-3 {
  10548. padding: 1rem !important;
  10549. }
  10550. .p-lg-4 {
  10551. padding: 1.5rem !important;
  10552. }
  10553. .p-lg-5 {
  10554. padding: 3rem !important;
  10555. }
  10556. .px-lg-0 {
  10557. padding-right: 0 !important;
  10558. padding-left: 0 !important;
  10559. }
  10560. .px-lg-1 {
  10561. padding-right: 0.25rem !important;
  10562. padding-left: 0.25rem !important;
  10563. }
  10564. .px-lg-2 {
  10565. padding-right: 0.5rem !important;
  10566. padding-left: 0.5rem !important;
  10567. }
  10568. .px-lg-3 {
  10569. padding-right: 1rem !important;
  10570. padding-left: 1rem !important;
  10571. }
  10572. .px-lg-4 {
  10573. padding-right: 1.5rem !important;
  10574. padding-left: 1.5rem !important;
  10575. }
  10576. .px-lg-5 {
  10577. padding-right: 3rem !important;
  10578. padding-left: 3rem !important;
  10579. }
  10580. .py-lg-0 {
  10581. padding-top: 0 !important;
  10582. padding-bottom: 0 !important;
  10583. }
  10584. .py-lg-1 {
  10585. padding-top: 0.25rem !important;
  10586. padding-bottom: 0.25rem !important;
  10587. }
  10588. .py-lg-2 {
  10589. padding-top: 0.5rem !important;
  10590. padding-bottom: 0.5rem !important;
  10591. }
  10592. .py-lg-3 {
  10593. padding-top: 1rem !important;
  10594. padding-bottom: 1rem !important;
  10595. }
  10596. .py-lg-4 {
  10597. padding-top: 1.5rem !important;
  10598. padding-bottom: 1.5rem !important;
  10599. }
  10600. .py-lg-5 {
  10601. padding-top: 3rem !important;
  10602. padding-bottom: 3rem !important;
  10603. }
  10604. .pt-lg-0 {
  10605. padding-top: 0 !important;
  10606. }
  10607. .pt-lg-1 {
  10608. padding-top: 0.25rem !important;
  10609. }
  10610. .pt-lg-2 {
  10611. padding-top: 0.5rem !important;
  10612. }
  10613. .pt-lg-3 {
  10614. padding-top: 1rem !important;
  10615. }
  10616. .pt-lg-4 {
  10617. padding-top: 1.5rem !important;
  10618. }
  10619. .pt-lg-5 {
  10620. padding-top: 3rem !important;
  10621. }
  10622. .pe-lg-0 {
  10623. padding-right: 0 !important;
  10624. }
  10625. .pe-lg-1 {
  10626. padding-right: 0.25rem !important;
  10627. }
  10628. .pe-lg-2 {
  10629. padding-right: 0.5rem !important;
  10630. }
  10631. .pe-lg-3 {
  10632. padding-right: 1rem !important;
  10633. }
  10634. .pe-lg-4 {
  10635. padding-right: 1.5rem !important;
  10636. }
  10637. .pe-lg-5 {
  10638. padding-right: 3rem !important;
  10639. }
  10640. .pb-lg-0 {
  10641. padding-bottom: 0 !important;
  10642. }
  10643. .pb-lg-1 {
  10644. padding-bottom: 0.25rem !important;
  10645. }
  10646. .pb-lg-2 {
  10647. padding-bottom: 0.5rem !important;
  10648. }
  10649. .pb-lg-3 {
  10650. padding-bottom: 1rem !important;
  10651. }
  10652. .pb-lg-4 {
  10653. padding-bottom: 1.5rem !important;
  10654. }
  10655. .pb-lg-5 {
  10656. padding-bottom: 3rem !important;
  10657. }
  10658. .ps-lg-0 {
  10659. padding-left: 0 !important;
  10660. }
  10661. .ps-lg-1 {
  10662. padding-left: 0.25rem !important;
  10663. }
  10664. .ps-lg-2 {
  10665. padding-left: 0.5rem !important;
  10666. }
  10667. .ps-lg-3 {
  10668. padding-left: 1rem !important;
  10669. }
  10670. .ps-lg-4 {
  10671. padding-left: 1.5rem !important;
  10672. }
  10673. .ps-lg-5 {
  10674. padding-left: 3rem !important;
  10675. }
  10676. .gap-lg-0 {
  10677. gap: 0 !important;
  10678. }
  10679. .gap-lg-1 {
  10680. gap: 0.25rem !important;
  10681. }
  10682. .gap-lg-2 {
  10683. gap: 0.5rem !important;
  10684. }
  10685. .gap-lg-3 {
  10686. gap: 1rem !important;
  10687. }
  10688. .gap-lg-4 {
  10689. gap: 1.5rem !important;
  10690. }
  10691. .gap-lg-5 {
  10692. gap: 3rem !important;
  10693. }
  10694. .text-lg-start {
  10695. text-align: left !important;
  10696. }
  10697. .text-lg-end {
  10698. text-align: right !important;
  10699. }
  10700. .text-lg-center {
  10701. text-align: center !important;
  10702. }
  10703. }
  10704. @media (min-width: 1200px) {
  10705. .float-xl-start {
  10706. float: left !important;
  10707. }
  10708. .float-xl-end {
  10709. float: right !important;
  10710. }
  10711. .float-xl-none {
  10712. float: none !important;
  10713. }
  10714. .d-xl-inline {
  10715. display: inline !important;
  10716. }
  10717. .d-xl-inline-block {
  10718. display: inline-block !important;
  10719. }
  10720. .d-xl-block {
  10721. display: block !important;
  10722. }
  10723. .d-xl-grid {
  10724. display: grid !important;
  10725. }
  10726. .d-xl-table {
  10727. display: table !important;
  10728. }
  10729. .d-xl-table-row {
  10730. display: table-row !important;
  10731. }
  10732. .d-xl-table-cell {
  10733. display: table-cell !important;
  10734. }
  10735. .d-xl-flex {
  10736. display: -webkit-box !important;
  10737. display: -ms-flexbox !important;
  10738. display: flex !important;
  10739. }
  10740. .d-xl-inline-flex {
  10741. display: -webkit-inline-box !important;
  10742. display: -ms-inline-flexbox !important;
  10743. display: inline-flex !important;
  10744. }
  10745. .d-xl-none {
  10746. display: none !important;
  10747. }
  10748. .flex-xl-fill {
  10749. -webkit-box-flex: 1 !important;
  10750. -ms-flex: 1 1 auto !important;
  10751. flex: 1 1 auto !important;
  10752. }
  10753. .flex-xl-row {
  10754. -webkit-box-orient: horizontal !important;
  10755. -webkit-box-direction: normal !important;
  10756. -ms-flex-direction: row !important;
  10757. flex-direction: row !important;
  10758. }
  10759. .flex-xl-column {
  10760. -webkit-box-orient: vertical !important;
  10761. -webkit-box-direction: normal !important;
  10762. -ms-flex-direction: column !important;
  10763. flex-direction: column !important;
  10764. }
  10765. .flex-xl-row-reverse {
  10766. -webkit-box-orient: horizontal !important;
  10767. -webkit-box-direction: reverse !important;
  10768. -ms-flex-direction: row-reverse !important;
  10769. flex-direction: row-reverse !important;
  10770. }
  10771. .flex-xl-column-reverse {
  10772. -webkit-box-orient: vertical !important;
  10773. -webkit-box-direction: reverse !important;
  10774. -ms-flex-direction: column-reverse !important;
  10775. flex-direction: column-reverse !important;
  10776. }
  10777. .flex-xl-grow-0 {
  10778. -webkit-box-flex: 0 !important;
  10779. -ms-flex-positive: 0 !important;
  10780. flex-grow: 0 !important;
  10781. }
  10782. .flex-xl-grow-1 {
  10783. -webkit-box-flex: 1 !important;
  10784. -ms-flex-positive: 1 !important;
  10785. flex-grow: 1 !important;
  10786. }
  10787. .flex-xl-shrink-0 {
  10788. -ms-flex-negative: 0 !important;
  10789. flex-shrink: 0 !important;
  10790. }
  10791. .flex-xl-shrink-1 {
  10792. -ms-flex-negative: 1 !important;
  10793. flex-shrink: 1 !important;
  10794. }
  10795. .flex-xl-wrap {
  10796. -ms-flex-wrap: wrap !important;
  10797. flex-wrap: wrap !important;
  10798. }
  10799. .flex-xl-nowrap {
  10800. -ms-flex-wrap: nowrap !important;
  10801. flex-wrap: nowrap !important;
  10802. }
  10803. .flex-xl-wrap-reverse {
  10804. -ms-flex-wrap: wrap-reverse !important;
  10805. flex-wrap: wrap-reverse !important;
  10806. }
  10807. .justify-content-xl-start {
  10808. -webkit-box-pack: start !important;
  10809. -ms-flex-pack: start !important;
  10810. justify-content: flex-start !important;
  10811. }
  10812. .justify-content-xl-end {
  10813. -webkit-box-pack: end !important;
  10814. -ms-flex-pack: end !important;
  10815. justify-content: flex-end !important;
  10816. }
  10817. .justify-content-xl-center {
  10818. -webkit-box-pack: center !important;
  10819. -ms-flex-pack: center !important;
  10820. justify-content: center !important;
  10821. }
  10822. .justify-content-xl-between {
  10823. -webkit-box-pack: justify !important;
  10824. -ms-flex-pack: justify !important;
  10825. justify-content: space-between !important;
  10826. }
  10827. .justify-content-xl-around {
  10828. -ms-flex-pack: distribute !important;
  10829. justify-content: space-around !important;
  10830. }
  10831. .justify-content-xl-evenly {
  10832. -webkit-box-pack: space-evenly !important;
  10833. -ms-flex-pack: space-evenly !important;
  10834. justify-content: space-evenly !important;
  10835. }
  10836. .align-items-xl-start {
  10837. -webkit-box-align: start !important;
  10838. -ms-flex-align: start !important;
  10839. align-items: flex-start !important;
  10840. }
  10841. .align-items-xl-end {
  10842. -webkit-box-align: end !important;
  10843. -ms-flex-align: end !important;
  10844. align-items: flex-end !important;
  10845. }
  10846. .align-items-xl-center {
  10847. -webkit-box-align: center !important;
  10848. -ms-flex-align: center !important;
  10849. align-items: center !important;
  10850. }
  10851. .align-items-xl-baseline {
  10852. -webkit-box-align: baseline !important;
  10853. -ms-flex-align: baseline !important;
  10854. align-items: baseline !important;
  10855. }
  10856. .align-items-xl-stretch {
  10857. -webkit-box-align: stretch !important;
  10858. -ms-flex-align: stretch !important;
  10859. align-items: stretch !important;
  10860. }
  10861. .align-content-xl-start {
  10862. -ms-flex-line-pack: start !important;
  10863. align-content: flex-start !important;
  10864. }
  10865. .align-content-xl-end {
  10866. -ms-flex-line-pack: end !important;
  10867. align-content: flex-end !important;
  10868. }
  10869. .align-content-xl-center {
  10870. -ms-flex-line-pack: center !important;
  10871. align-content: center !important;
  10872. }
  10873. .align-content-xl-between {
  10874. -ms-flex-line-pack: justify !important;
  10875. align-content: space-between !important;
  10876. }
  10877. .align-content-xl-around {
  10878. -ms-flex-line-pack: distribute !important;
  10879. align-content: space-around !important;
  10880. }
  10881. .align-content-xl-stretch {
  10882. -ms-flex-line-pack: stretch !important;
  10883. align-content: stretch !important;
  10884. }
  10885. .align-self-xl-auto {
  10886. -ms-flex-item-align: auto !important;
  10887. align-self: auto !important;
  10888. }
  10889. .align-self-xl-start {
  10890. -ms-flex-item-align: start !important;
  10891. align-self: flex-start !important;
  10892. }
  10893. .align-self-xl-end {
  10894. -ms-flex-item-align: end !important;
  10895. align-self: flex-end !important;
  10896. }
  10897. .align-self-xl-center {
  10898. -ms-flex-item-align: center !important;
  10899. align-self: center !important;
  10900. }
  10901. .align-self-xl-baseline {
  10902. -ms-flex-item-align: baseline !important;
  10903. align-self: baseline !important;
  10904. }
  10905. .align-self-xl-stretch {
  10906. -ms-flex-item-align: stretch !important;
  10907. align-self: stretch !important;
  10908. }
  10909. .order-xl-first {
  10910. -webkit-box-ordinal-group: 0 !important;
  10911. -ms-flex-order: -1 !important;
  10912. order: -1 !important;
  10913. }
  10914. .order-xl-0 {
  10915. -webkit-box-ordinal-group: 1 !important;
  10916. -ms-flex-order: 0 !important;
  10917. order: 0 !important;
  10918. }
  10919. .order-xl-1 {
  10920. -webkit-box-ordinal-group: 2 !important;
  10921. -ms-flex-order: 1 !important;
  10922. order: 1 !important;
  10923. }
  10924. .order-xl-2 {
  10925. -webkit-box-ordinal-group: 3 !important;
  10926. -ms-flex-order: 2 !important;
  10927. order: 2 !important;
  10928. }
  10929. .order-xl-3 {
  10930. -webkit-box-ordinal-group: 4 !important;
  10931. -ms-flex-order: 3 !important;
  10932. order: 3 !important;
  10933. }
  10934. .order-xl-4 {
  10935. -webkit-box-ordinal-group: 5 !important;
  10936. -ms-flex-order: 4 !important;
  10937. order: 4 !important;
  10938. }
  10939. .order-xl-5 {
  10940. -webkit-box-ordinal-group: 6 !important;
  10941. -ms-flex-order: 5 !important;
  10942. order: 5 !important;
  10943. }
  10944. .order-xl-last {
  10945. -webkit-box-ordinal-group: 7 !important;
  10946. -ms-flex-order: 6 !important;
  10947. order: 6 !important;
  10948. }
  10949. .m-xl-0 {
  10950. margin: 0 !important;
  10951. }
  10952. .m-xl-1 {
  10953. margin: 0.25rem !important;
  10954. }
  10955. .m-xl-2 {
  10956. margin: 0.5rem !important;
  10957. }
  10958. .m-xl-3 {
  10959. margin: 1rem !important;
  10960. }
  10961. .m-xl-4 {
  10962. margin: 1.5rem !important;
  10963. }
  10964. .m-xl-5 {
  10965. margin: 3rem !important;
  10966. }
  10967. .m-xl-auto {
  10968. margin: auto !important;
  10969. }
  10970. .mx-xl-0 {
  10971. margin-right: 0 !important;
  10972. margin-left: 0 !important;
  10973. }
  10974. .mx-xl-1 {
  10975. margin-right: 0.25rem !important;
  10976. margin-left: 0.25rem !important;
  10977. }
  10978. .mx-xl-2 {
  10979. margin-right: 0.5rem !important;
  10980. margin-left: 0.5rem !important;
  10981. }
  10982. .mx-xl-3 {
  10983. margin-right: 1rem !important;
  10984. margin-left: 1rem !important;
  10985. }
  10986. .mx-xl-4 {
  10987. margin-right: 1.5rem !important;
  10988. margin-left: 1.5rem !important;
  10989. }
  10990. .mx-xl-5 {
  10991. margin-right: 3rem !important;
  10992. margin-left: 3rem !important;
  10993. }
  10994. .mx-xl-auto {
  10995. margin-right: auto !important;
  10996. margin-left: auto !important;
  10997. }
  10998. .my-xl-0 {
  10999. margin-top: 0 !important;
  11000. margin-bottom: 0 !important;
  11001. }
  11002. .my-xl-1 {
  11003. margin-top: 0.25rem !important;
  11004. margin-bottom: 0.25rem !important;
  11005. }
  11006. .my-xl-2 {
  11007. margin-top: 0.5rem !important;
  11008. margin-bottom: 0.5rem !important;
  11009. }
  11010. .my-xl-3 {
  11011. margin-top: 1rem !important;
  11012. margin-bottom: 1rem !important;
  11013. }
  11014. .my-xl-4 {
  11015. margin-top: 1.5rem !important;
  11016. margin-bottom: 1.5rem !important;
  11017. }
  11018. .my-xl-5 {
  11019. margin-top: 3rem !important;
  11020. margin-bottom: 3rem !important;
  11021. }
  11022. .my-xl-auto {
  11023. margin-top: auto !important;
  11024. margin-bottom: auto !important;
  11025. }
  11026. .mt-xl-0 {
  11027. margin-top: 0 !important;
  11028. }
  11029. .mt-xl-1 {
  11030. margin-top: 0.25rem !important;
  11031. }
  11032. .mt-xl-2 {
  11033. margin-top: 0.5rem !important;
  11034. }
  11035. .mt-xl-3 {
  11036. margin-top: 1rem !important;
  11037. }
  11038. .mt-xl-4 {
  11039. margin-top: 1.5rem !important;
  11040. }
  11041. .mt-xl-5 {
  11042. margin-top: 3rem !important;
  11043. }
  11044. .mt-xl-auto {
  11045. margin-top: auto !important;
  11046. }
  11047. .me-xl-0 {
  11048. margin-right: 0 !important;
  11049. }
  11050. .me-xl-1 {
  11051. margin-right: 0.25rem !important;
  11052. }
  11053. .me-xl-2 {
  11054. margin-right: 0.5rem !important;
  11055. }
  11056. .me-xl-3 {
  11057. margin-right: 1rem !important;
  11058. }
  11059. .me-xl-4 {
  11060. margin-right: 1.5rem !important;
  11061. }
  11062. .me-xl-5 {
  11063. margin-right: 3rem !important;
  11064. }
  11065. .me-xl-auto {
  11066. margin-right: auto !important;
  11067. }
  11068. .mb-xl-0 {
  11069. margin-bottom: 0 !important;
  11070. }
  11071. .mb-xl-1 {
  11072. margin-bottom: 0.25rem !important;
  11073. }
  11074. .mb-xl-2 {
  11075. margin-bottom: 0.5rem !important;
  11076. }
  11077. .mb-xl-3 {
  11078. margin-bottom: 1rem !important;
  11079. }
  11080. .mb-xl-4 {
  11081. margin-bottom: 1.5rem !important;
  11082. }
  11083. .mb-xl-5 {
  11084. margin-bottom: 3rem !important;
  11085. }
  11086. .mb-xl-auto {
  11087. margin-bottom: auto !important;
  11088. }
  11089. .ms-xl-0 {
  11090. margin-left: 0 !important;
  11091. }
  11092. .ms-xl-1 {
  11093. margin-left: 0.25rem !important;
  11094. }
  11095. .ms-xl-2 {
  11096. margin-left: 0.5rem !important;
  11097. }
  11098. .ms-xl-3 {
  11099. margin-left: 1rem !important;
  11100. }
  11101. .ms-xl-4 {
  11102. margin-left: 1.5rem !important;
  11103. }
  11104. .ms-xl-5 {
  11105. margin-left: 3rem !important;
  11106. }
  11107. .ms-xl-auto {
  11108. margin-left: auto !important;
  11109. }
  11110. .m-xl-n1 {
  11111. margin: -0.25rem !important;
  11112. }
  11113. .m-xl-n2 {
  11114. margin: -0.5rem !important;
  11115. }
  11116. .m-xl-n3 {
  11117. margin: -1rem !important;
  11118. }
  11119. .m-xl-n4 {
  11120. margin: -1.5rem !important;
  11121. }
  11122. .m-xl-n5 {
  11123. margin: -3rem !important;
  11124. }
  11125. .mx-xl-n1 {
  11126. margin-right: -0.25rem !important;
  11127. margin-left: -0.25rem !important;
  11128. }
  11129. .mx-xl-n2 {
  11130. margin-right: -0.5rem !important;
  11131. margin-left: -0.5rem !important;
  11132. }
  11133. .mx-xl-n3 {
  11134. margin-right: -1rem !important;
  11135. margin-left: -1rem !important;
  11136. }
  11137. .mx-xl-n4 {
  11138. margin-right: -1.5rem !important;
  11139. margin-left: -1.5rem !important;
  11140. }
  11141. .mx-xl-n5 {
  11142. margin-right: -3rem !important;
  11143. margin-left: -3rem !important;
  11144. }
  11145. .my-xl-n1 {
  11146. margin-top: -0.25rem !important;
  11147. margin-bottom: -0.25rem !important;
  11148. }
  11149. .my-xl-n2 {
  11150. margin-top: -0.5rem !important;
  11151. margin-bottom: -0.5rem !important;
  11152. }
  11153. .my-xl-n3 {
  11154. margin-top: -1rem !important;
  11155. margin-bottom: -1rem !important;
  11156. }
  11157. .my-xl-n4 {
  11158. margin-top: -1.5rem !important;
  11159. margin-bottom: -1.5rem !important;
  11160. }
  11161. .my-xl-n5 {
  11162. margin-top: -3rem !important;
  11163. margin-bottom: -3rem !important;
  11164. }
  11165. .mt-xl-n1 {
  11166. margin-top: -0.25rem !important;
  11167. }
  11168. .mt-xl-n2 {
  11169. margin-top: -0.5rem !important;
  11170. }
  11171. .mt-xl-n3 {
  11172. margin-top: -1rem !important;
  11173. }
  11174. .mt-xl-n4 {
  11175. margin-top: -1.5rem !important;
  11176. }
  11177. .mt-xl-n5 {
  11178. margin-top: -3rem !important;
  11179. }
  11180. .me-xl-n1 {
  11181. margin-right: -0.25rem !important;
  11182. }
  11183. .me-xl-n2 {
  11184. margin-right: -0.5rem !important;
  11185. }
  11186. .me-xl-n3 {
  11187. margin-right: -1rem !important;
  11188. }
  11189. .me-xl-n4 {
  11190. margin-right: -1.5rem !important;
  11191. }
  11192. .me-xl-n5 {
  11193. margin-right: -3rem !important;
  11194. }
  11195. .mb-xl-n1 {
  11196. margin-bottom: -0.25rem !important;
  11197. }
  11198. .mb-xl-n2 {
  11199. margin-bottom: -0.5rem !important;
  11200. }
  11201. .mb-xl-n3 {
  11202. margin-bottom: -1rem !important;
  11203. }
  11204. .mb-xl-n4 {
  11205. margin-bottom: -1.5rem !important;
  11206. }
  11207. .mb-xl-n5 {
  11208. margin-bottom: -3rem !important;
  11209. }
  11210. .ms-xl-n1 {
  11211. margin-left: -0.25rem !important;
  11212. }
  11213. .ms-xl-n2 {
  11214. margin-left: -0.5rem !important;
  11215. }
  11216. .ms-xl-n3 {
  11217. margin-left: -1rem !important;
  11218. }
  11219. .ms-xl-n4 {
  11220. margin-left: -1.5rem !important;
  11221. }
  11222. .ms-xl-n5 {
  11223. margin-left: -3rem !important;
  11224. }
  11225. .p-xl-0 {
  11226. padding: 0 !important;
  11227. }
  11228. .p-xl-1 {
  11229. padding: 0.25rem !important;
  11230. }
  11231. .p-xl-2 {
  11232. padding: 0.5rem !important;
  11233. }
  11234. .p-xl-3 {
  11235. padding: 1rem !important;
  11236. }
  11237. .p-xl-4 {
  11238. padding: 1.5rem !important;
  11239. }
  11240. .p-xl-5 {
  11241. padding: 3rem !important;
  11242. }
  11243. .px-xl-0 {
  11244. padding-right: 0 !important;
  11245. padding-left: 0 !important;
  11246. }
  11247. .px-xl-1 {
  11248. padding-right: 0.25rem !important;
  11249. padding-left: 0.25rem !important;
  11250. }
  11251. .px-xl-2 {
  11252. padding-right: 0.5rem !important;
  11253. padding-left: 0.5rem !important;
  11254. }
  11255. .px-xl-3 {
  11256. padding-right: 1rem !important;
  11257. padding-left: 1rem !important;
  11258. }
  11259. .px-xl-4 {
  11260. padding-right: 1.5rem !important;
  11261. padding-left: 1.5rem !important;
  11262. }
  11263. .px-xl-5 {
  11264. padding-right: 3rem !important;
  11265. padding-left: 3rem !important;
  11266. }
  11267. .py-xl-0 {
  11268. padding-top: 0 !important;
  11269. padding-bottom: 0 !important;
  11270. }
  11271. .py-xl-1 {
  11272. padding-top: 0.25rem !important;
  11273. padding-bottom: 0.25rem !important;
  11274. }
  11275. .py-xl-2 {
  11276. padding-top: 0.5rem !important;
  11277. padding-bottom: 0.5rem !important;
  11278. }
  11279. .py-xl-3 {
  11280. padding-top: 1rem !important;
  11281. padding-bottom: 1rem !important;
  11282. }
  11283. .py-xl-4 {
  11284. padding-top: 1.5rem !important;
  11285. padding-bottom: 1.5rem !important;
  11286. }
  11287. .py-xl-5 {
  11288. padding-top: 3rem !important;
  11289. padding-bottom: 3rem !important;
  11290. }
  11291. .pt-xl-0 {
  11292. padding-top: 0 !important;
  11293. }
  11294. .pt-xl-1 {
  11295. padding-top: 0.25rem !important;
  11296. }
  11297. .pt-xl-2 {
  11298. padding-top: 0.5rem !important;
  11299. }
  11300. .pt-xl-3 {
  11301. padding-top: 1rem !important;
  11302. }
  11303. .pt-xl-4 {
  11304. padding-top: 1.5rem !important;
  11305. }
  11306. .pt-xl-5 {
  11307. padding-top: 3rem !important;
  11308. }
  11309. .pe-xl-0 {
  11310. padding-right: 0 !important;
  11311. }
  11312. .pe-xl-1 {
  11313. padding-right: 0.25rem !important;
  11314. }
  11315. .pe-xl-2 {
  11316. padding-right: 0.5rem !important;
  11317. }
  11318. .pe-xl-3 {
  11319. padding-right: 1rem !important;
  11320. }
  11321. .pe-xl-4 {
  11322. padding-right: 1.5rem !important;
  11323. }
  11324. .pe-xl-5 {
  11325. padding-right: 3rem !important;
  11326. }
  11327. .pb-xl-0 {
  11328. padding-bottom: 0 !important;
  11329. }
  11330. .pb-xl-1 {
  11331. padding-bottom: 0.25rem !important;
  11332. }
  11333. .pb-xl-2 {
  11334. padding-bottom: 0.5rem !important;
  11335. }
  11336. .pb-xl-3 {
  11337. padding-bottom: 1rem !important;
  11338. }
  11339. .pb-xl-4 {
  11340. padding-bottom: 1.5rem !important;
  11341. }
  11342. .pb-xl-5 {
  11343. padding-bottom: 3rem !important;
  11344. }
  11345. .ps-xl-0 {
  11346. padding-left: 0 !important;
  11347. }
  11348. .ps-xl-1 {
  11349. padding-left: 0.25rem !important;
  11350. }
  11351. .ps-xl-2 {
  11352. padding-left: 0.5rem !important;
  11353. }
  11354. .ps-xl-3 {
  11355. padding-left: 1rem !important;
  11356. }
  11357. .ps-xl-4 {
  11358. padding-left: 1.5rem !important;
  11359. }
  11360. .ps-xl-5 {
  11361. padding-left: 3rem !important;
  11362. }
  11363. .gap-xl-0 {
  11364. gap: 0 !important;
  11365. }
  11366. .gap-xl-1 {
  11367. gap: 0.25rem !important;
  11368. }
  11369. .gap-xl-2 {
  11370. gap: 0.5rem !important;
  11371. }
  11372. .gap-xl-3 {
  11373. gap: 1rem !important;
  11374. }
  11375. .gap-xl-4 {
  11376. gap: 1.5rem !important;
  11377. }
  11378. .gap-xl-5 {
  11379. gap: 3rem !important;
  11380. }
  11381. .text-xl-start {
  11382. text-align: left !important;
  11383. }
  11384. .text-xl-end {
  11385. text-align: right !important;
  11386. }
  11387. .text-xl-center {
  11388. text-align: center !important;
  11389. }
  11390. }
  11391. @media (min-width: 1400px) {
  11392. .float-xxl-start {
  11393. float: left !important;
  11394. }
  11395. .float-xxl-end {
  11396. float: right !important;
  11397. }
  11398. .float-xxl-none {
  11399. float: none !important;
  11400. }
  11401. .d-xxl-inline {
  11402. display: inline !important;
  11403. }
  11404. .d-xxl-inline-block {
  11405. display: inline-block !important;
  11406. }
  11407. .d-xxl-block {
  11408. display: block !important;
  11409. }
  11410. .d-xxl-grid {
  11411. display: grid !important;
  11412. }
  11413. .d-xxl-table {
  11414. display: table !important;
  11415. }
  11416. .d-xxl-table-row {
  11417. display: table-row !important;
  11418. }
  11419. .d-xxl-table-cell {
  11420. display: table-cell !important;
  11421. }
  11422. .d-xxl-flex {
  11423. display: -webkit-box !important;
  11424. display: -ms-flexbox !important;
  11425. display: flex !important;
  11426. }
  11427. .d-xxl-inline-flex {
  11428. display: -webkit-inline-box !important;
  11429. display: -ms-inline-flexbox !important;
  11430. display: inline-flex !important;
  11431. }
  11432. .d-xxl-none {
  11433. display: none !important;
  11434. }
  11435. .flex-xxl-fill {
  11436. -webkit-box-flex: 1 !important;
  11437. -ms-flex: 1 1 auto !important;
  11438. flex: 1 1 auto !important;
  11439. }
  11440. .flex-xxl-row {
  11441. -webkit-box-orient: horizontal !important;
  11442. -webkit-box-direction: normal !important;
  11443. -ms-flex-direction: row !important;
  11444. flex-direction: row !important;
  11445. }
  11446. .flex-xxl-column {
  11447. -webkit-box-orient: vertical !important;
  11448. -webkit-box-direction: normal !important;
  11449. -ms-flex-direction: column !important;
  11450. flex-direction: column !important;
  11451. }
  11452. .flex-xxl-row-reverse {
  11453. -webkit-box-orient: horizontal !important;
  11454. -webkit-box-direction: reverse !important;
  11455. -ms-flex-direction: row-reverse !important;
  11456. flex-direction: row-reverse !important;
  11457. }
  11458. .flex-xxl-column-reverse {
  11459. -webkit-box-orient: vertical !important;
  11460. -webkit-box-direction: reverse !important;
  11461. -ms-flex-direction: column-reverse !important;
  11462. flex-direction: column-reverse !important;
  11463. }
  11464. .flex-xxl-grow-0 {
  11465. -webkit-box-flex: 0 !important;
  11466. -ms-flex-positive: 0 !important;
  11467. flex-grow: 0 !important;
  11468. }
  11469. .flex-xxl-grow-1 {
  11470. -webkit-box-flex: 1 !important;
  11471. -ms-flex-positive: 1 !important;
  11472. flex-grow: 1 !important;
  11473. }
  11474. .flex-xxl-shrink-0 {
  11475. -ms-flex-negative: 0 !important;
  11476. flex-shrink: 0 !important;
  11477. }
  11478. .flex-xxl-shrink-1 {
  11479. -ms-flex-negative: 1 !important;
  11480. flex-shrink: 1 !important;
  11481. }
  11482. .flex-xxl-wrap {
  11483. -ms-flex-wrap: wrap !important;
  11484. flex-wrap: wrap !important;
  11485. }
  11486. .flex-xxl-nowrap {
  11487. -ms-flex-wrap: nowrap !important;
  11488. flex-wrap: nowrap !important;
  11489. }
  11490. .flex-xxl-wrap-reverse {
  11491. -ms-flex-wrap: wrap-reverse !important;
  11492. flex-wrap: wrap-reverse !important;
  11493. }
  11494. .justify-content-xxl-start {
  11495. -webkit-box-pack: start !important;
  11496. -ms-flex-pack: start !important;
  11497. justify-content: flex-start !important;
  11498. }
  11499. .justify-content-xxl-end {
  11500. -webkit-box-pack: end !important;
  11501. -ms-flex-pack: end !important;
  11502. justify-content: flex-end !important;
  11503. }
  11504. .justify-content-xxl-center {
  11505. -webkit-box-pack: center !important;
  11506. -ms-flex-pack: center !important;
  11507. justify-content: center !important;
  11508. }
  11509. .justify-content-xxl-between {
  11510. -webkit-box-pack: justify !important;
  11511. -ms-flex-pack: justify !important;
  11512. justify-content: space-between !important;
  11513. }
  11514. .justify-content-xxl-around {
  11515. -ms-flex-pack: distribute !important;
  11516. justify-content: space-around !important;
  11517. }
  11518. .justify-content-xxl-evenly {
  11519. -webkit-box-pack: space-evenly !important;
  11520. -ms-flex-pack: space-evenly !important;
  11521. justify-content: space-evenly !important;
  11522. }
  11523. .align-items-xxl-start {
  11524. -webkit-box-align: start !important;
  11525. -ms-flex-align: start !important;
  11526. align-items: flex-start !important;
  11527. }
  11528. .align-items-xxl-end {
  11529. -webkit-box-align: end !important;
  11530. -ms-flex-align: end !important;
  11531. align-items: flex-end !important;
  11532. }
  11533. .align-items-xxl-center {
  11534. -webkit-box-align: center !important;
  11535. -ms-flex-align: center !important;
  11536. align-items: center !important;
  11537. }
  11538. .align-items-xxl-baseline {
  11539. -webkit-box-align: baseline !important;
  11540. -ms-flex-align: baseline !important;
  11541. align-items: baseline !important;
  11542. }
  11543. .align-items-xxl-stretch {
  11544. -webkit-box-align: stretch !important;
  11545. -ms-flex-align: stretch !important;
  11546. align-items: stretch !important;
  11547. }
  11548. .align-content-xxl-start {
  11549. -ms-flex-line-pack: start !important;
  11550. align-content: flex-start !important;
  11551. }
  11552. .align-content-xxl-end {
  11553. -ms-flex-line-pack: end !important;
  11554. align-content: flex-end !important;
  11555. }
  11556. .align-content-xxl-center {
  11557. -ms-flex-line-pack: center !important;
  11558. align-content: center !important;
  11559. }
  11560. .align-content-xxl-between {
  11561. -ms-flex-line-pack: justify !important;
  11562. align-content: space-between !important;
  11563. }
  11564. .align-content-xxl-around {
  11565. -ms-flex-line-pack: distribute !important;
  11566. align-content: space-around !important;
  11567. }
  11568. .align-content-xxl-stretch {
  11569. -ms-flex-line-pack: stretch !important;
  11570. align-content: stretch !important;
  11571. }
  11572. .align-self-xxl-auto {
  11573. -ms-flex-item-align: auto !important;
  11574. align-self: auto !important;
  11575. }
  11576. .align-self-xxl-start {
  11577. -ms-flex-item-align: start !important;
  11578. align-self: flex-start !important;
  11579. }
  11580. .align-self-xxl-end {
  11581. -ms-flex-item-align: end !important;
  11582. align-self: flex-end !important;
  11583. }
  11584. .align-self-xxl-center {
  11585. -ms-flex-item-align: center !important;
  11586. align-self: center !important;
  11587. }
  11588. .align-self-xxl-baseline {
  11589. -ms-flex-item-align: baseline !important;
  11590. align-self: baseline !important;
  11591. }
  11592. .align-self-xxl-stretch {
  11593. -ms-flex-item-align: stretch !important;
  11594. align-self: stretch !important;
  11595. }
  11596. .order-xxl-first {
  11597. -webkit-box-ordinal-group: 0 !important;
  11598. -ms-flex-order: -1 !important;
  11599. order: -1 !important;
  11600. }
  11601. .order-xxl-0 {
  11602. -webkit-box-ordinal-group: 1 !important;
  11603. -ms-flex-order: 0 !important;
  11604. order: 0 !important;
  11605. }
  11606. .order-xxl-1 {
  11607. -webkit-box-ordinal-group: 2 !important;
  11608. -ms-flex-order: 1 !important;
  11609. order: 1 !important;
  11610. }
  11611. .order-xxl-2 {
  11612. -webkit-box-ordinal-group: 3 !important;
  11613. -ms-flex-order: 2 !important;
  11614. order: 2 !important;
  11615. }
  11616. .order-xxl-3 {
  11617. -webkit-box-ordinal-group: 4 !important;
  11618. -ms-flex-order: 3 !important;
  11619. order: 3 !important;
  11620. }
  11621. .order-xxl-4 {
  11622. -webkit-box-ordinal-group: 5 !important;
  11623. -ms-flex-order: 4 !important;
  11624. order: 4 !important;
  11625. }
  11626. .order-xxl-5 {
  11627. -webkit-box-ordinal-group: 6 !important;
  11628. -ms-flex-order: 5 !important;
  11629. order: 5 !important;
  11630. }
  11631. .order-xxl-last {
  11632. -webkit-box-ordinal-group: 7 !important;
  11633. -ms-flex-order: 6 !important;
  11634. order: 6 !important;
  11635. }
  11636. .m-xxl-0 {
  11637. margin: 0 !important;
  11638. }
  11639. .m-xxl-1 {
  11640. margin: 0.25rem !important;
  11641. }
  11642. .m-xxl-2 {
  11643. margin: 0.5rem !important;
  11644. }
  11645. .m-xxl-3 {
  11646. margin: 1rem !important;
  11647. }
  11648. .m-xxl-4 {
  11649. margin: 1.5rem !important;
  11650. }
  11651. .m-xxl-5 {
  11652. margin: 3rem !important;
  11653. }
  11654. .m-xxl-auto {
  11655. margin: auto !important;
  11656. }
  11657. .mx-xxl-0 {
  11658. margin-right: 0 !important;
  11659. margin-left: 0 !important;
  11660. }
  11661. .mx-xxl-1 {
  11662. margin-right: 0.25rem !important;
  11663. margin-left: 0.25rem !important;
  11664. }
  11665. .mx-xxl-2 {
  11666. margin-right: 0.5rem !important;
  11667. margin-left: 0.5rem !important;
  11668. }
  11669. .mx-xxl-3 {
  11670. margin-right: 1rem !important;
  11671. margin-left: 1rem !important;
  11672. }
  11673. .mx-xxl-4 {
  11674. margin-right: 1.5rem !important;
  11675. margin-left: 1.5rem !important;
  11676. }
  11677. .mx-xxl-5 {
  11678. margin-right: 3rem !important;
  11679. margin-left: 3rem !important;
  11680. }
  11681. .mx-xxl-auto {
  11682. margin-right: auto !important;
  11683. margin-left: auto !important;
  11684. }
  11685. .my-xxl-0 {
  11686. margin-top: 0 !important;
  11687. margin-bottom: 0 !important;
  11688. }
  11689. .my-xxl-1 {
  11690. margin-top: 0.25rem !important;
  11691. margin-bottom: 0.25rem !important;
  11692. }
  11693. .my-xxl-2 {
  11694. margin-top: 0.5rem !important;
  11695. margin-bottom: 0.5rem !important;
  11696. }
  11697. .my-xxl-3 {
  11698. margin-top: 1rem !important;
  11699. margin-bottom: 1rem !important;
  11700. }
  11701. .my-xxl-4 {
  11702. margin-top: 1.5rem !important;
  11703. margin-bottom: 1.5rem !important;
  11704. }
  11705. .my-xxl-5 {
  11706. margin-top: 3rem !important;
  11707. margin-bottom: 3rem !important;
  11708. }
  11709. .my-xxl-auto {
  11710. margin-top: auto !important;
  11711. margin-bottom: auto !important;
  11712. }
  11713. .mt-xxl-0 {
  11714. margin-top: 0 !important;
  11715. }
  11716. .mt-xxl-1 {
  11717. margin-top: 0.25rem !important;
  11718. }
  11719. .mt-xxl-2 {
  11720. margin-top: 0.5rem !important;
  11721. }
  11722. .mt-xxl-3 {
  11723. margin-top: 1rem !important;
  11724. }
  11725. .mt-xxl-4 {
  11726. margin-top: 1.5rem !important;
  11727. }
  11728. .mt-xxl-5 {
  11729. margin-top: 3rem !important;
  11730. }
  11731. .mt-xxl-auto {
  11732. margin-top: auto !important;
  11733. }
  11734. .me-xxl-0 {
  11735. margin-right: 0 !important;
  11736. }
  11737. .me-xxl-1 {
  11738. margin-right: 0.25rem !important;
  11739. }
  11740. .me-xxl-2 {
  11741. margin-right: 0.5rem !important;
  11742. }
  11743. .me-xxl-3 {
  11744. margin-right: 1rem !important;
  11745. }
  11746. .me-xxl-4 {
  11747. margin-right: 1.5rem !important;
  11748. }
  11749. .me-xxl-5 {
  11750. margin-right: 3rem !important;
  11751. }
  11752. .me-xxl-auto {
  11753. margin-right: auto !important;
  11754. }
  11755. .mb-xxl-0 {
  11756. margin-bottom: 0 !important;
  11757. }
  11758. .mb-xxl-1 {
  11759. margin-bottom: 0.25rem !important;
  11760. }
  11761. .mb-xxl-2 {
  11762. margin-bottom: 0.5rem !important;
  11763. }
  11764. .mb-xxl-3 {
  11765. margin-bottom: 1rem !important;
  11766. }
  11767. .mb-xxl-4 {
  11768. margin-bottom: 1.5rem !important;
  11769. }
  11770. .mb-xxl-5 {
  11771. margin-bottom: 3rem !important;
  11772. }
  11773. .mb-xxl-auto {
  11774. margin-bottom: auto !important;
  11775. }
  11776. .ms-xxl-0 {
  11777. margin-left: 0 !important;
  11778. }
  11779. .ms-xxl-1 {
  11780. margin-left: 0.25rem !important;
  11781. }
  11782. .ms-xxl-2 {
  11783. margin-left: 0.5rem !important;
  11784. }
  11785. .ms-xxl-3 {
  11786. margin-left: 1rem !important;
  11787. }
  11788. .ms-xxl-4 {
  11789. margin-left: 1.5rem !important;
  11790. }
  11791. .ms-xxl-5 {
  11792. margin-left: 3rem !important;
  11793. }
  11794. .ms-xxl-auto {
  11795. margin-left: auto !important;
  11796. }
  11797. .m-xxl-n1 {
  11798. margin: -0.25rem !important;
  11799. }
  11800. .m-xxl-n2 {
  11801. margin: -0.5rem !important;
  11802. }
  11803. .m-xxl-n3 {
  11804. margin: -1rem !important;
  11805. }
  11806. .m-xxl-n4 {
  11807. margin: -1.5rem !important;
  11808. }
  11809. .m-xxl-n5 {
  11810. margin: -3rem !important;
  11811. }
  11812. .mx-xxl-n1 {
  11813. margin-right: -0.25rem !important;
  11814. margin-left: -0.25rem !important;
  11815. }
  11816. .mx-xxl-n2 {
  11817. margin-right: -0.5rem !important;
  11818. margin-left: -0.5rem !important;
  11819. }
  11820. .mx-xxl-n3 {
  11821. margin-right: -1rem !important;
  11822. margin-left: -1rem !important;
  11823. }
  11824. .mx-xxl-n4 {
  11825. margin-right: -1.5rem !important;
  11826. margin-left: -1.5rem !important;
  11827. }
  11828. .mx-xxl-n5 {
  11829. margin-right: -3rem !important;
  11830. margin-left: -3rem !important;
  11831. }
  11832. .my-xxl-n1 {
  11833. margin-top: -0.25rem !important;
  11834. margin-bottom: -0.25rem !important;
  11835. }
  11836. .my-xxl-n2 {
  11837. margin-top: -0.5rem !important;
  11838. margin-bottom: -0.5rem !important;
  11839. }
  11840. .my-xxl-n3 {
  11841. margin-top: -1rem !important;
  11842. margin-bottom: -1rem !important;
  11843. }
  11844. .my-xxl-n4 {
  11845. margin-top: -1.5rem !important;
  11846. margin-bottom: -1.5rem !important;
  11847. }
  11848. .my-xxl-n5 {
  11849. margin-top: -3rem !important;
  11850. margin-bottom: -3rem !important;
  11851. }
  11852. .mt-xxl-n1 {
  11853. margin-top: -0.25rem !important;
  11854. }
  11855. .mt-xxl-n2 {
  11856. margin-top: -0.5rem !important;
  11857. }
  11858. .mt-xxl-n3 {
  11859. margin-top: -1rem !important;
  11860. }
  11861. .mt-xxl-n4 {
  11862. margin-top: -1.5rem !important;
  11863. }
  11864. .mt-xxl-n5 {
  11865. margin-top: -3rem !important;
  11866. }
  11867. .me-xxl-n1 {
  11868. margin-right: -0.25rem !important;
  11869. }
  11870. .me-xxl-n2 {
  11871. margin-right: -0.5rem !important;
  11872. }
  11873. .me-xxl-n3 {
  11874. margin-right: -1rem !important;
  11875. }
  11876. .me-xxl-n4 {
  11877. margin-right: -1.5rem !important;
  11878. }
  11879. .me-xxl-n5 {
  11880. margin-right: -3rem !important;
  11881. }
  11882. .mb-xxl-n1 {
  11883. margin-bottom: -0.25rem !important;
  11884. }
  11885. .mb-xxl-n2 {
  11886. margin-bottom: -0.5rem !important;
  11887. }
  11888. .mb-xxl-n3 {
  11889. margin-bottom: -1rem !important;
  11890. }
  11891. .mb-xxl-n4 {
  11892. margin-bottom: -1.5rem !important;
  11893. }
  11894. .mb-xxl-n5 {
  11895. margin-bottom: -3rem !important;
  11896. }
  11897. .ms-xxl-n1 {
  11898. margin-left: -0.25rem !important;
  11899. }
  11900. .ms-xxl-n2 {
  11901. margin-left: -0.5rem !important;
  11902. }
  11903. .ms-xxl-n3 {
  11904. margin-left: -1rem !important;
  11905. }
  11906. .ms-xxl-n4 {
  11907. margin-left: -1.5rem !important;
  11908. }
  11909. .ms-xxl-n5 {
  11910. margin-left: -3rem !important;
  11911. }
  11912. .p-xxl-0 {
  11913. padding: 0 !important;
  11914. }
  11915. .p-xxl-1 {
  11916. padding: 0.25rem !important;
  11917. }
  11918. .p-xxl-2 {
  11919. padding: 0.5rem !important;
  11920. }
  11921. .p-xxl-3 {
  11922. padding: 1rem !important;
  11923. }
  11924. .p-xxl-4 {
  11925. padding: 1.5rem !important;
  11926. }
  11927. .p-xxl-5 {
  11928. padding: 3rem !important;
  11929. }
  11930. .px-xxl-0 {
  11931. padding-right: 0 !important;
  11932. padding-left: 0 !important;
  11933. }
  11934. .px-xxl-1 {
  11935. padding-right: 0.25rem !important;
  11936. padding-left: 0.25rem !important;
  11937. }
  11938. .px-xxl-2 {
  11939. padding-right: 0.5rem !important;
  11940. padding-left: 0.5rem !important;
  11941. }
  11942. .px-xxl-3 {
  11943. padding-right: 1rem !important;
  11944. padding-left: 1rem !important;
  11945. }
  11946. .px-xxl-4 {
  11947. padding-right: 1.5rem !important;
  11948. padding-left: 1.5rem !important;
  11949. }
  11950. .px-xxl-5 {
  11951. padding-right: 3rem !important;
  11952. padding-left: 3rem !important;
  11953. }
  11954. .py-xxl-0 {
  11955. padding-top: 0 !important;
  11956. padding-bottom: 0 !important;
  11957. }
  11958. .py-xxl-1 {
  11959. padding-top: 0.25rem !important;
  11960. padding-bottom: 0.25rem !important;
  11961. }
  11962. .py-xxl-2 {
  11963. padding-top: 0.5rem !important;
  11964. padding-bottom: 0.5rem !important;
  11965. }
  11966. .py-xxl-3 {
  11967. padding-top: 1rem !important;
  11968. padding-bottom: 1rem !important;
  11969. }
  11970. .py-xxl-4 {
  11971. padding-top: 1.5rem !important;
  11972. padding-bottom: 1.5rem !important;
  11973. }
  11974. .py-xxl-5 {
  11975. padding-top: 3rem !important;
  11976. padding-bottom: 3rem !important;
  11977. }
  11978. .pt-xxl-0 {
  11979. padding-top: 0 !important;
  11980. }
  11981. .pt-xxl-1 {
  11982. padding-top: 0.25rem !important;
  11983. }
  11984. .pt-xxl-2 {
  11985. padding-top: 0.5rem !important;
  11986. }
  11987. .pt-xxl-3 {
  11988. padding-top: 1rem !important;
  11989. }
  11990. .pt-xxl-4 {
  11991. padding-top: 1.5rem !important;
  11992. }
  11993. .pt-xxl-5 {
  11994. padding-top: 3rem !important;
  11995. }
  11996. .pe-xxl-0 {
  11997. padding-right: 0 !important;
  11998. }
  11999. .pe-xxl-1 {
  12000. padding-right: 0.25rem !important;
  12001. }
  12002. .pe-xxl-2 {
  12003. padding-right: 0.5rem !important;
  12004. }
  12005. .pe-xxl-3 {
  12006. padding-right: 1rem !important;
  12007. }
  12008. .pe-xxl-4 {
  12009. padding-right: 1.5rem !important;
  12010. }
  12011. .pe-xxl-5 {
  12012. padding-right: 3rem !important;
  12013. }
  12014. .pb-xxl-0 {
  12015. padding-bottom: 0 !important;
  12016. }
  12017. .pb-xxl-1 {
  12018. padding-bottom: 0.25rem !important;
  12019. }
  12020. .pb-xxl-2 {
  12021. padding-bottom: 0.5rem !important;
  12022. }
  12023. .pb-xxl-3 {
  12024. padding-bottom: 1rem !important;
  12025. }
  12026. .pb-xxl-4 {
  12027. padding-bottom: 1.5rem !important;
  12028. }
  12029. .pb-xxl-5 {
  12030. padding-bottom: 3rem !important;
  12031. }
  12032. .ps-xxl-0 {
  12033. padding-left: 0 !important;
  12034. }
  12035. .ps-xxl-1 {
  12036. padding-left: 0.25rem !important;
  12037. }
  12038. .ps-xxl-2 {
  12039. padding-left: 0.5rem !important;
  12040. }
  12041. .ps-xxl-3 {
  12042. padding-left: 1rem !important;
  12043. }
  12044. .ps-xxl-4 {
  12045. padding-left: 1.5rem !important;
  12046. }
  12047. .ps-xxl-5 {
  12048. padding-left: 3rem !important;
  12049. }
  12050. .gap-xxl-0 {
  12051. gap: 0 !important;
  12052. }
  12053. .gap-xxl-1 {
  12054. gap: 0.25rem !important;
  12055. }
  12056. .gap-xxl-2 {
  12057. gap: 0.5rem !important;
  12058. }
  12059. .gap-xxl-3 {
  12060. gap: 1rem !important;
  12061. }
  12062. .gap-xxl-4 {
  12063. gap: 1.5rem !important;
  12064. }
  12065. .gap-xxl-5 {
  12066. gap: 3rem !important;
  12067. }
  12068. .text-xxl-start {
  12069. text-align: left !important;
  12070. }
  12071. .text-xxl-end {
  12072. text-align: right !important;
  12073. }
  12074. .text-xxl-center {
  12075. text-align: center !important;
  12076. }
  12077. }
  12078. @media (min-width: 1200px) {
  12079. .fs-1 {
  12080. font-size: 2.03125rem !important;
  12081. }
  12082. .fs-2 {
  12083. font-size: 1.625rem !important;
  12084. }
  12085. .fs-3 {
  12086. font-size: 1.421875rem !important;
  12087. }
  12088. }
  12089. @media print {
  12090. .d-print-inline {
  12091. display: inline !important;
  12092. }
  12093. .d-print-inline-block {
  12094. display: inline-block !important;
  12095. }
  12096. .d-print-block {
  12097. display: block !important;
  12098. }
  12099. .d-print-grid {
  12100. display: grid !important;
  12101. }
  12102. .d-print-table {
  12103. display: table !important;
  12104. }
  12105. .d-print-table-row {
  12106. display: table-row !important;
  12107. }
  12108. .d-print-table-cell {
  12109. display: table-cell !important;
  12110. }
  12111. .d-print-flex {
  12112. display: -webkit-box !important;
  12113. display: -ms-flexbox !important;
  12114. display: flex !important;
  12115. }
  12116. .d-print-inline-flex {
  12117. display: -webkit-inline-box !important;
  12118. display: -ms-inline-flexbox !important;
  12119. display: inline-flex !important;
  12120. }
  12121. .d-print-none {
  12122. display: none !important;
  12123. }
  12124. }
  12125. /* =============
  12126. General
  12127. ============= */
  12128. html {
  12129. position: relative;
  12130. min-height: 100%;
  12131. }
  12132. a {
  12133. text-decoration: none !important;
  12134. }
  12135. label {
  12136. font-weight: 500;
  12137. margin-bottom: 0.5rem;
  12138. }
  12139. .blockquote {
  12140. padding: 10px 20px;
  12141. border-left: 4px solid var(--bs-gray-300);
  12142. }
  12143. .blockquote-reverse {
  12144. border-left: 0;
  12145. border-right: 4px solid var(--bs-gray-300);
  12146. text-align: right;
  12147. }
  12148. @media (min-width: 1200px) {
  12149. .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  12150. max-width: 1140px;
  12151. }
  12152. }
  12153. .row > * {
  12154. position: relative;
  12155. }
  12156. .bg-primary.bg-soft {
  12157. background-color: rgba(85, 110, 230, 0.25) !important;
  12158. }
  12159. .bg-secondary.bg-soft {
  12160. background-color: rgba(116, 120, 141, 0.25) !important;
  12161. }
  12162. .bg-success.bg-soft {
  12163. background-color: rgba(52, 195, 143, 0.25) !important;
  12164. }
  12165. .bg-info.bg-soft {
  12166. background-color: rgba(80, 165, 241, 0.25) !important;
  12167. }
  12168. .bg-warning.bg-soft {
  12169. background-color: rgba(241, 180, 76, 0.25) !important;
  12170. }
  12171. .bg-danger.bg-soft {
  12172. background-color: rgba(244, 106, 106, 0.25) !important;
  12173. }
  12174. .bg-pink.bg-soft {
  12175. background-color: rgba(232, 62, 140, 0.25) !important;
  12176. }
  12177. .bg-light.bg-soft {
  12178. background-color: rgba(239, 242, 247, 0.25) !important;
  12179. }
  12180. .bg-dark.bg-soft {
  12181. background-color: rgba(52, 58, 64, 0.25) !important;
  12182. }
  12183. .badge[href]:hover, .badge[href]:focus {
  12184. color: var(--bs-custom-white);
  12185. }
  12186. .badge.bg-primary[href]:hover, .badge.bg-primary[href]:focus {
  12187. background-color: #435fe3 !important;
  12188. }
  12189. .badge.bg-light {
  12190. color: var(--bs-body-color);
  12191. }
  12192. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  12193. color: var(--bs-body-color);
  12194. }
  12195. .badge-soft-primary {
  12196. color: #556ee6;
  12197. background-color: rgba(85, 110, 230, 0.18);
  12198. }
  12199. .badge-soft-primary[href]:hover, .badge-soft-primary[href]:focus {
  12200. color: #556ee6;
  12201. text-decoration: none;
  12202. background-color: rgba(85, 110, 230, 0.4);
  12203. }
  12204. .badge.bg-secondary[href]:hover, .badge.bg-secondary[href]:focus {
  12205. background-color: #6b6e82 !important;
  12206. }
  12207. .badge.bg-light {
  12208. color: var(--bs-body-color);
  12209. }
  12210. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  12211. color: var(--bs-body-color);
  12212. }
  12213. .badge-soft-secondary {
  12214. color: #74788d;
  12215. background-color: rgba(116, 120, 141, 0.18);
  12216. }
  12217. .badge-soft-secondary[href]:hover, .badge-soft-secondary[href]:focus {
  12218. color: #74788d;
  12219. text-decoration: none;
  12220. background-color: rgba(116, 120, 141, 0.4);
  12221. }
  12222. .badge.bg-success[href]:hover, .badge.bg-success[href]:focus {
  12223. background-color: #30b383 !important;
  12224. }
  12225. .badge.bg-light {
  12226. color: var(--bs-body-color);
  12227. }
  12228. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  12229. color: var(--bs-body-color);
  12230. }
  12231. .badge-soft-success {
  12232. color: #34c38f;
  12233. background-color: rgba(52, 195, 143, 0.18);
  12234. }
  12235. .badge-soft-success[href]:hover, .badge-soft-success[href]:focus {
  12236. color: #34c38f;
  12237. text-decoration: none;
  12238. background-color: rgba(52, 195, 143, 0.4);
  12239. }
  12240. .badge.bg-info[href]:hover, .badge.bg-info[href]:focus {
  12241. background-color: #3d9bef !important;
  12242. }
  12243. .badge.bg-light {
  12244. color: var(--bs-body-color);
  12245. }
  12246. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  12247. color: var(--bs-body-color);
  12248. }
  12249. .badge-soft-info {
  12250. color: #50a5f1;
  12251. background-color: rgba(80, 165, 241, 0.18);
  12252. }
  12253. .badge-soft-info[href]:hover, .badge-soft-info[href]:focus {
  12254. color: #50a5f1;
  12255. text-decoration: none;
  12256. background-color: rgba(80, 165, 241, 0.4);
  12257. }
  12258. .badge.bg-warning[href]:hover, .badge.bg-warning[href]:focus {
  12259. background-color: #f0ac39 !important;
  12260. }
  12261. .badge.bg-light {
  12262. color: var(--bs-body-color);
  12263. }
  12264. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  12265. color: var(--bs-body-color);
  12266. }
  12267. .badge-soft-warning {
  12268. color: #f1b44c;
  12269. background-color: rgba(241, 180, 76, 0.18);
  12270. }
  12271. .badge-soft-warning[href]:hover, .badge-soft-warning[href]:focus {
  12272. color: #f1b44c;
  12273. text-decoration: none;
  12274. background-color: rgba(241, 180, 76, 0.4);
  12275. }
  12276. .badge.bg-danger[href]:hover, .badge.bg-danger[href]:focus {
  12277. background-color: #f35757 !important;
  12278. }
  12279. .badge.bg-light {
  12280. color: var(--bs-body-color);
  12281. }
  12282. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  12283. color: var(--bs-body-color);
  12284. }
  12285. .badge-soft-danger {
  12286. color: #f46a6a;
  12287. background-color: rgba(244, 106, 106, 0.18);
  12288. }
  12289. .badge-soft-danger[href]:hover, .badge-soft-danger[href]:focus {
  12290. color: #f46a6a;
  12291. text-decoration: none;
  12292. background-color: rgba(244, 106, 106, 0.4);
  12293. }
  12294. .badge.bg-pink[href]:hover, .badge.bg-pink[href]:focus {
  12295. background-color: #e62c81 !important;
  12296. }
  12297. .badge.bg-light {
  12298. color: var(--bs-body-color);
  12299. }
  12300. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  12301. color: var(--bs-body-color);
  12302. }
  12303. .badge-soft-pink {
  12304. color: #e83e8c;
  12305. background-color: rgba(232, 62, 140, 0.18);
  12306. }
  12307. .badge-soft-pink[href]:hover, .badge-soft-pink[href]:focus {
  12308. color: #e83e8c;
  12309. text-decoration: none;
  12310. background-color: rgba(232, 62, 140, 0.4);
  12311. }
  12312. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  12313. background-color: #e1e7f0 !important;
  12314. }
  12315. .badge.bg-light {
  12316. color: var(--bs-body-color);
  12317. }
  12318. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  12319. color: var(--bs-body-color);
  12320. }
  12321. .badge-soft-light {
  12322. color: #eff2f7;
  12323. background-color: rgba(239, 242, 247, 0.18);
  12324. }
  12325. .badge-soft-light[href]:hover, .badge-soft-light[href]:focus {
  12326. color: #eff2f7;
  12327. text-decoration: none;
  12328. background-color: rgba(239, 242, 247, 0.4);
  12329. }
  12330. .badge.bg-dark[href]:hover, .badge.bg-dark[href]:focus {
  12331. background-color: #2b3035 !important;
  12332. }
  12333. .badge.bg-light {
  12334. color: var(--bs-body-color);
  12335. }
  12336. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  12337. color: var(--bs-body-color);
  12338. }
  12339. .badge-soft-dark {
  12340. color: #343a40;
  12341. background-color: rgba(52, 58, 64, 0.18);
  12342. }
  12343. .badge-soft-dark[href]:hover, .badge-soft-dark[href]:focus {
  12344. color: #343a40;
  12345. text-decoration: none;
  12346. background-color: rgba(52, 58, 64, 0.4);
  12347. }
  12348. .rounded-pill {
  12349. padding-right: 0.6em;
  12350. padding-left: 0.6em;
  12351. }
  12352. .badge.bg-dark {
  12353. color: var(--bs-light);
  12354. }
  12355. button,
  12356. a {
  12357. outline: none !important;
  12358. }
  12359. .btn-rounded {
  12360. border-radius: 30px;
  12361. }
  12362. .btn-group-example .btn {
  12363. position: relative;
  12364. }
  12365. .btn-group-example .btn:first-child::before {
  12366. display: none;
  12367. }
  12368. .btn-group-example .btn:before {
  12369. content: "OR";
  12370. position: absolute;
  12371. font-size: 10px;
  12372. width: 24px;
  12373. height: 24px;
  12374. line-height: 24px;
  12375. border-radius: 50%;
  12376. background-color: #74788d;
  12377. color: #eff2f7;
  12378. border: 1px solid #fff;
  12379. left: -12px;
  12380. top: 50%;
  12381. -webkit-transform: translateY(-50%);
  12382. transform: translateY(-50%);
  12383. z-index: 1;
  12384. }
  12385. .btn-label {
  12386. position: relative;
  12387. padding-left: 44px;
  12388. }
  12389. .btn-label .label-icon {
  12390. position: absolute;
  12391. width: 32px;
  12392. height: 100%;
  12393. left: 0;
  12394. top: 0;
  12395. background-color: rgba(255, 255, 255, 0.1);
  12396. border-right: 1px solid rgba(255, 255, 255, 0.1);
  12397. font-size: 16px;
  12398. display: -webkit-box;
  12399. display: -ms-flexbox;
  12400. display: flex;
  12401. -webkit-box-align: center;
  12402. -ms-flex-align: center;
  12403. align-items: center;
  12404. -webkit-box-pack: center;
  12405. -ms-flex-pack: center;
  12406. justify-content: center;
  12407. }
  12408. .btn-label.btn-light .label-icon {
  12409. background-color: rgba(52, 58, 64, 0.1);
  12410. border-right: 1px solid rgba(52, 58, 64, 0.2);
  12411. }
  12412. .btn-group-vertical label {
  12413. margin-bottom: 0px;
  12414. }
  12415. .btn-soft-primary {
  12416. color: #556ee6;
  12417. background-color: rgba(85, 110, 230, 0.1);
  12418. border-color: transparent;
  12419. -webkit-transition: all 0.5s ease;
  12420. transition: all 0.5s ease;
  12421. }
  12422. .btn-soft-primary:hover, .btn-soft-primary:focus, .btn-soft-primary:active {
  12423. color: #fff;
  12424. background-color: #556ee6;
  12425. border-color: transparent;
  12426. }
  12427. .btn-soft-secondary {
  12428. color: #74788d;
  12429. background-color: rgba(116, 120, 141, 0.1);
  12430. border-color: transparent;
  12431. -webkit-transition: all 0.5s ease;
  12432. transition: all 0.5s ease;
  12433. }
  12434. .btn-soft-secondary:hover, .btn-soft-secondary:focus, .btn-soft-secondary:active {
  12435. color: #fff;
  12436. background-color: #74788d;
  12437. border-color: transparent;
  12438. }
  12439. .btn-soft-success {
  12440. color: #34c38f;
  12441. background-color: rgba(52, 195, 143, 0.1);
  12442. border-color: transparent;
  12443. -webkit-transition: all 0.5s ease;
  12444. transition: all 0.5s ease;
  12445. }
  12446. .btn-soft-success:hover, .btn-soft-success:focus, .btn-soft-success:active {
  12447. color: #fff;
  12448. background-color: #34c38f;
  12449. border-color: transparent;
  12450. }
  12451. .btn-soft-info {
  12452. color: #50a5f1;
  12453. background-color: rgba(80, 165, 241, 0.1);
  12454. border-color: transparent;
  12455. -webkit-transition: all 0.5s ease;
  12456. transition: all 0.5s ease;
  12457. }
  12458. .btn-soft-info:hover, .btn-soft-info:focus, .btn-soft-info:active {
  12459. color: #fff;
  12460. background-color: #50a5f1;
  12461. border-color: transparent;
  12462. }
  12463. .btn-soft-warning {
  12464. color: #f1b44c;
  12465. background-color: rgba(241, 180, 76, 0.1);
  12466. border-color: transparent;
  12467. -webkit-transition: all 0.5s ease;
  12468. transition: all 0.5s ease;
  12469. }
  12470. .btn-soft-warning:hover, .btn-soft-warning:focus, .btn-soft-warning:active {
  12471. color: #fff;
  12472. background-color: #f1b44c;
  12473. border-color: transparent;
  12474. }
  12475. .btn-soft-danger {
  12476. color: #f46a6a;
  12477. background-color: rgba(244, 106, 106, 0.1);
  12478. border-color: transparent;
  12479. -webkit-transition: all 0.5s ease;
  12480. transition: all 0.5s ease;
  12481. }
  12482. .btn-soft-danger:hover, .btn-soft-danger:focus, .btn-soft-danger:active {
  12483. color: #fff;
  12484. background-color: #f46a6a;
  12485. border-color: transparent;
  12486. }
  12487. .btn-soft-pink {
  12488. color: #e83e8c;
  12489. background-color: rgba(232, 62, 140, 0.1);
  12490. border-color: transparent;
  12491. -webkit-transition: all 0.5s ease;
  12492. transition: all 0.5s ease;
  12493. }
  12494. .btn-soft-pink:hover, .btn-soft-pink:focus, .btn-soft-pink:active {
  12495. color: #fff;
  12496. background-color: #e83e8c;
  12497. border-color: transparent;
  12498. }
  12499. .btn-soft-light {
  12500. color: #eff2f7;
  12501. background-color: rgba(239, 242, 247, 0.1);
  12502. border-color: transparent;
  12503. -webkit-transition: all 0.5s ease;
  12504. transition: all 0.5s ease;
  12505. }
  12506. .btn-soft-light:hover, .btn-soft-light:focus, .btn-soft-light:active {
  12507. color: #fff;
  12508. background-color: #eff2f7;
  12509. border-color: transparent;
  12510. }
  12511. .btn-soft-dark {
  12512. color: #343a40;
  12513. background-color: rgba(52, 58, 64, 0.1);
  12514. border-color: transparent;
  12515. -webkit-transition: all 0.5s ease;
  12516. transition: all 0.5s ease;
  12517. }
  12518. .btn-soft-dark:hover, .btn-soft-dark:focus, .btn-soft-dark:active {
  12519. color: #fff;
  12520. background-color: #343a40;
  12521. border-color: transparent;
  12522. }
  12523. .like-btn.active .bx-heart {
  12524. color: #f46a6a;
  12525. }
  12526. .like-btn.active .bx-heart:before {
  12527. content: "\ec8f";
  12528. }
  12529. .breadcrumb-item > a {
  12530. color: var(--bs-gray-700);
  12531. }
  12532. .breadcrumb-item + .breadcrumb-item::before {
  12533. font-family: "Material Design Icons";
  12534. }
  12535. .card {
  12536. margin-bottom: 24px;
  12537. -webkit-box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
  12538. box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
  12539. }
  12540. .card-drop {
  12541. color: #495057;
  12542. }
  12543. .card-title {
  12544. font-size: 15px;
  12545. margin: 0 0 7px 0;
  12546. font-weight: 600;
  12547. }
  12548. .card-title-desc {
  12549. color: var(--bs-gray-600);
  12550. margin-bottom: 24px;
  12551. }
  12552. .dropdown-menu {
  12553. -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  12554. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  12555. -webkit-animation-name: DropDownSlide;
  12556. animation-name: DropDownSlide;
  12557. -webkit-animation-duration: 0.3s;
  12558. animation-duration: 0.3s;
  12559. -webkit-animation-fill-mode: both;
  12560. animation-fill-mode: both;
  12561. margin: 0;
  12562. position: absolute;
  12563. z-index: 1000;
  12564. }
  12565. .dropdown-menu.show {
  12566. top: 100% !important;
  12567. }
  12568. .dropdown-menu-end[style] {
  12569. left: auto !important;
  12570. right: 0 !important;
  12571. }
  12572. .dropdown-menu[data-popper-placement^=right],
  12573. .dropdown-menu[data-popper-placement^=top],
  12574. .dropdown-menu[data-popper-placement^=left] {
  12575. top: auto !important;
  12576. -webkit-animation: none !important;
  12577. animation: none !important;
  12578. }
  12579. @-webkit-keyframes DropDownSlide {
  12580. 100% {
  12581. -webkit-transform: translateY(0);
  12582. transform: translateY(0);
  12583. }
  12584. 0% {
  12585. -webkit-transform: translateY(10px);
  12586. transform: translateY(10px);
  12587. }
  12588. }
  12589. @keyframes DropDownSlide {
  12590. 100% {
  12591. -webkit-transform: translateY(0);
  12592. transform: translateY(0);
  12593. }
  12594. 0% {
  12595. -webkit-transform: translateY(10px);
  12596. transform: translateY(10px);
  12597. }
  12598. }
  12599. @media (min-width: 600px) {
  12600. .dropdown-menu-lg {
  12601. width: 320px;
  12602. }
  12603. .dropdown-menu-md {
  12604. width: 240px;
  12605. }
  12606. }
  12607. .dropdown-mega {
  12608. position: static !important;
  12609. }
  12610. .dropdown-megamenu[style] {
  12611. padding: 20px;
  12612. left: 20px !important;
  12613. right: 20px !important;
  12614. }
  12615. .dropdown-mega-menu-xl {
  12616. width: 40rem;
  12617. }
  12618. .dropdown-mega-menu-lg {
  12619. width: 26rem;
  12620. }
  12621. .nav-tabs > li > a, .nav-pills > li > a {
  12622. color: var(--bs-gray-700);
  12623. font-weight: 500;
  12624. }
  12625. .nav-pills > a {
  12626. color: var(--bs-gray-700);
  12627. font-weight: 500;
  12628. }
  12629. .nav-tabs-custom {
  12630. border-bottom: 2px solid var(--bs-gray-300);
  12631. }
  12632. .nav-tabs-custom .nav-item {
  12633. position: relative;
  12634. color: var(--bs-dark);
  12635. }
  12636. .nav-tabs-custom .nav-item .nav-link {
  12637. border: none;
  12638. }
  12639. .nav-tabs-custom .nav-item .nav-link::after {
  12640. content: "";
  12641. background: #556ee6;
  12642. height: 2px;
  12643. position: absolute;
  12644. width: 100%;
  12645. left: 0;
  12646. bottom: -1px;
  12647. -webkit-transition: all 250ms ease 0s;
  12648. transition: all 250ms ease 0s;
  12649. -webkit-transform: scale(0);
  12650. transform: scale(0);
  12651. }
  12652. .nav-tabs-custom .nav-item .nav-link.active {
  12653. color: #556ee6;
  12654. }
  12655. .nav-tabs-custom .nav-item .nav-link.active:after {
  12656. -webkit-transform: scale(1);
  12657. transform: scale(1);
  12658. }
  12659. .vertical-nav .nav .nav-link {
  12660. padding: 24px 16px;
  12661. text-align: center;
  12662. margin-bottom: 8px;
  12663. }
  12664. .vertical-nav .nav .nav-link .nav-icon {
  12665. font-size: 24px;
  12666. }
  12667. .table th {
  12668. font-weight: 600;
  12669. }
  12670. .table-dark > :not(:last-child) > :last-child > * {
  12671. border-bottom-color: #43494e;
  12672. }
  12673. .table-bordered {
  12674. border: 1px solid var(--bs-border-color);
  12675. }
  12676. .table-nowrap th, .table-nowrap td {
  12677. white-space: nowrap;
  12678. }
  12679. .table > :not(:first-child) {
  12680. border-top: 0;
  12681. }
  12682. .pagination-rounded .page-link {
  12683. border-radius: 30px !important;
  12684. margin: 0 3px !important;
  12685. border: none;
  12686. width: 32px;
  12687. height: 32px;
  12688. padding: 0;
  12689. text-align: center;
  12690. line-height: 32px;
  12691. }
  12692. .progress-sm {
  12693. height: 5px;
  12694. }
  12695. .progress-md {
  12696. height: 8px;
  12697. }
  12698. .progress-lg {
  12699. height: 12px;
  12700. }
  12701. .progress-xl {
  12702. height: 16px;
  12703. }
  12704. .custom-progess {
  12705. position: relative;
  12706. }
  12707. .custom-progess .progress-icon {
  12708. position: absolute;
  12709. top: -12px;
  12710. }
  12711. .custom-progess .progress-icon .avatar-title {
  12712. background: var(--bs-card-bg);
  12713. }
  12714. .animated-progess {
  12715. position: relative;
  12716. }
  12717. .animated-progess .progress-bar {
  12718. position: relative;
  12719. border-radius: 6px;
  12720. -webkit-animation: animate-positive 2s;
  12721. animation: animate-positive 2s;
  12722. }
  12723. @-webkit-keyframes animate-positive {
  12724. 0% {
  12725. width: 0;
  12726. }
  12727. }
  12728. @keyframes animate-positive {
  12729. 0% {
  12730. width: 0;
  12731. }
  12732. }