bootstrap.css 264 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806
  1. @charset "UTF-8";
  2. /*!
  3. * Bootswatch v5.3.1 (https://bootswatch.com)
  4. * Theme: cosmo
  5. * Copyright 2012-2023 Thomas Park
  6. * Licensed under MIT
  7. * Based on Bootstrap
  8. */
  9. /*!
  10. * Bootstrap v5.3.1 (https://getbootstrap.com/)
  11. * Copyright 2011-2023 The Bootstrap Authors
  12. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  13. */
  14. /* @import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;700&display=swap"); */
  15. @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
  16. :root,
  17. [data-bs-theme=light] {
  18. --bs-blue: #2780e3;
  19. --bs-indigo: #6610f2;
  20. --bs-purple: #613d7c;
  21. --bs-pink: #e83e8c;
  22. --bs-red: #ff0039;
  23. --bs-orange: #f0ad4e;
  24. --bs-yellow: #ff7518;
  25. --bs-green: #3fb618;
  26. --bs-teal: #20c997;
  27. --bs-cyan: #9954bb;
  28. --bs-black: #000;
  29. --bs-white: #fff;
  30. --bs-gray: #868e96;
  31. --bs-gray-dark: #373a3c;
  32. --bs-gray-100: #f8f9fa;
  33. --bs-gray-200: #e9ecef;
  34. --bs-gray-300: #dee2e6;
  35. --bs-gray-400: #ced4da;
  36. --bs-gray-500: #adb5bd;
  37. --bs-gray-600: #868e96;
  38. --bs-gray-700: #495057;
  39. --bs-gray-800: #373a3c;
  40. --bs-gray-900: #212529;
  41. --bs-primary: #2780e3;
  42. --bs-secondary: #373a3c;
  43. --bs-success: #3fb618;
  44. --bs-info: #9954bb;
  45. --bs-warning: #ff7518;
  46. --bs-danger: #ff0039;
  47. --bs-light: #f8f9fa;
  48. --bs-dark: #373a3c;
  49. --bs-primary-rgb: 39, 128, 227;
  50. --bs-secondary-rgb: 55, 58, 60;
  51. --bs-success-rgb: 63, 182, 24;
  52. --bs-info-rgb: 153, 84, 187;
  53. --bs-warning-rgb: 255, 117, 24;
  54. --bs-danger-rgb: 255, 0, 57;
  55. --bs-light-rgb: 248, 249, 250;
  56. --bs-dark-rgb: 55, 58, 60;
  57. --bs-primary-text-emphasis: #10335b;
  58. --bs-secondary-text-emphasis: #161718;
  59. --bs-success-text-emphasis: #19490a;
  60. --bs-info-text-emphasis: #3d224b;
  61. --bs-warning-text-emphasis: #662f0a;
  62. --bs-danger-text-emphasis: #660017;
  63. --bs-light-text-emphasis: #495057;
  64. --bs-dark-text-emphasis: #495057;
  65. --bs-primary-bg-subtle: #d4e6f9;
  66. --bs-secondary-bg-subtle: #d7d8d8;
  67. --bs-success-bg-subtle: #d9f0d1;
  68. --bs-info-bg-subtle: #ebddf1;
  69. --bs-warning-bg-subtle: #ffe3d1;
  70. --bs-danger-bg-subtle: #ffccd7;
  71. --bs-light-bg-subtle: #fcfcfd;
  72. --bs-dark-bg-subtle: #ced4da;
  73. --bs-primary-border-subtle: #a9ccf4;
  74. --bs-secondary-border-subtle: #afb0b1;
  75. --bs-success-border-subtle: #b2e2a3;
  76. --bs-info-border-subtle: #d6bbe4;
  77. --bs-warning-border-subtle: #ffc8a3;
  78. --bs-danger-border-subtle: #ff99b0;
  79. --bs-light-border-subtle: #e9ecef;
  80. --bs-dark-border-subtle: #adb5bd;
  81. --bs-white-rgb: 255, 255, 255;
  82. --bs-black-rgb: 0, 0, 0;
  83. --bs-font-sans-serif: 'Montserrat', sans-serif;
  84. --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  85. --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  86. --bs-body-font-family: var(--bs-font-sans-serif);
  87. --bs-body-font-size: 1rem;
  88. --bs-body-font-weight: 400;
  89. --bs-body-line-height: 1.5;
  90. --bs-body-color: #373a3c;
  91. --bs-body-color-rgb: 55, 58, 60;
  92. --bs-body-bg: #fff;
  93. --bs-body-bg-rgb: 255, 255, 255;
  94. --bs-emphasis-color: #000;
  95. --bs-emphasis-color-rgb: 0, 0, 0;
  96. --bs-secondary-color: rgba(55, 58, 60, 0.75);
  97. --bs-secondary-color-rgb: 55, 58, 60;
  98. --bs-secondary-bg: #e9ecef;
  99. --bs-secondary-bg-rgb: 233, 236, 239;
  100. --bs-tertiary-color: rgba(55, 58, 60, 0.5);
  101. --bs-tertiary-color-rgb: 55, 58, 60;
  102. --bs-tertiary-bg: #f8f9fa;
  103. --bs-tertiary-bg-rgb: 248, 249, 250;
  104. --bs-heading-color: inherit;
  105. --bs-link-color: #2780e3;
  106. --bs-link-color-rgb: 39, 128, 227;
  107. --bs-link-decoration: underline;
  108. --bs-link-hover-color: #1f66b6;
  109. --bs-link-hover-color-rgb: 31, 102, 182;
  110. --bs-code-color: #e83e8c;
  111. --bs-highlight-bg: #ffe3d1;
  112. --bs-border-width: 1px;
  113. --bs-border-style: solid;
  114. --bs-border-color: #dee2e6;
  115. --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  116. --bs-border-radius: 0.375rem;
  117. --bs-border-radius-sm: 0.25rem;
  118. --bs-border-radius-lg: 0.5rem;
  119. --bs-border-radius-xl: 1rem;
  120. --bs-border-radius-xxl: 2rem;
  121. --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  122. --bs-border-radius-pill: 50rem;
  123. --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  124. --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  125. --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  126. --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  127. --bs-focus-ring-width: 0.25rem;
  128. --bs-focus-ring-opacity: 0.25;
  129. --bs-focus-ring-color: rgba(39, 128, 227, 0.25);
  130. --bs-form-valid-color: #3fb618;
  131. --bs-form-valid-border-color: #3fb618;
  132. --bs-form-invalid-color: #ff0039;
  133. --bs-form-invalid-border-color: #ff0039;
  134. }
  135. [data-bs-theme=dark] {
  136. color-scheme: dark;
  137. --bs-body-color: #dee2e6;
  138. --bs-body-color-rgb: 222, 226, 230;
  139. --bs-body-bg: #212529;
  140. --bs-body-bg-rgb: 33, 37, 41;
  141. --bs-emphasis-color: #fff;
  142. --bs-emphasis-color-rgb: 255, 255, 255;
  143. --bs-secondary-color: rgba(222, 226, 230, 0.75);
  144. --bs-secondary-color-rgb: 222, 226, 230;
  145. --bs-secondary-bg: #373a3c;
  146. --bs-secondary-bg-rgb: 55, 58, 60;
  147. --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  148. --bs-tertiary-color-rgb: 222, 226, 230;
  149. --bs-tertiary-bg: #2c3033;
  150. --bs-tertiary-bg-rgb: 44, 48, 51;
  151. --bs-primary-text-emphasis: #7db3ee;
  152. --bs-secondary-text-emphasis: #87898a;
  153. --bs-success-text-emphasis: #8cd374;
  154. --bs-info-text-emphasis: #c298d6;
  155. --bs-warning-text-emphasis: #ffac74;
  156. --bs-danger-text-emphasis: #ff6688;
  157. --bs-light-text-emphasis: #f8f9fa;
  158. --bs-dark-text-emphasis: #dee2e6;
  159. --bs-primary-bg-subtle: #081a2d;
  160. --bs-secondary-bg-subtle: #0b0c0c;
  161. --bs-success-bg-subtle: #0d2405;
  162. --bs-info-bg-subtle: #1f1125;
  163. --bs-warning-bg-subtle: #331705;
  164. --bs-danger-bg-subtle: #33000b;
  165. --bs-light-bg-subtle: #373a3c;
  166. --bs-dark-bg-subtle: #1c1d1e;
  167. --bs-primary-border-subtle: #174d88;
  168. --bs-secondary-border-subtle: #212324;
  169. --bs-success-border-subtle: #266d0e;
  170. --bs-info-border-subtle: #5c3270;
  171. --bs-warning-border-subtle: #99460e;
  172. --bs-danger-border-subtle: #990022;
  173. --bs-light-border-subtle: #495057;
  174. --bs-dark-border-subtle: #373a3c;
  175. --bs-heading-color: inherit;
  176. --bs-link-color: #7db3ee;
  177. --bs-link-hover-color: #97c2f1;
  178. --bs-link-color-rgb: 125, 179, 238;
  179. --bs-link-hover-color-rgb: 151, 194, 241;
  180. --bs-code-color: #f18bba;
  181. --bs-border-color: #495057;
  182. --bs-border-color-translucent: rgba(255, 255, 255, 0.15);
  183. --bs-form-valid-color: #8cd374;
  184. --bs-form-valid-border-color: #8cd374;
  185. --bs-form-invalid-color: #ff6688;
  186. --bs-form-invalid-border-color: #ff6688;
  187. }
  188. *,
  189. *::before,
  190. *::after {
  191. box-sizing: border-box;
  192. }
  193. @media (prefers-reduced-motion: no-preference) {
  194. :root {
  195. scroll-behavior: smooth;
  196. }
  197. }
  198. body {
  199. margin: 0;
  200. font-family: var(--bs-body-font-family);
  201. font-size: var(--bs-body-font-size);
  202. font-weight: var(--bs-body-font-weight);
  203. line-height: var(--bs-body-line-height);
  204. color: var(--bs-body-color);
  205. text-align: var(--bs-body-text-align);
  206. background-color: var(--bs-body-bg);
  207. -webkit-text-size-adjust: 100%;
  208. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  209. }
  210. hr {
  211. margin: 1rem 0;
  212. color: inherit;
  213. border: 0;
  214. border-top: var(--bs-border-width) solid;
  215. opacity: 0.25;
  216. }
  217. h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  218. margin-top: 0;
  219. margin-bottom: 0.5rem;
  220. font-weight: 400;
  221. line-height: 1.2;
  222. color: var(--bs-heading-color);
  223. }
  224. h1, .h1 {
  225. font-size: calc(1.375rem + 1.5vw);
  226. }
  227. @media (min-width: 1200px) {
  228. h1, .h1 {
  229. font-size: 2.5rem;
  230. }
  231. }
  232. h2, .h2 {
  233. font-size: calc(1.325rem + 0.9vw);
  234. }
  235. @media (min-width: 1200px) {
  236. h2, .h2 {
  237. font-size: 2rem;
  238. }
  239. }
  240. h3, .h3 {
  241. font-size: calc(1.3rem + 0.6vw);
  242. }
  243. @media (min-width: 1200px) {
  244. h3, .h3 {
  245. font-size: 1.75rem;
  246. }
  247. }
  248. h4, .h4 {
  249. font-size: calc(1.275rem + 0.3vw);
  250. }
  251. @media (min-width: 1200px) {
  252. h4, .h4 {
  253. font-size: 1.5rem;
  254. }
  255. }
  256. h5, .h5 {
  257. font-size: 1.25rem;
  258. }
  259. h6, .h6 {
  260. font-size: 1rem;
  261. }
  262. p {
  263. margin-top: 0;
  264. margin-bottom: 1rem;
  265. }
  266. abbr[title] {
  267. -webkit-text-decoration: underline dotted;
  268. text-decoration: underline dotted;
  269. cursor: help;
  270. -webkit-text-decoration-skip-ink: none;
  271. text-decoration-skip-ink: none;
  272. }
  273. address {
  274. margin-bottom: 1rem;
  275. font-style: normal;
  276. line-height: inherit;
  277. }
  278. ol,
  279. ul {
  280. padding-left: 2rem;
  281. }
  282. ol,
  283. ul,
  284. dl {
  285. margin-top: 0;
  286. margin-bottom: 1rem;
  287. }
  288. ol ol,
  289. ul ul,
  290. ol ul,
  291. ul ol {
  292. margin-bottom: 0;
  293. }
  294. dt {
  295. font-weight: 700;
  296. }
  297. dd {
  298. margin-bottom: 0.5rem;
  299. margin-left: 0;
  300. }
  301. blockquote {
  302. margin: 0 0 1rem;
  303. }
  304. b,
  305. strong {
  306. font-weight: bolder;
  307. }
  308. small, .small {
  309. font-size: 0.875em;
  310. }
  311. mark, .mark {
  312. padding: 0.1875em;
  313. background-color: var(--bs-highlight-bg);
  314. }
  315. sub,
  316. sup {
  317. position: relative;
  318. font-size: 0.75em;
  319. line-height: 0;
  320. vertical-align: baseline;
  321. }
  322. sub {
  323. bottom: -0.25em;
  324. }
  325. sup {
  326. top: -0.5em;
  327. }
  328. a {
  329. color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  330. text-decoration: underline;
  331. }
  332. a:hover {
  333. --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
  334. }
  335. a:not([href]):not([class]), a:not([href]):not([class]):hover {
  336. color: inherit;
  337. text-decoration: none;
  338. }
  339. pre,
  340. code,
  341. kbd,
  342. samp {
  343. font-family: var(--bs-font-monospace);
  344. font-size: 1em;
  345. }
  346. pre {
  347. display: block;
  348. margin-top: 0;
  349. margin-bottom: 1rem;
  350. overflow: auto;
  351. font-size: 0.875em;
  352. }
  353. pre code {
  354. font-size: inherit;
  355. color: inherit;
  356. word-break: normal;
  357. }
  358. code {
  359. font-size: 0.875em;
  360. color: var(--bs-code-color);
  361. word-wrap: break-word;
  362. }
  363. a > code {
  364. color: inherit;
  365. }
  366. kbd {
  367. padding: 0.1875rem 0.375rem;
  368. font-size: 0.875em;
  369. color: var(--bs-body-bg);
  370. background-color: var(--bs-body-color);
  371. }
  372. kbd kbd {
  373. padding: 0;
  374. font-size: 1em;
  375. }
  376. figure {
  377. margin: 0 0 1rem;
  378. }
  379. img,
  380. svg {
  381. vertical-align: middle;
  382. }
  383. table {
  384. caption-side: bottom;
  385. border-collapse: collapse;
  386. }
  387. caption {
  388. padding-top: 0.5rem;
  389. padding-bottom: 0.5rem;
  390. color: var(--bs-secondary-color);
  391. text-align: left;
  392. }
  393. th {
  394. text-align: inherit;
  395. text-align: -webkit-match-parent;
  396. }
  397. thead,
  398. tbody,
  399. tfoot,
  400. tr,
  401. td,
  402. th {
  403. border-color: inherit;
  404. border-style: solid;
  405. border-width: 0;
  406. }
  407. label {
  408. display: inline-block;
  409. }
  410. button {
  411. border-radius: 0;
  412. }
  413. button:focus:not(:focus-visible) {
  414. outline: 0;
  415. }
  416. input,
  417. button,
  418. select,
  419. optgroup,
  420. textarea {
  421. margin: 0;
  422. font-family: inherit;
  423. font-size: inherit;
  424. line-height: inherit;
  425. }
  426. button,
  427. select {
  428. text-transform: none;
  429. }
  430. [role=button] {
  431. cursor: pointer;
  432. }
  433. select {
  434. word-wrap: normal;
  435. }
  436. select:disabled {
  437. opacity: 1;
  438. }
  439. [list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  440. display: none !important;
  441. }
  442. button,
  443. [type=button],
  444. [type=reset],
  445. [type=submit] {
  446. -webkit-appearance: button;
  447. }
  448. button:not(:disabled),
  449. [type=button]:not(:disabled),
  450. [type=reset]:not(:disabled),
  451. [type=submit]:not(:disabled) {
  452. cursor: pointer;
  453. }
  454. ::-moz-focus-inner {
  455. padding: 0;
  456. border-style: none;
  457. }
  458. textarea {
  459. resize: vertical;
  460. }
  461. fieldset {
  462. min-width: 0;
  463. padding: 0;
  464. margin: 0;
  465. border: 0;
  466. }
  467. legend {
  468. float: left;
  469. width: 100%;
  470. padding: 0;
  471. margin-bottom: 0.5rem;
  472. font-size: calc(1.275rem + 0.3vw);
  473. line-height: inherit;
  474. }
  475. @media (min-width: 1200px) {
  476. legend {
  477. font-size: 1.5rem;
  478. }
  479. }
  480. legend + * {
  481. clear: left;
  482. }
  483. ::-webkit-datetime-edit-fields-wrapper,
  484. ::-webkit-datetime-edit-text,
  485. ::-webkit-datetime-edit-minute,
  486. ::-webkit-datetime-edit-hour-field,
  487. ::-webkit-datetime-edit-day-field,
  488. ::-webkit-datetime-edit-month-field,
  489. ::-webkit-datetime-edit-year-field {
  490. padding: 0;
  491. }
  492. ::-webkit-inner-spin-button {
  493. height: auto;
  494. }
  495. [type=search] {
  496. -webkit-appearance: textfield;
  497. outline-offset: -2px;
  498. }
  499. /* rtl:raw:
  500. [type="tel"],
  501. [type="url"],
  502. [type="email"],
  503. [type="number"] {
  504. direction: ltr;
  505. }
  506. */
  507. ::-webkit-search-decoration {
  508. -webkit-appearance: none;
  509. }
  510. ::-webkit-color-swatch-wrapper {
  511. padding: 0;
  512. }
  513. ::-webkit-file-upload-button {
  514. font: inherit;
  515. -webkit-appearance: button;
  516. }
  517. ::file-selector-button {
  518. font: inherit;
  519. -webkit-appearance: button;
  520. }
  521. output {
  522. display: inline-block;
  523. }
  524. iframe {
  525. border: 0;
  526. }
  527. summary {
  528. display: list-item;
  529. cursor: pointer;
  530. }
  531. progress {
  532. vertical-align: baseline;
  533. }
  534. [hidden] {
  535. display: none !important;
  536. }
  537. .lead {
  538. font-size: 1.25rem;
  539. font-weight: 300;
  540. }
  541. .display-1 {
  542. font-size: calc(1.625rem + 4.5vw);
  543. font-weight: 300;
  544. line-height: 1.2;
  545. }
  546. @media (min-width: 1200px) {
  547. .display-1 {
  548. font-size: 5rem;
  549. }
  550. }
  551. .display-2 {
  552. font-size: calc(1.575rem + 3.9vw);
  553. font-weight: 300;
  554. line-height: 1.2;
  555. }
  556. @media (min-width: 1200px) {
  557. .display-2 {
  558. font-size: 4.5rem;
  559. }
  560. }
  561. .display-3 {
  562. font-size: calc(1.525rem + 3.3vw);
  563. font-weight: 300;
  564. line-height: 1.2;
  565. }
  566. @media (min-width: 1200px) {
  567. .display-3 {
  568. font-size: 4rem;
  569. }
  570. }
  571. .display-4 {
  572. font-size: calc(1.475rem + 2.7vw);
  573. font-weight: 300;
  574. line-height: 1.2;
  575. }
  576. @media (min-width: 1200px) {
  577. .display-4 {
  578. font-size: 3.5rem;
  579. }
  580. }
  581. .display-5 {
  582. font-size: calc(1.425rem + 2.1vw);
  583. font-weight: 300;
  584. line-height: 1.2;
  585. }
  586. @media (min-width: 1200px) {
  587. .display-5 {
  588. font-size: 3rem;
  589. }
  590. }
  591. .display-6 {
  592. font-size: calc(1.375rem + 1.5vw);
  593. font-weight: 300;
  594. line-height: 1.2;
  595. }
  596. @media (min-width: 1200px) {
  597. .display-6 {
  598. font-size: 2.5rem;
  599. }
  600. }
  601. .list-unstyled {
  602. padding-left: 0;
  603. list-style: none;
  604. }
  605. .list-inline {
  606. padding-left: 0;
  607. list-style: none;
  608. }
  609. .list-inline-item {
  610. display: inline-block;
  611. }
  612. .list-inline-item:not(:last-child) {
  613. margin-right: 0.5rem;
  614. }
  615. .initialism {
  616. font-size: 0.875em;
  617. text-transform: uppercase;
  618. }
  619. .blockquote {
  620. margin-bottom: 1rem;
  621. font-size: 1.25rem;
  622. }
  623. .blockquote > :last-child {
  624. margin-bottom: 0;
  625. }
  626. .blockquote-footer {
  627. margin-top: -1rem;
  628. margin-bottom: 1rem;
  629. font-size: 0.875em;
  630. color: #868e96;
  631. }
  632. .blockquote-footer::before {
  633. content: "— ";
  634. }
  635. .img-fluid {
  636. max-width: 100%;
  637. height: auto;
  638. }
  639. .img-thumbnail {
  640. padding: 0.25rem;
  641. background-color: var(--bs-body-bg);
  642. border: var(--bs-border-width) solid var(--bs-border-color);
  643. max-width: 100%;
  644. height: auto;
  645. }
  646. .figure {
  647. display: inline-block;
  648. }
  649. .figure-img {
  650. margin-bottom: 0.5rem;
  651. line-height: 1;
  652. }
  653. .figure-caption {
  654. font-size: 0.875em;
  655. color: var(--bs-secondary-color);
  656. }
  657. .container,
  658. .container-fluid,
  659. .container-xxl,
  660. .container-xl,
  661. .container-lg,
  662. .container-md,
  663. .container-sm {
  664. --bs-gutter-x: 1.5rem;
  665. --bs-gutter-y: 0;
  666. width: 100%;
  667. padding-right: calc(var(--bs-gutter-x) * 0.5);
  668. padding-left: calc(var(--bs-gutter-x) * 0.5);
  669. margin-right: auto;
  670. margin-left: auto;
  671. }
  672. @media (min-width: 576px) {
  673. .container-sm, .container {
  674. max-width: 540px;
  675. }
  676. }
  677. @media (min-width: 768px) {
  678. .container-md, .container-sm, .container {
  679. max-width: 720px;
  680. }
  681. }
  682. @media (min-width: 992px) {
  683. .container-lg, .container-md, .container-sm, .container {
  684. max-width: 960px;
  685. }
  686. }
  687. @media (min-width: 1200px) {
  688. .container-xl, .container-lg, .container-md, .container-sm, .container {
  689. max-width: 1140px;
  690. }
  691. }
  692. @media (min-width: 1400px) {
  693. .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
  694. max-width: 1320px;
  695. }
  696. }
  697. :root {
  698. --bs-breakpoint-xs: 0;
  699. --bs-breakpoint-sm: 576px;
  700. --bs-breakpoint-md: 768px;
  701. --bs-breakpoint-lg: 992px;
  702. --bs-breakpoint-xl: 1200px;
  703. --bs-breakpoint-xxl: 1400px;
  704. }
  705. .row {
  706. --bs-gutter-x: 1.5rem;
  707. --bs-gutter-y: 0;
  708. display: flex;
  709. flex-wrap: wrap;
  710. margin-top: calc(-1 * var(--bs-gutter-y));
  711. margin-right: calc(-0.5 * var(--bs-gutter-x));
  712. margin-left: calc(-0.5 * var(--bs-gutter-x));
  713. }
  714. .row > * {
  715. flex-shrink: 0;
  716. width: 100%;
  717. max-width: 100%;
  718. padding-right: calc(var(--bs-gutter-x) * 0.5);
  719. padding-left: calc(var(--bs-gutter-x) * 0.5);
  720. margin-top: var(--bs-gutter-y);
  721. }
  722. .col {
  723. flex: 1 0 0%;
  724. }
  725. .row-cols-auto > * {
  726. flex: 0 0 auto;
  727. width: auto;
  728. }
  729. .row-cols-1 > * {
  730. flex: 0 0 auto;
  731. width: 100%;
  732. }
  733. .row-cols-2 > * {
  734. flex: 0 0 auto;
  735. width: 50%;
  736. }
  737. .row-cols-3 > * {
  738. flex: 0 0 auto;
  739. width: 33.3333333333%;
  740. }
  741. .row-cols-4 > * {
  742. flex: 0 0 auto;
  743. width: 25%;
  744. }
  745. .row-cols-5 > * {
  746. flex: 0 0 auto;
  747. width: 20%;
  748. }
  749. .row-cols-6 > * {
  750. flex: 0 0 auto;
  751. width: 16.6666666667%;
  752. }
  753. .col-auto {
  754. flex: 0 0 auto;
  755. width: auto;
  756. }
  757. .col-1 {
  758. flex: 0 0 auto;
  759. width: 8.33333333%;
  760. }
  761. .col-2 {
  762. flex: 0 0 auto;
  763. width: 16.66666667%;
  764. }
  765. .col-3 {
  766. flex: 0 0 auto;
  767. width: 25%;
  768. }
  769. .col-4 {
  770. flex: 0 0 auto;
  771. width: 33.33333333%;
  772. }
  773. .col-5 {
  774. flex: 0 0 auto;
  775. width: 41.66666667%;
  776. }
  777. .col-6 {
  778. flex: 0 0 auto;
  779. width: 50%;
  780. }
  781. .col-7 {
  782. flex: 0 0 auto;
  783. width: 58.33333333%;
  784. }
  785. .col-8 {
  786. flex: 0 0 auto;
  787. width: 66.66666667%;
  788. }
  789. .col-9 {
  790. flex: 0 0 auto;
  791. width: 75%;
  792. }
  793. .col-10 {
  794. flex: 0 0 auto;
  795. width: 83.33333333%;
  796. }
  797. .col-11 {
  798. flex: 0 0 auto;
  799. width: 91.66666667%;
  800. }
  801. .col-12 {
  802. flex: 0 0 auto;
  803. width: 100%;
  804. }
  805. .offset-1 {
  806. margin-left: 8.33333333%;
  807. }
  808. .offset-2 {
  809. margin-left: 16.66666667%;
  810. }
  811. .offset-3 {
  812. margin-left: 25%;
  813. }
  814. .offset-4 {
  815. margin-left: 33.33333333%;
  816. }
  817. .offset-5 {
  818. margin-left: 41.66666667%;
  819. }
  820. .offset-6 {
  821. margin-left: 50%;
  822. }
  823. .offset-7 {
  824. margin-left: 58.33333333%;
  825. }
  826. .offset-8 {
  827. margin-left: 66.66666667%;
  828. }
  829. .offset-9 {
  830. margin-left: 75%;
  831. }
  832. .offset-10 {
  833. margin-left: 83.33333333%;
  834. }
  835. .offset-11 {
  836. margin-left: 91.66666667%;
  837. }
  838. .g-0,
  839. .gx-0 {
  840. --bs-gutter-x: 0;
  841. }
  842. .g-0,
  843. .gy-0 {
  844. --bs-gutter-y: 0;
  845. }
  846. .g-1,
  847. .gx-1 {
  848. --bs-gutter-x: 0.25rem;
  849. }
  850. .g-1,
  851. .gy-1 {
  852. --bs-gutter-y: 0.25rem;
  853. }
  854. .g-2,
  855. .gx-2 {
  856. --bs-gutter-x: 0.5rem;
  857. }
  858. .g-2,
  859. .gy-2 {
  860. --bs-gutter-y: 0.5rem;
  861. }
  862. .g-3,
  863. .gx-3 {
  864. --bs-gutter-x: 1rem;
  865. }
  866. .g-3,
  867. .gy-3 {
  868. --bs-gutter-y: 1rem;
  869. }
  870. .g-4,
  871. .gx-4 {
  872. --bs-gutter-x: 1.5rem;
  873. }
  874. .g-4,
  875. .gy-4 {
  876. --bs-gutter-y: 1.5rem;
  877. }
  878. .g-5,
  879. .gx-5 {
  880. --bs-gutter-x: 3rem;
  881. }
  882. .g-5,
  883. .gy-5 {
  884. --bs-gutter-y: 3rem;
  885. }
  886. @media (min-width: 576px) {
  887. .col-sm {
  888. flex: 1 0 0%;
  889. }
  890. .row-cols-sm-auto > * {
  891. flex: 0 0 auto;
  892. width: auto;
  893. }
  894. .row-cols-sm-1 > * {
  895. flex: 0 0 auto;
  896. width: 100%;
  897. }
  898. .row-cols-sm-2 > * {
  899. flex: 0 0 auto;
  900. width: 50%;
  901. }
  902. .row-cols-sm-3 > * {
  903. flex: 0 0 auto;
  904. width: 33.3333333333%;
  905. }
  906. .row-cols-sm-4 > * {
  907. flex: 0 0 auto;
  908. width: 25%;
  909. }
  910. .row-cols-sm-5 > * {
  911. flex: 0 0 auto;
  912. width: 20%;
  913. }
  914. .row-cols-sm-6 > * {
  915. flex: 0 0 auto;
  916. width: 16.6666666667%;
  917. }
  918. .col-sm-auto {
  919. flex: 0 0 auto;
  920. width: auto;
  921. }
  922. .col-sm-1 {
  923. flex: 0 0 auto;
  924. width: 8.33333333%;
  925. }
  926. .col-sm-2 {
  927. flex: 0 0 auto;
  928. width: 16.66666667%;
  929. }
  930. .col-sm-3 {
  931. flex: 0 0 auto;
  932. width: 25%;
  933. }
  934. .col-sm-4 {
  935. flex: 0 0 auto;
  936. width: 33.33333333%;
  937. }
  938. .col-sm-5 {
  939. flex: 0 0 auto;
  940. width: 41.66666667%;
  941. }
  942. .col-sm-6 {
  943. flex: 0 0 auto;
  944. width: 50%;
  945. }
  946. .col-sm-7 {
  947. flex: 0 0 auto;
  948. width: 58.33333333%;
  949. }
  950. .col-sm-8 {
  951. flex: 0 0 auto;
  952. width: 66.66666667%;
  953. }
  954. .col-sm-9 {
  955. flex: 0 0 auto;
  956. width: 75%;
  957. }
  958. .col-sm-10 {
  959. flex: 0 0 auto;
  960. width: 83.33333333%;
  961. }
  962. .col-sm-11 {
  963. flex: 0 0 auto;
  964. width: 91.66666667%;
  965. }
  966. .col-sm-12 {
  967. flex: 0 0 auto;
  968. width: 100%;
  969. }
  970. .offset-sm-0 {
  971. margin-left: 0;
  972. }
  973. .offset-sm-1 {
  974. margin-left: 8.33333333%;
  975. }
  976. .offset-sm-2 {
  977. margin-left: 16.66666667%;
  978. }
  979. .offset-sm-3 {
  980. margin-left: 25%;
  981. }
  982. .offset-sm-4 {
  983. margin-left: 33.33333333%;
  984. }
  985. .offset-sm-5 {
  986. margin-left: 41.66666667%;
  987. }
  988. .offset-sm-6 {
  989. margin-left: 50%;
  990. }
  991. .offset-sm-7 {
  992. margin-left: 58.33333333%;
  993. }
  994. .offset-sm-8 {
  995. margin-left: 66.66666667%;
  996. }
  997. .offset-sm-9 {
  998. margin-left: 75%;
  999. }
  1000. .offset-sm-10 {
  1001. margin-left: 83.33333333%;
  1002. }
  1003. .offset-sm-11 {
  1004. margin-left: 91.66666667%;
  1005. }
  1006. .g-sm-0,
  1007. .gx-sm-0 {
  1008. --bs-gutter-x: 0;
  1009. }
  1010. .g-sm-0,
  1011. .gy-sm-0 {
  1012. --bs-gutter-y: 0;
  1013. }
  1014. .g-sm-1,
  1015. .gx-sm-1 {
  1016. --bs-gutter-x: 0.25rem;
  1017. }
  1018. .g-sm-1,
  1019. .gy-sm-1 {
  1020. --bs-gutter-y: 0.25rem;
  1021. }
  1022. .g-sm-2,
  1023. .gx-sm-2 {
  1024. --bs-gutter-x: 0.5rem;
  1025. }
  1026. .g-sm-2,
  1027. .gy-sm-2 {
  1028. --bs-gutter-y: 0.5rem;
  1029. }
  1030. .g-sm-3,
  1031. .gx-sm-3 {
  1032. --bs-gutter-x: 1rem;
  1033. }
  1034. .g-sm-3,
  1035. .gy-sm-3 {
  1036. --bs-gutter-y: 1rem;
  1037. }
  1038. .g-sm-4,
  1039. .gx-sm-4 {
  1040. --bs-gutter-x: 1.5rem;
  1041. }
  1042. .g-sm-4,
  1043. .gy-sm-4 {
  1044. --bs-gutter-y: 1.5rem;
  1045. }
  1046. .g-sm-5,
  1047. .gx-sm-5 {
  1048. --bs-gutter-x: 3rem;
  1049. }
  1050. .g-sm-5,
  1051. .gy-sm-5 {
  1052. --bs-gutter-y: 3rem;
  1053. }
  1054. }
  1055. @media (min-width: 768px) {
  1056. .col-md {
  1057. flex: 1 0 0%;
  1058. }
  1059. .row-cols-md-auto > * {
  1060. flex: 0 0 auto;
  1061. width: auto;
  1062. }
  1063. .row-cols-md-1 > * {
  1064. flex: 0 0 auto;
  1065. width: 100%;
  1066. }
  1067. .row-cols-md-2 > * {
  1068. flex: 0 0 auto;
  1069. width: 50%;
  1070. }
  1071. .row-cols-md-3 > * {
  1072. flex: 0 0 auto;
  1073. width: 33.3333333333%;
  1074. }
  1075. .row-cols-md-4 > * {
  1076. flex: 0 0 auto;
  1077. width: 25%;
  1078. }
  1079. .row-cols-md-5 > * {
  1080. flex: 0 0 auto;
  1081. width: 20%;
  1082. }
  1083. .row-cols-md-6 > * {
  1084. flex: 0 0 auto;
  1085. width: 16.6666666667%;
  1086. }
  1087. .col-md-auto {
  1088. flex: 0 0 auto;
  1089. width: auto;
  1090. }
  1091. .col-md-1 {
  1092. flex: 0 0 auto;
  1093. width: 8.33333333%;
  1094. }
  1095. .col-md-2 {
  1096. flex: 0 0 auto;
  1097. width: 16.66666667%;
  1098. }
  1099. .col-md-3 {
  1100. flex: 0 0 auto;
  1101. width: 25%;
  1102. }
  1103. .col-md-4 {
  1104. flex: 0 0 auto;
  1105. width: 33.33333333%;
  1106. }
  1107. .col-md-5 {
  1108. flex: 0 0 auto;
  1109. width: 41.66666667%;
  1110. }
  1111. .col-md-6 {
  1112. flex: 0 0 auto;
  1113. width: 50%;
  1114. }
  1115. .col-md-7 {
  1116. flex: 0 0 auto;
  1117. width: 58.33333333%;
  1118. }
  1119. .col-md-8 {
  1120. flex: 0 0 auto;
  1121. width: 66.66666667%;
  1122. }
  1123. .col-md-9 {
  1124. flex: 0 0 auto;
  1125. width: 75%;
  1126. }
  1127. .col-md-10 {
  1128. flex: 0 0 auto;
  1129. width: 83.33333333%;
  1130. }
  1131. .col-md-11 {
  1132. flex: 0 0 auto;
  1133. width: 91.66666667%;
  1134. }
  1135. .col-md-12 {
  1136. flex: 0 0 auto;
  1137. width: 100%;
  1138. }
  1139. .offset-md-0 {
  1140. margin-left: 0;
  1141. }
  1142. .offset-md-1 {
  1143. margin-left: 8.33333333%;
  1144. }
  1145. .offset-md-2 {
  1146. margin-left: 16.66666667%;
  1147. }
  1148. .offset-md-3 {
  1149. margin-left: 25%;
  1150. }
  1151. .offset-md-4 {
  1152. margin-left: 33.33333333%;
  1153. }
  1154. .offset-md-5 {
  1155. margin-left: 41.66666667%;
  1156. }
  1157. .offset-md-6 {
  1158. margin-left: 50%;
  1159. }
  1160. .offset-md-7 {
  1161. margin-left: 58.33333333%;
  1162. }
  1163. .offset-md-8 {
  1164. margin-left: 66.66666667%;
  1165. }
  1166. .offset-md-9 {
  1167. margin-left: 75%;
  1168. }
  1169. .offset-md-10 {
  1170. margin-left: 83.33333333%;
  1171. }
  1172. .offset-md-11 {
  1173. margin-left: 91.66666667%;
  1174. }
  1175. .g-md-0,
  1176. .gx-md-0 {
  1177. --bs-gutter-x: 0;
  1178. }
  1179. .g-md-0,
  1180. .gy-md-0 {
  1181. --bs-gutter-y: 0;
  1182. }
  1183. .g-md-1,
  1184. .gx-md-1 {
  1185. --bs-gutter-x: 0.25rem;
  1186. }
  1187. .g-md-1,
  1188. .gy-md-1 {
  1189. --bs-gutter-y: 0.25rem;
  1190. }
  1191. .g-md-2,
  1192. .gx-md-2 {
  1193. --bs-gutter-x: 0.5rem;
  1194. }
  1195. .g-md-2,
  1196. .gy-md-2 {
  1197. --bs-gutter-y: 0.5rem;
  1198. }
  1199. .g-md-3,
  1200. .gx-md-3 {
  1201. --bs-gutter-x: 1rem;
  1202. }
  1203. .g-md-3,
  1204. .gy-md-3 {
  1205. --bs-gutter-y: 1rem;
  1206. }
  1207. .g-md-4,
  1208. .gx-md-4 {
  1209. --bs-gutter-x: 1.5rem;
  1210. }
  1211. .g-md-4,
  1212. .gy-md-4 {
  1213. --bs-gutter-y: 1.5rem;
  1214. }
  1215. .g-md-5,
  1216. .gx-md-5 {
  1217. --bs-gutter-x: 3rem;
  1218. }
  1219. .g-md-5,
  1220. .gy-md-5 {
  1221. --bs-gutter-y: 3rem;
  1222. }
  1223. }
  1224. @media (min-width: 992px) {
  1225. .col-lg {
  1226. flex: 1 0 0%;
  1227. }
  1228. .row-cols-lg-auto > * {
  1229. flex: 0 0 auto;
  1230. width: auto;
  1231. }
  1232. .row-cols-lg-1 > * {
  1233. flex: 0 0 auto;
  1234. width: 100%;
  1235. }
  1236. .row-cols-lg-2 > * {
  1237. flex: 0 0 auto;
  1238. width: 50%;
  1239. }
  1240. .row-cols-lg-3 > * {
  1241. flex: 0 0 auto;
  1242. width: 33.3333333333%;
  1243. }
  1244. .row-cols-lg-4 > * {
  1245. flex: 0 0 auto;
  1246. width: 25%;
  1247. }
  1248. .row-cols-lg-5 > * {
  1249. flex: 0 0 auto;
  1250. width: 20%;
  1251. }
  1252. .row-cols-lg-6 > * {
  1253. flex: 0 0 auto;
  1254. width: 16.6666666667%;
  1255. }
  1256. .col-lg-auto {
  1257. flex: 0 0 auto;
  1258. width: auto;
  1259. }
  1260. .col-lg-1 {
  1261. flex: 0 0 auto;
  1262. width: 8.33333333%;
  1263. }
  1264. .col-lg-2 {
  1265. flex: 0 0 auto;
  1266. width: 16.66666667%;
  1267. }
  1268. .col-lg-3 {
  1269. flex: 0 0 auto;
  1270. width: 25%;
  1271. }
  1272. .col-lg-4 {
  1273. flex: 0 0 auto;
  1274. width: 33.33333333%;
  1275. }
  1276. .col-lg-5 {
  1277. flex: 0 0 auto;
  1278. width: 41.66666667%;
  1279. }
  1280. .col-lg-6 {
  1281. flex: 0 0 auto;
  1282. width: 50%;
  1283. }
  1284. .col-lg-7 {
  1285. flex: 0 0 auto;
  1286. width: 58.33333333%;
  1287. }
  1288. .col-lg-8 {
  1289. flex: 0 0 auto;
  1290. width: 66.66666667%;
  1291. }
  1292. .col-lg-9 {
  1293. flex: 0 0 auto;
  1294. width: 75%;
  1295. }
  1296. .col-lg-10 {
  1297. flex: 0 0 auto;
  1298. width: 83.33333333%;
  1299. }
  1300. .col-lg-11 {
  1301. flex: 0 0 auto;
  1302. width: 91.66666667%;
  1303. }
  1304. .col-lg-12 {
  1305. flex: 0 0 auto;
  1306. width: 100%;
  1307. }
  1308. .offset-lg-0 {
  1309. margin-left: 0;
  1310. }
  1311. .offset-lg-1 {
  1312. margin-left: 8.33333333%;
  1313. }
  1314. .offset-lg-2 {
  1315. margin-left: 16.66666667%;
  1316. }
  1317. .offset-lg-3 {
  1318. margin-left: 25%;
  1319. }
  1320. .offset-lg-4 {
  1321. margin-left: 33.33333333%;
  1322. }
  1323. .offset-lg-5 {
  1324. margin-left: 41.66666667%;
  1325. }
  1326. .offset-lg-6 {
  1327. margin-left: 50%;
  1328. }
  1329. .offset-lg-7 {
  1330. margin-left: 58.33333333%;
  1331. }
  1332. .offset-lg-8 {
  1333. margin-left: 66.66666667%;
  1334. }
  1335. .offset-lg-9 {
  1336. margin-left: 75%;
  1337. }
  1338. .offset-lg-10 {
  1339. margin-left: 83.33333333%;
  1340. }
  1341. .offset-lg-11 {
  1342. margin-left: 91.66666667%;
  1343. }
  1344. .g-lg-0,
  1345. .gx-lg-0 {
  1346. --bs-gutter-x: 0;
  1347. }
  1348. .g-lg-0,
  1349. .gy-lg-0 {
  1350. --bs-gutter-y: 0;
  1351. }
  1352. .g-lg-1,
  1353. .gx-lg-1 {
  1354. --bs-gutter-x: 0.25rem;
  1355. }
  1356. .g-lg-1,
  1357. .gy-lg-1 {
  1358. --bs-gutter-y: 0.25rem;
  1359. }
  1360. .g-lg-2,
  1361. .gx-lg-2 {
  1362. --bs-gutter-x: 0.5rem;
  1363. }
  1364. .g-lg-2,
  1365. .gy-lg-2 {
  1366. --bs-gutter-y: 0.5rem;
  1367. }
  1368. .g-lg-3,
  1369. .gx-lg-3 {
  1370. --bs-gutter-x: 1rem;
  1371. }
  1372. .g-lg-3,
  1373. .gy-lg-3 {
  1374. --bs-gutter-y: 1rem;
  1375. }
  1376. .g-lg-4,
  1377. .gx-lg-4 {
  1378. --bs-gutter-x: 1.5rem;
  1379. }
  1380. .g-lg-4,
  1381. .gy-lg-4 {
  1382. --bs-gutter-y: 1.5rem;
  1383. }
  1384. .g-lg-5,
  1385. .gx-lg-5 {
  1386. --bs-gutter-x: 3rem;
  1387. }
  1388. .g-lg-5,
  1389. .gy-lg-5 {
  1390. --bs-gutter-y: 3rem;
  1391. }
  1392. }
  1393. @media (min-width: 1200px) {
  1394. .col-xl {
  1395. flex: 1 0 0%;
  1396. }
  1397. .row-cols-xl-auto > * {
  1398. flex: 0 0 auto;
  1399. width: auto;
  1400. }
  1401. .row-cols-xl-1 > * {
  1402. flex: 0 0 auto;
  1403. width: 100%;
  1404. }
  1405. .row-cols-xl-2 > * {
  1406. flex: 0 0 auto;
  1407. width: 50%;
  1408. }
  1409. .row-cols-xl-3 > * {
  1410. flex: 0 0 auto;
  1411. width: 33.3333333333%;
  1412. }
  1413. .row-cols-xl-4 > * {
  1414. flex: 0 0 auto;
  1415. width: 25%;
  1416. }
  1417. .row-cols-xl-5 > * {
  1418. flex: 0 0 auto;
  1419. width: 20%;
  1420. }
  1421. .row-cols-xl-6 > * {
  1422. flex: 0 0 auto;
  1423. width: 16.6666666667%;
  1424. }
  1425. .col-xl-auto {
  1426. flex: 0 0 auto;
  1427. width: auto;
  1428. }
  1429. .col-xl-1 {
  1430. flex: 0 0 auto;
  1431. width: 8.33333333%;
  1432. }
  1433. .col-xl-2 {
  1434. flex: 0 0 auto;
  1435. width: 16.66666667%;
  1436. }
  1437. .col-xl-3 {
  1438. flex: 0 0 auto;
  1439. width: 25%;
  1440. }
  1441. .col-xl-4 {
  1442. flex: 0 0 auto;
  1443. width: 33.33333333%;
  1444. }
  1445. .col-xl-5 {
  1446. flex: 0 0 auto;
  1447. width: 41.66666667%;
  1448. }
  1449. .col-xl-6 {
  1450. flex: 0 0 auto;
  1451. width: 50%;
  1452. }
  1453. .col-xl-7 {
  1454. flex: 0 0 auto;
  1455. width: 58.33333333%;
  1456. }
  1457. .col-xl-8 {
  1458. flex: 0 0 auto;
  1459. width: 66.66666667%;
  1460. }
  1461. .col-xl-9 {
  1462. flex: 0 0 auto;
  1463. width: 75%;
  1464. }
  1465. .col-xl-10 {
  1466. flex: 0 0 auto;
  1467. width: 83.33333333%;
  1468. }
  1469. .col-xl-11 {
  1470. flex: 0 0 auto;
  1471. width: 91.66666667%;
  1472. }
  1473. .col-xl-12 {
  1474. flex: 0 0 auto;
  1475. width: 100%;
  1476. }
  1477. .offset-xl-0 {
  1478. margin-left: 0;
  1479. }
  1480. .offset-xl-1 {
  1481. margin-left: 8.33333333%;
  1482. }
  1483. .offset-xl-2 {
  1484. margin-left: 16.66666667%;
  1485. }
  1486. .offset-xl-3 {
  1487. margin-left: 25%;
  1488. }
  1489. .offset-xl-4 {
  1490. margin-left: 33.33333333%;
  1491. }
  1492. .offset-xl-5 {
  1493. margin-left: 41.66666667%;
  1494. }
  1495. .offset-xl-6 {
  1496. margin-left: 50%;
  1497. }
  1498. .offset-xl-7 {
  1499. margin-left: 58.33333333%;
  1500. }
  1501. .offset-xl-8 {
  1502. margin-left: 66.66666667%;
  1503. }
  1504. .offset-xl-9 {
  1505. margin-left: 75%;
  1506. }
  1507. .offset-xl-10 {
  1508. margin-left: 83.33333333%;
  1509. }
  1510. .offset-xl-11 {
  1511. margin-left: 91.66666667%;
  1512. }
  1513. .g-xl-0,
  1514. .gx-xl-0 {
  1515. --bs-gutter-x: 0;
  1516. }
  1517. .g-xl-0,
  1518. .gy-xl-0 {
  1519. --bs-gutter-y: 0;
  1520. }
  1521. .g-xl-1,
  1522. .gx-xl-1 {
  1523. --bs-gutter-x: 0.25rem;
  1524. }
  1525. .g-xl-1,
  1526. .gy-xl-1 {
  1527. --bs-gutter-y: 0.25rem;
  1528. }
  1529. .g-xl-2,
  1530. .gx-xl-2 {
  1531. --bs-gutter-x: 0.5rem;
  1532. }
  1533. .g-xl-2,
  1534. .gy-xl-2 {
  1535. --bs-gutter-y: 0.5rem;
  1536. }
  1537. .g-xl-3,
  1538. .gx-xl-3 {
  1539. --bs-gutter-x: 1rem;
  1540. }
  1541. .g-xl-3,
  1542. .gy-xl-3 {
  1543. --bs-gutter-y: 1rem;
  1544. }
  1545. .g-xl-4,
  1546. .gx-xl-4 {
  1547. --bs-gutter-x: 1.5rem;
  1548. }
  1549. .g-xl-4,
  1550. .gy-xl-4 {
  1551. --bs-gutter-y: 1.5rem;
  1552. }
  1553. .g-xl-5,
  1554. .gx-xl-5 {
  1555. --bs-gutter-x: 3rem;
  1556. }
  1557. .g-xl-5,
  1558. .gy-xl-5 {
  1559. --bs-gutter-y: 3rem;
  1560. }
  1561. }
  1562. @media (min-width: 1400px) {
  1563. .col-xxl {
  1564. flex: 1 0 0%;
  1565. }
  1566. .row-cols-xxl-auto > * {
  1567. flex: 0 0 auto;
  1568. width: auto;
  1569. }
  1570. .row-cols-xxl-1 > * {
  1571. flex: 0 0 auto;
  1572. width: 100%;
  1573. }
  1574. .row-cols-xxl-2 > * {
  1575. flex: 0 0 auto;
  1576. width: 50%;
  1577. }
  1578. .row-cols-xxl-3 > * {
  1579. flex: 0 0 auto;
  1580. width: 33.3333333333%;
  1581. }
  1582. .row-cols-xxl-4 > * {
  1583. flex: 0 0 auto;
  1584. width: 25%;
  1585. }
  1586. .row-cols-xxl-5 > * {
  1587. flex: 0 0 auto;
  1588. width: 20%;
  1589. }
  1590. .row-cols-xxl-6 > * {
  1591. flex: 0 0 auto;
  1592. width: 16.6666666667%;
  1593. }
  1594. .col-xxl-auto {
  1595. flex: 0 0 auto;
  1596. width: auto;
  1597. }
  1598. .col-xxl-1 {
  1599. flex: 0 0 auto;
  1600. width: 8.33333333%;
  1601. }
  1602. .col-xxl-2 {
  1603. flex: 0 0 auto;
  1604. width: 16.66666667%;
  1605. }
  1606. .col-xxl-3 {
  1607. flex: 0 0 auto;
  1608. width: 25%;
  1609. }
  1610. .col-xxl-4 {
  1611. flex: 0 0 auto;
  1612. width: 33.33333333%;
  1613. }
  1614. .col-xxl-5 {
  1615. flex: 0 0 auto;
  1616. width: 41.66666667%;
  1617. }
  1618. .col-xxl-6 {
  1619. flex: 0 0 auto;
  1620. width: 50%;
  1621. }
  1622. .col-xxl-7 {
  1623. flex: 0 0 auto;
  1624. width: 58.33333333%;
  1625. }
  1626. .col-xxl-8 {
  1627. flex: 0 0 auto;
  1628. width: 66.66666667%;
  1629. }
  1630. .col-xxl-9 {
  1631. flex: 0 0 auto;
  1632. width: 75%;
  1633. }
  1634. .col-xxl-10 {
  1635. flex: 0 0 auto;
  1636. width: 83.33333333%;
  1637. }
  1638. .col-xxl-11 {
  1639. flex: 0 0 auto;
  1640. width: 91.66666667%;
  1641. }
  1642. .col-xxl-12 {
  1643. flex: 0 0 auto;
  1644. width: 100%;
  1645. }
  1646. .offset-xxl-0 {
  1647. margin-left: 0;
  1648. }
  1649. .offset-xxl-1 {
  1650. margin-left: 8.33333333%;
  1651. }
  1652. .offset-xxl-2 {
  1653. margin-left: 16.66666667%;
  1654. }
  1655. .offset-xxl-3 {
  1656. margin-left: 25%;
  1657. }
  1658. .offset-xxl-4 {
  1659. margin-left: 33.33333333%;
  1660. }
  1661. .offset-xxl-5 {
  1662. margin-left: 41.66666667%;
  1663. }
  1664. .offset-xxl-6 {
  1665. margin-left: 50%;
  1666. }
  1667. .offset-xxl-7 {
  1668. margin-left: 58.33333333%;
  1669. }
  1670. .offset-xxl-8 {
  1671. margin-left: 66.66666667%;
  1672. }
  1673. .offset-xxl-9 {
  1674. margin-left: 75%;
  1675. }
  1676. .offset-xxl-10 {
  1677. margin-left: 83.33333333%;
  1678. }
  1679. .offset-xxl-11 {
  1680. margin-left: 91.66666667%;
  1681. }
  1682. .g-xxl-0,
  1683. .gx-xxl-0 {
  1684. --bs-gutter-x: 0;
  1685. }
  1686. .g-xxl-0,
  1687. .gy-xxl-0 {
  1688. --bs-gutter-y: 0;
  1689. }
  1690. .g-xxl-1,
  1691. .gx-xxl-1 {
  1692. --bs-gutter-x: 0.25rem;
  1693. }
  1694. .g-xxl-1,
  1695. .gy-xxl-1 {
  1696. --bs-gutter-y: 0.25rem;
  1697. }
  1698. .g-xxl-2,
  1699. .gx-xxl-2 {
  1700. --bs-gutter-x: 0.5rem;
  1701. }
  1702. .g-xxl-2,
  1703. .gy-xxl-2 {
  1704. --bs-gutter-y: 0.5rem;
  1705. }
  1706. .g-xxl-3,
  1707. .gx-xxl-3 {
  1708. --bs-gutter-x: 1rem;
  1709. }
  1710. .g-xxl-3,
  1711. .gy-xxl-3 {
  1712. --bs-gutter-y: 1rem;
  1713. }
  1714. .g-xxl-4,
  1715. .gx-xxl-4 {
  1716. --bs-gutter-x: 1.5rem;
  1717. }
  1718. .g-xxl-4,
  1719. .gy-xxl-4 {
  1720. --bs-gutter-y: 1.5rem;
  1721. }
  1722. .g-xxl-5,
  1723. .gx-xxl-5 {
  1724. --bs-gutter-x: 3rem;
  1725. }
  1726. .g-xxl-5,
  1727. .gy-xxl-5 {
  1728. --bs-gutter-y: 3rem;
  1729. }
  1730. }
  1731. .table {
  1732. --bs-table-color-type: initial;
  1733. --bs-table-bg-type: initial;
  1734. --bs-table-color-state: initial;
  1735. --bs-table-bg-state: initial;
  1736. --bs-table-color: var(--bs-body-color);
  1737. --bs-table-bg: var(--bs-body-bg);
  1738. --bs-table-border-color: var(--bs-border-color);
  1739. --bs-table-accent-bg: transparent;
  1740. --bs-table-striped-color: var(--bs-body-color);
  1741. --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  1742. --bs-table-active-color: var(--bs-body-color);
  1743. --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  1744. --bs-table-hover-color: var(--bs-body-color);
  1745. --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  1746. width: 100%;
  1747. margin-bottom: 1rem;
  1748. vertical-align: top;
  1749. border-color: var(--bs-table-border-color);
  1750. }
  1751. .table > :not(caption) > * > * {
  1752. padding: 0.5rem 0.5rem;
  1753. color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  1754. background-color: var(--bs-table-bg);
  1755. border-bottom-width: var(--bs-border-width);
  1756. box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
  1757. }
  1758. .table > tbody {
  1759. vertical-align: inherit;
  1760. }
  1761. .table > thead {
  1762. vertical-align: bottom;
  1763. }
  1764. .table-group-divider {
  1765. border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
  1766. }
  1767. .caption-top {
  1768. caption-side: top;
  1769. }
  1770. .table-sm > :not(caption) > * > * {
  1771. padding: 0.25rem 0.25rem;
  1772. }
  1773. .table-bordered > :not(caption) > * {
  1774. border-width: var(--bs-border-width) 0;
  1775. }
  1776. .table-bordered > :not(caption) > * > * {
  1777. border-width: 0 var(--bs-border-width);
  1778. }
  1779. .table-borderless > :not(caption) > * > * {
  1780. border-bottom-width: 0;
  1781. }
  1782. .table-borderless > :not(:first-child) {
  1783. border-top-width: 0;
  1784. }
  1785. .table-striped > tbody > tr:nth-of-type(odd) > * {
  1786. --bs-table-color-type: var(--bs-table-striped-color);
  1787. --bs-table-bg-type: var(--bs-table-striped-bg);
  1788. }
  1789. .table-striped-columns > :not(caption) > tr > :nth-child(even) {
  1790. --bs-table-color-type: var(--bs-table-striped-color);
  1791. --bs-table-bg-type: var(--bs-table-striped-bg);
  1792. }
  1793. .table-active {
  1794. --bs-table-color-state: var(--bs-table-active-color);
  1795. --bs-table-bg-state: var(--bs-table-active-bg);
  1796. }
  1797. .table-hover > tbody > tr:hover > * {
  1798. --bs-table-color-state: var(--bs-table-hover-color);
  1799. --bs-table-bg-state: var(--bs-table-hover-bg);
  1800. }
  1801. .table-primary {
  1802. --bs-table-color: #000;
  1803. --bs-table-bg: #d4e6f9;
  1804. --bs-table-border-color: #bfcfe0;
  1805. --bs-table-striped-bg: #c9dbed;
  1806. --bs-table-striped-color: #000;
  1807. --bs-table-active-bg: #bfcfe0;
  1808. --bs-table-active-color: #000;
  1809. --bs-table-hover-bg: #c4d5e6;
  1810. --bs-table-hover-color: #000;
  1811. color: var(--bs-table-color);
  1812. border-color: var(--bs-table-border-color);
  1813. }
  1814. .table-secondary {
  1815. --bs-table-color: #000;
  1816. --bs-table-bg: #d7d8d8;
  1817. --bs-table-border-color: #c2c2c2;
  1818. --bs-table-striped-bg: #cccdcd;
  1819. --bs-table-striped-color: #000;
  1820. --bs-table-active-bg: #c2c2c2;
  1821. --bs-table-active-color: #000;
  1822. --bs-table-hover-bg: #c7c8c8;
  1823. --bs-table-hover-color: #000;
  1824. color: var(--bs-table-color);
  1825. border-color: var(--bs-table-border-color);
  1826. }
  1827. .table-success {
  1828. --bs-table-color: #000;
  1829. --bs-table-bg: #d9f0d1;
  1830. --bs-table-border-color: #c3d8bc;
  1831. --bs-table-striped-bg: #cee4c7;
  1832. --bs-table-striped-color: #000;
  1833. --bs-table-active-bg: #c3d8bc;
  1834. --bs-table-active-color: #000;
  1835. --bs-table-hover-bg: #c9dec1;
  1836. --bs-table-hover-color: #000;
  1837. color: var(--bs-table-color);
  1838. border-color: var(--bs-table-border-color);
  1839. }
  1840. .table-info {
  1841. --bs-table-color: #000;
  1842. --bs-table-bg: #ebddf1;
  1843. --bs-table-border-color: #d4c7d9;
  1844. --bs-table-striped-bg: #dfd2e5;
  1845. --bs-table-striped-color: #000;
  1846. --bs-table-active-bg: #d4c7d9;
  1847. --bs-table-active-color: #000;
  1848. --bs-table-hover-bg: #d9ccdf;
  1849. --bs-table-hover-color: #000;
  1850. color: var(--bs-table-color);
  1851. border-color: var(--bs-table-border-color);
  1852. }
  1853. .table-warning {
  1854. --bs-table-color: #000;
  1855. --bs-table-bg: #ffe3d1;
  1856. --bs-table-border-color: #e6ccbc;
  1857. --bs-table-striped-bg: #f2d8c7;
  1858. --bs-table-striped-color: #000;
  1859. --bs-table-active-bg: #e6ccbc;
  1860. --bs-table-active-color: #000;
  1861. --bs-table-hover-bg: #ecd2c1;
  1862. --bs-table-hover-color: #000;
  1863. color: var(--bs-table-color);
  1864. border-color: var(--bs-table-border-color);
  1865. }
  1866. .table-danger {
  1867. --bs-table-color: #000;
  1868. --bs-table-bg: #ffccd7;
  1869. --bs-table-border-color: #e6b8c2;
  1870. --bs-table-striped-bg: #f2c2cc;
  1871. --bs-table-striped-color: #000;
  1872. --bs-table-active-bg: #e6b8c2;
  1873. --bs-table-active-color: #000;
  1874. --bs-table-hover-bg: #ecbdc7;
  1875. --bs-table-hover-color: #000;
  1876. color: var(--bs-table-color);
  1877. border-color: var(--bs-table-border-color);
  1878. }
  1879. .table-light {
  1880. --bs-table-color: #000;
  1881. --bs-table-bg: #f8f9fa;
  1882. --bs-table-border-color: #dfe0e1;
  1883. --bs-table-striped-bg: #ecedee;
  1884. --bs-table-striped-color: #000;
  1885. --bs-table-active-bg: #dfe0e1;
  1886. --bs-table-active-color: #000;
  1887. --bs-table-hover-bg: #e5e6e7;
  1888. --bs-table-hover-color: #000;
  1889. color: var(--bs-table-color);
  1890. border-color: var(--bs-table-border-color);
  1891. }
  1892. .table-dark {
  1893. --bs-table-color: #fff;
  1894. --bs-table-bg: #373a3c;
  1895. --bs-table-border-color: #4b4e50;
  1896. --bs-table-striped-bg: #414446;
  1897. --bs-table-striped-color: #fff;
  1898. --bs-table-active-bg: #4b4e50;
  1899. --bs-table-active-color: #fff;
  1900. --bs-table-hover-bg: #46494b;
  1901. --bs-table-hover-color: #fff;
  1902. color: var(--bs-table-color);
  1903. border-color: var(--bs-table-border-color);
  1904. }
  1905. .table-responsive {
  1906. overflow-x: auto;
  1907. -webkit-overflow-scrolling: touch;
  1908. }
  1909. @media (max-width: 575.98px) {
  1910. .table-responsive-sm {
  1911. overflow-x: auto;
  1912. -webkit-overflow-scrolling: touch;
  1913. }
  1914. }
  1915. @media (max-width: 767.98px) {
  1916. .table-responsive-md {
  1917. overflow-x: auto;
  1918. -webkit-overflow-scrolling: touch;
  1919. }
  1920. }
  1921. @media (max-width: 991.98px) {
  1922. .table-responsive-lg {
  1923. overflow-x: auto;
  1924. -webkit-overflow-scrolling: touch;
  1925. }
  1926. }
  1927. @media (max-width: 1199.98px) {
  1928. .table-responsive-xl {
  1929. overflow-x: auto;
  1930. -webkit-overflow-scrolling: touch;
  1931. }
  1932. }
  1933. @media (max-width: 1399.98px) {
  1934. .table-responsive-xxl {
  1935. overflow-x: auto;
  1936. -webkit-overflow-scrolling: touch;
  1937. }
  1938. }
  1939. .form-label {
  1940. margin-bottom: 0.5rem;
  1941. }
  1942. .col-form-label {
  1943. padding-top: calc(0.375rem + var(--bs-border-width));
  1944. padding-bottom: calc(0.375rem + var(--bs-border-width));
  1945. margin-bottom: 0;
  1946. font-size: inherit;
  1947. line-height: 1.5;
  1948. }
  1949. .col-form-label-lg {
  1950. padding-top: calc(0.5rem + var(--bs-border-width));
  1951. padding-bottom: calc(0.5rem + var(--bs-border-width));
  1952. font-size: 1.25rem;
  1953. }
  1954. .col-form-label-sm {
  1955. padding-top: calc(0.25rem + var(--bs-border-width));
  1956. padding-bottom: calc(0.25rem + var(--bs-border-width));
  1957. font-size: 0.875rem;
  1958. }
  1959. .form-text {
  1960. margin-top: 0.25rem;
  1961. font-size: 0.875em;
  1962. color: var(--bs-secondary-color);
  1963. }
  1964. .form-control {
  1965. display: block;
  1966. width: 100%;
  1967. padding: 0.375rem 0.75rem;
  1968. font-size: 1rem;
  1969. font-weight: 400;
  1970. line-height: 1.5;
  1971. color: var(--bs-body-color);
  1972. -webkit-appearance: none;
  1973. -moz-appearance: none;
  1974. appearance: none;
  1975. background-color: var(--bs-body-bg);
  1976. background-clip: padding-box;
  1977. border: var(--bs-border-width) solid var(--bs-border-color);
  1978. border-radius: 0;
  1979. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  1980. }
  1981. @media (prefers-reduced-motion: reduce) {
  1982. .form-control {
  1983. transition: none;
  1984. }
  1985. }
  1986. .form-control[type=file] {
  1987. overflow: hidden;
  1988. }
  1989. .form-control[type=file]:not(:disabled):not([readonly]) {
  1990. cursor: pointer;
  1991. }
  1992. .form-control:focus {
  1993. color: var(--bs-body-color);
  1994. background-color: var(--bs-body-bg);
  1995. border-color: #93c0f1;
  1996. outline: 0;
  1997. box-shadow: 0 0 0 0.25rem rgba(39, 128, 227, 0.25);
  1998. }
  1999. .form-control::-webkit-date-and-time-value {
  2000. min-width: 85px;
  2001. height: 1.5em;
  2002. margin: 0;
  2003. }
  2004. .form-control::-webkit-datetime-edit {
  2005. display: block;
  2006. padding: 0;
  2007. }
  2008. .form-control::-moz-placeholder {
  2009. color: var(--bs-secondary-color);
  2010. opacity: 1;
  2011. }
  2012. .form-control::placeholder {
  2013. color: var(--bs-secondary-color);
  2014. opacity: 1;
  2015. }
  2016. .form-control:disabled {
  2017. background-color: var(--bs-secondary-bg);
  2018. opacity: 1;
  2019. }
  2020. .form-control::-webkit-file-upload-button {
  2021. padding: 0.375rem 0.75rem;
  2022. margin: -0.375rem -0.75rem;
  2023. -webkit-margin-end: 0.75rem;
  2024. margin-inline-end: 0.75rem;
  2025. color: var(--bs-body-color);
  2026. background-color: var(--bs-tertiary-bg);
  2027. pointer-events: none;
  2028. border-color: inherit;
  2029. border-style: solid;
  2030. border-width: 0;
  2031. border-inline-end-width: var(--bs-border-width);
  2032. border-radius: 0;
  2033. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2034. 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;
  2035. }
  2036. .form-control::file-selector-button {
  2037. padding: 0.375rem 0.75rem;
  2038. margin: -0.375rem -0.75rem;
  2039. -webkit-margin-end: 0.75rem;
  2040. margin-inline-end: 0.75rem;
  2041. color: var(--bs-body-color);
  2042. background-color: var(--bs-tertiary-bg);
  2043. pointer-events: none;
  2044. border-color: inherit;
  2045. border-style: solid;
  2046. border-width: 0;
  2047. border-inline-end-width: var(--bs-border-width);
  2048. border-radius: 0;
  2049. 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;
  2050. }
  2051. @media (prefers-reduced-motion: reduce) {
  2052. .form-control::-webkit-file-upload-button {
  2053. -webkit-transition: none;
  2054. transition: none;
  2055. }
  2056. .form-control::file-selector-button {
  2057. transition: none;
  2058. }
  2059. }
  2060. .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  2061. background-color: var(--bs-secondary-bg);
  2062. }
  2063. .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  2064. background-color: var(--bs-secondary-bg);
  2065. }
  2066. .form-control-plaintext {
  2067. display: block;
  2068. width: 100%;
  2069. padding: 0.375rem 0;
  2070. margin-bottom: 0;
  2071. line-height: 1.5;
  2072. color: var(--bs-body-color);
  2073. background-color: transparent;
  2074. border: solid transparent;
  2075. border-width: var(--bs-border-width) 0;
  2076. }
  2077. .form-control-plaintext:focus {
  2078. outline: 0;
  2079. }
  2080. .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  2081. padding-right: 0;
  2082. padding-left: 0;
  2083. }
  2084. .form-control-sm {
  2085. min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  2086. padding: 0.25rem 0.5rem;
  2087. font-size: 0.875rem;
  2088. }
  2089. .form-control-sm::-webkit-file-upload-button {
  2090. padding: 0.25rem 0.5rem;
  2091. margin: -0.25rem -0.5rem;
  2092. -webkit-margin-end: 0.5rem;
  2093. margin-inline-end: 0.5rem;
  2094. }
  2095. .form-control-sm::file-selector-button {
  2096. padding: 0.25rem 0.5rem;
  2097. margin: -0.25rem -0.5rem;
  2098. -webkit-margin-end: 0.5rem;
  2099. margin-inline-end: 0.5rem;
  2100. }
  2101. .form-control-lg {
  2102. min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  2103. padding: 0.5rem 1rem;
  2104. font-size: 1.25rem;
  2105. }
  2106. .form-control-lg::-webkit-file-upload-button {
  2107. padding: 0.5rem 1rem;
  2108. margin: -0.5rem -1rem;
  2109. -webkit-margin-end: 1rem;
  2110. margin-inline-end: 1rem;
  2111. }
  2112. .form-control-lg::file-selector-button {
  2113. padding: 0.5rem 1rem;
  2114. margin: -0.5rem -1rem;
  2115. -webkit-margin-end: 1rem;
  2116. margin-inline-end: 1rem;
  2117. }
  2118. textarea.form-control {
  2119. min-height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  2120. }
  2121. textarea.form-control-sm {
  2122. min-height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  2123. }
  2124. textarea.form-control-lg {
  2125. min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  2126. }
  2127. .form-control-color {
  2128. width: 3rem;
  2129. height: calc(1.5em + 0.75rem + calc(var(--bs-border-width) * 2));
  2130. padding: 0.375rem;
  2131. }
  2132. .form-control-color:not(:disabled):not([readonly]) {
  2133. cursor: pointer;
  2134. }
  2135. .form-control-color::-moz-color-swatch {
  2136. border: 0 !important;
  2137. }
  2138. .form-control-color::-webkit-color-swatch {
  2139. border: 0 !important;
  2140. }
  2141. .form-control-color.form-control-sm {
  2142. height: calc(1.5em + 0.5rem + calc(var(--bs-border-width) * 2));
  2143. }
  2144. .form-control-color.form-control-lg {
  2145. height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  2146. }
  2147. .form-select {
  2148. --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23373a3c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  2149. display: block;
  2150. width: 100%;
  2151. padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  2152. font-size: 1rem;
  2153. font-weight: 400;
  2154. line-height: 1.5;
  2155. color: var(--bs-body-color);
  2156. -webkit-appearance: none;
  2157. -moz-appearance: none;
  2158. appearance: none;
  2159. background-color: var(--bs-body-bg);
  2160. background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  2161. background-repeat: no-repeat;
  2162. background-position: right 0.75rem center;
  2163. background-size: 16px 12px;
  2164. border: var(--bs-border-width) solid var(--bs-border-color);
  2165. border-radius: 0;
  2166. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2167. }
  2168. @media (prefers-reduced-motion: reduce) {
  2169. .form-select {
  2170. transition: none;
  2171. }
  2172. }
  2173. .form-select:focus {
  2174. border-color: #93c0f1;
  2175. outline: 0;
  2176. box-shadow: 0 0 0 0.25rem rgba(39, 128, 227, 0.25);
  2177. }
  2178. .form-select[multiple], .form-select[size]:not([size="1"]) {
  2179. padding-right: 0.75rem;
  2180. background-image: none;
  2181. }
  2182. .form-select:disabled {
  2183. background-color: var(--bs-secondary-bg);
  2184. }
  2185. .form-select:-moz-focusring {
  2186. color: transparent;
  2187. text-shadow: 0 0 0 var(--bs-body-color);
  2188. }
  2189. .form-select-sm {
  2190. padding-top: 0.25rem;
  2191. padding-bottom: 0.25rem;
  2192. padding-left: 0.5rem;
  2193. font-size: 0.875rem;
  2194. }
  2195. .form-select-lg {
  2196. padding-top: 0.5rem;
  2197. padding-bottom: 0.5rem;
  2198. padding-left: 1rem;
  2199. font-size: 1.25rem;
  2200. }
  2201. [data-bs-theme=dark] .form-select {
  2202. --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  2203. }
  2204. .form-check {
  2205. display: block;
  2206. min-height: 1.5rem;
  2207. padding-left: 1.5em;
  2208. margin-bottom: 0.125rem;
  2209. }
  2210. .form-check .form-check-input {
  2211. float: left;
  2212. margin-left: -1.5em;
  2213. }
  2214. .form-check-reverse {
  2215. padding-right: 1.5em;
  2216. padding-left: 0;
  2217. text-align: right;
  2218. }
  2219. .form-check-reverse .form-check-input {
  2220. float: right;
  2221. margin-right: -1.5em;
  2222. margin-left: 0;
  2223. }
  2224. .form-check-input {
  2225. --bs-form-check-bg: var(--bs-body-bg);
  2226. width: 1em;
  2227. height: 1em;
  2228. margin-top: 0.25em;
  2229. vertical-align: top;
  2230. -webkit-appearance: none;
  2231. -moz-appearance: none;
  2232. appearance: none;
  2233. background-color: var(--bs-form-check-bg);
  2234. background-image: var(--bs-form-check-bg-image);
  2235. background-repeat: no-repeat;
  2236. background-position: center;
  2237. background-size: contain;
  2238. border: var(--bs-border-width) solid var(--bs-border-color);
  2239. -webkit-print-color-adjust: exact;
  2240. color-adjust: exact;
  2241. print-color-adjust: exact;
  2242. }
  2243. .form-check-input[type=radio] {
  2244. border-radius: 50%;
  2245. }
  2246. .form-check-input:active {
  2247. filter: brightness(90%);
  2248. }
  2249. .form-check-input:focus {
  2250. border-color: #93c0f1;
  2251. outline: 0;
  2252. box-shadow: 0 0 0 0.25rem rgba(39, 128, 227, 0.25);
  2253. }
  2254. .form-check-input:checked {
  2255. background-color: #2780e3;
  2256. border-color: #2780e3;
  2257. }
  2258. .form-check-input:checked[type=checkbox] {
  2259. --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
  2260. }
  2261. .form-check-input:checked[type=radio] {
  2262. --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
  2263. }
  2264. .form-check-input[type=checkbox]:indeterminate {
  2265. background-color: #2780e3;
  2266. border-color: #2780e3;
  2267. --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
  2268. }
  2269. .form-check-input:disabled {
  2270. pointer-events: none;
  2271. filter: none;
  2272. opacity: 0.5;
  2273. }
  2274. .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  2275. cursor: default;
  2276. opacity: 0.5;
  2277. }
  2278. .form-switch {
  2279. padding-left: 2.5em;
  2280. }
  2281. .form-switch .form-check-input {
  2282. --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  2283. width: 2em;
  2284. margin-left: -2.5em;
  2285. background-image: var(--bs-form-switch-bg);
  2286. background-position: left center;
  2287. transition: background-position 0.15s ease-in-out;
  2288. }
  2289. @media (prefers-reduced-motion: reduce) {
  2290. .form-switch .form-check-input {
  2291. transition: none;
  2292. }
  2293. }
  2294. .form-switch .form-check-input:focus {
  2295. --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2393c0f1'/%3e%3c/svg%3e");
  2296. }
  2297. .form-switch .form-check-input:checked {
  2298. background-position: right center;
  2299. --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  2300. }
  2301. .form-switch.form-check-reverse {
  2302. padding-right: 2.5em;
  2303. padding-left: 0;
  2304. }
  2305. .form-switch.form-check-reverse .form-check-input {
  2306. margin-right: -2.5em;
  2307. margin-left: 0;
  2308. }
  2309. .form-check-inline {
  2310. display: inline-block;
  2311. margin-right: 1rem;
  2312. }
  2313. .btn-check {
  2314. position: absolute;
  2315. clip: rect(0, 0, 0, 0);
  2316. pointer-events: none;
  2317. }
  2318. .btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  2319. pointer-events: none;
  2320. filter: none;
  2321. opacity: 0.65;
  2322. }
  2323. [data-bs-theme=dark] .form-switch .form-check-input:not(:checked):not(:focus) {
  2324. --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
  2325. }
  2326. .form-range {
  2327. width: 100%;
  2328. height: 1.5rem;
  2329. padding: 0;
  2330. -webkit-appearance: none;
  2331. -moz-appearance: none;
  2332. appearance: none;
  2333. background-color: transparent;
  2334. }
  2335. .form-range:focus {
  2336. outline: 0;
  2337. }
  2338. .form-range:focus::-webkit-slider-thumb {
  2339. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(39, 128, 227, 0.25);
  2340. }
  2341. .form-range:focus::-moz-range-thumb {
  2342. box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(39, 128, 227, 0.25);
  2343. }
  2344. .form-range::-moz-focus-outer {
  2345. border: 0;
  2346. }
  2347. .form-range::-webkit-slider-thumb {
  2348. width: 1rem;
  2349. height: 1rem;
  2350. margin-top: -0.25rem;
  2351. -webkit-appearance: none;
  2352. appearance: none;
  2353. background-color: #2780e3;
  2354. border: 0;
  2355. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2356. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2357. }
  2358. @media (prefers-reduced-motion: reduce) {
  2359. .form-range::-webkit-slider-thumb {
  2360. -webkit-transition: none;
  2361. transition: none;
  2362. }
  2363. }
  2364. .form-range::-webkit-slider-thumb:active {
  2365. background-color: #bed9f7;
  2366. }
  2367. .form-range::-webkit-slider-runnable-track {
  2368. width: 100%;
  2369. height: 0.5rem;
  2370. color: transparent;
  2371. cursor: pointer;
  2372. background-color: var(--bs-tertiary-bg);
  2373. border-color: transparent;
  2374. }
  2375. .form-range::-moz-range-thumb {
  2376. width: 1rem;
  2377. height: 1rem;
  2378. -moz-appearance: none;
  2379. appearance: none;
  2380. background-color: #2780e3;
  2381. border: 0;
  2382. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2383. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2384. }
  2385. @media (prefers-reduced-motion: reduce) {
  2386. .form-range::-moz-range-thumb {
  2387. -moz-transition: none;
  2388. transition: none;
  2389. }
  2390. }
  2391. .form-range::-moz-range-thumb:active {
  2392. background-color: #bed9f7;
  2393. }
  2394. .form-range::-moz-range-track {
  2395. width: 100%;
  2396. height: 0.5rem;
  2397. color: transparent;
  2398. cursor: pointer;
  2399. background-color: var(--bs-tertiary-bg);
  2400. border-color: transparent;
  2401. }
  2402. .form-range:disabled {
  2403. pointer-events: none;
  2404. }
  2405. .form-range:disabled::-webkit-slider-thumb {
  2406. background-color: var(--bs-secondary-color);
  2407. }
  2408. .form-range:disabled::-moz-range-thumb {
  2409. background-color: var(--bs-secondary-color);
  2410. }
  2411. .form-floating {
  2412. position: relative;
  2413. }
  2414. .form-floating > .form-control,
  2415. .form-floating > .form-control-plaintext,
  2416. .form-floating > .form-select {
  2417. height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  2418. min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  2419. line-height: 1.25;
  2420. }
  2421. .form-floating > label {
  2422. position: absolute;
  2423. top: 0;
  2424. left: 0;
  2425. z-index: 2;
  2426. height: 100%;
  2427. padding: 1rem 0.75rem;
  2428. overflow: hidden;
  2429. text-align: start;
  2430. text-overflow: ellipsis;
  2431. white-space: nowrap;
  2432. pointer-events: none;
  2433. border: var(--bs-border-width) solid transparent;
  2434. transform-origin: 0 0;
  2435. transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  2436. }
  2437. @media (prefers-reduced-motion: reduce) {
  2438. .form-floating > label {
  2439. transition: none;
  2440. }
  2441. }
  2442. .form-floating > .form-control,
  2443. .form-floating > .form-control-plaintext {
  2444. padding: 1rem 0.75rem;
  2445. }
  2446. .form-floating > .form-control::-moz-placeholder, .form-floating > .form-control-plaintext::-moz-placeholder {
  2447. color: transparent;
  2448. }
  2449. .form-floating > .form-control::placeholder,
  2450. .form-floating > .form-control-plaintext::placeholder {
  2451. color: transparent;
  2452. }
  2453. .form-floating > .form-control:not(:-moz-placeholder-shown), .form-floating > .form-control-plaintext:not(:-moz-placeholder-shown) {
  2454. padding-top: 1.625rem;
  2455. padding-bottom: 0.625rem;
  2456. }
  2457. .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
  2458. .form-floating > .form-control-plaintext:focus,
  2459. .form-floating > .form-control-plaintext:not(:placeholder-shown) {
  2460. padding-top: 1.625rem;
  2461. padding-bottom: 0.625rem;
  2462. }
  2463. .form-floating > .form-control:-webkit-autofill,
  2464. .form-floating > .form-control-plaintext:-webkit-autofill {
  2465. padding-top: 1.625rem;
  2466. padding-bottom: 0.625rem;
  2467. }
  2468. .form-floating > .form-select {
  2469. padding-top: 1.625rem;
  2470. padding-bottom: 0.625rem;
  2471. }
  2472. .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  2473. color: rgba(var(--bs-body-color-rgb), 0.65);
  2474. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2475. }
  2476. .form-floating > .form-control:focus ~ label,
  2477. .form-floating > .form-control:not(:placeholder-shown) ~ label,
  2478. .form-floating > .form-control-plaintext ~ label,
  2479. .form-floating > .form-select ~ label {
  2480. color: rgba(var(--bs-body-color-rgb), 0.65);
  2481. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2482. }
  2483. .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
  2484. position: absolute;
  2485. inset: 1rem 0.375rem;
  2486. z-index: -1;
  2487. height: 1.5em;
  2488. content: "";
  2489. background-color: var(--bs-body-bg);
  2490. }
  2491. .form-floating > .form-control:focus ~ label::after,
  2492. .form-floating > .form-control:not(:placeholder-shown) ~ label::after,
  2493. .form-floating > .form-control-plaintext ~ label::after,
  2494. .form-floating > .form-select ~ label::after {
  2495. position: absolute;
  2496. inset: 1rem 0.375rem;
  2497. z-index: -1;
  2498. height: 1.5em;
  2499. content: "";
  2500. background-color: var(--bs-body-bg);
  2501. }
  2502. .form-floating > .form-control:-webkit-autofill ~ label {
  2503. color: rgba(var(--bs-body-color-rgb), 0.65);
  2504. transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  2505. }
  2506. .form-floating > .form-control-plaintext ~ label {
  2507. border-width: var(--bs-border-width) 0;
  2508. }
  2509. .form-floating > :disabled ~ label,
  2510. .form-floating > .form-control:disabled ~ label {
  2511. color: #868e96;
  2512. }
  2513. .form-floating > :disabled ~ label::after,
  2514. .form-floating > .form-control:disabled ~ label::after {
  2515. background-color: var(--bs-secondary-bg);
  2516. }
  2517. .input-group {
  2518. position: relative;
  2519. display: flex;
  2520. flex-wrap: wrap;
  2521. align-items: stretch;
  2522. width: 100%;
  2523. }
  2524. .input-group > .form-control,
  2525. .input-group > .form-select,
  2526. .input-group > .form-floating {
  2527. position: relative;
  2528. flex: 1 1 auto;
  2529. width: 1%;
  2530. min-width: 0;
  2531. }
  2532. .input-group > .form-control:focus,
  2533. .input-group > .form-select:focus,
  2534. .input-group > .form-floating:focus-within {
  2535. z-index: 5;
  2536. }
  2537. .input-group .btn {
  2538. position: relative;
  2539. z-index: 2;
  2540. }
  2541. .input-group .btn:focus {
  2542. z-index: 5;
  2543. }
  2544. .input-group-text {
  2545. display: flex;
  2546. align-items: center;
  2547. padding: 0.375rem 0.75rem;
  2548. font-size: 1rem;
  2549. font-weight: 400;
  2550. line-height: 1.5;
  2551. color: var(--bs-body-color);
  2552. text-align: center;
  2553. white-space: nowrap;
  2554. background-color: var(--bs-tertiary-bg);
  2555. border: var(--bs-border-width) solid var(--bs-border-color);
  2556. }
  2557. .input-group-lg > .form-control,
  2558. .input-group-lg > .form-select,
  2559. .input-group-lg > .input-group-text,
  2560. .input-group-lg > .btn {
  2561. padding: 0.5rem 1rem;
  2562. font-size: 1.25rem;
  2563. }
  2564. .input-group-sm > .form-control,
  2565. .input-group-sm > .form-select,
  2566. .input-group-sm > .input-group-text,
  2567. .input-group-sm > .btn {
  2568. padding: 0.25rem 0.5rem;
  2569. font-size: 0.875rem;
  2570. }
  2571. .input-group-lg > .form-select,
  2572. .input-group-sm > .form-select {
  2573. padding-right: 3rem;
  2574. }
  2575. .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  2576. margin-left: calc(var(--bs-border-width) * -1);
  2577. }
  2578. .valid-feedback {
  2579. display: none;
  2580. width: 100%;
  2581. margin-top: 0.25rem;
  2582. font-size: 0.875em;
  2583. color: var(--bs-form-valid-color);
  2584. }
  2585. .valid-tooltip {
  2586. position: absolute;
  2587. top: 100%;
  2588. z-index: 5;
  2589. display: none;
  2590. max-width: 100%;
  2591. padding: 0.25rem 0.5rem;
  2592. margin-top: 0.1rem;
  2593. font-size: 0.875rem;
  2594. color: #fff;
  2595. background-color: var(--bs-success);
  2596. }
  2597. .was-validated :valid ~ .valid-feedback,
  2598. .was-validated :valid ~ .valid-tooltip,
  2599. .is-valid ~ .valid-feedback,
  2600. .is-valid ~ .valid-tooltip {
  2601. display: block;
  2602. }
  2603. .was-validated .form-control:valid, .form-control.is-valid {
  2604. border-color: var(--bs-form-valid-border-color);
  2605. padding-right: calc(1.5em + 0.75rem);
  2606. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%233fb618' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  2607. background-repeat: no-repeat;
  2608. background-position: right calc(0.375em + 0.1875rem) center;
  2609. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2610. }
  2611. .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  2612. border-color: var(--bs-form-valid-border-color);
  2613. box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  2614. }
  2615. .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  2616. padding-right: calc(1.5em + 0.75rem);
  2617. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2618. }
  2619. .was-validated .form-select:valid, .form-select.is-valid {
  2620. border-color: var(--bs-form-valid-border-color);
  2621. }
  2622. .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"] {
  2623. --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%233fb618' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  2624. padding-right: 4.125rem;
  2625. background-position: right 0.75rem center, center right 2.25rem;
  2626. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2627. }
  2628. .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  2629. border-color: var(--bs-form-valid-border-color);
  2630. box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  2631. }
  2632. .was-validated .form-control-color:valid, .form-control-color.is-valid {
  2633. width: calc(3rem + calc(1.5em + 0.75rem));
  2634. }
  2635. .was-validated .form-check-input:valid, .form-check-input.is-valid {
  2636. border-color: var(--bs-form-valid-border-color);
  2637. }
  2638. .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  2639. background-color: var(--bs-form-valid-color);
  2640. }
  2641. .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  2642. box-shadow: 0 0 0 0.25rem rgba(var(--bs-success-rgb), 0.25);
  2643. }
  2644. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  2645. color: var(--bs-form-valid-color);
  2646. }
  2647. .form-check-inline .form-check-input ~ .valid-feedback {
  2648. margin-left: 0.5em;
  2649. }
  2650. .was-validated .input-group > .form-control:not(:focus):valid, .input-group > .form-control:not(:focus).is-valid,
  2651. .was-validated .input-group > .form-select:not(:focus):valid,
  2652. .input-group > .form-select:not(:focus).is-valid,
  2653. .was-validated .input-group > .form-floating:not(:focus-within):valid,
  2654. .input-group > .form-floating:not(:focus-within).is-valid {
  2655. z-index: 3;
  2656. }
  2657. .invalid-feedback {
  2658. display: none;
  2659. width: 100%;
  2660. margin-top: 0.25rem;
  2661. font-size: 0.875em;
  2662. color: var(--bs-form-invalid-color);
  2663. }
  2664. .invalid-tooltip {
  2665. position: absolute;
  2666. top: 100%;
  2667. z-index: 5;
  2668. display: none;
  2669. max-width: 100%;
  2670. padding: 0.25rem 0.5rem;
  2671. margin-top: 0.1rem;
  2672. font-size: 0.875rem;
  2673. color: #fff;
  2674. background-color: var(--bs-danger);
  2675. }
  2676. .was-validated :invalid ~ .invalid-feedback,
  2677. .was-validated :invalid ~ .invalid-tooltip,
  2678. .is-invalid ~ .invalid-feedback,
  2679. .is-invalid ~ .invalid-tooltip {
  2680. display: block;
  2681. }
  2682. .was-validated .form-control:invalid, .form-control.is-invalid {
  2683. border-color: var(--bs-form-invalid-border-color);
  2684. padding-right: calc(1.5em + 0.75rem);
  2685. 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='%23ff0039'%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='%23ff0039' stroke='none'/%3e%3c/svg%3e");
  2686. background-repeat: no-repeat;
  2687. background-position: right calc(0.375em + 0.1875rem) center;
  2688. background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2689. }
  2690. .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  2691. border-color: var(--bs-form-invalid-border-color);
  2692. box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  2693. }
  2694. .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  2695. padding-right: calc(1.5em + 0.75rem);
  2696. background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
  2697. }
  2698. .was-validated .form-select:invalid, .form-select.is-invalid {
  2699. border-color: var(--bs-form-invalid-border-color);
  2700. }
  2701. .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"] {
  2702. --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ff0039'%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='%23ff0039' stroke='none'/%3e%3c/svg%3e");
  2703. padding-right: 4.125rem;
  2704. background-position: right 0.75rem center, center right 2.25rem;
  2705. background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  2706. }
  2707. .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  2708. border-color: var(--bs-form-invalid-border-color);
  2709. box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  2710. }
  2711. .was-validated .form-control-color:invalid, .form-control-color.is-invalid {
  2712. width: calc(3rem + calc(1.5em + 0.75rem));
  2713. }
  2714. .was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  2715. border-color: var(--bs-form-invalid-border-color);
  2716. }
  2717. .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  2718. background-color: var(--bs-form-invalid-color);
  2719. }
  2720. .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  2721. box-shadow: 0 0 0 0.25rem rgba(var(--bs-danger-rgb), 0.25);
  2722. }
  2723. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  2724. color: var(--bs-form-invalid-color);
  2725. }
  2726. .form-check-inline .form-check-input ~ .invalid-feedback {
  2727. margin-left: 0.5em;
  2728. }
  2729. .was-validated .input-group > .form-control:not(:focus):invalid, .input-group > .form-control:not(:focus).is-invalid,
  2730. .was-validated .input-group > .form-select:not(:focus):invalid,
  2731. .input-group > .form-select:not(:focus).is-invalid,
  2732. .was-validated .input-group > .form-floating:not(:focus-within):invalid,
  2733. .input-group > .form-floating:not(:focus-within).is-invalid {
  2734. z-index: 4;
  2735. }
  2736. .btn {
  2737. --bs-btn-padding-x: 0.75rem;
  2738. --bs-btn-padding-y: 0.375rem;
  2739. --bs-btn-font-family: ;
  2740. --bs-btn-font-size: 1rem;
  2741. --bs-btn-font-weight: 400;
  2742. --bs-btn-line-height: 1.5;
  2743. --bs-btn-color: var(--bs-body-color);
  2744. --bs-btn-bg: transparent;
  2745. --bs-btn-border-width: var(--bs-border-width);
  2746. --bs-btn-border-color: transparent;
  2747. --bs-btn-border-radius: var(--bs-border-radius);
  2748. --bs-btn-hover-border-color: transparent;
  2749. --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  2750. --bs-btn-disabled-opacity: 0.65;
  2751. --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  2752. display: inline-block;
  2753. padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  2754. font-family: var(--bs-btn-font-family);
  2755. font-size: var(--bs-btn-font-size);
  2756. font-weight: var(--bs-btn-font-weight);
  2757. line-height: var(--bs-btn-line-height);
  2758. color: var(--bs-btn-color);
  2759. text-align: center;
  2760. text-decoration: none;
  2761. vertical-align: middle;
  2762. cursor: pointer;
  2763. -webkit-user-select: none;
  2764. -moz-user-select: none;
  2765. user-select: none;
  2766. border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  2767. background-color: var(--bs-btn-bg);
  2768. 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;
  2769. }
  2770. @media (prefers-reduced-motion: reduce) {
  2771. .btn {
  2772. transition: none;
  2773. }
  2774. }
  2775. .btn:hover {
  2776. color: var(--bs-btn-hover-color);
  2777. background-color: var(--bs-btn-hover-bg);
  2778. border-color: var(--bs-btn-hover-border-color);
  2779. }
  2780. .btn-check + .btn:hover {
  2781. color: var(--bs-btn-color);
  2782. background-color: var(--bs-btn-bg);
  2783. border-color: var(--bs-btn-border-color);
  2784. }
  2785. .btn:focus-visible {
  2786. color: var(--bs-btn-hover-color);
  2787. background-color: var(--bs-btn-hover-bg);
  2788. border-color: var(--bs-btn-hover-border-color);
  2789. outline: 0;
  2790. box-shadow: var(--bs-btn-focus-box-shadow);
  2791. }
  2792. .btn-check:focus-visible + .btn {
  2793. border-color: var(--bs-btn-hover-border-color);
  2794. outline: 0;
  2795. box-shadow: var(--bs-btn-focus-box-shadow);
  2796. }
  2797. .btn-check:checked + .btn, :not(.btn-check) + .btn:active, .btn:first-child:active, .btn.active, .btn.show {
  2798. color: var(--bs-btn-active-color);
  2799. background-color: var(--bs-btn-active-bg);
  2800. border-color: var(--bs-btn-active-border-color);
  2801. }
  2802. .btn-check:checked + .btn:focus-visible, :not(.btn-check) + .btn:active:focus-visible, .btn:first-child:active:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible {
  2803. box-shadow: var(--bs-btn-focus-box-shadow);
  2804. }
  2805. .btn:disabled, .btn.disabled, fieldset:disabled .btn {
  2806. color: var(--bs-btn-disabled-color);
  2807. pointer-events: none;
  2808. background-color: var(--bs-btn-disabled-bg);
  2809. border-color: var(--bs-btn-disabled-border-color);
  2810. opacity: var(--bs-btn-disabled-opacity);
  2811. }
  2812. .btn-primary {
  2813. --bs-btn-color: #fff;
  2814. --bs-btn-bg: #2780e3;
  2815. --bs-btn-border-color: #2780e3;
  2816. --bs-btn-hover-color: #fff;
  2817. --bs-btn-hover-bg: #216dc1;
  2818. --bs-btn-hover-border-color: #1f66b6;
  2819. --bs-btn-focus-shadow-rgb: 71, 147, 231;
  2820. --bs-btn-active-color: #fff;
  2821. --bs-btn-active-bg: #1f66b6;
  2822. --bs-btn-active-border-color: #1d60aa;
  2823. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2824. --bs-btn-disabled-color: #fff;
  2825. --bs-btn-disabled-bg: #2780e3;
  2826. --bs-btn-disabled-border-color: #2780e3;
  2827. }
  2828. .btn-secondary {
  2829. --bs-btn-color: #fff;
  2830. --bs-btn-bg: #373a3c;
  2831. --bs-btn-border-color: #373a3c;
  2832. --bs-btn-hover-color: #fff;
  2833. --bs-btn-hover-bg: #2f3133;
  2834. --bs-btn-hover-border-color: #2c2e30;
  2835. --bs-btn-focus-shadow-rgb: 85, 88, 89;
  2836. --bs-btn-active-color: #fff;
  2837. --bs-btn-active-bg: #2c2e30;
  2838. --bs-btn-active-border-color: #292c2d;
  2839. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2840. --bs-btn-disabled-color: #fff;
  2841. --bs-btn-disabled-bg: #373a3c;
  2842. --bs-btn-disabled-border-color: #373a3c;
  2843. }
  2844. .btn-success {
  2845. --bs-btn-color: #fff;
  2846. --bs-btn-bg: #3fb618;
  2847. --bs-btn-border-color: #3fb618;
  2848. --bs-btn-hover-color: #fff;
  2849. --bs-btn-hover-bg: #369b14;
  2850. --bs-btn-hover-border-color: #329213;
  2851. --bs-btn-focus-shadow-rgb: 92, 193, 59;
  2852. --bs-btn-active-color: #fff;
  2853. --bs-btn-active-bg: #329213;
  2854. --bs-btn-active-border-color: #2f8912;
  2855. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2856. --bs-btn-disabled-color: #fff;
  2857. --bs-btn-disabled-bg: #3fb618;
  2858. --bs-btn-disabled-border-color: #3fb618;
  2859. }
  2860. .btn-info {
  2861. --bs-btn-color: #fff;
  2862. --bs-btn-bg: #9954bb;
  2863. --bs-btn-border-color: #9954bb;
  2864. --bs-btn-hover-color: #fff;
  2865. --bs-btn-hover-bg: #82479f;
  2866. --bs-btn-hover-border-color: #7a4396;
  2867. --bs-btn-focus-shadow-rgb: 168, 110, 197;
  2868. --bs-btn-active-color: #fff;
  2869. --bs-btn-active-bg: #7a4396;
  2870. --bs-btn-active-border-color: #733f8c;
  2871. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2872. --bs-btn-disabled-color: #fff;
  2873. --bs-btn-disabled-bg: #9954bb;
  2874. --bs-btn-disabled-border-color: #9954bb;
  2875. }
  2876. .btn-warning {
  2877. --bs-btn-color: #fff;
  2878. --bs-btn-bg: #ff7518;
  2879. --bs-btn-border-color: #ff7518;
  2880. --bs-btn-hover-color: #fff;
  2881. --bs-btn-hover-bg: #d96314;
  2882. --bs-btn-hover-border-color: #cc5e13;
  2883. --bs-btn-focus-shadow-rgb: 255, 138, 59;
  2884. --bs-btn-active-color: #fff;
  2885. --bs-btn-active-bg: #cc5e13;
  2886. --bs-btn-active-border-color: #bf5812;
  2887. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2888. --bs-btn-disabled-color: #fff;
  2889. --bs-btn-disabled-bg: #ff7518;
  2890. --bs-btn-disabled-border-color: #ff7518;
  2891. }
  2892. .btn-danger {
  2893. --bs-btn-color: #fff;
  2894. --bs-btn-bg: #ff0039;
  2895. --bs-btn-border-color: #ff0039;
  2896. --bs-btn-hover-color: #fff;
  2897. --bs-btn-hover-bg: #d90030;
  2898. --bs-btn-hover-border-color: #cc002e;
  2899. --bs-btn-focus-shadow-rgb: 255, 38, 87;
  2900. --bs-btn-active-color: #fff;
  2901. --bs-btn-active-bg: #cc002e;
  2902. --bs-btn-active-border-color: #bf002b;
  2903. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2904. --bs-btn-disabled-color: #fff;
  2905. --bs-btn-disabled-bg: #ff0039;
  2906. --bs-btn-disabled-border-color: #ff0039;
  2907. }
  2908. .btn-light {
  2909. --bs-btn-color: #000;
  2910. --bs-btn-bg: #f8f9fa;
  2911. --bs-btn-border-color: #f8f9fa;
  2912. --bs-btn-hover-color: #000;
  2913. --bs-btn-hover-bg: #d3d4d5;
  2914. --bs-btn-hover-border-color: #c6c7c8;
  2915. --bs-btn-focus-shadow-rgb: 211, 212, 213;
  2916. --bs-btn-active-color: #000;
  2917. --bs-btn-active-bg: #c6c7c8;
  2918. --bs-btn-active-border-color: #babbbc;
  2919. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2920. --bs-btn-disabled-color: #000;
  2921. --bs-btn-disabled-bg: #f8f9fa;
  2922. --bs-btn-disabled-border-color: #f8f9fa;
  2923. }
  2924. .btn-dark {
  2925. --bs-btn-color: #fff;
  2926. --bs-btn-bg: #373a3c;
  2927. --bs-btn-border-color: #373a3c;
  2928. --bs-btn-hover-color: #fff;
  2929. --bs-btn-hover-bg: #555859;
  2930. --bs-btn-hover-border-color: #4b4e50;
  2931. --bs-btn-focus-shadow-rgb: 85, 88, 89;
  2932. --bs-btn-active-color: #fff;
  2933. --bs-btn-active-bg: #5f6163;
  2934. --bs-btn-active-border-color: #4b4e50;
  2935. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2936. --bs-btn-disabled-color: #fff;
  2937. --bs-btn-disabled-bg: #373a3c;
  2938. --bs-btn-disabled-border-color: #373a3c;
  2939. }
  2940. .btn-outline-primary {
  2941. --bs-btn-color: #2780e3;
  2942. --bs-btn-border-color: #2780e3;
  2943. --bs-btn-hover-color: #fff;
  2944. --bs-btn-hover-bg: #2780e3;
  2945. --bs-btn-hover-border-color: #2780e3;
  2946. --bs-btn-focus-shadow-rgb: 39, 128, 227;
  2947. --bs-btn-active-color: #fff;
  2948. --bs-btn-active-bg: #2780e3;
  2949. --bs-btn-active-border-color: #2780e3;
  2950. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2951. --bs-btn-disabled-color: #2780e3;
  2952. --bs-btn-disabled-bg: transparent;
  2953. --bs-btn-disabled-border-color: #2780e3;
  2954. --bs-gradient: none;
  2955. }
  2956. .btn-outline-secondary {
  2957. --bs-btn-color: #373a3c;
  2958. --bs-btn-border-color: #373a3c;
  2959. --bs-btn-hover-color: #fff;
  2960. --bs-btn-hover-bg: #373a3c;
  2961. --bs-btn-hover-border-color: #373a3c;
  2962. --bs-btn-focus-shadow-rgb: 55, 58, 60;
  2963. --bs-btn-active-color: #fff;
  2964. --bs-btn-active-bg: #373a3c;
  2965. --bs-btn-active-border-color: #373a3c;
  2966. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2967. --bs-btn-disabled-color: #373a3c;
  2968. --bs-btn-disabled-bg: transparent;
  2969. --bs-btn-disabled-border-color: #373a3c;
  2970. --bs-gradient: none;
  2971. }
  2972. .btn-outline-success {
  2973. --bs-btn-color: #3fb618;
  2974. --bs-btn-border-color: #3fb618;
  2975. --bs-btn-hover-color: #fff;
  2976. --bs-btn-hover-bg: #3fb618;
  2977. --bs-btn-hover-border-color: #3fb618;
  2978. --bs-btn-focus-shadow-rgb: 63, 182, 24;
  2979. --bs-btn-active-color: #fff;
  2980. --bs-btn-active-bg: #3fb618;
  2981. --bs-btn-active-border-color: #3fb618;
  2982. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2983. --bs-btn-disabled-color: #3fb618;
  2984. --bs-btn-disabled-bg: transparent;
  2985. --bs-btn-disabled-border-color: #3fb618;
  2986. --bs-gradient: none;
  2987. }
  2988. .btn-outline-info {
  2989. --bs-btn-color: #9954bb;
  2990. --bs-btn-border-color: #9954bb;
  2991. --bs-btn-hover-color: #fff;
  2992. --bs-btn-hover-bg: #9954bb;
  2993. --bs-btn-hover-border-color: #9954bb;
  2994. --bs-btn-focus-shadow-rgb: 153, 84, 187;
  2995. --bs-btn-active-color: #fff;
  2996. --bs-btn-active-bg: #9954bb;
  2997. --bs-btn-active-border-color: #9954bb;
  2998. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  2999. --bs-btn-disabled-color: #9954bb;
  3000. --bs-btn-disabled-bg: transparent;
  3001. --bs-btn-disabled-border-color: #9954bb;
  3002. --bs-gradient: none;
  3003. }
  3004. .btn-outline-warning {
  3005. --bs-btn-color: #ff7518;
  3006. --bs-btn-border-color: #ff7518;
  3007. --bs-btn-hover-color: #fff;
  3008. --bs-btn-hover-bg: #ff7518;
  3009. --bs-btn-hover-border-color: #ff7518;
  3010. --bs-btn-focus-shadow-rgb: 255, 117, 24;
  3011. --bs-btn-active-color: #fff;
  3012. --bs-btn-active-bg: #ff7518;
  3013. --bs-btn-active-border-color: #ff7518;
  3014. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3015. --bs-btn-disabled-color: #ff7518;
  3016. --bs-btn-disabled-bg: transparent;
  3017. --bs-btn-disabled-border-color: #ff7518;
  3018. --bs-gradient: none;
  3019. }
  3020. .btn-outline-danger {
  3021. --bs-btn-color: #ff0039;
  3022. --bs-btn-border-color: #ff0039;
  3023. --bs-btn-hover-color: #fff;
  3024. --bs-btn-hover-bg: #ff0039;
  3025. --bs-btn-hover-border-color: #ff0039;
  3026. --bs-btn-focus-shadow-rgb: 255, 0, 57;
  3027. --bs-btn-active-color: #fff;
  3028. --bs-btn-active-bg: #ff0039;
  3029. --bs-btn-active-border-color: #ff0039;
  3030. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3031. --bs-btn-disabled-color: #ff0039;
  3032. --bs-btn-disabled-bg: transparent;
  3033. --bs-btn-disabled-border-color: #ff0039;
  3034. --bs-gradient: none;
  3035. }
  3036. .btn-outline-light {
  3037. --bs-btn-color: #f8f9fa;
  3038. --bs-btn-border-color: #f8f9fa;
  3039. --bs-btn-hover-color: #000;
  3040. --bs-btn-hover-bg: #f8f9fa;
  3041. --bs-btn-hover-border-color: #f8f9fa;
  3042. --bs-btn-focus-shadow-rgb: 248, 249, 250;
  3043. --bs-btn-active-color: #000;
  3044. --bs-btn-active-bg: #f8f9fa;
  3045. --bs-btn-active-border-color: #f8f9fa;
  3046. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3047. --bs-btn-disabled-color: #f8f9fa;
  3048. --bs-btn-disabled-bg: transparent;
  3049. --bs-btn-disabled-border-color: #f8f9fa;
  3050. --bs-gradient: none;
  3051. }
  3052. .btn-outline-dark {
  3053. --bs-btn-color: #373a3c;
  3054. --bs-btn-border-color: #373a3c;
  3055. --bs-btn-hover-color: #fff;
  3056. --bs-btn-hover-bg: #373a3c;
  3057. --bs-btn-hover-border-color: #373a3c;
  3058. --bs-btn-focus-shadow-rgb: 55, 58, 60;
  3059. --bs-btn-active-color: #fff;
  3060. --bs-btn-active-bg: #373a3c;
  3061. --bs-btn-active-border-color: #373a3c;
  3062. --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  3063. --bs-btn-disabled-color: #373a3c;
  3064. --bs-btn-disabled-bg: transparent;
  3065. --bs-btn-disabled-border-color: #373a3c;
  3066. --bs-gradient: none;
  3067. }
  3068. .btn-link {
  3069. --bs-btn-font-weight: 400;
  3070. --bs-btn-color: var(--bs-link-color);
  3071. --bs-btn-bg: transparent;
  3072. --bs-btn-border-color: transparent;
  3073. --bs-btn-hover-color: var(--bs-link-hover-color);
  3074. --bs-btn-hover-border-color: transparent;
  3075. --bs-btn-active-color: var(--bs-link-hover-color);
  3076. --bs-btn-active-border-color: transparent;
  3077. --bs-btn-disabled-color: #868e96;
  3078. --bs-btn-disabled-border-color: transparent;
  3079. --bs-btn-box-shadow: 0 0 0 #000;
  3080. --bs-btn-focus-shadow-rgb: 71, 147, 231;
  3081. text-decoration: underline;
  3082. }
  3083. .btn-link:focus-visible {
  3084. color: var(--bs-btn-color);
  3085. }
  3086. .btn-link:hover {
  3087. color: var(--bs-btn-hover-color);
  3088. }
  3089. .btn-lg, .btn-group-lg > .btn {
  3090. --bs-btn-padding-y: 0.5rem;
  3091. --bs-btn-padding-x: 1rem;
  3092. --bs-btn-font-size: 1.25rem;
  3093. --bs-btn-border-radius: var(--bs-border-radius-lg);
  3094. }
  3095. .btn-sm, .btn-group-sm > .btn {
  3096. --bs-btn-padding-y: 0.25rem;
  3097. --bs-btn-padding-x: 0.5rem;
  3098. --bs-btn-font-size: 0.875rem;
  3099. --bs-btn-border-radius: var(--bs-border-radius-sm);
  3100. }
  3101. .fade {
  3102. transition: opacity 0.15s linear;
  3103. }
  3104. @media (prefers-reduced-motion: reduce) {
  3105. .fade {
  3106. transition: none;
  3107. }
  3108. }
  3109. .fade:not(.show) {
  3110. opacity: 0;
  3111. }
  3112. .collapse:not(.show) {
  3113. display: none;
  3114. }
  3115. .collapsing {
  3116. height: 0;
  3117. overflow: hidden;
  3118. transition: height 0.35s ease;
  3119. }
  3120. @media (prefers-reduced-motion: reduce) {
  3121. .collapsing {
  3122. transition: none;
  3123. }
  3124. }
  3125. .collapsing.collapse-horizontal {
  3126. width: 0;
  3127. height: auto;
  3128. transition: width 0.35s ease;
  3129. }
  3130. @media (prefers-reduced-motion: reduce) {
  3131. .collapsing.collapse-horizontal {
  3132. transition: none;
  3133. }
  3134. }
  3135. .dropup,
  3136. .dropend,
  3137. .dropdown,
  3138. .dropstart,
  3139. .dropup-center,
  3140. .dropdown-center {
  3141. position: relative;
  3142. }
  3143. .dropdown-toggle {
  3144. white-space: nowrap;
  3145. }
  3146. .dropdown-toggle::after {
  3147. display: inline-block;
  3148. margin-left: 0.255em;
  3149. vertical-align: 0.255em;
  3150. content: "";
  3151. border-top: 0.3em solid;
  3152. border-right: 0.3em solid transparent;
  3153. border-bottom: 0;
  3154. border-left: 0.3em solid transparent;
  3155. }
  3156. .dropdown-toggle:empty::after {
  3157. margin-left: 0;
  3158. }
  3159. .dropdown-menu {
  3160. --bs-dropdown-zindex: 1000;
  3161. --bs-dropdown-min-width: 10rem;
  3162. --bs-dropdown-padding-x: 0;
  3163. --bs-dropdown-padding-y: 0.5rem;
  3164. --bs-dropdown-spacer: 0.125rem;
  3165. --bs-dropdown-font-size: 1rem;
  3166. --bs-dropdown-color: var(--bs-body-color);
  3167. --bs-dropdown-bg: var(--bs-body-bg);
  3168. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3169. --bs-dropdown-border-radius: var(--bs-border-radius);
  3170. --bs-dropdown-border-width: var(--bs-border-width);
  3171. --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  3172. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3173. --bs-dropdown-divider-margin-y: 0.5rem;
  3174. --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  3175. --bs-dropdown-link-color: var(--bs-body-color);
  3176. --bs-dropdown-link-hover-color: var(--bs-body-color);
  3177. --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  3178. --bs-dropdown-link-active-color: #fff;
  3179. --bs-dropdown-link-active-bg: #2780e3;
  3180. --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  3181. --bs-dropdown-item-padding-x: 1rem;
  3182. --bs-dropdown-item-padding-y: 0.25rem;
  3183. --bs-dropdown-header-color: #868e96;
  3184. --bs-dropdown-header-padding-x: 1rem;
  3185. --bs-dropdown-header-padding-y: 0.5rem;
  3186. position: absolute;
  3187. z-index: var(--bs-dropdown-zindex);
  3188. display: none;
  3189. min-width: var(--bs-dropdown-min-width);
  3190. padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  3191. margin: 0;
  3192. font-size: var(--bs-dropdown-font-size);
  3193. color: var(--bs-dropdown-color);
  3194. text-align: left;
  3195. list-style: none;
  3196. background-color: var(--bs-dropdown-bg);
  3197. background-clip: padding-box;
  3198. border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  3199. }
  3200. .dropdown-menu[data-bs-popper] {
  3201. top: 100%;
  3202. left: 0;
  3203. margin-top: var(--bs-dropdown-spacer);
  3204. }
  3205. .dropdown-menu-start {
  3206. --bs-position: start;
  3207. }
  3208. .dropdown-menu-start[data-bs-popper] {
  3209. right: auto;
  3210. left: 0;
  3211. }
  3212. .dropdown-menu-end {
  3213. --bs-position: end;
  3214. }
  3215. .dropdown-menu-end[data-bs-popper] {
  3216. right: 0;
  3217. left: auto;
  3218. }
  3219. @media (min-width: 576px) {
  3220. .dropdown-menu-sm-start {
  3221. --bs-position: start;
  3222. }
  3223. .dropdown-menu-sm-start[data-bs-popper] {
  3224. right: auto;
  3225. left: 0;
  3226. }
  3227. .dropdown-menu-sm-end {
  3228. --bs-position: end;
  3229. }
  3230. .dropdown-menu-sm-end[data-bs-popper] {
  3231. right: 0;
  3232. left: auto;
  3233. }
  3234. }
  3235. @media (min-width: 768px) {
  3236. .dropdown-menu-md-start {
  3237. --bs-position: start;
  3238. }
  3239. .dropdown-menu-md-start[data-bs-popper] {
  3240. right: auto;
  3241. left: 0;
  3242. }
  3243. .dropdown-menu-md-end {
  3244. --bs-position: end;
  3245. }
  3246. .dropdown-menu-md-end[data-bs-popper] {
  3247. right: 0;
  3248. left: auto;
  3249. }
  3250. }
  3251. @media (min-width: 992px) {
  3252. .dropdown-menu-lg-start {
  3253. --bs-position: start;
  3254. }
  3255. .dropdown-menu-lg-start[data-bs-popper] {
  3256. right: auto;
  3257. left: 0;
  3258. }
  3259. .dropdown-menu-lg-end {
  3260. --bs-position: end;
  3261. }
  3262. .dropdown-menu-lg-end[data-bs-popper] {
  3263. right: 0;
  3264. left: auto;
  3265. }
  3266. }
  3267. @media (min-width: 1200px) {
  3268. .dropdown-menu-xl-start {
  3269. --bs-position: start;
  3270. }
  3271. .dropdown-menu-xl-start[data-bs-popper] {
  3272. right: auto;
  3273. left: 0;
  3274. }
  3275. .dropdown-menu-xl-end {
  3276. --bs-position: end;
  3277. }
  3278. .dropdown-menu-xl-end[data-bs-popper] {
  3279. right: 0;
  3280. left: auto;
  3281. }
  3282. }
  3283. @media (min-width: 1400px) {
  3284. .dropdown-menu-xxl-start {
  3285. --bs-position: start;
  3286. }
  3287. .dropdown-menu-xxl-start[data-bs-popper] {
  3288. right: auto;
  3289. left: 0;
  3290. }
  3291. .dropdown-menu-xxl-end {
  3292. --bs-position: end;
  3293. }
  3294. .dropdown-menu-xxl-end[data-bs-popper] {
  3295. right: 0;
  3296. left: auto;
  3297. }
  3298. }
  3299. .dropup .dropdown-menu[data-bs-popper] {
  3300. top: auto;
  3301. bottom: 100%;
  3302. margin-top: 0;
  3303. margin-bottom: var(--bs-dropdown-spacer);
  3304. }
  3305. .dropup .dropdown-toggle::after {
  3306. display: inline-block;
  3307. margin-left: 0.255em;
  3308. vertical-align: 0.255em;
  3309. content: "";
  3310. border-top: 0;
  3311. border-right: 0.3em solid transparent;
  3312. border-bottom: 0.3em solid;
  3313. border-left: 0.3em solid transparent;
  3314. }
  3315. .dropup .dropdown-toggle:empty::after {
  3316. margin-left: 0;
  3317. }
  3318. .dropend .dropdown-menu[data-bs-popper] {
  3319. top: 0;
  3320. right: auto;
  3321. left: 100%;
  3322. margin-top: 0;
  3323. margin-left: var(--bs-dropdown-spacer);
  3324. }
  3325. .dropend .dropdown-toggle::after {
  3326. display: inline-block;
  3327. margin-left: 0.255em;
  3328. vertical-align: 0.255em;
  3329. content: "";
  3330. border-top: 0.3em solid transparent;
  3331. border-right: 0;
  3332. border-bottom: 0.3em solid transparent;
  3333. border-left: 0.3em solid;
  3334. }
  3335. .dropend .dropdown-toggle:empty::after {
  3336. margin-left: 0;
  3337. }
  3338. .dropend .dropdown-toggle::after {
  3339. vertical-align: 0;
  3340. }
  3341. .dropstart .dropdown-menu[data-bs-popper] {
  3342. top: 0;
  3343. right: 100%;
  3344. left: auto;
  3345. margin-top: 0;
  3346. margin-right: var(--bs-dropdown-spacer);
  3347. }
  3348. .dropstart .dropdown-toggle::after {
  3349. display: inline-block;
  3350. margin-left: 0.255em;
  3351. vertical-align: 0.255em;
  3352. content: "";
  3353. }
  3354. .dropstart .dropdown-toggle::after {
  3355. display: none;
  3356. }
  3357. .dropstart .dropdown-toggle::before {
  3358. display: inline-block;
  3359. margin-right: 0.255em;
  3360. vertical-align: 0.255em;
  3361. content: "";
  3362. border-top: 0.3em solid transparent;
  3363. border-right: 0.3em solid;
  3364. border-bottom: 0.3em solid transparent;
  3365. }
  3366. .dropstart .dropdown-toggle:empty::after {
  3367. margin-left: 0;
  3368. }
  3369. .dropstart .dropdown-toggle::before {
  3370. vertical-align: 0;
  3371. }
  3372. .dropdown-divider {
  3373. height: 0;
  3374. margin: var(--bs-dropdown-divider-margin-y) 0;
  3375. overflow: hidden;
  3376. border-top: 1px solid var(--bs-dropdown-divider-bg);
  3377. opacity: 1;
  3378. }
  3379. .dropdown-item {
  3380. display: block;
  3381. width: 100%;
  3382. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3383. clear: both;
  3384. font-weight: 400;
  3385. color: var(--bs-dropdown-link-color);
  3386. text-align: inherit;
  3387. text-decoration: none;
  3388. white-space: nowrap;
  3389. background-color: transparent;
  3390. border: 0;
  3391. }
  3392. .dropdown-item:hover, .dropdown-item:focus {
  3393. color: var(--bs-dropdown-link-hover-color);
  3394. background-color: var(--bs-dropdown-link-hover-bg);
  3395. }
  3396. .dropdown-item.active, .dropdown-item:active {
  3397. color: var(--bs-dropdown-link-active-color);
  3398. text-decoration: none;
  3399. background-color: var(--bs-dropdown-link-active-bg);
  3400. }
  3401. .dropdown-item.disabled, .dropdown-item:disabled {
  3402. color: var(--bs-dropdown-link-disabled-color);
  3403. pointer-events: none;
  3404. background-color: transparent;
  3405. }
  3406. .dropdown-menu.show {
  3407. display: block;
  3408. }
  3409. .dropdown-header {
  3410. display: block;
  3411. padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  3412. margin-bottom: 0;
  3413. font-size: 0.875rem;
  3414. color: var(--bs-dropdown-header-color);
  3415. white-space: nowrap;
  3416. }
  3417. .dropdown-item-text {
  3418. display: block;
  3419. padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  3420. color: var(--bs-dropdown-link-color);
  3421. }
  3422. .dropdown-menu-dark {
  3423. --bs-dropdown-color: #dee2e6;
  3424. --bs-dropdown-bg: #373a3c;
  3425. --bs-dropdown-border-color: var(--bs-border-color-translucent);
  3426. --bs-dropdown-box-shadow: ;
  3427. --bs-dropdown-link-color: #dee2e6;
  3428. --bs-dropdown-link-hover-color: #fff;
  3429. --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  3430. --bs-dropdown-link-hover-bg: rgba(255, 255, 255, 0.15);
  3431. --bs-dropdown-link-active-color: #fff;
  3432. --bs-dropdown-link-active-bg: #2780e3;
  3433. --bs-dropdown-link-disabled-color: #adb5bd;
  3434. --bs-dropdown-header-color: #adb5bd;
  3435. }
  3436. .btn-group,
  3437. .btn-group-vertical {
  3438. position: relative;
  3439. display: inline-flex;
  3440. vertical-align: middle;
  3441. }
  3442. .btn-group > .btn,
  3443. .btn-group-vertical > .btn {
  3444. position: relative;
  3445. flex: 1 1 auto;
  3446. }
  3447. .btn-group > .btn-check:checked + .btn,
  3448. .btn-group > .btn-check:focus + .btn,
  3449. .btn-group > .btn:hover,
  3450. .btn-group > .btn:focus,
  3451. .btn-group > .btn:active,
  3452. .btn-group > .btn.active,
  3453. .btn-group-vertical > .btn-check:checked + .btn,
  3454. .btn-group-vertical > .btn-check:focus + .btn,
  3455. .btn-group-vertical > .btn:hover,
  3456. .btn-group-vertical > .btn:focus,
  3457. .btn-group-vertical > .btn:active,
  3458. .btn-group-vertical > .btn.active {
  3459. z-index: 1;
  3460. }
  3461. .btn-toolbar {
  3462. display: flex;
  3463. flex-wrap: wrap;
  3464. justify-content: flex-start;
  3465. }
  3466. .btn-toolbar .input-group {
  3467. width: auto;
  3468. }
  3469. .btn-group > :not(.btn-check:first-child) + .btn,
  3470. .btn-group > .btn-group:not(:first-child) {
  3471. margin-left: calc(var(--bs-border-width) * -1);
  3472. }
  3473. .dropdown-toggle-split {
  3474. padding-right: 0.5625rem;
  3475. padding-left: 0.5625rem;
  3476. }
  3477. .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  3478. margin-left: 0;
  3479. }
  3480. .dropstart .dropdown-toggle-split::before {
  3481. margin-right: 0;
  3482. }
  3483. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  3484. padding-right: 0.375rem;
  3485. padding-left: 0.375rem;
  3486. }
  3487. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  3488. padding-right: 0.75rem;
  3489. padding-left: 0.75rem;
  3490. }
  3491. .btn-group-vertical {
  3492. flex-direction: column;
  3493. align-items: flex-start;
  3494. justify-content: center;
  3495. }
  3496. .btn-group-vertical > .btn,
  3497. .btn-group-vertical > .btn-group {
  3498. width: 100%;
  3499. }
  3500. .btn-group-vertical > .btn:not(:first-child),
  3501. .btn-group-vertical > .btn-group:not(:first-child) {
  3502. margin-top: calc(var(--bs-border-width) * -1);
  3503. }
  3504. .nav {
  3505. --bs-nav-link-padding-x: 1rem;
  3506. --bs-nav-link-padding-y: 0.5rem;
  3507. --bs-nav-link-font-weight: ;
  3508. --bs-nav-link-color: var(--bs-link-color);
  3509. --bs-nav-link-hover-color: var(--bs-link-hover-color);
  3510. --bs-nav-link-disabled-color: var(--bs-secondary-color);
  3511. display: flex;
  3512. flex-wrap: wrap;
  3513. padding-left: 0;
  3514. margin-bottom: 0;
  3515. list-style: none;
  3516. }
  3517. .nav-link {
  3518. display: block;
  3519. padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  3520. font-size: var(--bs-nav-link-font-size);
  3521. font-weight: var(--bs-nav-link-font-weight);
  3522. color: var(--bs-nav-link-color);
  3523. text-decoration: none;
  3524. background: none;
  3525. border: 0;
  3526. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  3527. }
  3528. @media (prefers-reduced-motion: reduce) {
  3529. .nav-link {
  3530. transition: none;
  3531. }
  3532. }
  3533. .nav-link:hover, .nav-link:focus {
  3534. color: var(--bs-nav-link-hover-color);
  3535. }
  3536. .nav-link:focus-visible {
  3537. outline: 0;
  3538. box-shadow: 0 0 0 0.25rem rgba(39, 128, 227, 0.25);
  3539. }
  3540. .nav-link.disabled, .nav-link:disabled {
  3541. color: var(--bs-nav-link-disabled-color);
  3542. pointer-events: none;
  3543. cursor: default;
  3544. }
  3545. .nav-tabs {
  3546. --bs-nav-tabs-border-width: var(--bs-border-width);
  3547. --bs-nav-tabs-border-color: var(--bs-border-color);
  3548. --bs-nav-tabs-border-radius: var(--bs-border-radius);
  3549. --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  3550. --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  3551. --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  3552. --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  3553. border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
  3554. }
  3555. .nav-tabs .nav-link {
  3556. margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  3557. border: var(--bs-nav-tabs-border-width) solid transparent;
  3558. }
  3559. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  3560. isolation: isolate;
  3561. border-color: var(--bs-nav-tabs-link-hover-border-color);
  3562. }
  3563. .nav-tabs .nav-link.active,
  3564. .nav-tabs .nav-item.show .nav-link {
  3565. color: var(--bs-nav-tabs-link-active-color);
  3566. background-color: var(--bs-nav-tabs-link-active-bg);
  3567. border-color: var(--bs-nav-tabs-link-active-border-color);
  3568. }
  3569. .nav-tabs .dropdown-menu {
  3570. margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  3571. }
  3572. .nav-pills {
  3573. --bs-nav-pills-border-radius: var(--bs-border-radius);
  3574. --bs-nav-pills-link-active-color: #fff;
  3575. --bs-nav-pills-link-active-bg: #2780e3;
  3576. }
  3577. .nav-pills .nav-link.active,
  3578. .nav-pills .show > .nav-link {
  3579. color: var(--bs-nav-pills-link-active-color);
  3580. background-color: var(--bs-nav-pills-link-active-bg);
  3581. }
  3582. .nav-underline {
  3583. --bs-nav-underline-gap: 1rem;
  3584. --bs-nav-underline-border-width: 0.125rem;
  3585. --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  3586. gap: var(--bs-nav-underline-gap);
  3587. }
  3588. .nav-underline .nav-link {
  3589. padding-right: 0;
  3590. padding-left: 0;
  3591. border-bottom: var(--bs-nav-underline-border-width) solid transparent;
  3592. }
  3593. .nav-underline .nav-link:hover, .nav-underline .nav-link:focus {
  3594. border-bottom-color: currentcolor;
  3595. }
  3596. .nav-underline .nav-link.active,
  3597. .nav-underline .show > .nav-link {
  3598. font-weight: 700;
  3599. color: var(--bs-nav-underline-link-active-color);
  3600. border-bottom-color: currentcolor;
  3601. }
  3602. .nav-fill > .nav-link,
  3603. .nav-fill .nav-item {
  3604. flex: 1 1 auto;
  3605. text-align: center;
  3606. }
  3607. .nav-justified > .nav-link,
  3608. .nav-justified .nav-item {
  3609. flex-basis: 0;
  3610. flex-grow: 1;
  3611. text-align: center;
  3612. }
  3613. .nav-fill .nav-item .nav-link,
  3614. .nav-justified .nav-item .nav-link {
  3615. width: 100%;
  3616. }
  3617. .tab-content > .tab-pane {
  3618. display: none;
  3619. }
  3620. .tab-content > .active {
  3621. display: block;
  3622. }
  3623. .navbar {
  3624. --bs-navbar-padding-x: 0;
  3625. --bs-navbar-padding-y: 0.5rem;
  3626. --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  3627. --bs-navbar-hover-color: rgba(0, 0, 0, 0.9);
  3628. --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  3629. --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3630. --bs-navbar-brand-padding-y: 0.3125rem;
  3631. --bs-navbar-brand-margin-end: 1rem;
  3632. --bs-navbar-brand-font-size: 1.25rem;
  3633. --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3634. --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  3635. --bs-navbar-nav-link-padding-x: 0.5rem;
  3636. --bs-navbar-toggler-padding-y: 0.25rem;
  3637. --bs-navbar-toggler-padding-x: 0.75rem;
  3638. --bs-navbar-toggler-font-size: 1.25rem;
  3639. --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%2855, 58, 60, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  3640. --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  3641. --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  3642. --bs-navbar-toggler-focus-width: 0.25rem;
  3643. --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  3644. position: relative;
  3645. display: flex;
  3646. flex-wrap: wrap;
  3647. align-items: center;
  3648. justify-content: space-between;
  3649. padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
  3650. }
  3651. .navbar > .container,
  3652. .navbar > .container-fluid,
  3653. .navbar > .container-sm,
  3654. .navbar > .container-md,
  3655. .navbar > .container-lg,
  3656. .navbar > .container-xl,
  3657. .navbar > .container-xxl {
  3658. display: flex;
  3659. flex-wrap: inherit;
  3660. align-items: center;
  3661. justify-content: space-between;
  3662. }
  3663. .navbar-brand {
  3664. padding-top: var(--bs-navbar-brand-padding-y);
  3665. padding-bottom: var(--bs-navbar-brand-padding-y);
  3666. margin-right: var(--bs-navbar-brand-margin-end);
  3667. font-size: var(--bs-navbar-brand-font-size);
  3668. color: var(--bs-navbar-brand-color);
  3669. text-decoration: none;
  3670. white-space: nowrap;
  3671. }
  3672. .navbar-brand:hover, .navbar-brand:focus {
  3673. color: var(--bs-navbar-brand-hover-color);
  3674. }
  3675. .navbar-nav {
  3676. --bs-nav-link-padding-x: 0;
  3677. --bs-nav-link-padding-y: 0.5rem;
  3678. --bs-nav-link-font-weight: ;
  3679. --bs-nav-link-color: var(--bs-navbar-color);
  3680. --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  3681. --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  3682. display: flex;
  3683. flex-direction: column;
  3684. padding-left: 0;
  3685. margin-bottom: 0;
  3686. list-style: none;
  3687. }
  3688. .navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  3689. color: var(--bs-navbar-active-color);
  3690. }
  3691. .navbar-nav .dropdown-menu {
  3692. position: static;
  3693. }
  3694. .navbar-text {
  3695. padding-top: 0.5rem;
  3696. padding-bottom: 0.5rem;
  3697. color: var(--bs-navbar-color);
  3698. }
  3699. .navbar-text a,
  3700. .navbar-text a:hover,
  3701. .navbar-text a:focus {
  3702. color: var(--bs-navbar-active-color);
  3703. }
  3704. .navbar-collapse {
  3705. flex-basis: 100%;
  3706. flex-grow: 1;
  3707. align-items: center;
  3708. }
  3709. .navbar-toggler {
  3710. padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  3711. font-size: var(--bs-navbar-toggler-font-size);
  3712. line-height: 1;
  3713. color: var(--bs-navbar-color);
  3714. background-color: transparent;
  3715. border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  3716. transition: var(--bs-navbar-toggler-transition);
  3717. }
  3718. @media (prefers-reduced-motion: reduce) {
  3719. .navbar-toggler {
  3720. transition: none;
  3721. }
  3722. }
  3723. .navbar-toggler:hover {
  3724. text-decoration: none;
  3725. }
  3726. .navbar-toggler:focus {
  3727. text-decoration: none;
  3728. outline: 0;
  3729. box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
  3730. }
  3731. .navbar-toggler-icon {
  3732. display: inline-block;
  3733. width: 1.5em;
  3734. height: 1.5em;
  3735. vertical-align: middle;
  3736. background-image: var(--bs-navbar-toggler-icon-bg);
  3737. background-repeat: no-repeat;
  3738. background-position: center;
  3739. background-size: 100%;
  3740. }
  3741. .navbar-nav-scroll {
  3742. max-height: var(--bs-scroll-height, 75vh);
  3743. overflow-y: auto;
  3744. }
  3745. @media (min-width: 576px) {
  3746. .navbar-expand-sm {
  3747. flex-wrap: nowrap;
  3748. justify-content: flex-start;
  3749. }
  3750. .navbar-expand-sm .navbar-nav {
  3751. flex-direction: row;
  3752. }
  3753. .navbar-expand-sm .navbar-nav .dropdown-menu {
  3754. position: absolute;
  3755. }
  3756. .navbar-expand-sm .navbar-nav .nav-link {
  3757. padding-right: var(--bs-navbar-nav-link-padding-x);
  3758. padding-left: var(--bs-navbar-nav-link-padding-x);
  3759. }
  3760. .navbar-expand-sm .navbar-nav-scroll {
  3761. overflow: visible;
  3762. }
  3763. .navbar-expand-sm .navbar-collapse {
  3764. display: flex !important;
  3765. flex-basis: auto;
  3766. }
  3767. .navbar-expand-sm .navbar-toggler {
  3768. display: none;
  3769. }
  3770. .navbar-expand-sm .offcanvas {
  3771. position: static;
  3772. z-index: auto;
  3773. flex-grow: 1;
  3774. width: auto !important;
  3775. height: auto !important;
  3776. visibility: visible !important;
  3777. background-color: transparent !important;
  3778. border: 0 !important;
  3779. transform: none !important;
  3780. transition: none;
  3781. }
  3782. .navbar-expand-sm .offcanvas .offcanvas-header {
  3783. display: none;
  3784. }
  3785. .navbar-expand-sm .offcanvas .offcanvas-body {
  3786. display: flex;
  3787. flex-grow: 0;
  3788. padding: 0;
  3789. overflow-y: visible;
  3790. }
  3791. }
  3792. @media (min-width: 768px) {
  3793. .navbar-expand-md {
  3794. flex-wrap: nowrap;
  3795. justify-content: flex-start;
  3796. }
  3797. .navbar-expand-md .navbar-nav {
  3798. flex-direction: row;
  3799. }
  3800. .navbar-expand-md .navbar-nav .dropdown-menu {
  3801. position: absolute;
  3802. }
  3803. .navbar-expand-md .navbar-nav .nav-link {
  3804. padding-right: var(--bs-navbar-nav-link-padding-x);
  3805. padding-left: var(--bs-navbar-nav-link-padding-x);
  3806. }
  3807. .navbar-expand-md .navbar-nav-scroll {
  3808. overflow: visible;
  3809. }
  3810. .navbar-expand-md .navbar-collapse {
  3811. display: flex !important;
  3812. flex-basis: auto;
  3813. }
  3814. .navbar-expand-md .navbar-toggler {
  3815. display: none;
  3816. }
  3817. .navbar-expand-md .offcanvas {
  3818. position: static;
  3819. z-index: auto;
  3820. flex-grow: 1;
  3821. width: auto !important;
  3822. height: auto !important;
  3823. visibility: visible !important;
  3824. background-color: transparent !important;
  3825. border: 0 !important;
  3826. transform: none !important;
  3827. transition: none;
  3828. }
  3829. .navbar-expand-md .offcanvas .offcanvas-header {
  3830. display: none;
  3831. }
  3832. .navbar-expand-md .offcanvas .offcanvas-body {
  3833. display: flex;
  3834. flex-grow: 0;
  3835. padding: 0;
  3836. overflow-y: visible;
  3837. }
  3838. }
  3839. @media (min-width: 992px) {
  3840. .navbar-expand-lg {
  3841. flex-wrap: nowrap;
  3842. justify-content: flex-start;
  3843. }
  3844. .navbar-expand-lg .navbar-nav {
  3845. flex-direction: row;
  3846. }
  3847. .navbar-expand-lg .navbar-nav .dropdown-menu {
  3848. position: absolute;
  3849. }
  3850. .navbar-expand-lg .navbar-nav .nav-link {
  3851. padding-right: var(--bs-navbar-nav-link-padding-x);
  3852. padding-left: var(--bs-navbar-nav-link-padding-x);
  3853. }
  3854. .navbar-expand-lg .navbar-nav-scroll {
  3855. overflow: visible;
  3856. }
  3857. .navbar-expand-lg .navbar-collapse {
  3858. display: flex !important;
  3859. flex-basis: auto;
  3860. }
  3861. .navbar-expand-lg .navbar-toggler {
  3862. display: none;
  3863. }
  3864. .navbar-expand-lg .offcanvas {
  3865. position: static;
  3866. z-index: auto;
  3867. flex-grow: 1;
  3868. width: auto !important;
  3869. height: auto !important;
  3870. visibility: visible !important;
  3871. background-color: transparent !important;
  3872. border: 0 !important;
  3873. transform: none !important;
  3874. transition: none;
  3875. }
  3876. .navbar-expand-lg .offcanvas .offcanvas-header {
  3877. display: none;
  3878. }
  3879. .navbar-expand-lg .offcanvas .offcanvas-body {
  3880. display: flex;
  3881. flex-grow: 0;
  3882. padding: 0;
  3883. overflow-y: visible;
  3884. }
  3885. }
  3886. @media (min-width: 1200px) {
  3887. .navbar-expand-xl {
  3888. flex-wrap: nowrap;
  3889. justify-content: flex-start;
  3890. }
  3891. .navbar-expand-xl .navbar-nav {
  3892. flex-direction: row;
  3893. }
  3894. .navbar-expand-xl .navbar-nav .dropdown-menu {
  3895. position: absolute;
  3896. }
  3897. .navbar-expand-xl .navbar-nav .nav-link {
  3898. padding-right: var(--bs-navbar-nav-link-padding-x);
  3899. padding-left: var(--bs-navbar-nav-link-padding-x);
  3900. }
  3901. .navbar-expand-xl .navbar-nav-scroll {
  3902. overflow: visible;
  3903. }
  3904. .navbar-expand-xl .navbar-collapse {
  3905. display: flex !important;
  3906. flex-basis: auto;
  3907. }
  3908. .navbar-expand-xl .navbar-toggler {
  3909. display: none;
  3910. }
  3911. .navbar-expand-xl .offcanvas {
  3912. position: static;
  3913. z-index: auto;
  3914. flex-grow: 1;
  3915. width: auto !important;
  3916. height: auto !important;
  3917. visibility: visible !important;
  3918. background-color: transparent !important;
  3919. border: 0 !important;
  3920. transform: none !important;
  3921. transition: none;
  3922. }
  3923. .navbar-expand-xl .offcanvas .offcanvas-header {
  3924. display: none;
  3925. }
  3926. .navbar-expand-xl .offcanvas .offcanvas-body {
  3927. display: flex;
  3928. flex-grow: 0;
  3929. padding: 0;
  3930. overflow-y: visible;
  3931. }
  3932. }
  3933. @media (min-width: 1400px) {
  3934. .navbar-expand-xxl {
  3935. flex-wrap: nowrap;
  3936. justify-content: flex-start;
  3937. }
  3938. .navbar-expand-xxl .navbar-nav {
  3939. flex-direction: row;
  3940. }
  3941. .navbar-expand-xxl .navbar-nav .dropdown-menu {
  3942. position: absolute;
  3943. }
  3944. .navbar-expand-xxl .navbar-nav .nav-link {
  3945. padding-right: var(--bs-navbar-nav-link-padding-x);
  3946. padding-left: var(--bs-navbar-nav-link-padding-x);
  3947. }
  3948. .navbar-expand-xxl .navbar-nav-scroll {
  3949. overflow: visible;
  3950. }
  3951. .navbar-expand-xxl .navbar-collapse {
  3952. display: flex !important;
  3953. flex-basis: auto;
  3954. }
  3955. .navbar-expand-xxl .navbar-toggler {
  3956. display: none;
  3957. }
  3958. .navbar-expand-xxl .offcanvas {
  3959. position: static;
  3960. z-index: auto;
  3961. flex-grow: 1;
  3962. width: auto !important;
  3963. height: auto !important;
  3964. visibility: visible !important;
  3965. background-color: transparent !important;
  3966. border: 0 !important;
  3967. transform: none !important;
  3968. transition: none;
  3969. }
  3970. .navbar-expand-xxl .offcanvas .offcanvas-header {
  3971. display: none;
  3972. }
  3973. .navbar-expand-xxl .offcanvas .offcanvas-body {
  3974. display: flex;
  3975. flex-grow: 0;
  3976. padding: 0;
  3977. overflow-y: visible;
  3978. }
  3979. }
  3980. .navbar-expand {
  3981. flex-wrap: nowrap;
  3982. justify-content: flex-start;
  3983. }
  3984. .navbar-expand .navbar-nav {
  3985. flex-direction: row;
  3986. }
  3987. .navbar-expand .navbar-nav .dropdown-menu {
  3988. position: absolute;
  3989. }
  3990. .navbar-expand .navbar-nav .nav-link {
  3991. padding-right: var(--bs-navbar-nav-link-padding-x);
  3992. padding-left: var(--bs-navbar-nav-link-padding-x);
  3993. }
  3994. .navbar-expand .navbar-nav-scroll {
  3995. overflow: visible;
  3996. }
  3997. .navbar-expand .navbar-collapse {
  3998. display: flex !important;
  3999. flex-basis: auto;
  4000. }
  4001. .navbar-expand .navbar-toggler {
  4002. display: none;
  4003. }
  4004. .navbar-expand .offcanvas {
  4005. position: static;
  4006. z-index: auto;
  4007. flex-grow: 1;
  4008. width: auto !important;
  4009. height: auto !important;
  4010. visibility: visible !important;
  4011. background-color: transparent !important;
  4012. border: 0 !important;
  4013. transform: none !important;
  4014. transition: none;
  4015. }
  4016. .navbar-expand .offcanvas .offcanvas-header {
  4017. display: none;
  4018. }
  4019. .navbar-expand .offcanvas .offcanvas-body {
  4020. display: flex;
  4021. flex-grow: 0;
  4022. padding: 0;
  4023. overflow-y: visible;
  4024. }
  4025. .navbar-dark,
  4026. .navbar[data-bs-theme=dark] {
  4027. --bs-navbar-color: rgba(255, 255, 255, 0.55);
  4028. --bs-navbar-hover-color: white;
  4029. --bs-navbar-disabled-color: rgba(255, 255, 255, 0.25);
  4030. --bs-navbar-active-color: #fff;
  4031. --bs-navbar-brand-color: #fff;
  4032. --bs-navbar-brand-hover-color: #fff;
  4033. --bs-navbar-toggler-border-color: rgba(255, 255, 255, 0.1);
  4034. --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");
  4035. }
  4036. [data-bs-theme=dark] .navbar-toggler-icon {
  4037. --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");
  4038. }
  4039. .card {
  4040. --bs-card-spacer-y: 1rem;
  4041. --bs-card-spacer-x: 1rem;
  4042. --bs-card-title-spacer-y: 0.5rem;
  4043. --bs-card-title-color: ;
  4044. --bs-card-subtitle-color: ;
  4045. --bs-card-border-width: var(--bs-border-width);
  4046. --bs-card-border-color: var(--bs-border-color-translucent);
  4047. --bs-card-border-radius: var(--bs-border-radius);
  4048. --bs-card-box-shadow: ;
  4049. --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  4050. --bs-card-cap-padding-y: 0.5rem;
  4051. --bs-card-cap-padding-x: 1rem;
  4052. --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
  4053. --bs-card-cap-color: ;
  4054. --bs-card-height: ;
  4055. --bs-card-color: ;
  4056. --bs-card-bg: var(--bs-body-bg);
  4057. --bs-card-img-overlay-padding: 1rem;
  4058. --bs-card-group-margin: 0.75rem;
  4059. position: relative;
  4060. display: flex;
  4061. flex-direction: column;
  4062. min-width: 0;
  4063. height: var(--bs-card-height);
  4064. color: var(--bs-body-color);
  4065. word-wrap: break-word;
  4066. background-color: var(--bs-card-bg);
  4067. background-clip: border-box;
  4068. border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4069. }
  4070. .card > hr {
  4071. margin-right: 0;
  4072. margin-left: 0;
  4073. }
  4074. .card > .list-group {
  4075. border-top: inherit;
  4076. border-bottom: inherit;
  4077. }
  4078. .card > .list-group:first-child {
  4079. border-top-width: 0;
  4080. }
  4081. .card > .list-group:last-child {
  4082. border-bottom-width: 0;
  4083. }
  4084. .card > .card-header + .list-group,
  4085. .card > .list-group + .card-footer {
  4086. border-top: 0;
  4087. }
  4088. .card-body {
  4089. flex: 1 1 auto;
  4090. padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  4091. color: var(--bs-card-color);
  4092. }
  4093. .card-title {
  4094. margin-bottom: var(--bs-card-title-spacer-y);
  4095. color: var(--bs-card-title-color);
  4096. }
  4097. .card-subtitle {
  4098. margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
  4099. margin-bottom: 0;
  4100. color: var(--bs-card-subtitle-color);
  4101. }
  4102. .card-text:last-child {
  4103. margin-bottom: 0;
  4104. }
  4105. .card-link + .card-link {
  4106. margin-left: var(--bs-card-spacer-x);
  4107. }
  4108. .card-header {
  4109. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  4110. margin-bottom: 0;
  4111. color: var(--bs-card-cap-color);
  4112. background-color: var(--bs-card-cap-bg);
  4113. border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4114. }
  4115. .card-footer {
  4116. padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  4117. color: var(--bs-card-cap-color);
  4118. background-color: var(--bs-card-cap-bg);
  4119. border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
  4120. }
  4121. .card-header-tabs {
  4122. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4123. margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  4124. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4125. border-bottom: 0;
  4126. }
  4127. .card-header-tabs .nav-link.active {
  4128. background-color: var(--bs-card-bg);
  4129. border-bottom-color: var(--bs-card-bg);
  4130. }
  4131. .card-header-pills {
  4132. margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
  4133. margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  4134. }
  4135. .card-img-overlay {
  4136. position: absolute;
  4137. top: 0;
  4138. right: 0;
  4139. bottom: 0;
  4140. left: 0;
  4141. padding: var(--bs-card-img-overlay-padding);
  4142. }
  4143. .card-img,
  4144. .card-img-top,
  4145. .card-img-bottom {
  4146. width: 100%;
  4147. }
  4148. .card-group > .card {
  4149. margin-bottom: var(--bs-card-group-margin);
  4150. }
  4151. @media (min-width: 576px) {
  4152. .card-group {
  4153. display: flex;
  4154. flex-flow: row wrap;
  4155. }
  4156. .card-group > .card {
  4157. flex: 1 0 0%;
  4158. margin-bottom: 0;
  4159. }
  4160. .card-group > .card + .card {
  4161. margin-left: 0;
  4162. border-left: 0;
  4163. }
  4164. }
  4165. .accordion {
  4166. --bs-accordion-color: var(--bs-body-color);
  4167. --bs-accordion-bg: var(--bs-body-bg);
  4168. --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;
  4169. --bs-accordion-border-color: var(--bs-border-color);
  4170. --bs-accordion-border-width: var(--bs-border-width);
  4171. --bs-accordion-border-radius: var(--bs-border-radius);
  4172. --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  4173. --bs-accordion-btn-padding-x: 1.25rem;
  4174. --bs-accordion-btn-padding-y: 1rem;
  4175. --bs-accordion-btn-color: var(--bs-body-color);
  4176. --bs-accordion-btn-bg: var(--bs-accordion-bg);
  4177. --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23373a3c'%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");
  4178. --bs-accordion-btn-icon-width: 1.25rem;
  4179. --bs-accordion-btn-icon-transform: rotate(-180deg);
  4180. --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  4181. --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2310335b'%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");
  4182. --bs-accordion-btn-focus-border-color: #93c0f1;
  4183. --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(39, 128, 227, 0.25);
  4184. --bs-accordion-body-padding-x: 1.25rem;
  4185. --bs-accordion-body-padding-y: 1rem;
  4186. --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  4187. --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
  4188. }
  4189. .accordion-button {
  4190. position: relative;
  4191. display: flex;
  4192. align-items: center;
  4193. width: 100%;
  4194. padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  4195. font-size: 1rem;
  4196. color: var(--bs-accordion-btn-color);
  4197. text-align: left;
  4198. background-color: var(--bs-accordion-btn-bg);
  4199. border: 0;
  4200. overflow-anchor: none;
  4201. transition: var(--bs-accordion-transition);
  4202. }
  4203. @media (prefers-reduced-motion: reduce) {
  4204. .accordion-button {
  4205. transition: none;
  4206. }
  4207. }
  4208. .accordion-button:not(.collapsed) {
  4209. color: var(--bs-accordion-active-color);
  4210. background-color: var(--bs-accordion-active-bg);
  4211. box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
  4212. }
  4213. .accordion-button:not(.collapsed)::after {
  4214. background-image: var(--bs-accordion-btn-active-icon);
  4215. transform: var(--bs-accordion-btn-icon-transform);
  4216. }
  4217. .accordion-button::after {
  4218. flex-shrink: 0;
  4219. width: var(--bs-accordion-btn-icon-width);
  4220. height: var(--bs-accordion-btn-icon-width);
  4221. margin-left: auto;
  4222. content: "";
  4223. background-image: var(--bs-accordion-btn-icon);
  4224. background-repeat: no-repeat;
  4225. background-size: var(--bs-accordion-btn-icon-width);
  4226. transition: var(--bs-accordion-btn-icon-transition);
  4227. }
  4228. @media (prefers-reduced-motion: reduce) {
  4229. .accordion-button::after {
  4230. transition: none;
  4231. }
  4232. }
  4233. .accordion-button:hover {
  4234. z-index: 2;
  4235. }
  4236. .accordion-button:focus {
  4237. z-index: 3;
  4238. border-color: var(--bs-accordion-btn-focus-border-color);
  4239. outline: 0;
  4240. box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  4241. }
  4242. .accordion-header {
  4243. margin-bottom: 0;
  4244. }
  4245. .accordion-item {
  4246. color: var(--bs-accordion-color);
  4247. background-color: var(--bs-accordion-bg);
  4248. border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
  4249. }
  4250. .accordion-item:not(:first-of-type) {
  4251. border-top: 0;
  4252. }
  4253. .accordion-body {
  4254. padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  4255. }
  4256. .accordion-flush .accordion-collapse {
  4257. border-width: 0;
  4258. }
  4259. .accordion-flush .accordion-item {
  4260. border-right: 0;
  4261. border-left: 0;
  4262. }
  4263. .accordion-flush .accordion-item:first-child {
  4264. border-top: 0;
  4265. }
  4266. .accordion-flush .accordion-item:last-child {
  4267. border-bottom: 0;
  4268. }
  4269. [data-bs-theme=dark] .accordion-button::after {
  4270. --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237db3ee'%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");
  4271. --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%237db3ee'%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");
  4272. }
  4273. .breadcrumb {
  4274. --bs-breadcrumb-padding-x: 0;
  4275. --bs-breadcrumb-padding-y: 0;
  4276. --bs-breadcrumb-margin-bottom: 1rem;
  4277. --bs-breadcrumb-bg: ;
  4278. --bs-breadcrumb-border-radius: ;
  4279. --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  4280. --bs-breadcrumb-item-padding-x: 0.5rem;
  4281. --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  4282. display: flex;
  4283. flex-wrap: wrap;
  4284. padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  4285. margin-bottom: var(--bs-breadcrumb-margin-bottom);
  4286. font-size: var(--bs-breadcrumb-font-size);
  4287. list-style: none;
  4288. background-color: var(--bs-breadcrumb-bg);
  4289. }
  4290. .breadcrumb-item + .breadcrumb-item {
  4291. padding-left: var(--bs-breadcrumb-item-padding-x);
  4292. }
  4293. .breadcrumb-item + .breadcrumb-item::before {
  4294. float: left;
  4295. padding-right: var(--bs-breadcrumb-item-padding-x);
  4296. color: var(--bs-breadcrumb-divider-color);
  4297. content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
  4298. }
  4299. .breadcrumb-item.active {
  4300. color: var(--bs-breadcrumb-item-active-color);
  4301. }
  4302. .pagination {
  4303. --bs-pagination-padding-x: 0.75rem;
  4304. --bs-pagination-padding-y: 0.375rem;
  4305. --bs-pagination-font-size: 1rem;
  4306. --bs-pagination-color: var(--bs-link-color);
  4307. --bs-pagination-bg: var(--bs-body-bg);
  4308. --bs-pagination-border-width: var(--bs-border-width);
  4309. --bs-pagination-border-color: var(--bs-border-color);
  4310. --bs-pagination-border-radius: var(--bs-border-radius);
  4311. --bs-pagination-hover-color: var(--bs-link-hover-color);
  4312. --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  4313. --bs-pagination-hover-border-color: var(--bs-border-color);
  4314. --bs-pagination-focus-color: var(--bs-link-hover-color);
  4315. --bs-pagination-focus-bg: var(--bs-secondary-bg);
  4316. --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(39, 128, 227, 0.25);
  4317. --bs-pagination-active-color: #fff;
  4318. --bs-pagination-active-bg: #2780e3;
  4319. --bs-pagination-active-border-color: #2780e3;
  4320. --bs-pagination-disabled-color: var(--bs-secondary-color);
  4321. --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  4322. --bs-pagination-disabled-border-color: var(--bs-border-color);
  4323. display: flex;
  4324. padding-left: 0;
  4325. list-style: none;
  4326. }
  4327. .page-link {
  4328. position: relative;
  4329. display: block;
  4330. padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  4331. font-size: var(--bs-pagination-font-size);
  4332. color: var(--bs-pagination-color);
  4333. text-decoration: none;
  4334. background-color: var(--bs-pagination-bg);
  4335. border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  4336. 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;
  4337. }
  4338. @media (prefers-reduced-motion: reduce) {
  4339. .page-link {
  4340. transition: none;
  4341. }
  4342. }
  4343. .page-link:hover {
  4344. z-index: 2;
  4345. color: var(--bs-pagination-hover-color);
  4346. background-color: var(--bs-pagination-hover-bg);
  4347. border-color: var(--bs-pagination-hover-border-color);
  4348. }
  4349. .page-link:focus {
  4350. z-index: 3;
  4351. color: var(--bs-pagination-focus-color);
  4352. background-color: var(--bs-pagination-focus-bg);
  4353. outline: 0;
  4354. box-shadow: var(--bs-pagination-focus-box-shadow);
  4355. }
  4356. .page-link.active, .active > .page-link {
  4357. z-index: 3;
  4358. color: var(--bs-pagination-active-color);
  4359. background-color: var(--bs-pagination-active-bg);
  4360. border-color: var(--bs-pagination-active-border-color);
  4361. }
  4362. .page-link.disabled, .disabled > .page-link {
  4363. color: var(--bs-pagination-disabled-color);
  4364. pointer-events: none;
  4365. background-color: var(--bs-pagination-disabled-bg);
  4366. border-color: var(--bs-pagination-disabled-border-color);
  4367. }
  4368. .page-item:not(:first-child) .page-link {
  4369. margin-left: calc(var(--bs-border-width) * -1);
  4370. }
  4371. .pagination-lg {
  4372. --bs-pagination-padding-x: 1.5rem;
  4373. --bs-pagination-padding-y: 0.75rem;
  4374. --bs-pagination-font-size: 1.25rem;
  4375. --bs-pagination-border-radius: var(--bs-border-radius-lg);
  4376. }
  4377. .pagination-sm {
  4378. --bs-pagination-padding-x: 0.5rem;
  4379. --bs-pagination-padding-y: 0.25rem;
  4380. --bs-pagination-font-size: 0.875rem;
  4381. --bs-pagination-border-radius: var(--bs-border-radius-sm);
  4382. }
  4383. .badge {
  4384. --bs-badge-padding-x: 0.65em;
  4385. --bs-badge-padding-y: 0.35em;
  4386. --bs-badge-font-size: 0.75em;
  4387. --bs-badge-font-weight: 700;
  4388. --bs-badge-color: #fff;
  4389. --bs-badge-border-radius: var(--bs-border-radius);
  4390. display: inline-block;
  4391. padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  4392. font-size: var(--bs-badge-font-size);
  4393. font-weight: var(--bs-badge-font-weight);
  4394. line-height: 1;
  4395. color: var(--bs-badge-color);
  4396. text-align: center;
  4397. white-space: nowrap;
  4398. vertical-align: baseline;
  4399. }
  4400. .badge:empty {
  4401. display: none;
  4402. }
  4403. .btn .badge {
  4404. position: relative;
  4405. top: -1px;
  4406. }
  4407. .alert {
  4408. --bs-alert-bg: transparent;
  4409. --bs-alert-padding-x: 1rem;
  4410. --bs-alert-padding-y: 1rem;
  4411. --bs-alert-margin-bottom: 1rem;
  4412. --bs-alert-color: inherit;
  4413. --bs-alert-border-color: transparent;
  4414. --bs-alert-border: 0 solid var(--bs-alert-border-color);
  4415. --bs-alert-border-radius: var(--bs-border-radius);
  4416. --bs-alert-link-color: inherit;
  4417. position: relative;
  4418. padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  4419. margin-bottom: var(--bs-alert-margin-bottom);
  4420. color: var(--bs-alert-color);
  4421. background-color: var(--bs-alert-bg);
  4422. border: var(--bs-alert-border);
  4423. }
  4424. .alert-heading {
  4425. color: inherit;
  4426. }
  4427. .alert-link {
  4428. font-weight: 700;
  4429. color: var(--bs-alert-link-color);
  4430. }
  4431. .alert-dismissible {
  4432. padding-right: 3rem;
  4433. }
  4434. .alert-dismissible .btn-close {
  4435. position: absolute;
  4436. top: 0;
  4437. right: 0;
  4438. z-index: 2;
  4439. padding: 1.25rem 1rem;
  4440. }
  4441. .alert-primary {
  4442. --bs-alert-color: var(--bs-primary-text-emphasis);
  4443. --bs-alert-bg: var(--bs-primary-bg-subtle);
  4444. --bs-alert-border-color: var(--bs-primary-border-subtle);
  4445. --bs-alert-link-color: var(--bs-primary-text-emphasis);
  4446. }
  4447. .alert-secondary {
  4448. --bs-alert-color: var(--bs-secondary-text-emphasis);
  4449. --bs-alert-bg: var(--bs-secondary-bg-subtle);
  4450. --bs-alert-border-color: var(--bs-secondary-border-subtle);
  4451. --bs-alert-link-color: var(--bs-secondary-text-emphasis);
  4452. }
  4453. .alert-success {
  4454. --bs-alert-color: var(--bs-success-text-emphasis);
  4455. --bs-alert-bg: var(--bs-success-bg-subtle);
  4456. --bs-alert-border-color: var(--bs-success-border-subtle);
  4457. --bs-alert-link-color: var(--bs-success-text-emphasis);
  4458. }
  4459. .alert-info {
  4460. --bs-alert-color: var(--bs-info-text-emphasis);
  4461. --bs-alert-bg: var(--bs-info-bg-subtle);
  4462. --bs-alert-border-color: var(--bs-info-border-subtle);
  4463. --bs-alert-link-color: var(--bs-info-text-emphasis);
  4464. }
  4465. .alert-warning {
  4466. --bs-alert-color: var(--bs-warning-text-emphasis);
  4467. --bs-alert-bg: var(--bs-warning-bg-subtle);
  4468. --bs-alert-border-color: var(--bs-warning-border-subtle);
  4469. --bs-alert-link-color: var(--bs-warning-text-emphasis);
  4470. }
  4471. .alert-danger {
  4472. --bs-alert-color: var(--bs-danger-text-emphasis);
  4473. --bs-alert-bg: var(--bs-danger-bg-subtle);
  4474. --bs-alert-border-color: var(--bs-danger-border-subtle);
  4475. --bs-alert-link-color: var(--bs-danger-text-emphasis);
  4476. }
  4477. .alert-light {
  4478. --bs-alert-color: var(--bs-light-text-emphasis);
  4479. --bs-alert-bg: var(--bs-light-bg-subtle);
  4480. --bs-alert-border-color: var(--bs-light-border-subtle);
  4481. --bs-alert-link-color: var(--bs-light-text-emphasis);
  4482. }
  4483. .alert-dark {
  4484. --bs-alert-color: var(--bs-dark-text-emphasis);
  4485. --bs-alert-bg: var(--bs-dark-bg-subtle);
  4486. --bs-alert-border-color: var(--bs-dark-border-subtle);
  4487. --bs-alert-link-color: var(--bs-dark-text-emphasis);
  4488. }
  4489. @keyframes progress-bar-stripes {
  4490. 0% {
  4491. background-position-x: 0.5rem;
  4492. }
  4493. }
  4494. .progress,
  4495. .progress-stacked {
  4496. --bs-progress-height: 0.5rem;
  4497. --bs-progress-font-size: 0.75rem;
  4498. --bs-progress-bg: var(--bs-secondary-bg);
  4499. --bs-progress-border-radius: var(--bs-border-radius);
  4500. --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  4501. --bs-progress-bar-color: #fff;
  4502. --bs-progress-bar-bg: #2780e3;
  4503. --bs-progress-bar-transition: width 0.6s ease;
  4504. display: flex;
  4505. height: var(--bs-progress-height);
  4506. overflow: hidden;
  4507. font-size: var(--bs-progress-font-size);
  4508. background-color: var(--bs-progress-bg);
  4509. }
  4510. .progress-bar {
  4511. display: flex;
  4512. flex-direction: column;
  4513. justify-content: center;
  4514. overflow: hidden;
  4515. color: var(--bs-progress-bar-color);
  4516. text-align: center;
  4517. white-space: nowrap;
  4518. background-color: var(--bs-progress-bar-bg);
  4519. transition: var(--bs-progress-bar-transition);
  4520. }
  4521. @media (prefers-reduced-motion: reduce) {
  4522. .progress-bar {
  4523. transition: none;
  4524. }
  4525. }
  4526. .progress-bar-striped {
  4527. 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);
  4528. background-size: var(--bs-progress-height) var(--bs-progress-height);
  4529. }
  4530. .progress-stacked > .progress {
  4531. overflow: visible;
  4532. }
  4533. .progress-stacked > .progress > .progress-bar {
  4534. width: 100%;
  4535. }
  4536. .progress-bar-animated {
  4537. animation: 1s linear infinite progress-bar-stripes;
  4538. }
  4539. @media (prefers-reduced-motion: reduce) {
  4540. .progress-bar-animated {
  4541. animation: none;
  4542. }
  4543. }
  4544. .list-group {
  4545. --bs-list-group-color: var(--bs-body-color);
  4546. --bs-list-group-bg: var(--bs-body-bg);
  4547. --bs-list-group-border-color: var(--bs-border-color);
  4548. --bs-list-group-border-width: var(--bs-border-width);
  4549. --bs-list-group-border-radius: var(--bs-border-radius);
  4550. --bs-list-group-item-padding-x: 1rem;
  4551. --bs-list-group-item-padding-y: 0.5rem;
  4552. --bs-list-group-action-color: var(--bs-secondary-color);
  4553. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4554. --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  4555. --bs-list-group-action-active-color: var(--bs-body-color);
  4556. --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  4557. --bs-list-group-disabled-color: var(--bs-secondary-color);
  4558. --bs-list-group-disabled-bg: var(--bs-body-bg);
  4559. --bs-list-group-active-color: #fff;
  4560. --bs-list-group-active-bg: #2780e3;
  4561. --bs-list-group-active-border-color: #2780e3;
  4562. display: flex;
  4563. flex-direction: column;
  4564. padding-left: 0;
  4565. margin-bottom: 0;
  4566. }
  4567. .list-group-numbered {
  4568. list-style-type: none;
  4569. counter-reset: section;
  4570. }
  4571. .list-group-numbered > .list-group-item::before {
  4572. content: counters(section, ".") ". ";
  4573. counter-increment: section;
  4574. }
  4575. .list-group-item-action {
  4576. width: 100%;
  4577. color: var(--bs-list-group-action-color);
  4578. text-align: inherit;
  4579. }
  4580. .list-group-item-action:hover, .list-group-item-action:focus {
  4581. z-index: 1;
  4582. color: var(--bs-list-group-action-hover-color);
  4583. text-decoration: none;
  4584. background-color: var(--bs-list-group-action-hover-bg);
  4585. }
  4586. .list-group-item-action:active {
  4587. color: var(--bs-list-group-action-active-color);
  4588. background-color: var(--bs-list-group-action-active-bg);
  4589. }
  4590. .list-group-item {
  4591. position: relative;
  4592. display: block;
  4593. padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  4594. color: var(--bs-list-group-color);
  4595. text-decoration: none;
  4596. background-color: var(--bs-list-group-bg);
  4597. border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
  4598. }
  4599. .list-group-item.disabled, .list-group-item:disabled {
  4600. color: var(--bs-list-group-disabled-color);
  4601. pointer-events: none;
  4602. background-color: var(--bs-list-group-disabled-bg);
  4603. }
  4604. .list-group-item.active {
  4605. z-index: 2;
  4606. color: var(--bs-list-group-active-color);
  4607. background-color: var(--bs-list-group-active-bg);
  4608. border-color: var(--bs-list-group-active-border-color);
  4609. }
  4610. .list-group-item + .list-group-item {
  4611. border-top-width: 0;
  4612. }
  4613. .list-group-item + .list-group-item.active {
  4614. margin-top: calc(-1 * var(--bs-list-group-border-width));
  4615. border-top-width: var(--bs-list-group-border-width);
  4616. }
  4617. .list-group-horizontal {
  4618. flex-direction: row;
  4619. }
  4620. .list-group-horizontal > .list-group-item.active {
  4621. margin-top: 0;
  4622. }
  4623. .list-group-horizontal > .list-group-item + .list-group-item {
  4624. border-top-width: var(--bs-list-group-border-width);
  4625. border-left-width: 0;
  4626. }
  4627. .list-group-horizontal > .list-group-item + .list-group-item.active {
  4628. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4629. border-left-width: var(--bs-list-group-border-width);
  4630. }
  4631. @media (min-width: 576px) {
  4632. .list-group-horizontal-sm {
  4633. flex-direction: row;
  4634. }
  4635. .list-group-horizontal-sm > .list-group-item.active {
  4636. margin-top: 0;
  4637. }
  4638. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  4639. border-top-width: var(--bs-list-group-border-width);
  4640. border-left-width: 0;
  4641. }
  4642. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  4643. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4644. border-left-width: var(--bs-list-group-border-width);
  4645. }
  4646. }
  4647. @media (min-width: 768px) {
  4648. .list-group-horizontal-md {
  4649. flex-direction: row;
  4650. }
  4651. .list-group-horizontal-md > .list-group-item.active {
  4652. margin-top: 0;
  4653. }
  4654. .list-group-horizontal-md > .list-group-item + .list-group-item {
  4655. border-top-width: var(--bs-list-group-border-width);
  4656. border-left-width: 0;
  4657. }
  4658. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  4659. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4660. border-left-width: var(--bs-list-group-border-width);
  4661. }
  4662. }
  4663. @media (min-width: 992px) {
  4664. .list-group-horizontal-lg {
  4665. flex-direction: row;
  4666. }
  4667. .list-group-horizontal-lg > .list-group-item.active {
  4668. margin-top: 0;
  4669. }
  4670. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  4671. border-top-width: var(--bs-list-group-border-width);
  4672. border-left-width: 0;
  4673. }
  4674. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  4675. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4676. border-left-width: var(--bs-list-group-border-width);
  4677. }
  4678. }
  4679. @media (min-width: 1200px) {
  4680. .list-group-horizontal-xl {
  4681. flex-direction: row;
  4682. }
  4683. .list-group-horizontal-xl > .list-group-item.active {
  4684. margin-top: 0;
  4685. }
  4686. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  4687. border-top-width: var(--bs-list-group-border-width);
  4688. border-left-width: 0;
  4689. }
  4690. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  4691. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4692. border-left-width: var(--bs-list-group-border-width);
  4693. }
  4694. }
  4695. @media (min-width: 1400px) {
  4696. .list-group-horizontal-xxl {
  4697. flex-direction: row;
  4698. }
  4699. .list-group-horizontal-xxl > .list-group-item.active {
  4700. margin-top: 0;
  4701. }
  4702. .list-group-horizontal-xxl > .list-group-item + .list-group-item {
  4703. border-top-width: var(--bs-list-group-border-width);
  4704. border-left-width: 0;
  4705. }
  4706. .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
  4707. margin-left: calc(-1 * var(--bs-list-group-border-width));
  4708. border-left-width: var(--bs-list-group-border-width);
  4709. }
  4710. }
  4711. .list-group-flush > .list-group-item {
  4712. border-width: 0 0 var(--bs-list-group-border-width);
  4713. }
  4714. .list-group-flush > .list-group-item:last-child {
  4715. border-bottom-width: 0;
  4716. }
  4717. .list-group-item-primary {
  4718. --bs-list-group-color: var(--bs-primary-text-emphasis);
  4719. --bs-list-group-bg: var(--bs-primary-bg-subtle);
  4720. --bs-list-group-border-color: var(--bs-primary-border-subtle);
  4721. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4722. --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  4723. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4724. --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  4725. --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  4726. --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  4727. --bs-list-group-active-border-color: var(--bs-primary-text-emphasis);
  4728. }
  4729. .list-group-item-secondary {
  4730. --bs-list-group-color: var(--bs-secondary-text-emphasis);
  4731. --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  4732. --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  4733. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4734. --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  4735. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4736. --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  4737. --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  4738. --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  4739. --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
  4740. }
  4741. .list-group-item-success {
  4742. --bs-list-group-color: var(--bs-success-text-emphasis);
  4743. --bs-list-group-bg: var(--bs-success-bg-subtle);
  4744. --bs-list-group-border-color: var(--bs-success-border-subtle);
  4745. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4746. --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  4747. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4748. --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  4749. --bs-list-group-active-color: var(--bs-success-bg-subtle);
  4750. --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  4751. --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
  4752. }
  4753. .list-group-item-info {
  4754. --bs-list-group-color: var(--bs-info-text-emphasis);
  4755. --bs-list-group-bg: var(--bs-info-bg-subtle);
  4756. --bs-list-group-border-color: var(--bs-info-border-subtle);
  4757. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4758. --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  4759. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4760. --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  4761. --bs-list-group-active-color: var(--bs-info-bg-subtle);
  4762. --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  4763. --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
  4764. }
  4765. .list-group-item-warning {
  4766. --bs-list-group-color: var(--bs-warning-text-emphasis);
  4767. --bs-list-group-bg: var(--bs-warning-bg-subtle);
  4768. --bs-list-group-border-color: var(--bs-warning-border-subtle);
  4769. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4770. --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  4771. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4772. --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  4773. --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  4774. --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  4775. --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
  4776. }
  4777. .list-group-item-danger {
  4778. --bs-list-group-color: var(--bs-danger-text-emphasis);
  4779. --bs-list-group-bg: var(--bs-danger-bg-subtle);
  4780. --bs-list-group-border-color: var(--bs-danger-border-subtle);
  4781. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4782. --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  4783. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4784. --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  4785. --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  4786. --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  4787. --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
  4788. }
  4789. .list-group-item-light {
  4790. --bs-list-group-color: var(--bs-light-text-emphasis);
  4791. --bs-list-group-bg: var(--bs-light-bg-subtle);
  4792. --bs-list-group-border-color: var(--bs-light-border-subtle);
  4793. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4794. --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  4795. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4796. --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  4797. --bs-list-group-active-color: var(--bs-light-bg-subtle);
  4798. --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  4799. --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
  4800. }
  4801. .list-group-item-dark {
  4802. --bs-list-group-color: var(--bs-dark-text-emphasis);
  4803. --bs-list-group-bg: var(--bs-dark-bg-subtle);
  4804. --bs-list-group-border-color: var(--bs-dark-border-subtle);
  4805. --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  4806. --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  4807. --bs-list-group-action-active-color: var(--bs-emphasis-color);
  4808. --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  4809. --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  4810. --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  4811. --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
  4812. }
  4813. .btn-close {
  4814. --bs-btn-close-color: #000;
  4815. --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  4816. --bs-btn-close-opacity: 0.5;
  4817. --bs-btn-close-hover-opacity: 0.75;
  4818. --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(39, 128, 227, 0.25);
  4819. --bs-btn-close-focus-opacity: 1;
  4820. --bs-btn-close-disabled-opacity: 0.25;
  4821. --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  4822. box-sizing: content-box;
  4823. width: 1em;
  4824. height: 1em;
  4825. padding: 0.25em 0.25em;
  4826. color: var(--bs-btn-close-color);
  4827. background: transparent var(--bs-btn-close-bg) center/1em auto no-repeat;
  4828. border: 0;
  4829. opacity: var(--bs-btn-close-opacity);
  4830. }
  4831. .btn-close:hover {
  4832. color: var(--bs-btn-close-color);
  4833. text-decoration: none;
  4834. opacity: var(--bs-btn-close-hover-opacity);
  4835. }
  4836. .btn-close:focus {
  4837. outline: 0;
  4838. box-shadow: var(--bs-btn-close-focus-shadow);
  4839. opacity: var(--bs-btn-close-focus-opacity);
  4840. }
  4841. .btn-close:disabled, .btn-close.disabled {
  4842. pointer-events: none;
  4843. -webkit-user-select: none;
  4844. -moz-user-select: none;
  4845. user-select: none;
  4846. opacity: var(--bs-btn-close-disabled-opacity);
  4847. }
  4848. .btn-close-white {
  4849. filter: var(--bs-btn-close-white-filter);
  4850. }
  4851. [data-bs-theme=dark] .btn-close {
  4852. filter: var(--bs-btn-close-white-filter);
  4853. }
  4854. .toast {
  4855. --bs-toast-zindex: 1090;
  4856. --bs-toast-padding-x: 0.75rem;
  4857. --bs-toast-padding-y: 0.5rem;
  4858. --bs-toast-spacing: 1.5rem;
  4859. --bs-toast-max-width: 350px;
  4860. --bs-toast-font-size: 0.875rem;
  4861. --bs-toast-color: ;
  4862. --bs-toast-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  4863. --bs-toast-border-width: var(--bs-border-width);
  4864. --bs-toast-border-color: var(--bs-border-color-translucent);
  4865. --bs-toast-border-radius: var(--bs-border-radius);
  4866. --bs-toast-box-shadow: var(--bs-box-shadow);
  4867. --bs-toast-header-color: var(--bs-secondary-color);
  4868. --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), 0.85);
  4869. --bs-toast-header-border-color: var(--bs-border-color-translucent);
  4870. width: var(--bs-toast-max-width);
  4871. max-width: 100%;
  4872. font-size: var(--bs-toast-font-size);
  4873. color: var(--bs-toast-color);
  4874. pointer-events: auto;
  4875. background-color: var(--bs-toast-bg);
  4876. background-clip: padding-box;
  4877. border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  4878. box-shadow: var(--bs-toast-box-shadow);
  4879. }
  4880. .toast.showing {
  4881. opacity: 0;
  4882. }
  4883. .toast:not(.show) {
  4884. display: none;
  4885. }
  4886. .toast-container {
  4887. --bs-toast-zindex: 1090;
  4888. position: absolute;
  4889. z-index: var(--bs-toast-zindex);
  4890. width: -webkit-max-content;
  4891. width: -moz-max-content;
  4892. width: max-content;
  4893. max-width: 100%;
  4894. pointer-events: none;
  4895. }
  4896. .toast-container > :not(:last-child) {
  4897. margin-bottom: var(--bs-toast-spacing);
  4898. }
  4899. .toast-header {
  4900. display: flex;
  4901. align-items: center;
  4902. padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  4903. color: var(--bs-toast-header-color);
  4904. background-color: var(--bs-toast-header-bg);
  4905. background-clip: padding-box;
  4906. border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  4907. }
  4908. .toast-header .btn-close {
  4909. margin-right: calc(-0.5 * var(--bs-toast-padding-x));
  4910. margin-left: var(--bs-toast-padding-x);
  4911. }
  4912. .toast-body {
  4913. padding: var(--bs-toast-padding-x);
  4914. word-wrap: break-word;
  4915. }
  4916. .modal {
  4917. --bs-modal-zindex: 1055;
  4918. --bs-modal-width: 500px;
  4919. --bs-modal-padding: 1rem;
  4920. --bs-modal-margin: 0.5rem;
  4921. --bs-modal-color: ;
  4922. --bs-modal-bg: var(--bs-body-bg);
  4923. --bs-modal-border-color: var(--bs-border-color-translucent);
  4924. --bs-modal-border-width: var(--bs-border-width);
  4925. --bs-modal-border-radius: var(--bs-border-radius-lg);
  4926. --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  4927. --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  4928. --bs-modal-header-padding-x: 1rem;
  4929. --bs-modal-header-padding-y: 1rem;
  4930. --bs-modal-header-padding: 1rem 1rem;
  4931. --bs-modal-header-border-color: var(--bs-border-color);
  4932. --bs-modal-header-border-width: var(--bs-border-width);
  4933. --bs-modal-title-line-height: 1.5;
  4934. --bs-modal-footer-gap: 0.5rem;
  4935. --bs-modal-footer-bg: ;
  4936. --bs-modal-footer-border-color: var(--bs-border-color);
  4937. --bs-modal-footer-border-width: var(--bs-border-width);
  4938. position: fixed;
  4939. top: 0;
  4940. left: 0;
  4941. z-index: var(--bs-modal-zindex);
  4942. display: none;
  4943. width: 100%;
  4944. height: 100%;
  4945. overflow-x: hidden;
  4946. overflow-y: auto;
  4947. outline: 0;
  4948. }
  4949. .modal-dialog {
  4950. position: relative;
  4951. width: auto;
  4952. margin: var(--bs-modal-margin);
  4953. pointer-events: none;
  4954. }
  4955. .modal.fade .modal-dialog {
  4956. transition: transform 0.3s ease-out;
  4957. transform: translate(0, -50px);
  4958. }
  4959. @media (prefers-reduced-motion: reduce) {
  4960. .modal.fade .modal-dialog {
  4961. transition: none;
  4962. }
  4963. }
  4964. .modal.show .modal-dialog {
  4965. transform: none;
  4966. }
  4967. .modal.modal-static .modal-dialog {
  4968. transform: scale(1.02);
  4969. }
  4970. .modal-dialog-scrollable {
  4971. height: calc(100% - var(--bs-modal-margin) * 2);
  4972. }
  4973. .modal-dialog-scrollable .modal-content {
  4974. max-height: 100%;
  4975. overflow: hidden;
  4976. }
  4977. .modal-dialog-scrollable .modal-body {
  4978. overflow-y: auto;
  4979. }
  4980. .modal-dialog-centered {
  4981. display: flex;
  4982. align-items: center;
  4983. min-height: calc(100% - var(--bs-modal-margin) * 2);
  4984. }
  4985. .modal-content {
  4986. position: relative;
  4987. display: flex;
  4988. flex-direction: column;
  4989. width: 100%;
  4990. color: var(--bs-modal-color);
  4991. pointer-events: auto;
  4992. background-color: var(--bs-modal-bg);
  4993. background-clip: padding-box;
  4994. border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  4995. outline: 0;
  4996. }
  4997. .modal-backdrop {
  4998. --bs-backdrop-zindex: 1050;
  4999. --bs-backdrop-bg: #000;
  5000. --bs-backdrop-opacity: 0.5;
  5001. position: fixed;
  5002. top: 0;
  5003. left: 0;
  5004. z-index: var(--bs-backdrop-zindex);
  5005. width: 100vw;
  5006. height: 100vh;
  5007. background-color: var(--bs-backdrop-bg);
  5008. }
  5009. .modal-backdrop.fade {
  5010. opacity: 0;
  5011. }
  5012. .modal-backdrop.show {
  5013. opacity: var(--bs-backdrop-opacity);
  5014. }
  5015. .modal-header {
  5016. display: flex;
  5017. flex-shrink: 0;
  5018. align-items: center;
  5019. justify-content: space-between;
  5020. padding: var(--bs-modal-header-padding);
  5021. border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  5022. }
  5023. .modal-header .btn-close {
  5024. padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  5025. margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
  5026. }
  5027. .modal-title {
  5028. margin-bottom: 0;
  5029. line-height: var(--bs-modal-title-line-height);
  5030. }
  5031. .modal-body {
  5032. position: relative;
  5033. flex: 1 1 auto;
  5034. padding: var(--bs-modal-padding);
  5035. }
  5036. .modal-footer {
  5037. display: flex;
  5038. flex-shrink: 0;
  5039. flex-wrap: wrap;
  5040. align-items: center;
  5041. justify-content: flex-end;
  5042. padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  5043. background-color: var(--bs-modal-footer-bg);
  5044. border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  5045. }
  5046. .modal-footer > * {
  5047. margin: calc(var(--bs-modal-footer-gap) * 0.5);
  5048. }
  5049. @media (min-width: 576px) {
  5050. .modal {
  5051. --bs-modal-margin: 1.75rem;
  5052. --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  5053. }
  5054. .modal-dialog {
  5055. max-width: var(--bs-modal-width);
  5056. margin-right: auto;
  5057. margin-left: auto;
  5058. }
  5059. .modal-sm {
  5060. --bs-modal-width: 300px;
  5061. }
  5062. }
  5063. @media (min-width: 992px) {
  5064. .modal-lg,
  5065. .modal-xl {
  5066. --bs-modal-width: 800px;
  5067. }
  5068. }
  5069. @media (min-width: 1200px) {
  5070. .modal-xl {
  5071. --bs-modal-width: 1140px;
  5072. }
  5073. }
  5074. .modal-fullscreen {
  5075. width: 100vw;
  5076. max-width: none;
  5077. height: 100%;
  5078. margin: 0;
  5079. }
  5080. .modal-fullscreen .modal-content {
  5081. height: 100%;
  5082. border: 0;
  5083. }
  5084. .modal-fullscreen .modal-body {
  5085. overflow-y: auto;
  5086. }
  5087. @media (max-width: 575.98px) {
  5088. .modal-fullscreen-sm-down {
  5089. width: 100vw;
  5090. max-width: none;
  5091. height: 100%;
  5092. margin: 0;
  5093. }
  5094. .modal-fullscreen-sm-down .modal-content {
  5095. height: 100%;
  5096. border: 0;
  5097. }
  5098. .modal-fullscreen-sm-down .modal-body {
  5099. overflow-y: auto;
  5100. }
  5101. }
  5102. @media (max-width: 767.98px) {
  5103. .modal-fullscreen-md-down {
  5104. width: 100vw;
  5105. max-width: none;
  5106. height: 100%;
  5107. margin: 0;
  5108. }
  5109. .modal-fullscreen-md-down .modal-content {
  5110. height: 100%;
  5111. border: 0;
  5112. }
  5113. .modal-fullscreen-md-down .modal-body {
  5114. overflow-y: auto;
  5115. }
  5116. }
  5117. @media (max-width: 991.98px) {
  5118. .modal-fullscreen-lg-down {
  5119. width: 100vw;
  5120. max-width: none;
  5121. height: 100%;
  5122. margin: 0;
  5123. }
  5124. .modal-fullscreen-lg-down .modal-content {
  5125. height: 100%;
  5126. border: 0;
  5127. }
  5128. .modal-fullscreen-lg-down .modal-body {
  5129. overflow-y: auto;
  5130. }
  5131. }
  5132. @media (max-width: 1199.98px) {
  5133. .modal-fullscreen-xl-down {
  5134. width: 100vw;
  5135. max-width: none;
  5136. height: 100%;
  5137. margin: 0;
  5138. }
  5139. .modal-fullscreen-xl-down .modal-content {
  5140. height: 100%;
  5141. border: 0;
  5142. }
  5143. .modal-fullscreen-xl-down .modal-body {
  5144. overflow-y: auto;
  5145. }
  5146. }
  5147. @media (max-width: 1399.98px) {
  5148. .modal-fullscreen-xxl-down {
  5149. width: 100vw;
  5150. max-width: none;
  5151. height: 100%;
  5152. margin: 0;
  5153. }
  5154. .modal-fullscreen-xxl-down .modal-content {
  5155. height: 100%;
  5156. border: 0;
  5157. }
  5158. .modal-fullscreen-xxl-down .modal-body {
  5159. overflow-y: auto;
  5160. }
  5161. }
  5162. .tooltip {
  5163. --bs-tooltip-zindex: 1080;
  5164. --bs-tooltip-max-width: 200px;
  5165. --bs-tooltip-padding-x: 0.5rem;
  5166. --bs-tooltip-padding-y: 0.25rem;
  5167. --bs-tooltip-margin: ;
  5168. --bs-tooltip-font-size: 0.875rem;
  5169. --bs-tooltip-color: var(--bs-body-bg);
  5170. --bs-tooltip-bg: var(--bs-emphasis-color);
  5171. --bs-tooltip-border-radius: var(--bs-border-radius);
  5172. --bs-tooltip-opacity: 0.9;
  5173. --bs-tooltip-arrow-width: 0.8rem;
  5174. --bs-tooltip-arrow-height: 0.4rem;
  5175. z-index: var(--bs-tooltip-zindex);
  5176. display: block;
  5177. margin: var(--bs-tooltip-margin);
  5178. font-family: var(--bs-font-sans-serif);
  5179. font-style: normal;
  5180. font-weight: 400;
  5181. line-height: 1.5;
  5182. text-align: left;
  5183. text-align: start;
  5184. text-decoration: none;
  5185. text-shadow: none;
  5186. text-transform: none;
  5187. letter-spacing: normal;
  5188. word-break: normal;
  5189. white-space: normal;
  5190. word-spacing: normal;
  5191. line-break: auto;
  5192. font-size: var(--bs-tooltip-font-size);
  5193. word-wrap: break-word;
  5194. opacity: 0;
  5195. }
  5196. .tooltip.show {
  5197. opacity: var(--bs-tooltip-opacity);
  5198. }
  5199. .tooltip .tooltip-arrow {
  5200. display: block;
  5201. width: var(--bs-tooltip-arrow-width);
  5202. height: var(--bs-tooltip-arrow-height);
  5203. }
  5204. .tooltip .tooltip-arrow::before {
  5205. position: absolute;
  5206. content: "";
  5207. border-color: transparent;
  5208. border-style: solid;
  5209. }
  5210. .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  5211. bottom: calc(-1 * var(--bs-tooltip-arrow-height));
  5212. }
  5213. .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  5214. top: -1px;
  5215. border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5216. border-top-color: var(--bs-tooltip-bg);
  5217. }
  5218. /* rtl:begin:ignore */
  5219. .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  5220. left: calc(-1 * var(--bs-tooltip-arrow-height));
  5221. width: var(--bs-tooltip-arrow-height);
  5222. height: var(--bs-tooltip-arrow-width);
  5223. }
  5224. .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  5225. right: -1px;
  5226. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * 0.5) 0;
  5227. border-right-color: var(--bs-tooltip-bg);
  5228. }
  5229. /* rtl:end:ignore */
  5230. .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  5231. top: calc(-1 * var(--bs-tooltip-arrow-height));
  5232. }
  5233. .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  5234. bottom: -1px;
  5235. border-width: 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5236. border-bottom-color: var(--bs-tooltip-bg);
  5237. }
  5238. /* rtl:begin:ignore */
  5239. .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  5240. right: calc(-1 * var(--bs-tooltip-arrow-height));
  5241. width: var(--bs-tooltip-arrow-height);
  5242. height: var(--bs-tooltip-arrow-width);
  5243. }
  5244. .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  5245. left: -1px;
  5246. border-width: calc(var(--bs-tooltip-arrow-width) * 0.5) 0 calc(var(--bs-tooltip-arrow-width) * 0.5) var(--bs-tooltip-arrow-height);
  5247. border-left-color: var(--bs-tooltip-bg);
  5248. }
  5249. /* rtl:end:ignore */
  5250. .tooltip-inner {
  5251. max-width: var(--bs-tooltip-max-width);
  5252. padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  5253. color: var(--bs-tooltip-color);
  5254. text-align: center;
  5255. background-color: var(--bs-tooltip-bg);
  5256. }
  5257. .popover {
  5258. --bs-popover-zindex: 1070;
  5259. --bs-popover-max-width: 276px;
  5260. --bs-popover-font-size: 0.875rem;
  5261. --bs-popover-bg: var(--bs-body-bg);
  5262. --bs-popover-border-width: var(--bs-border-width);
  5263. --bs-popover-border-color: var(--bs-border-color-translucent);
  5264. --bs-popover-border-radius: var(--bs-border-radius-lg);
  5265. --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg) - var(--bs-border-width));
  5266. --bs-popover-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  5267. --bs-popover-header-padding-x: 1rem;
  5268. --bs-popover-header-padding-y: 0.5rem;
  5269. --bs-popover-header-font-size: 1rem;
  5270. --bs-popover-header-color: inherit;
  5271. --bs-popover-header-bg: var(--bs-secondary-bg);
  5272. --bs-popover-body-padding-x: 1rem;
  5273. --bs-popover-body-padding-y: 1rem;
  5274. --bs-popover-body-color: var(--bs-body-color);
  5275. --bs-popover-arrow-width: 1rem;
  5276. --bs-popover-arrow-height: 0.5rem;
  5277. --bs-popover-arrow-border: var(--bs-popover-border-color);
  5278. z-index: var(--bs-popover-zindex);
  5279. display: block;
  5280. max-width: var(--bs-popover-max-width);
  5281. font-family: var(--bs-font-sans-serif);
  5282. font-style: normal;
  5283. font-weight: 400;
  5284. line-height: 1.5;
  5285. text-align: left;
  5286. text-align: start;
  5287. text-decoration: none;
  5288. text-shadow: none;
  5289. text-transform: none;
  5290. letter-spacing: normal;
  5291. word-break: normal;
  5292. white-space: normal;
  5293. word-spacing: normal;
  5294. line-break: auto;
  5295. font-size: var(--bs-popover-font-size);
  5296. word-wrap: break-word;
  5297. background-color: var(--bs-popover-bg);
  5298. background-clip: padding-box;
  5299. border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5300. }
  5301. .popover .popover-arrow {
  5302. display: block;
  5303. width: var(--bs-popover-arrow-width);
  5304. height: var(--bs-popover-arrow-height);
  5305. }
  5306. .popover .popover-arrow::before, .popover .popover-arrow::after {
  5307. position: absolute;
  5308. display: block;
  5309. content: "";
  5310. border-color: transparent;
  5311. border-style: solid;
  5312. border-width: 0;
  5313. }
  5314. .bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  5315. bottom: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5316. }
  5317. .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 {
  5318. border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  5319. }
  5320. .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  5321. bottom: 0;
  5322. border-top-color: var(--bs-popover-arrow-border);
  5323. }
  5324. .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  5325. bottom: var(--bs-popover-border-width);
  5326. border-top-color: var(--bs-popover-bg);
  5327. }
  5328. /* rtl:begin:ignore */
  5329. .bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  5330. left: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5331. width: var(--bs-popover-arrow-height);
  5332. height: var(--bs-popover-arrow-width);
  5333. }
  5334. .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 {
  5335. border-width: calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * 0.5) 0;
  5336. }
  5337. .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  5338. left: 0;
  5339. border-right-color: var(--bs-popover-arrow-border);
  5340. }
  5341. .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  5342. left: var(--bs-popover-border-width);
  5343. border-right-color: var(--bs-popover-bg);
  5344. }
  5345. /* rtl:end:ignore */
  5346. .bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  5347. top: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5348. }
  5349. .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 {
  5350. border-width: 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  5351. }
  5352. .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  5353. top: 0;
  5354. border-bottom-color: var(--bs-popover-arrow-border);
  5355. }
  5356. .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  5357. top: var(--bs-popover-border-width);
  5358. border-bottom-color: var(--bs-popover-bg);
  5359. }
  5360. .bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  5361. position: absolute;
  5362. top: 0;
  5363. left: 50%;
  5364. display: block;
  5365. width: var(--bs-popover-arrow-width);
  5366. margin-left: calc(-0.5 * var(--bs-popover-arrow-width));
  5367. content: "";
  5368. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
  5369. }
  5370. /* rtl:begin:ignore */
  5371. .bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  5372. right: calc(-1 * (var(--bs-popover-arrow-height)) - var(--bs-popover-border-width));
  5373. width: var(--bs-popover-arrow-height);
  5374. height: var(--bs-popover-arrow-width);
  5375. }
  5376. .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 {
  5377. border-width: calc(var(--bs-popover-arrow-width) * 0.5) 0 calc(var(--bs-popover-arrow-width) * 0.5) var(--bs-popover-arrow-height);
  5378. }
  5379. .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  5380. right: 0;
  5381. border-left-color: var(--bs-popover-arrow-border);
  5382. }
  5383. .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  5384. right: var(--bs-popover-border-width);
  5385. border-left-color: var(--bs-popover-bg);
  5386. }
  5387. /* rtl:end:ignore */
  5388. .popover-header {
  5389. padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  5390. margin-bottom: 0;
  5391. font-size: var(--bs-popover-header-font-size);
  5392. color: var(--bs-popover-header-color);
  5393. background-color: var(--bs-popover-header-bg);
  5394. border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  5395. }
  5396. .popover-header:empty {
  5397. display: none;
  5398. }
  5399. .popover-body {
  5400. padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  5401. color: var(--bs-popover-body-color);
  5402. }
  5403. .carousel {
  5404. position: relative;
  5405. }
  5406. .carousel.pointer-event {
  5407. touch-action: pan-y;
  5408. }
  5409. .carousel-inner {
  5410. position: relative;
  5411. width: 100%;
  5412. overflow: hidden;
  5413. }
  5414. .carousel-inner::after {
  5415. display: block;
  5416. clear: both;
  5417. content: "";
  5418. }
  5419. .carousel-item {
  5420. position: relative;
  5421. display: none;
  5422. float: left;
  5423. width: 100%;
  5424. margin-right: -100%;
  5425. -webkit-backface-visibility: hidden;
  5426. backface-visibility: hidden;
  5427. transition: transform 0.6s ease-in-out;
  5428. }
  5429. @media (prefers-reduced-motion: reduce) {
  5430. .carousel-item {
  5431. transition: none;
  5432. }
  5433. }
  5434. .carousel-item.active,
  5435. .carousel-item-next,
  5436. .carousel-item-prev {
  5437. display: block;
  5438. }
  5439. .carousel-item-next:not(.carousel-item-start),
  5440. .active.carousel-item-end {
  5441. transform: translateX(100%);
  5442. }
  5443. .carousel-item-prev:not(.carousel-item-end),
  5444. .active.carousel-item-start {
  5445. transform: translateX(-100%);
  5446. }
  5447. .carousel-fade .carousel-item {
  5448. opacity: 0;
  5449. transition-property: opacity;
  5450. transform: none;
  5451. }
  5452. .carousel-fade .carousel-item.active,
  5453. .carousel-fade .carousel-item-next.carousel-item-start,
  5454. .carousel-fade .carousel-item-prev.carousel-item-end {
  5455. z-index: 1;
  5456. opacity: 1;
  5457. }
  5458. .carousel-fade .active.carousel-item-start,
  5459. .carousel-fade .active.carousel-item-end {
  5460. z-index: 0;
  5461. opacity: 0;
  5462. transition: opacity 0s 0.6s;
  5463. }
  5464. @media (prefers-reduced-motion: reduce) {
  5465. .carousel-fade .active.carousel-item-start,
  5466. .carousel-fade .active.carousel-item-end {
  5467. transition: none;
  5468. }
  5469. }
  5470. .carousel-control-prev,
  5471. .carousel-control-next {
  5472. position: absolute;
  5473. top: 0;
  5474. bottom: 0;
  5475. z-index: 1;
  5476. display: flex;
  5477. align-items: center;
  5478. justify-content: center;
  5479. width: 15%;
  5480. padding: 0;
  5481. color: #fff;
  5482. text-align: center;
  5483. background: none;
  5484. border: 0;
  5485. opacity: 0.5;
  5486. transition: opacity 0.15s ease;
  5487. }
  5488. @media (prefers-reduced-motion: reduce) {
  5489. .carousel-control-prev,
  5490. .carousel-control-next {
  5491. transition: none;
  5492. }
  5493. }
  5494. .carousel-control-prev:hover, .carousel-control-prev:focus,
  5495. .carousel-control-next:hover,
  5496. .carousel-control-next:focus {
  5497. color: #fff;
  5498. text-decoration: none;
  5499. outline: 0;
  5500. opacity: 0.9;
  5501. }
  5502. .carousel-control-prev {
  5503. left: 0;
  5504. }
  5505. .carousel-control-next {
  5506. right: 0;
  5507. }
  5508. .carousel-control-prev-icon,
  5509. .carousel-control-next-icon {
  5510. display: inline-block;
  5511. width: 2rem;
  5512. height: 2rem;
  5513. background-repeat: no-repeat;
  5514. background-position: 50%;
  5515. background-size: 100% 100%;
  5516. }
  5517. /* rtl:options: {
  5518. "autoRename": true,
  5519. "stringMap":[ {
  5520. "name" : "prev-next",
  5521. "search" : "prev",
  5522. "replace" : "next"
  5523. } ]
  5524. } */
  5525. .carousel-control-prev-icon {
  5526. 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");
  5527. }
  5528. .carousel-control-next-icon {
  5529. 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");
  5530. }
  5531. .carousel-indicators {
  5532. position: absolute;
  5533. right: 0;
  5534. bottom: 0;
  5535. left: 0;
  5536. z-index: 2;
  5537. display: flex;
  5538. justify-content: center;
  5539. padding: 0;
  5540. margin-right: 15%;
  5541. margin-bottom: 1rem;
  5542. margin-left: 15%;
  5543. }
  5544. .carousel-indicators [data-bs-target] {
  5545. box-sizing: content-box;
  5546. flex: 0 1 auto;
  5547. width: 30px;
  5548. height: 3px;
  5549. padding: 0;
  5550. margin-right: 3px;
  5551. margin-left: 3px;
  5552. text-indent: -999px;
  5553. cursor: pointer;
  5554. background-color: #fff;
  5555. background-clip: padding-box;
  5556. border: 0;
  5557. border-top: 10px solid transparent;
  5558. border-bottom: 10px solid transparent;
  5559. opacity: 0.5;
  5560. transition: opacity 0.6s ease;
  5561. }
  5562. @media (prefers-reduced-motion: reduce) {
  5563. .carousel-indicators [data-bs-target] {
  5564. transition: none;
  5565. }
  5566. }
  5567. .carousel-indicators .active {
  5568. opacity: 1;
  5569. }
  5570. .carousel-caption {
  5571. position: absolute;
  5572. right: 15%;
  5573. bottom: 1.25rem;
  5574. left: 15%;
  5575. padding-top: 1.25rem;
  5576. padding-bottom: 1.25rem;
  5577. color: #fff;
  5578. text-align: center;
  5579. }
  5580. .carousel-dark .carousel-control-prev-icon,
  5581. .carousel-dark .carousel-control-next-icon {
  5582. filter: invert(1) grayscale(100);
  5583. }
  5584. .carousel-dark .carousel-indicators [data-bs-target] {
  5585. background-color: #000;
  5586. }
  5587. .carousel-dark .carousel-caption {
  5588. color: #000;
  5589. }
  5590. [data-bs-theme=dark] .carousel .carousel-control-prev-icon,
  5591. [data-bs-theme=dark] .carousel .carousel-control-next-icon, [data-bs-theme=dark].carousel .carousel-control-prev-icon,
  5592. [data-bs-theme=dark].carousel .carousel-control-next-icon {
  5593. filter: invert(1) grayscale(100);
  5594. }
  5595. [data-bs-theme=dark] .carousel .carousel-indicators [data-bs-target], [data-bs-theme=dark].carousel .carousel-indicators [data-bs-target] {
  5596. background-color: #000;
  5597. }
  5598. [data-bs-theme=dark] .carousel .carousel-caption, [data-bs-theme=dark].carousel .carousel-caption {
  5599. color: #000;
  5600. }
  5601. .spinner-grow,
  5602. .spinner-border {
  5603. display: inline-block;
  5604. width: var(--bs-spinner-width);
  5605. height: var(--bs-spinner-height);
  5606. vertical-align: var(--bs-spinner-vertical-align);
  5607. border-radius: 50%;
  5608. animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
  5609. }
  5610. @keyframes spinner-border {
  5611. to {
  5612. transform: rotate(360deg) /* rtl:ignore */;
  5613. }
  5614. }
  5615. .spinner-border {
  5616. --bs-spinner-width: 2rem;
  5617. --bs-spinner-height: 2rem;
  5618. --bs-spinner-vertical-align: -0.125em;
  5619. --bs-spinner-border-width: 0.25em;
  5620. --bs-spinner-animation-speed: 0.75s;
  5621. --bs-spinner-animation-name: spinner-border;
  5622. border: var(--bs-spinner-border-width) solid currentcolor;
  5623. border-right-color: transparent;
  5624. }
  5625. .spinner-border-sm {
  5626. --bs-spinner-width: 1rem;
  5627. --bs-spinner-height: 1rem;
  5628. --bs-spinner-border-width: 0.2em;
  5629. }
  5630. @keyframes spinner-grow {
  5631. 0% {
  5632. transform: scale(0);
  5633. }
  5634. 50% {
  5635. opacity: 1;
  5636. transform: none;
  5637. }
  5638. }
  5639. .spinner-grow {
  5640. --bs-spinner-width: 2rem;
  5641. --bs-spinner-height: 2rem;
  5642. --bs-spinner-vertical-align: -0.125em;
  5643. --bs-spinner-animation-speed: 0.75s;
  5644. --bs-spinner-animation-name: spinner-grow;
  5645. background-color: currentcolor;
  5646. opacity: 0;
  5647. }
  5648. .spinner-grow-sm {
  5649. --bs-spinner-width: 1rem;
  5650. --bs-spinner-height: 1rem;
  5651. }
  5652. @media (prefers-reduced-motion: reduce) {
  5653. .spinner-border,
  5654. .spinner-grow {
  5655. --bs-spinner-animation-speed: 1.5s;
  5656. }
  5657. }
  5658. .offcanvas, .offcanvas-xxl, .offcanvas-xl, .offcanvas-lg, .offcanvas-md, .offcanvas-sm {
  5659. --bs-offcanvas-zindex: 1045;
  5660. --bs-offcanvas-width: 400px;
  5661. --bs-offcanvas-height: 30vh;
  5662. --bs-offcanvas-padding-x: 1rem;
  5663. --bs-offcanvas-padding-y: 1rem;
  5664. --bs-offcanvas-color: var(--bs-body-color);
  5665. --bs-offcanvas-bg: var(--bs-body-bg);
  5666. --bs-offcanvas-border-width: var(--bs-border-width);
  5667. --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  5668. --bs-offcanvas-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  5669. --bs-offcanvas-transition: transform 0.3s ease-in-out;
  5670. --bs-offcanvas-title-line-height: 1.5;
  5671. }
  5672. @media (max-width: 575.98px) {
  5673. .offcanvas-sm {
  5674. position: fixed;
  5675. bottom: 0;
  5676. z-index: var(--bs-offcanvas-zindex);
  5677. display: flex;
  5678. flex-direction: column;
  5679. max-width: 100%;
  5680. color: var(--bs-offcanvas-color);
  5681. visibility: hidden;
  5682. background-color: var(--bs-offcanvas-bg);
  5683. background-clip: padding-box;
  5684. outline: 0;
  5685. transition: var(--bs-offcanvas-transition);
  5686. }
  5687. }
  5688. @media (max-width: 575.98px) and (prefers-reduced-motion: reduce) {
  5689. .offcanvas-sm {
  5690. transition: none;
  5691. }
  5692. }
  5693. @media (max-width: 575.98px) {
  5694. .offcanvas-sm.offcanvas-start {
  5695. top: 0;
  5696. left: 0;
  5697. width: var(--bs-offcanvas-width);
  5698. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5699. transform: translateX(-100%);
  5700. }
  5701. .offcanvas-sm.offcanvas-end {
  5702. top: 0;
  5703. right: 0;
  5704. width: var(--bs-offcanvas-width);
  5705. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5706. transform: translateX(100%);
  5707. }
  5708. .offcanvas-sm.offcanvas-top {
  5709. top: 0;
  5710. right: 0;
  5711. left: 0;
  5712. height: var(--bs-offcanvas-height);
  5713. max-height: 100%;
  5714. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5715. transform: translateY(-100%);
  5716. }
  5717. .offcanvas-sm.offcanvas-bottom {
  5718. right: 0;
  5719. left: 0;
  5720. height: var(--bs-offcanvas-height);
  5721. max-height: 100%;
  5722. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5723. transform: translateY(100%);
  5724. }
  5725. .offcanvas-sm.showing, .offcanvas-sm.show:not(.hiding) {
  5726. transform: none;
  5727. }
  5728. .offcanvas-sm.showing, .offcanvas-sm.hiding, .offcanvas-sm.show {
  5729. visibility: visible;
  5730. }
  5731. }
  5732. @media (min-width: 576px) {
  5733. .offcanvas-sm {
  5734. --bs-offcanvas-height: auto;
  5735. --bs-offcanvas-border-width: 0;
  5736. background-color: transparent !important;
  5737. }
  5738. .offcanvas-sm .offcanvas-header {
  5739. display: none;
  5740. }
  5741. .offcanvas-sm .offcanvas-body {
  5742. display: flex;
  5743. flex-grow: 0;
  5744. padding: 0;
  5745. overflow-y: visible;
  5746. background-color: transparent !important;
  5747. }
  5748. }
  5749. @media (max-width: 767.98px) {
  5750. .offcanvas-md {
  5751. position: fixed;
  5752. bottom: 0;
  5753. z-index: var(--bs-offcanvas-zindex);
  5754. display: flex;
  5755. flex-direction: column;
  5756. max-width: 100%;
  5757. color: var(--bs-offcanvas-color);
  5758. visibility: hidden;
  5759. background-color: var(--bs-offcanvas-bg);
  5760. background-clip: padding-box;
  5761. outline: 0;
  5762. transition: var(--bs-offcanvas-transition);
  5763. }
  5764. }
  5765. @media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  5766. .offcanvas-md {
  5767. transition: none;
  5768. }
  5769. }
  5770. @media (max-width: 767.98px) {
  5771. .offcanvas-md.offcanvas-start {
  5772. top: 0;
  5773. left: 0;
  5774. width: var(--bs-offcanvas-width);
  5775. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5776. transform: translateX(-100%);
  5777. }
  5778. .offcanvas-md.offcanvas-end {
  5779. top: 0;
  5780. right: 0;
  5781. width: var(--bs-offcanvas-width);
  5782. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5783. transform: translateX(100%);
  5784. }
  5785. .offcanvas-md.offcanvas-top {
  5786. top: 0;
  5787. right: 0;
  5788. left: 0;
  5789. height: var(--bs-offcanvas-height);
  5790. max-height: 100%;
  5791. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5792. transform: translateY(-100%);
  5793. }
  5794. .offcanvas-md.offcanvas-bottom {
  5795. right: 0;
  5796. left: 0;
  5797. height: var(--bs-offcanvas-height);
  5798. max-height: 100%;
  5799. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5800. transform: translateY(100%);
  5801. }
  5802. .offcanvas-md.showing, .offcanvas-md.show:not(.hiding) {
  5803. transform: none;
  5804. }
  5805. .offcanvas-md.showing, .offcanvas-md.hiding, .offcanvas-md.show {
  5806. visibility: visible;
  5807. }
  5808. }
  5809. @media (min-width: 768px) {
  5810. .offcanvas-md {
  5811. --bs-offcanvas-height: auto;
  5812. --bs-offcanvas-border-width: 0;
  5813. background-color: transparent !important;
  5814. }
  5815. .offcanvas-md .offcanvas-header {
  5816. display: none;
  5817. }
  5818. .offcanvas-md .offcanvas-body {
  5819. display: flex;
  5820. flex-grow: 0;
  5821. padding: 0;
  5822. overflow-y: visible;
  5823. background-color: transparent !important;
  5824. }
  5825. }
  5826. @media (max-width: 991.98px) {
  5827. .offcanvas-lg {
  5828. position: fixed;
  5829. bottom: 0;
  5830. z-index: var(--bs-offcanvas-zindex);
  5831. display: flex;
  5832. flex-direction: column;
  5833. max-width: 100%;
  5834. color: var(--bs-offcanvas-color);
  5835. visibility: hidden;
  5836. background-color: var(--bs-offcanvas-bg);
  5837. background-clip: padding-box;
  5838. outline: 0;
  5839. transition: var(--bs-offcanvas-transition);
  5840. }
  5841. }
  5842. @media (max-width: 991.98px) and (prefers-reduced-motion: reduce) {
  5843. .offcanvas-lg {
  5844. transition: none;
  5845. }
  5846. }
  5847. @media (max-width: 991.98px) {
  5848. .offcanvas-lg.offcanvas-start {
  5849. top: 0;
  5850. left: 0;
  5851. width: var(--bs-offcanvas-width);
  5852. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5853. transform: translateX(-100%);
  5854. }
  5855. .offcanvas-lg.offcanvas-end {
  5856. top: 0;
  5857. right: 0;
  5858. width: var(--bs-offcanvas-width);
  5859. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5860. transform: translateX(100%);
  5861. }
  5862. .offcanvas-lg.offcanvas-top {
  5863. top: 0;
  5864. right: 0;
  5865. left: 0;
  5866. height: var(--bs-offcanvas-height);
  5867. max-height: 100%;
  5868. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5869. transform: translateY(-100%);
  5870. }
  5871. .offcanvas-lg.offcanvas-bottom {
  5872. right: 0;
  5873. left: 0;
  5874. height: var(--bs-offcanvas-height);
  5875. max-height: 100%;
  5876. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5877. transform: translateY(100%);
  5878. }
  5879. .offcanvas-lg.showing, .offcanvas-lg.show:not(.hiding) {
  5880. transform: none;
  5881. }
  5882. .offcanvas-lg.showing, .offcanvas-lg.hiding, .offcanvas-lg.show {
  5883. visibility: visible;
  5884. }
  5885. }
  5886. @media (min-width: 992px) {
  5887. .offcanvas-lg {
  5888. --bs-offcanvas-height: auto;
  5889. --bs-offcanvas-border-width: 0;
  5890. background-color: transparent !important;
  5891. }
  5892. .offcanvas-lg .offcanvas-header {
  5893. display: none;
  5894. }
  5895. .offcanvas-lg .offcanvas-body {
  5896. display: flex;
  5897. flex-grow: 0;
  5898. padding: 0;
  5899. overflow-y: visible;
  5900. background-color: transparent !important;
  5901. }
  5902. }
  5903. @media (max-width: 1199.98px) {
  5904. .offcanvas-xl {
  5905. position: fixed;
  5906. bottom: 0;
  5907. z-index: var(--bs-offcanvas-zindex);
  5908. display: flex;
  5909. flex-direction: column;
  5910. max-width: 100%;
  5911. color: var(--bs-offcanvas-color);
  5912. visibility: hidden;
  5913. background-color: var(--bs-offcanvas-bg);
  5914. background-clip: padding-box;
  5915. outline: 0;
  5916. transition: var(--bs-offcanvas-transition);
  5917. }
  5918. }
  5919. @media (max-width: 1199.98px) and (prefers-reduced-motion: reduce) {
  5920. .offcanvas-xl {
  5921. transition: none;
  5922. }
  5923. }
  5924. @media (max-width: 1199.98px) {
  5925. .offcanvas-xl.offcanvas-start {
  5926. top: 0;
  5927. left: 0;
  5928. width: var(--bs-offcanvas-width);
  5929. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5930. transform: translateX(-100%);
  5931. }
  5932. .offcanvas-xl.offcanvas-end {
  5933. top: 0;
  5934. right: 0;
  5935. width: var(--bs-offcanvas-width);
  5936. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5937. transform: translateX(100%);
  5938. }
  5939. .offcanvas-xl.offcanvas-top {
  5940. top: 0;
  5941. right: 0;
  5942. left: 0;
  5943. height: var(--bs-offcanvas-height);
  5944. max-height: 100%;
  5945. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5946. transform: translateY(-100%);
  5947. }
  5948. .offcanvas-xl.offcanvas-bottom {
  5949. right: 0;
  5950. left: 0;
  5951. height: var(--bs-offcanvas-height);
  5952. max-height: 100%;
  5953. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  5954. transform: translateY(100%);
  5955. }
  5956. .offcanvas-xl.showing, .offcanvas-xl.show:not(.hiding) {
  5957. transform: none;
  5958. }
  5959. .offcanvas-xl.showing, .offcanvas-xl.hiding, .offcanvas-xl.show {
  5960. visibility: visible;
  5961. }
  5962. }
  5963. @media (min-width: 1200px) {
  5964. .offcanvas-xl {
  5965. --bs-offcanvas-height: auto;
  5966. --bs-offcanvas-border-width: 0;
  5967. background-color: transparent !important;
  5968. }
  5969. .offcanvas-xl .offcanvas-header {
  5970. display: none;
  5971. }
  5972. .offcanvas-xl .offcanvas-body {
  5973. display: flex;
  5974. flex-grow: 0;
  5975. padding: 0;
  5976. overflow-y: visible;
  5977. background-color: transparent !important;
  5978. }
  5979. }
  5980. @media (max-width: 1399.98px) {
  5981. .offcanvas-xxl {
  5982. position: fixed;
  5983. bottom: 0;
  5984. z-index: var(--bs-offcanvas-zindex);
  5985. display: flex;
  5986. flex-direction: column;
  5987. max-width: 100%;
  5988. color: var(--bs-offcanvas-color);
  5989. visibility: hidden;
  5990. background-color: var(--bs-offcanvas-bg);
  5991. background-clip: padding-box;
  5992. outline: 0;
  5993. transition: var(--bs-offcanvas-transition);
  5994. }
  5995. }
  5996. @media (max-width: 1399.98px) and (prefers-reduced-motion: reduce) {
  5997. .offcanvas-xxl {
  5998. transition: none;
  5999. }
  6000. }
  6001. @media (max-width: 1399.98px) {
  6002. .offcanvas-xxl.offcanvas-start {
  6003. top: 0;
  6004. left: 0;
  6005. width: var(--bs-offcanvas-width);
  6006. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6007. transform: translateX(-100%);
  6008. }
  6009. .offcanvas-xxl.offcanvas-end {
  6010. top: 0;
  6011. right: 0;
  6012. width: var(--bs-offcanvas-width);
  6013. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6014. transform: translateX(100%);
  6015. }
  6016. .offcanvas-xxl.offcanvas-top {
  6017. top: 0;
  6018. right: 0;
  6019. left: 0;
  6020. height: var(--bs-offcanvas-height);
  6021. max-height: 100%;
  6022. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6023. transform: translateY(-100%);
  6024. }
  6025. .offcanvas-xxl.offcanvas-bottom {
  6026. right: 0;
  6027. left: 0;
  6028. height: var(--bs-offcanvas-height);
  6029. max-height: 100%;
  6030. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6031. transform: translateY(100%);
  6032. }
  6033. .offcanvas-xxl.showing, .offcanvas-xxl.show:not(.hiding) {
  6034. transform: none;
  6035. }
  6036. .offcanvas-xxl.showing, .offcanvas-xxl.hiding, .offcanvas-xxl.show {
  6037. visibility: visible;
  6038. }
  6039. }
  6040. @media (min-width: 1400px) {
  6041. .offcanvas-xxl {
  6042. --bs-offcanvas-height: auto;
  6043. --bs-offcanvas-border-width: 0;
  6044. background-color: transparent !important;
  6045. }
  6046. .offcanvas-xxl .offcanvas-header {
  6047. display: none;
  6048. }
  6049. .offcanvas-xxl .offcanvas-body {
  6050. display: flex;
  6051. flex-grow: 0;
  6052. padding: 0;
  6053. overflow-y: visible;
  6054. background-color: transparent !important;
  6055. }
  6056. }
  6057. .offcanvas {
  6058. position: fixed;
  6059. bottom: 0;
  6060. z-index: var(--bs-offcanvas-zindex);
  6061. display: flex;
  6062. flex-direction: column;
  6063. max-width: 100%;
  6064. color: var(--bs-offcanvas-color);
  6065. visibility: hidden;
  6066. background-color: var(--bs-offcanvas-bg);
  6067. background-clip: padding-box;
  6068. outline: 0;
  6069. transition: var(--bs-offcanvas-transition);
  6070. }
  6071. @media (prefers-reduced-motion: reduce) {
  6072. .offcanvas {
  6073. transition: none;
  6074. }
  6075. }
  6076. .offcanvas.offcanvas-start {
  6077. top: 0;
  6078. left: 0;
  6079. width: var(--bs-offcanvas-width);
  6080. border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6081. transform: translateX(-100%);
  6082. }
  6083. .offcanvas.offcanvas-end {
  6084. top: 0;
  6085. right: 0;
  6086. width: var(--bs-offcanvas-width);
  6087. border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6088. transform: translateX(100%);
  6089. }
  6090. .offcanvas.offcanvas-top {
  6091. top: 0;
  6092. right: 0;
  6093. left: 0;
  6094. height: var(--bs-offcanvas-height);
  6095. max-height: 100%;
  6096. border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6097. transform: translateY(-100%);
  6098. }
  6099. .offcanvas.offcanvas-bottom {
  6100. right: 0;
  6101. left: 0;
  6102. height: var(--bs-offcanvas-height);
  6103. max-height: 100%;
  6104. border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  6105. transform: translateY(100%);
  6106. }
  6107. .offcanvas.showing, .offcanvas.show:not(.hiding) {
  6108. transform: none;
  6109. }
  6110. .offcanvas.showing, .offcanvas.hiding, .offcanvas.show {
  6111. visibility: visible;
  6112. }
  6113. .offcanvas-backdrop {
  6114. position: fixed;
  6115. top: 0;
  6116. left: 0;
  6117. z-index: 1040;
  6118. width: 100vw;
  6119. height: 100vh;
  6120. background-color: #000;
  6121. }
  6122. .offcanvas-backdrop.fade {
  6123. opacity: 0;
  6124. }
  6125. .offcanvas-backdrop.show {
  6126. opacity: 0.5;
  6127. }
  6128. .offcanvas-header {
  6129. display: flex;
  6130. align-items: center;
  6131. justify-content: space-between;
  6132. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6133. }
  6134. .offcanvas-header .btn-close {
  6135. padding: calc(var(--bs-offcanvas-padding-y) * 0.5) calc(var(--bs-offcanvas-padding-x) * 0.5);
  6136. margin-top: calc(-0.5 * var(--bs-offcanvas-padding-y));
  6137. margin-right: calc(-0.5 * var(--bs-offcanvas-padding-x));
  6138. margin-bottom: calc(-0.5 * var(--bs-offcanvas-padding-y));
  6139. }
  6140. .offcanvas-title {
  6141. margin-bottom: 0;
  6142. line-height: var(--bs-offcanvas-title-line-height);
  6143. }
  6144. .offcanvas-body {
  6145. flex-grow: 1;
  6146. padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  6147. overflow-y: auto;
  6148. }
  6149. .placeholder {
  6150. display: inline-block;
  6151. min-height: 1em;
  6152. vertical-align: middle;
  6153. cursor: wait;
  6154. background-color: currentcolor;
  6155. opacity: 0.5;
  6156. }
  6157. .placeholder.btn::before {
  6158. display: inline-block;
  6159. content: "";
  6160. }
  6161. .placeholder-xs {
  6162. min-height: 0.6em;
  6163. }
  6164. .placeholder-sm {
  6165. min-height: 0.8em;
  6166. }
  6167. .placeholder-lg {
  6168. min-height: 1.2em;
  6169. }
  6170. .placeholder-glow .placeholder {
  6171. animation: placeholder-glow 2s ease-in-out infinite;
  6172. }
  6173. @keyframes placeholder-glow {
  6174. 50% {
  6175. opacity: 0.2;
  6176. }
  6177. }
  6178. .placeholder-wave {
  6179. -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6180. mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6181. -webkit-mask-size: 200% 100%;
  6182. mask-size: 200% 100%;
  6183. animation: placeholder-wave 2s linear infinite;
  6184. }
  6185. @keyframes placeholder-wave {
  6186. 100% {
  6187. -webkit-mask-position: -200% 0%;
  6188. mask-position: -200% 0%;
  6189. }
  6190. }
  6191. .clearfix::after {
  6192. display: block;
  6193. clear: both;
  6194. content: "";
  6195. }
  6196. .text-bg-primary {
  6197. color: #fff !important;
  6198. background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
  6199. }
  6200. .text-bg-secondary {
  6201. color: #fff !important;
  6202. background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
  6203. }
  6204. .text-bg-success {
  6205. color: #fff !important;
  6206. background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
  6207. }
  6208. .text-bg-info {
  6209. color: #fff !important;
  6210. background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
  6211. }
  6212. .text-bg-warning {
  6213. color: #fff !important;
  6214. background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
  6215. }
  6216. .text-bg-danger {
  6217. color: #fff !important;
  6218. background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
  6219. }
  6220. .text-bg-light {
  6221. color: #000 !important;
  6222. background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
  6223. }
  6224. .text-bg-dark {
  6225. color: #fff !important;
  6226. background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
  6227. }
  6228. .link-primary {
  6229. color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  6230. -webkit-text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6231. text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6232. }
  6233. .link-primary:hover, .link-primary:focus {
  6234. color: RGBA(31, 102, 182, var(--bs-link-opacity, 1)) !important;
  6235. -webkit-text-decoration-color: RGBA(31, 102, 182, var(--bs-link-underline-opacity, 1)) !important;
  6236. text-decoration-color: RGBA(31, 102, 182, var(--bs-link-underline-opacity, 1)) !important;
  6237. }
  6238. .link-secondary {
  6239. color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  6240. -webkit-text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6241. text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6242. }
  6243. .link-secondary:hover, .link-secondary:focus {
  6244. color: RGBA(44, 46, 48, var(--bs-link-opacity, 1)) !important;
  6245. -webkit-text-decoration-color: RGBA(44, 46, 48, var(--bs-link-underline-opacity, 1)) !important;
  6246. text-decoration-color: RGBA(44, 46, 48, var(--bs-link-underline-opacity, 1)) !important;
  6247. }
  6248. .link-success {
  6249. color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  6250. -webkit-text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6251. text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6252. }
  6253. .link-success:hover, .link-success:focus {
  6254. color: RGBA(50, 146, 19, var(--bs-link-opacity, 1)) !important;
  6255. -webkit-text-decoration-color: RGBA(50, 146, 19, var(--bs-link-underline-opacity, 1)) !important;
  6256. text-decoration-color: RGBA(50, 146, 19, var(--bs-link-underline-opacity, 1)) !important;
  6257. }
  6258. .link-info {
  6259. color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  6260. -webkit-text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6261. text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6262. }
  6263. .link-info:hover, .link-info:focus {
  6264. color: RGBA(122, 67, 150, var(--bs-link-opacity, 1)) !important;
  6265. -webkit-text-decoration-color: RGBA(122, 67, 150, var(--bs-link-underline-opacity, 1)) !important;
  6266. text-decoration-color: RGBA(122, 67, 150, var(--bs-link-underline-opacity, 1)) !important;
  6267. }
  6268. .link-warning {
  6269. color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  6270. -webkit-text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6271. text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6272. }
  6273. .link-warning:hover, .link-warning:focus {
  6274. color: RGBA(204, 94, 19, var(--bs-link-opacity, 1)) !important;
  6275. -webkit-text-decoration-color: RGBA(204, 94, 19, var(--bs-link-underline-opacity, 1)) !important;
  6276. text-decoration-color: RGBA(204, 94, 19, var(--bs-link-underline-opacity, 1)) !important;
  6277. }
  6278. .link-danger {
  6279. color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  6280. -webkit-text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6281. text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6282. }
  6283. .link-danger:hover, .link-danger:focus {
  6284. color: RGBA(204, 0, 46, var(--bs-link-opacity, 1)) !important;
  6285. -webkit-text-decoration-color: RGBA(204, 0, 46, var(--bs-link-underline-opacity, 1)) !important;
  6286. text-decoration-color: RGBA(204, 0, 46, var(--bs-link-underline-opacity, 1)) !important;
  6287. }
  6288. .link-light {
  6289. color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  6290. -webkit-text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6291. text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6292. }
  6293. .link-light:hover, .link-light:focus {
  6294. color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  6295. -webkit-text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
  6296. text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
  6297. }
  6298. .link-dark {
  6299. color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  6300. -webkit-text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6301. text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6302. }
  6303. .link-dark:hover, .link-dark:focus {
  6304. color: RGBA(44, 46, 48, var(--bs-link-opacity, 1)) !important;
  6305. -webkit-text-decoration-color: RGBA(44, 46, 48, var(--bs-link-underline-opacity, 1)) !important;
  6306. text-decoration-color: RGBA(44, 46, 48, var(--bs-link-underline-opacity, 1)) !important;
  6307. }
  6308. .link-body-emphasis {
  6309. color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  6310. -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6311. text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  6312. }
  6313. .link-body-emphasis:hover, .link-body-emphasis:focus {
  6314. color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 0.75)) !important;
  6315. -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
  6316. text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 0.75)) !important;
  6317. }
  6318. .focus-ring:focus {
  6319. outline: 0;
  6320. box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
  6321. }
  6322. .icon-link {
  6323. display: inline-flex;
  6324. gap: 0.375rem;
  6325. align-items: center;
  6326. -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  6327. text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 0.5));
  6328. text-underline-offset: 0.25em;
  6329. -webkit-backface-visibility: hidden;
  6330. backface-visibility: hidden;
  6331. }
  6332. .icon-link > .bi {
  6333. flex-shrink: 0;
  6334. width: 1em;
  6335. height: 1em;
  6336. fill: currentcolor;
  6337. transition: 0.2s ease-in-out transform;
  6338. }
  6339. @media (prefers-reduced-motion: reduce) {
  6340. .icon-link > .bi {
  6341. transition: none;
  6342. }
  6343. }
  6344. .icon-link-hover:hover > .bi, .icon-link-hover:focus-visible > .bi {
  6345. transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
  6346. }
  6347. .ratio {
  6348. position: relative;
  6349. width: 100%;
  6350. }
  6351. .ratio::before {
  6352. display: block;
  6353. padding-top: var(--bs-aspect-ratio);
  6354. content: "";
  6355. }
  6356. .ratio > * {
  6357. position: absolute;
  6358. top: 0;
  6359. left: 0;
  6360. width: 100%;
  6361. height: 100%;
  6362. }
  6363. .ratio-1x1 {
  6364. --bs-aspect-ratio: 100%;
  6365. }
  6366. .ratio-4x3 {
  6367. --bs-aspect-ratio: 75%;
  6368. }
  6369. .ratio-16x9 {
  6370. --bs-aspect-ratio: 56.25%;
  6371. }
  6372. .ratio-21x9 {
  6373. --bs-aspect-ratio: 42.8571428571%;
  6374. }
  6375. .fixed-top {
  6376. position: fixed;
  6377. top: 0;
  6378. right: 0;
  6379. left: 0;
  6380. z-index: 1030;
  6381. }
  6382. .fixed-bottom {
  6383. position: fixed;
  6384. right: 0;
  6385. bottom: 0;
  6386. left: 0;
  6387. z-index: 1030;
  6388. }
  6389. .sticky-top {
  6390. position: -webkit-sticky;
  6391. position: sticky;
  6392. top: 0;
  6393. z-index: 1020;
  6394. }
  6395. .sticky-bottom {
  6396. position: -webkit-sticky;
  6397. position: sticky;
  6398. bottom: 0;
  6399. z-index: 1020;
  6400. }
  6401. @media (min-width: 576px) {
  6402. .sticky-sm-top {
  6403. position: -webkit-sticky;
  6404. position: sticky;
  6405. top: 0;
  6406. z-index: 1020;
  6407. }
  6408. .sticky-sm-bottom {
  6409. position: -webkit-sticky;
  6410. position: sticky;
  6411. bottom: 0;
  6412. z-index: 1020;
  6413. }
  6414. }
  6415. @media (min-width: 768px) {
  6416. .sticky-md-top {
  6417. position: -webkit-sticky;
  6418. position: sticky;
  6419. top: 0;
  6420. z-index: 1020;
  6421. }
  6422. .sticky-md-bottom {
  6423. position: -webkit-sticky;
  6424. position: sticky;
  6425. bottom: 0;
  6426. z-index: 1020;
  6427. }
  6428. }
  6429. @media (min-width: 992px) {
  6430. .sticky-lg-top {
  6431. position: -webkit-sticky;
  6432. position: sticky;
  6433. top: 0;
  6434. z-index: 1020;
  6435. }
  6436. .sticky-lg-bottom {
  6437. position: -webkit-sticky;
  6438. position: sticky;
  6439. bottom: 0;
  6440. z-index: 1020;
  6441. }
  6442. }
  6443. @media (min-width: 1200px) {
  6444. .sticky-xl-top {
  6445. position: -webkit-sticky;
  6446. position: sticky;
  6447. top: 0;
  6448. z-index: 1020;
  6449. }
  6450. .sticky-xl-bottom {
  6451. position: -webkit-sticky;
  6452. position: sticky;
  6453. bottom: 0;
  6454. z-index: 1020;
  6455. }
  6456. }
  6457. @media (min-width: 1400px) {
  6458. .sticky-xxl-top {
  6459. position: -webkit-sticky;
  6460. position: sticky;
  6461. top: 0;
  6462. z-index: 1020;
  6463. }
  6464. .sticky-xxl-bottom {
  6465. position: -webkit-sticky;
  6466. position: sticky;
  6467. bottom: 0;
  6468. z-index: 1020;
  6469. }
  6470. }
  6471. .hstack {
  6472. display: flex;
  6473. flex-direction: row;
  6474. align-items: center;
  6475. align-self: stretch;
  6476. }
  6477. .vstack {
  6478. display: flex;
  6479. flex: 1 1 auto;
  6480. flex-direction: column;
  6481. align-self: stretch;
  6482. }
  6483. .visually-hidden,
  6484. .visually-hidden-focusable:not(:focus):not(:focus-within) {
  6485. width: 1px !important;
  6486. height: 1px !important;
  6487. padding: 0 !important;
  6488. margin: -1px !important;
  6489. overflow: hidden !important;
  6490. clip: rect(0, 0, 0, 0) !important;
  6491. white-space: nowrap !important;
  6492. border: 0 !important;
  6493. }
  6494. .visually-hidden:not(caption),
  6495. .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  6496. position: absolute !important;
  6497. }
  6498. .stretched-link::after {
  6499. position: absolute;
  6500. top: 0;
  6501. right: 0;
  6502. bottom: 0;
  6503. left: 0;
  6504. z-index: 1;
  6505. content: "";
  6506. }
  6507. .text-truncate {
  6508. overflow: hidden;
  6509. text-overflow: ellipsis;
  6510. white-space: nowrap;
  6511. }
  6512. .vr {
  6513. display: inline-block;
  6514. align-self: stretch;
  6515. width: var(--bs-border-width);
  6516. min-height: 1em;
  6517. background-color: currentcolor;
  6518. opacity: 0.25;
  6519. }
  6520. .align-baseline {
  6521. vertical-align: baseline !important;
  6522. }
  6523. .align-top {
  6524. vertical-align: top !important;
  6525. }
  6526. .align-middle {
  6527. vertical-align: middle !important;
  6528. }
  6529. .align-bottom {
  6530. vertical-align: bottom !important;
  6531. }
  6532. .align-text-bottom {
  6533. vertical-align: text-bottom !important;
  6534. }
  6535. .align-text-top {
  6536. vertical-align: text-top !important;
  6537. }
  6538. .float-start {
  6539. float: left !important;
  6540. }
  6541. .float-end {
  6542. float: right !important;
  6543. }
  6544. .float-none {
  6545. float: none !important;
  6546. }
  6547. .object-fit-contain {
  6548. -o-object-fit: contain !important;
  6549. object-fit: contain !important;
  6550. }
  6551. .object-fit-cover {
  6552. -o-object-fit: cover !important;
  6553. object-fit: cover !important;
  6554. }
  6555. .object-fit-fill {
  6556. -o-object-fit: fill !important;
  6557. object-fit: fill !important;
  6558. }
  6559. .object-fit-scale {
  6560. -o-object-fit: scale-down !important;
  6561. object-fit: scale-down !important;
  6562. }
  6563. .object-fit-none {
  6564. -o-object-fit: none !important;
  6565. object-fit: none !important;
  6566. }
  6567. .opacity-0 {
  6568. opacity: 0 !important;
  6569. }
  6570. .opacity-25 {
  6571. opacity: 0.25 !important;
  6572. }
  6573. .opacity-50 {
  6574. opacity: 0.5 !important;
  6575. }
  6576. .opacity-75 {
  6577. opacity: 0.75 !important;
  6578. }
  6579. .opacity-100 {
  6580. opacity: 1 !important;
  6581. }
  6582. .overflow-auto {
  6583. overflow: auto !important;
  6584. }
  6585. .overflow-hidden {
  6586. overflow: hidden !important;
  6587. }
  6588. .overflow-visible {
  6589. overflow: visible !important;
  6590. }
  6591. .overflow-scroll {
  6592. overflow: scroll !important;
  6593. }
  6594. .overflow-x-auto {
  6595. overflow-x: auto !important;
  6596. }
  6597. .overflow-x-hidden {
  6598. overflow-x: hidden !important;
  6599. }
  6600. .overflow-x-visible {
  6601. overflow-x: visible !important;
  6602. }
  6603. .overflow-x-scroll {
  6604. overflow-x: scroll !important;
  6605. }
  6606. .overflow-y-auto {
  6607. overflow-y: auto !important;
  6608. }
  6609. .overflow-y-hidden {
  6610. overflow-y: hidden !important;
  6611. }
  6612. .overflow-y-visible {
  6613. overflow-y: visible !important;
  6614. }
  6615. .overflow-y-scroll {
  6616. overflow-y: scroll !important;
  6617. }
  6618. .d-inline {
  6619. display: inline !important;
  6620. }
  6621. .d-inline-block {
  6622. display: inline-block !important;
  6623. }
  6624. .d-block {
  6625. display: block !important;
  6626. }
  6627. .d-grid {
  6628. display: grid !important;
  6629. }
  6630. .d-inline-grid {
  6631. display: inline-grid !important;
  6632. }
  6633. .d-table {
  6634. display: table !important;
  6635. }
  6636. .d-table-row {
  6637. display: table-row !important;
  6638. }
  6639. .d-table-cell {
  6640. display: table-cell !important;
  6641. }
  6642. .d-flex {
  6643. display: flex !important;
  6644. }
  6645. .d-inline-flex {
  6646. display: inline-flex !important;
  6647. }
  6648. .d-none {
  6649. display: none !important;
  6650. }
  6651. .shadow {
  6652. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  6653. }
  6654. .shadow-sm {
  6655. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  6656. }
  6657. .shadow-lg {
  6658. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  6659. }
  6660. .shadow-none {
  6661. box-shadow: none !important;
  6662. }
  6663. .focus-ring-primary {
  6664. --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
  6665. }
  6666. .focus-ring-secondary {
  6667. --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
  6668. }
  6669. .focus-ring-success {
  6670. --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
  6671. }
  6672. .focus-ring-info {
  6673. --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
  6674. }
  6675. .focus-ring-warning {
  6676. --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
  6677. }
  6678. .focus-ring-danger {
  6679. --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
  6680. }
  6681. .focus-ring-light {
  6682. --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
  6683. }
  6684. .focus-ring-dark {
  6685. --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
  6686. }
  6687. .position-static {
  6688. position: static !important;
  6689. }
  6690. .position-relative {
  6691. position: relative !important;
  6692. }
  6693. .position-absolute {
  6694. position: absolute !important;
  6695. }
  6696. .position-fixed {
  6697. position: fixed !important;
  6698. }
  6699. .position-sticky {
  6700. position: -webkit-sticky !important;
  6701. position: sticky !important;
  6702. }
  6703. .top-0 {
  6704. top: 0 !important;
  6705. }
  6706. .top-50 {
  6707. top: 50% !important;
  6708. }
  6709. .top-100 {
  6710. top: 100% !important;
  6711. }
  6712. .bottom-0 {
  6713. bottom: 0 !important;
  6714. }
  6715. .bottom-50 {
  6716. bottom: 50% !important;
  6717. }
  6718. .bottom-100 {
  6719. bottom: 100% !important;
  6720. }
  6721. .start-0 {
  6722. left: 0 !important;
  6723. }
  6724. .start-50 {
  6725. left: 50% !important;
  6726. }
  6727. .start-100 {
  6728. left: 100% !important;
  6729. }
  6730. .end-0 {
  6731. right: 0 !important;
  6732. }
  6733. .end-50 {
  6734. right: 50% !important;
  6735. }
  6736. .end-100 {
  6737. right: 100% !important;
  6738. }
  6739. .translate-middle {
  6740. transform: translate(-50%, -50%) !important;
  6741. }
  6742. .translate-middle-x {
  6743. transform: translateX(-50%) !important;
  6744. }
  6745. .translate-middle-y {
  6746. transform: translateY(-50%) !important;
  6747. }
  6748. .border {
  6749. border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6750. }
  6751. .border-0 {
  6752. border: 0 !important;
  6753. }
  6754. .border-top {
  6755. border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6756. }
  6757. .border-top-0 {
  6758. border-top: 0 !important;
  6759. }
  6760. .border-end {
  6761. border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6762. }
  6763. .border-end-0 {
  6764. border-right: 0 !important;
  6765. }
  6766. .border-bottom {
  6767. border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6768. }
  6769. .border-bottom-0 {
  6770. border-bottom: 0 !important;
  6771. }
  6772. .border-start {
  6773. border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
  6774. }
  6775. .border-start-0 {
  6776. border-left: 0 !important;
  6777. }
  6778. .border-primary {
  6779. --bs-border-opacity: 1;
  6780. border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
  6781. }
  6782. .border-secondary {
  6783. --bs-border-opacity: 1;
  6784. border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
  6785. }
  6786. .border-success {
  6787. --bs-border-opacity: 1;
  6788. border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
  6789. }
  6790. .border-info {
  6791. --bs-border-opacity: 1;
  6792. border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
  6793. }
  6794. .border-warning {
  6795. --bs-border-opacity: 1;
  6796. border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
  6797. }
  6798. .border-danger {
  6799. --bs-border-opacity: 1;
  6800. border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
  6801. }
  6802. .border-light {
  6803. --bs-border-opacity: 1;
  6804. border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
  6805. }
  6806. .border-dark {
  6807. --bs-border-opacity: 1;
  6808. border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
  6809. }
  6810. .border-black {
  6811. --bs-border-opacity: 1;
  6812. border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
  6813. }
  6814. .border-white {
  6815. --bs-border-opacity: 1;
  6816. border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
  6817. }
  6818. .border-primary-subtle {
  6819. border-color: var(--bs-primary-border-subtle) !important;
  6820. }
  6821. .border-secondary-subtle {
  6822. border-color: var(--bs-secondary-border-subtle) !important;
  6823. }
  6824. .border-success-subtle {
  6825. border-color: var(--bs-success-border-subtle) !important;
  6826. }
  6827. .border-info-subtle {
  6828. border-color: var(--bs-info-border-subtle) !important;
  6829. }
  6830. .border-warning-subtle {
  6831. border-color: var(--bs-warning-border-subtle) !important;
  6832. }
  6833. .border-danger-subtle {
  6834. border-color: var(--bs-danger-border-subtle) !important;
  6835. }
  6836. .border-light-subtle {
  6837. border-color: var(--bs-light-border-subtle) !important;
  6838. }
  6839. .border-dark-subtle {
  6840. border-color: var(--bs-dark-border-subtle) !important;
  6841. }
  6842. .border-1 {
  6843. border-width: 1px !important;
  6844. }
  6845. .border-2 {
  6846. border-width: 2px !important;
  6847. }
  6848. .border-3 {
  6849. border-width: 3px !important;
  6850. }
  6851. .border-4 {
  6852. border-width: 4px !important;
  6853. }
  6854. .border-5 {
  6855. border-width: 5px !important;
  6856. }
  6857. .border-opacity-10 {
  6858. --bs-border-opacity: 0.1;
  6859. }
  6860. .border-opacity-25 {
  6861. --bs-border-opacity: 0.25;
  6862. }
  6863. .border-opacity-50 {
  6864. --bs-border-opacity: 0.5;
  6865. }
  6866. .border-opacity-75 {
  6867. --bs-border-opacity: 0.75;
  6868. }
  6869. .border-opacity-100 {
  6870. --bs-border-opacity: 1;
  6871. }
  6872. .w-25 {
  6873. width: 25% !important;
  6874. }
  6875. .w-50 {
  6876. width: 50% !important;
  6877. }
  6878. .w-75 {
  6879. width: 75% !important;
  6880. }
  6881. .w-100 {
  6882. width: 100% !important;
  6883. }
  6884. .w-auto {
  6885. width: auto !important;
  6886. }
  6887. .mw-100 {
  6888. max-width: 100% !important;
  6889. }
  6890. .vw-100 {
  6891. width: 100vw !important;
  6892. }
  6893. .min-vw-100 {
  6894. min-width: 100vw !important;
  6895. }
  6896. .h-25 {
  6897. height: 25% !important;
  6898. }
  6899. .h-50 {
  6900. height: 50% !important;
  6901. }
  6902. .h-75 {
  6903. height: 75% !important;
  6904. }
  6905. .h-100 {
  6906. height: 100% !important;
  6907. }
  6908. .h-auto {
  6909. height: auto !important;
  6910. }
  6911. .mh-100 {
  6912. max-height: 100% !important;
  6913. }
  6914. .vh-100 {
  6915. height: 100vh !important;
  6916. }
  6917. .min-vh-100 {
  6918. min-height: 100vh !important;
  6919. }
  6920. .flex-fill {
  6921. flex: 1 1 auto !important;
  6922. }
  6923. .flex-row {
  6924. flex-direction: row !important;
  6925. }
  6926. .flex-column {
  6927. flex-direction: column !important;
  6928. }
  6929. .flex-row-reverse {
  6930. flex-direction: row-reverse !important;
  6931. }
  6932. .flex-column-reverse {
  6933. flex-direction: column-reverse !important;
  6934. }
  6935. .flex-grow-0 {
  6936. flex-grow: 0 !important;
  6937. }
  6938. .flex-grow-1 {
  6939. flex-grow: 1 !important;
  6940. }
  6941. .flex-shrink-0 {
  6942. flex-shrink: 0 !important;
  6943. }
  6944. .flex-shrink-1 {
  6945. flex-shrink: 1 !important;
  6946. }
  6947. .flex-wrap {
  6948. flex-wrap: wrap !important;
  6949. }
  6950. .flex-nowrap {
  6951. flex-wrap: nowrap !important;
  6952. }
  6953. .flex-wrap-reverse {
  6954. flex-wrap: wrap-reverse !important;
  6955. }
  6956. .justify-content-start {
  6957. justify-content: flex-start !important;
  6958. }
  6959. .justify-content-end {
  6960. justify-content: flex-end !important;
  6961. }
  6962. .justify-content-center {
  6963. justify-content: center !important;
  6964. }
  6965. .justify-content-between {
  6966. justify-content: space-between !important;
  6967. }
  6968. .justify-content-around {
  6969. justify-content: space-around !important;
  6970. }
  6971. .justify-content-evenly {
  6972. justify-content: space-evenly !important;
  6973. }
  6974. .align-items-start {
  6975. align-items: flex-start !important;
  6976. }
  6977. .align-items-end {
  6978. align-items: flex-end !important;
  6979. }
  6980. .align-items-center {
  6981. align-items: center !important;
  6982. }
  6983. .align-items-baseline {
  6984. align-items: baseline !important;
  6985. }
  6986. .align-items-stretch {
  6987. align-items: stretch !important;
  6988. }
  6989. .align-content-start {
  6990. align-content: flex-start !important;
  6991. }
  6992. .align-content-end {
  6993. align-content: flex-end !important;
  6994. }
  6995. .align-content-center {
  6996. align-content: center !important;
  6997. }
  6998. .align-content-between {
  6999. align-content: space-between !important;
  7000. }
  7001. .align-content-around {
  7002. align-content: space-around !important;
  7003. }
  7004. .align-content-stretch {
  7005. align-content: stretch !important;
  7006. }
  7007. .align-self-auto {
  7008. align-self: auto !important;
  7009. }
  7010. .align-self-start {
  7011. align-self: flex-start !important;
  7012. }
  7013. .align-self-end {
  7014. align-self: flex-end !important;
  7015. }
  7016. .align-self-center {
  7017. align-self: center !important;
  7018. }
  7019. .align-self-baseline {
  7020. align-self: baseline !important;
  7021. }
  7022. .align-self-stretch {
  7023. align-self: stretch !important;
  7024. }
  7025. .order-first {
  7026. order: -1 !important;
  7027. }
  7028. .order-0 {
  7029. order: 0 !important;
  7030. }
  7031. .order-1 {
  7032. order: 1 !important;
  7033. }
  7034. .order-2 {
  7035. order: 2 !important;
  7036. }
  7037. .order-3 {
  7038. order: 3 !important;
  7039. }
  7040. .order-4 {
  7041. order: 4 !important;
  7042. }
  7043. .order-5 {
  7044. order: 5 !important;
  7045. }
  7046. .order-last {
  7047. order: 6 !important;
  7048. }
  7049. .m-0 {
  7050. margin: 0 !important;
  7051. }
  7052. .m-1 {
  7053. margin: 0.25rem !important;
  7054. }
  7055. .m-2 {
  7056. margin: 0.5rem !important;
  7057. }
  7058. .m-3 {
  7059. margin: 1rem !important;
  7060. }
  7061. .m-4 {
  7062. margin: 1.5rem !important;
  7063. }
  7064. .m-5 {
  7065. margin: 3rem !important;
  7066. }
  7067. .m-auto {
  7068. margin: auto !important;
  7069. }
  7070. .mx-0 {
  7071. margin-right: 0 !important;
  7072. margin-left: 0 !important;
  7073. }
  7074. .mx-1 {
  7075. margin-right: 0.25rem !important;
  7076. margin-left: 0.25rem !important;
  7077. }
  7078. .mx-2 {
  7079. margin-right: 0.5rem !important;
  7080. margin-left: 0.5rem !important;
  7081. }
  7082. .mx-3 {
  7083. margin-right: 1rem !important;
  7084. margin-left: 1rem !important;
  7085. }
  7086. .mx-4 {
  7087. margin-right: 1.5rem !important;
  7088. margin-left: 1.5rem !important;
  7089. }
  7090. .mx-5 {
  7091. margin-right: 3rem !important;
  7092. margin-left: 3rem !important;
  7093. }
  7094. .mx-auto {
  7095. margin-right: auto !important;
  7096. margin-left: auto !important;
  7097. }
  7098. .my-0 {
  7099. margin-top: 0 !important;
  7100. margin-bottom: 0 !important;
  7101. }
  7102. .my-1 {
  7103. margin-top: 0.25rem !important;
  7104. margin-bottom: 0.25rem !important;
  7105. }
  7106. .my-2 {
  7107. margin-top: 0.5rem !important;
  7108. margin-bottom: 0.5rem !important;
  7109. }
  7110. .my-3 {
  7111. margin-top: 1rem !important;
  7112. margin-bottom: 1rem !important;
  7113. }
  7114. .my-4 {
  7115. margin-top: 1.5rem !important;
  7116. margin-bottom: 1.5rem !important;
  7117. }
  7118. .my-5 {
  7119. margin-top: 3rem !important;
  7120. margin-bottom: 3rem !important;
  7121. }
  7122. .my-auto {
  7123. margin-top: auto !important;
  7124. margin-bottom: auto !important;
  7125. }
  7126. .mt-0 {
  7127. margin-top: 0 !important;
  7128. }
  7129. .mt-1 {
  7130. margin-top: 0.25rem !important;
  7131. }
  7132. .mt-2 {
  7133. margin-top: 0.5rem !important;
  7134. }
  7135. .mt-3 {
  7136. margin-top: 1rem !important;
  7137. }
  7138. .mt-4 {
  7139. margin-top: 1.5rem !important;
  7140. }
  7141. .mt-5 {
  7142. margin-top: 3rem !important;
  7143. }
  7144. .mt-auto {
  7145. margin-top: auto !important;
  7146. }
  7147. .me-0 {
  7148. margin-right: 0 !important;
  7149. }
  7150. .me-1 {
  7151. margin-right: 0.25rem !important;
  7152. }
  7153. .me-2 {
  7154. margin-right: 0.5rem !important;
  7155. }
  7156. .me-3 {
  7157. margin-right: 1rem !important;
  7158. }
  7159. .me-4 {
  7160. margin-right: 1.5rem !important;
  7161. }
  7162. .me-5 {
  7163. margin-right: 3rem !important;
  7164. }
  7165. .me-auto {
  7166. margin-right: auto !important;
  7167. }
  7168. .mb-0 {
  7169. margin-bottom: 0 !important;
  7170. }
  7171. .mb-1 {
  7172. margin-bottom: 0.25rem !important;
  7173. }
  7174. .mb-2 {
  7175. margin-bottom: 0.5rem !important;
  7176. }
  7177. .mb-3 {
  7178. margin-bottom: 1rem !important;
  7179. }
  7180. .mb-4 {
  7181. margin-bottom: 1.5rem !important;
  7182. }
  7183. .mb-5 {
  7184. margin-bottom: 3rem !important;
  7185. }
  7186. .mb-auto {
  7187. margin-bottom: auto !important;
  7188. }
  7189. .ms-0 {
  7190. margin-left: 0 !important;
  7191. }
  7192. .ms-1 {
  7193. margin-left: 0.25rem !important;
  7194. }
  7195. .ms-2 {
  7196. margin-left: 0.5rem !important;
  7197. }
  7198. .ms-3 {
  7199. margin-left: 1rem !important;
  7200. }
  7201. .ms-4 {
  7202. margin-left: 1.5rem !important;
  7203. }
  7204. .ms-5 {
  7205. margin-left: 3rem !important;
  7206. }
  7207. .ms-auto {
  7208. margin-left: auto !important;
  7209. }
  7210. .p-0 {
  7211. padding: 0 !important;
  7212. }
  7213. .p-1 {
  7214. padding: 0.25rem !important;
  7215. }
  7216. .p-2 {
  7217. padding: 0.5rem !important;
  7218. }
  7219. .p-3 {
  7220. padding: 1rem !important;
  7221. }
  7222. .p-4 {
  7223. padding: 1.5rem !important;
  7224. }
  7225. .p-5 {
  7226. padding: 3rem !important;
  7227. }
  7228. .px-0 {
  7229. padding-right: 0 !important;
  7230. padding-left: 0 !important;
  7231. }
  7232. .px-1 {
  7233. padding-right: 0.25rem !important;
  7234. padding-left: 0.25rem !important;
  7235. }
  7236. .px-2 {
  7237. padding-right: 0.5rem !important;
  7238. padding-left: 0.5rem !important;
  7239. }
  7240. .px-3 {
  7241. padding-right: 1rem !important;
  7242. padding-left: 1rem !important;
  7243. }
  7244. .px-4 {
  7245. padding-right: 1.5rem !important;
  7246. padding-left: 1.5rem !important;
  7247. }
  7248. .px-5 {
  7249. padding-right: 3rem !important;
  7250. padding-left: 3rem !important;
  7251. }
  7252. .py-0 {
  7253. padding-top: 0 !important;
  7254. padding-bottom: 0 !important;
  7255. }
  7256. .py-1 {
  7257. padding-top: 0.25rem !important;
  7258. padding-bottom: 0.25rem !important;
  7259. }
  7260. .py-2 {
  7261. padding-top: 0.5rem !important;
  7262. padding-bottom: 0.5rem !important;
  7263. }
  7264. .py-3 {
  7265. padding-top: 1rem !important;
  7266. padding-bottom: 1rem !important;
  7267. }
  7268. .py-4 {
  7269. padding-top: 1.5rem !important;
  7270. padding-bottom: 1.5rem !important;
  7271. }
  7272. .py-5 {
  7273. padding-top: 3rem !important;
  7274. padding-bottom: 3rem !important;
  7275. }
  7276. .pt-0 {
  7277. padding-top: 0 !important;
  7278. }
  7279. .pt-1 {
  7280. padding-top: 0.25rem !important;
  7281. }
  7282. .pt-2 {
  7283. padding-top: 0.5rem !important;
  7284. }
  7285. .pt-3 {
  7286. padding-top: 1rem !important;
  7287. }
  7288. .pt-4 {
  7289. padding-top: 1.5rem !important;
  7290. }
  7291. .pt-5 {
  7292. padding-top: 3rem !important;
  7293. }
  7294. .pe-0 {
  7295. padding-right: 0 !important;
  7296. }
  7297. .pe-1 {
  7298. padding-right: 0.25rem !important;
  7299. }
  7300. .pe-2 {
  7301. padding-right: 0.5rem !important;
  7302. }
  7303. .pe-3 {
  7304. padding-right: 1rem !important;
  7305. }
  7306. .pe-4 {
  7307. padding-right: 1.5rem !important;
  7308. }
  7309. .pe-5 {
  7310. padding-right: 3rem !important;
  7311. }
  7312. .pb-0 {
  7313. padding-bottom: 0 !important;
  7314. }
  7315. .pb-1 {
  7316. padding-bottom: 0.25rem !important;
  7317. }
  7318. .pb-2 {
  7319. padding-bottom: 0.5rem !important;
  7320. }
  7321. .pb-3 {
  7322. padding-bottom: 1rem !important;
  7323. }
  7324. .pb-4 {
  7325. padding-bottom: 1.5rem !important;
  7326. }
  7327. .pb-5 {
  7328. padding-bottom: 3rem !important;
  7329. }
  7330. .ps-0 {
  7331. padding-left: 0 !important;
  7332. }
  7333. .ps-1 {
  7334. padding-left: 0.25rem !important;
  7335. }
  7336. .ps-2 {
  7337. padding-left: 0.5rem !important;
  7338. }
  7339. .ps-3 {
  7340. padding-left: 1rem !important;
  7341. }
  7342. .ps-4 {
  7343. padding-left: 1.5rem !important;
  7344. }
  7345. .ps-5 {
  7346. padding-left: 3rem !important;
  7347. }
  7348. .gap-0 {
  7349. gap: 0 !important;
  7350. }
  7351. .gap-1 {
  7352. gap: 0.25rem !important;
  7353. }
  7354. .gap-2 {
  7355. gap: 0.5rem !important;
  7356. }
  7357. .gap-3 {
  7358. gap: 1rem !important;
  7359. }
  7360. .gap-4 {
  7361. gap: 1.5rem !important;
  7362. }
  7363. .gap-5 {
  7364. gap: 3rem !important;
  7365. }
  7366. .row-gap-0 {
  7367. row-gap: 0 !important;
  7368. }
  7369. .row-gap-1 {
  7370. row-gap: 0.25rem !important;
  7371. }
  7372. .row-gap-2 {
  7373. row-gap: 0.5rem !important;
  7374. }
  7375. .row-gap-3 {
  7376. row-gap: 1rem !important;
  7377. }
  7378. .row-gap-4 {
  7379. row-gap: 1.5rem !important;
  7380. }
  7381. .row-gap-5 {
  7382. row-gap: 3rem !important;
  7383. }
  7384. .column-gap-0 {
  7385. -moz-column-gap: 0 !important;
  7386. column-gap: 0 !important;
  7387. }
  7388. .column-gap-1 {
  7389. -moz-column-gap: 0.25rem !important;
  7390. column-gap: 0.25rem !important;
  7391. }
  7392. .column-gap-2 {
  7393. -moz-column-gap: 0.5rem !important;
  7394. column-gap: 0.5rem !important;
  7395. }
  7396. .column-gap-3 {
  7397. -moz-column-gap: 1rem !important;
  7398. column-gap: 1rem !important;
  7399. }
  7400. .column-gap-4 {
  7401. -moz-column-gap: 1.5rem !important;
  7402. column-gap: 1.5rem !important;
  7403. }
  7404. .column-gap-5 {
  7405. -moz-column-gap: 3rem !important;
  7406. column-gap: 3rem !important;
  7407. }
  7408. .font-monospace {
  7409. font-family: var(--bs-font-monospace) !important;
  7410. }
  7411. .fs-1 {
  7412. font-size: calc(1.375rem + 1.5vw) !important;
  7413. }
  7414. .fs-2 {
  7415. font-size: calc(1.325rem + 0.9vw) !important;
  7416. }
  7417. .fs-3 {
  7418. font-size: calc(1.3rem + 0.6vw) !important;
  7419. }
  7420. .fs-4 {
  7421. font-size: calc(1.275rem + 0.3vw) !important;
  7422. }
  7423. .fs-5 {
  7424. font-size: 1.25rem !important;
  7425. }
  7426. .fs-6 {
  7427. font-size: 1rem !important;
  7428. }
  7429. .fst-italic {
  7430. font-style: italic !important;
  7431. }
  7432. .fst-normal {
  7433. font-style: normal !important;
  7434. }
  7435. .fw-lighter {
  7436. font-weight: lighter !important;
  7437. }
  7438. .fw-light {
  7439. font-weight: 300 !important;
  7440. }
  7441. .fw-normal {
  7442. font-weight: 400 !important;
  7443. }
  7444. .fw-medium {
  7445. font-weight: 500 !important;
  7446. }
  7447. .fw-semibold {
  7448. font-weight: 600 !important;
  7449. }
  7450. .fw-bold {
  7451. font-weight: 700 !important;
  7452. }
  7453. .fw-bolder {
  7454. font-weight: bolder !important;
  7455. }
  7456. .lh-1 {
  7457. line-height: 1 !important;
  7458. }
  7459. .lh-sm {
  7460. line-height: 1.25 !important;
  7461. }
  7462. .lh-base {
  7463. line-height: 1.5 !important;
  7464. }
  7465. .lh-lg {
  7466. line-height: 2 !important;
  7467. }
  7468. .text-start {
  7469. text-align: left !important;
  7470. }
  7471. .text-end {
  7472. text-align: right !important;
  7473. }
  7474. .text-center {
  7475. text-align: center !important;
  7476. }
  7477. .text-decoration-none {
  7478. text-decoration: none !important;
  7479. }
  7480. .text-decoration-underline {
  7481. text-decoration: underline !important;
  7482. }
  7483. .text-decoration-line-through {
  7484. text-decoration: line-through !important;
  7485. }
  7486. .text-lowercase {
  7487. text-transform: lowercase !important;
  7488. }
  7489. .text-uppercase {
  7490. text-transform: uppercase !important;
  7491. }
  7492. .text-capitalize {
  7493. text-transform: capitalize !important;
  7494. }
  7495. .text-wrap {
  7496. white-space: normal !important;
  7497. }
  7498. .text-nowrap {
  7499. white-space: nowrap !important;
  7500. }
  7501. /* rtl:begin:remove */
  7502. .text-break {
  7503. word-wrap: break-word !important;
  7504. word-break: break-word !important;
  7505. }
  7506. /* rtl:end:remove */
  7507. .text-primary {
  7508. --bs-text-opacity: 1;
  7509. color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
  7510. }
  7511. .text-secondary {
  7512. --bs-text-opacity: 1;
  7513. color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
  7514. }
  7515. .text-success {
  7516. --bs-text-opacity: 1;
  7517. color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
  7518. }
  7519. .text-info {
  7520. --bs-text-opacity: 1;
  7521. color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
  7522. }
  7523. .text-warning {
  7524. --bs-text-opacity: 1;
  7525. color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
  7526. }
  7527. .text-danger {
  7528. --bs-text-opacity: 1;
  7529. color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
  7530. }
  7531. .text-light {
  7532. --bs-text-opacity: 1;
  7533. color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
  7534. }
  7535. .text-dark {
  7536. --bs-text-opacity: 1;
  7537. color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
  7538. }
  7539. .text-black {
  7540. --bs-text-opacity: 1;
  7541. color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
  7542. }
  7543. .text-white {
  7544. --bs-text-opacity: 1;
  7545. color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
  7546. }
  7547. .text-body {
  7548. --bs-text-opacity: 1;
  7549. color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
  7550. }
  7551. .text-muted {
  7552. --bs-text-opacity: 1;
  7553. color: var(--bs-secondary-color) !important;
  7554. }
  7555. .text-black-50 {
  7556. --bs-text-opacity: 1;
  7557. color: rgba(0, 0, 0, 0.5) !important;
  7558. }
  7559. .text-white-50 {
  7560. --bs-text-opacity: 1;
  7561. color: rgba(255, 255, 255, 0.5) !important;
  7562. }
  7563. .text-body-secondary {
  7564. --bs-text-opacity: 1;
  7565. color: var(--bs-secondary-color) !important;
  7566. }
  7567. .text-body-tertiary {
  7568. --bs-text-opacity: 1;
  7569. color: var(--bs-tertiary-color) !important;
  7570. }
  7571. .text-body-emphasis {
  7572. --bs-text-opacity: 1;
  7573. color: var(--bs-emphasis-color) !important;
  7574. }
  7575. .text-reset {
  7576. --bs-text-opacity: 1;
  7577. color: inherit !important;
  7578. }
  7579. .text-opacity-25 {
  7580. --bs-text-opacity: 0.25;
  7581. }
  7582. .text-opacity-50 {
  7583. --bs-text-opacity: 0.5;
  7584. }
  7585. .text-opacity-75 {
  7586. --bs-text-opacity: 0.75;
  7587. }
  7588. .text-opacity-100 {
  7589. --bs-text-opacity: 1;
  7590. }
  7591. .text-primary-emphasis {
  7592. color: var(--bs-primary-text-emphasis) !important;
  7593. }
  7594. .text-secondary-emphasis {
  7595. color: var(--bs-secondary-text-emphasis) !important;
  7596. }
  7597. .text-success-emphasis {
  7598. color: var(--bs-success-text-emphasis) !important;
  7599. }
  7600. .text-info-emphasis {
  7601. color: var(--bs-info-text-emphasis) !important;
  7602. }
  7603. .text-warning-emphasis {
  7604. color: var(--bs-warning-text-emphasis) !important;
  7605. }
  7606. .text-danger-emphasis {
  7607. color: var(--bs-danger-text-emphasis) !important;
  7608. }
  7609. .text-light-emphasis {
  7610. color: var(--bs-light-text-emphasis) !important;
  7611. }
  7612. .text-dark-emphasis {
  7613. color: var(--bs-dark-text-emphasis) !important;
  7614. }
  7615. .link-opacity-10 {
  7616. --bs-link-opacity: 0.1;
  7617. }
  7618. .link-opacity-10-hover:hover {
  7619. --bs-link-opacity: 0.1;
  7620. }
  7621. .link-opacity-25 {
  7622. --bs-link-opacity: 0.25;
  7623. }
  7624. .link-opacity-25-hover:hover {
  7625. --bs-link-opacity: 0.25;
  7626. }
  7627. .link-opacity-50 {
  7628. --bs-link-opacity: 0.5;
  7629. }
  7630. .link-opacity-50-hover:hover {
  7631. --bs-link-opacity: 0.5;
  7632. }
  7633. .link-opacity-75 {
  7634. --bs-link-opacity: 0.75;
  7635. }
  7636. .link-opacity-75-hover:hover {
  7637. --bs-link-opacity: 0.75;
  7638. }
  7639. .link-opacity-100 {
  7640. --bs-link-opacity: 1;
  7641. }
  7642. .link-opacity-100-hover:hover {
  7643. --bs-link-opacity: 1;
  7644. }
  7645. .link-offset-1 {
  7646. text-underline-offset: 0.125em !important;
  7647. }
  7648. .link-offset-1-hover:hover {
  7649. text-underline-offset: 0.125em !important;
  7650. }
  7651. .link-offset-2 {
  7652. text-underline-offset: 0.25em !important;
  7653. }
  7654. .link-offset-2-hover:hover {
  7655. text-underline-offset: 0.25em !important;
  7656. }
  7657. .link-offset-3 {
  7658. text-underline-offset: 0.375em !important;
  7659. }
  7660. .link-offset-3-hover:hover {
  7661. text-underline-offset: 0.375em !important;
  7662. }
  7663. .link-underline-primary {
  7664. --bs-link-underline-opacity: 1;
  7665. -webkit-text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
  7666. text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
  7667. }
  7668. .link-underline-secondary {
  7669. --bs-link-underline-opacity: 1;
  7670. -webkit-text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
  7671. text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
  7672. }
  7673. .link-underline-success {
  7674. --bs-link-underline-opacity: 1;
  7675. -webkit-text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
  7676. text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
  7677. }
  7678. .link-underline-info {
  7679. --bs-link-underline-opacity: 1;
  7680. -webkit-text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
  7681. text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
  7682. }
  7683. .link-underline-warning {
  7684. --bs-link-underline-opacity: 1;
  7685. -webkit-text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
  7686. text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
  7687. }
  7688. .link-underline-danger {
  7689. --bs-link-underline-opacity: 1;
  7690. -webkit-text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
  7691. text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
  7692. }
  7693. .link-underline-light {
  7694. --bs-link-underline-opacity: 1;
  7695. -webkit-text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
  7696. text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
  7697. }
  7698. .link-underline-dark {
  7699. --bs-link-underline-opacity: 1;
  7700. -webkit-text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
  7701. text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
  7702. }
  7703. .link-underline {
  7704. --bs-link-underline-opacity: 1;
  7705. -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  7706. text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  7707. }
  7708. .link-underline-opacity-0 {
  7709. --bs-link-underline-opacity: 0;
  7710. }
  7711. .link-underline-opacity-0-hover:hover {
  7712. --bs-link-underline-opacity: 0;
  7713. }
  7714. .link-underline-opacity-10 {
  7715. --bs-link-underline-opacity: 0.1;
  7716. }
  7717. .link-underline-opacity-10-hover:hover {
  7718. --bs-link-underline-opacity: 0.1;
  7719. }
  7720. .link-underline-opacity-25 {
  7721. --bs-link-underline-opacity: 0.25;
  7722. }
  7723. .link-underline-opacity-25-hover:hover {
  7724. --bs-link-underline-opacity: 0.25;
  7725. }
  7726. .link-underline-opacity-50 {
  7727. --bs-link-underline-opacity: 0.5;
  7728. }
  7729. .link-underline-opacity-50-hover:hover {
  7730. --bs-link-underline-opacity: 0.5;
  7731. }
  7732. .link-underline-opacity-75 {
  7733. --bs-link-underline-opacity: 0.75;
  7734. }
  7735. .link-underline-opacity-75-hover:hover {
  7736. --bs-link-underline-opacity: 0.75;
  7737. }
  7738. .link-underline-opacity-100 {
  7739. --bs-link-underline-opacity: 1;
  7740. }
  7741. .link-underline-opacity-100-hover:hover {
  7742. --bs-link-underline-opacity: 1;
  7743. }
  7744. .bg-primary {
  7745. --bs-bg-opacity: 1;
  7746. background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
  7747. }
  7748. .bg-secondary {
  7749. --bs-bg-opacity: 1;
  7750. background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
  7751. }
  7752. .bg-success {
  7753. --bs-bg-opacity: 1;
  7754. background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
  7755. }
  7756. .bg-info {
  7757. --bs-bg-opacity: 1;
  7758. background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
  7759. }
  7760. .bg-warning {
  7761. --bs-bg-opacity: 1;
  7762. background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  7763. }
  7764. .bg-danger {
  7765. --bs-bg-opacity: 1;
  7766. background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
  7767. }
  7768. .bg-light {
  7769. --bs-bg-opacity: 1;
  7770. background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  7771. }
  7772. .bg-dark {
  7773. --bs-bg-opacity: 1;
  7774. background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  7775. }
  7776. .bg-black {
  7777. --bs-bg-opacity: 1;
  7778. background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
  7779. }
  7780. .bg-white {
  7781. --bs-bg-opacity: 1;
  7782. background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  7783. }
  7784. .bg-body {
  7785. --bs-bg-opacity: 1;
  7786. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  7787. }
  7788. .bg-transparent {
  7789. --bs-bg-opacity: 1;
  7790. background-color: transparent !important;
  7791. }
  7792. .bg-body-secondary {
  7793. --bs-bg-opacity: 1;
  7794. background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
  7795. }
  7796. .bg-body-tertiary {
  7797. --bs-bg-opacity: 1;
  7798. background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
  7799. }
  7800. .bg-opacity-10 {
  7801. --bs-bg-opacity: 0.1;
  7802. }
  7803. .bg-opacity-25 {
  7804. --bs-bg-opacity: 0.25;
  7805. }
  7806. .bg-opacity-50 {
  7807. --bs-bg-opacity: 0.5;
  7808. }
  7809. .bg-opacity-75 {
  7810. --bs-bg-opacity: 0.75;
  7811. }
  7812. .bg-opacity-100 {
  7813. --bs-bg-opacity: 1;
  7814. }
  7815. .bg-primary-subtle {
  7816. background-color: var(--bs-primary-bg-subtle) !important;
  7817. }
  7818. .bg-secondary-subtle {
  7819. background-color: var(--bs-secondary-bg-subtle) !important;
  7820. }
  7821. .bg-success-subtle {
  7822. background-color: var(--bs-success-bg-subtle) !important;
  7823. }
  7824. .bg-info-subtle {
  7825. background-color: var(--bs-info-bg-subtle) !important;
  7826. }
  7827. .bg-warning-subtle {
  7828. background-color: var(--bs-warning-bg-subtle) !important;
  7829. }
  7830. .bg-danger-subtle {
  7831. background-color: var(--bs-danger-bg-subtle) !important;
  7832. }
  7833. .bg-light-subtle {
  7834. background-color: var(--bs-light-bg-subtle) !important;
  7835. }
  7836. .bg-dark-subtle {
  7837. background-color: var(--bs-dark-bg-subtle) !important;
  7838. }
  7839. .bg-gradient {
  7840. background-image: var(--bs-gradient) !important;
  7841. }
  7842. .user-select-all {
  7843. -webkit-user-select: all !important;
  7844. -moz-user-select: all !important;
  7845. user-select: all !important;
  7846. }
  7847. .user-select-auto {
  7848. -webkit-user-select: auto !important;
  7849. -moz-user-select: auto !important;
  7850. user-select: auto !important;
  7851. }
  7852. .user-select-none {
  7853. -webkit-user-select: none !important;
  7854. -moz-user-select: none !important;
  7855. user-select: none !important;
  7856. }
  7857. .pe-none {
  7858. pointer-events: none !important;
  7859. }
  7860. .pe-auto {
  7861. pointer-events: auto !important;
  7862. }
  7863. .rounded {
  7864. border-radius: var(--bs-border-radius) !important;
  7865. }
  7866. .rounded-0 {
  7867. border-radius: 0 !important;
  7868. }
  7869. .rounded-1 {
  7870. border-radius: var(--bs-border-radius-sm) !important;
  7871. }
  7872. .rounded-2 {
  7873. border-radius: var(--bs-border-radius) !important;
  7874. }
  7875. .rounded-3 {
  7876. border-radius: var(--bs-border-radius-lg) !important;
  7877. }
  7878. .rounded-4 {
  7879. border-radius: var(--bs-border-radius-xl) !important;
  7880. }
  7881. .rounded-5 {
  7882. border-radius: var(--bs-border-radius-xxl) !important;
  7883. }
  7884. .rounded-circle {
  7885. border-radius: 50% !important;
  7886. }
  7887. .rounded-pill {
  7888. border-radius: var(--bs-border-radius-pill) !important;
  7889. }
  7890. .rounded-top {
  7891. border-top-left-radius: var(--bs-border-radius) !important;
  7892. border-top-right-radius: var(--bs-border-radius) !important;
  7893. }
  7894. .rounded-top-0 {
  7895. border-top-left-radius: 0 !important;
  7896. border-top-right-radius: 0 !important;
  7897. }
  7898. .rounded-top-1 {
  7899. border-top-left-radius: var(--bs-border-radius-sm) !important;
  7900. border-top-right-radius: var(--bs-border-radius-sm) !important;
  7901. }
  7902. .rounded-top-2 {
  7903. border-top-left-radius: var(--bs-border-radius) !important;
  7904. border-top-right-radius: var(--bs-border-radius) !important;
  7905. }
  7906. .rounded-top-3 {
  7907. border-top-left-radius: var(--bs-border-radius-lg) !important;
  7908. border-top-right-radius: var(--bs-border-radius-lg) !important;
  7909. }
  7910. .rounded-top-4 {
  7911. border-top-left-radius: var(--bs-border-radius-xl) !important;
  7912. border-top-right-radius: var(--bs-border-radius-xl) !important;
  7913. }
  7914. .rounded-top-5 {
  7915. border-top-left-radius: var(--bs-border-radius-xxl) !important;
  7916. border-top-right-radius: var(--bs-border-radius-xxl) !important;
  7917. }
  7918. .rounded-top-circle {
  7919. border-top-left-radius: 50% !important;
  7920. border-top-right-radius: 50% !important;
  7921. }
  7922. .rounded-top-pill {
  7923. border-top-left-radius: var(--bs-border-radius-pill) !important;
  7924. border-top-right-radius: var(--bs-border-radius-pill) !important;
  7925. }
  7926. .rounded-end {
  7927. border-top-right-radius: var(--bs-border-radius) !important;
  7928. border-bottom-right-radius: var(--bs-border-radius) !important;
  7929. }
  7930. .rounded-end-0 {
  7931. border-top-right-radius: 0 !important;
  7932. border-bottom-right-radius: 0 !important;
  7933. }
  7934. .rounded-end-1 {
  7935. border-top-right-radius: var(--bs-border-radius-sm) !important;
  7936. border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  7937. }
  7938. .rounded-end-2 {
  7939. border-top-right-radius: var(--bs-border-radius) !important;
  7940. border-bottom-right-radius: var(--bs-border-radius) !important;
  7941. }
  7942. .rounded-end-3 {
  7943. border-top-right-radius: var(--bs-border-radius-lg) !important;
  7944. border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  7945. }
  7946. .rounded-end-4 {
  7947. border-top-right-radius: var(--bs-border-radius-xl) !important;
  7948. border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  7949. }
  7950. .rounded-end-5 {
  7951. border-top-right-radius: var(--bs-border-radius-xxl) !important;
  7952. border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  7953. }
  7954. .rounded-end-circle {
  7955. border-top-right-radius: 50% !important;
  7956. border-bottom-right-radius: 50% !important;
  7957. }
  7958. .rounded-end-pill {
  7959. border-top-right-radius: var(--bs-border-radius-pill) !important;
  7960. border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  7961. }
  7962. .rounded-bottom {
  7963. border-bottom-right-radius: var(--bs-border-radius) !important;
  7964. border-bottom-left-radius: var(--bs-border-radius) !important;
  7965. }
  7966. .rounded-bottom-0 {
  7967. border-bottom-right-radius: 0 !important;
  7968. border-bottom-left-radius: 0 !important;
  7969. }
  7970. .rounded-bottom-1 {
  7971. border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  7972. border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  7973. }
  7974. .rounded-bottom-2 {
  7975. border-bottom-right-radius: var(--bs-border-radius) !important;
  7976. border-bottom-left-radius: var(--bs-border-radius) !important;
  7977. }
  7978. .rounded-bottom-3 {
  7979. border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  7980. border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  7981. }
  7982. .rounded-bottom-4 {
  7983. border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  7984. border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  7985. }
  7986. .rounded-bottom-5 {
  7987. border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  7988. border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  7989. }
  7990. .rounded-bottom-circle {
  7991. border-bottom-right-radius: 50% !important;
  7992. border-bottom-left-radius: 50% !important;
  7993. }
  7994. .rounded-bottom-pill {
  7995. border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  7996. border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  7997. }
  7998. .rounded-start {
  7999. border-bottom-left-radius: var(--bs-border-radius) !important;
  8000. border-top-left-radius: var(--bs-border-radius) !important;
  8001. }
  8002. .rounded-start-0 {
  8003. border-bottom-left-radius: 0 !important;
  8004. border-top-left-radius: 0 !important;
  8005. }
  8006. .rounded-start-1 {
  8007. border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  8008. border-top-left-radius: var(--bs-border-radius-sm) !important;
  8009. }
  8010. .rounded-start-2 {
  8011. border-bottom-left-radius: var(--bs-border-radius) !important;
  8012. border-top-left-radius: var(--bs-border-radius) !important;
  8013. }
  8014. .rounded-start-3 {
  8015. border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  8016. border-top-left-radius: var(--bs-border-radius-lg) !important;
  8017. }
  8018. .rounded-start-4 {
  8019. border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  8020. border-top-left-radius: var(--bs-border-radius-xl) !important;
  8021. }
  8022. .rounded-start-5 {
  8023. border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  8024. border-top-left-radius: var(--bs-border-radius-xxl) !important;
  8025. }
  8026. .rounded-start-circle {
  8027. border-bottom-left-radius: 50% !important;
  8028. border-top-left-radius: 50% !important;
  8029. }
  8030. .rounded-start-pill {
  8031. border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  8032. border-top-left-radius: var(--bs-border-radius-pill) !important;
  8033. }
  8034. .visible {
  8035. visibility: visible !important;
  8036. }
  8037. .invisible {
  8038. visibility: hidden !important;
  8039. }
  8040. .z-n1 {
  8041. z-index: -1 !important;
  8042. }
  8043. .z-0 {
  8044. z-index: 0 !important;
  8045. }
  8046. .z-1 {
  8047. z-index: 1 !important;
  8048. }
  8049. .z-2 {
  8050. z-index: 2 !important;
  8051. }
  8052. .z-3 {
  8053. z-index: 3 !important;
  8054. }
  8055. @media (min-width: 576px) {
  8056. .float-sm-start {
  8057. float: left !important;
  8058. }
  8059. .float-sm-end {
  8060. float: right !important;
  8061. }
  8062. .float-sm-none {
  8063. float: none !important;
  8064. }
  8065. .object-fit-sm-contain {
  8066. -o-object-fit: contain !important;
  8067. object-fit: contain !important;
  8068. }
  8069. .object-fit-sm-cover {
  8070. -o-object-fit: cover !important;
  8071. object-fit: cover !important;
  8072. }
  8073. .object-fit-sm-fill {
  8074. -o-object-fit: fill !important;
  8075. object-fit: fill !important;
  8076. }
  8077. .object-fit-sm-scale {
  8078. -o-object-fit: scale-down !important;
  8079. object-fit: scale-down !important;
  8080. }
  8081. .object-fit-sm-none {
  8082. -o-object-fit: none !important;
  8083. object-fit: none !important;
  8084. }
  8085. .d-sm-inline {
  8086. display: inline !important;
  8087. }
  8088. .d-sm-inline-block {
  8089. display: inline-block !important;
  8090. }
  8091. .d-sm-block {
  8092. display: block !important;
  8093. }
  8094. .d-sm-grid {
  8095. display: grid !important;
  8096. }
  8097. .d-sm-inline-grid {
  8098. display: inline-grid !important;
  8099. }
  8100. .d-sm-table {
  8101. display: table !important;
  8102. }
  8103. .d-sm-table-row {
  8104. display: table-row !important;
  8105. }
  8106. .d-sm-table-cell {
  8107. display: table-cell !important;
  8108. }
  8109. .d-sm-flex {
  8110. display: flex !important;
  8111. }
  8112. .d-sm-inline-flex {
  8113. display: inline-flex !important;
  8114. }
  8115. .d-sm-none {
  8116. display: none !important;
  8117. }
  8118. .flex-sm-fill {
  8119. flex: 1 1 auto !important;
  8120. }
  8121. .flex-sm-row {
  8122. flex-direction: row !important;
  8123. }
  8124. .flex-sm-column {
  8125. flex-direction: column !important;
  8126. }
  8127. .flex-sm-row-reverse {
  8128. flex-direction: row-reverse !important;
  8129. }
  8130. .flex-sm-column-reverse {
  8131. flex-direction: column-reverse !important;
  8132. }
  8133. .flex-sm-grow-0 {
  8134. flex-grow: 0 !important;
  8135. }
  8136. .flex-sm-grow-1 {
  8137. flex-grow: 1 !important;
  8138. }
  8139. .flex-sm-shrink-0 {
  8140. flex-shrink: 0 !important;
  8141. }
  8142. .flex-sm-shrink-1 {
  8143. flex-shrink: 1 !important;
  8144. }
  8145. .flex-sm-wrap {
  8146. flex-wrap: wrap !important;
  8147. }
  8148. .flex-sm-nowrap {
  8149. flex-wrap: nowrap !important;
  8150. }
  8151. .flex-sm-wrap-reverse {
  8152. flex-wrap: wrap-reverse !important;
  8153. }
  8154. .justify-content-sm-start {
  8155. justify-content: flex-start !important;
  8156. }
  8157. .justify-content-sm-end {
  8158. justify-content: flex-end !important;
  8159. }
  8160. .justify-content-sm-center {
  8161. justify-content: center !important;
  8162. }
  8163. .justify-content-sm-between {
  8164. justify-content: space-between !important;
  8165. }
  8166. .justify-content-sm-around {
  8167. justify-content: space-around !important;
  8168. }
  8169. .justify-content-sm-evenly {
  8170. justify-content: space-evenly !important;
  8171. }
  8172. .align-items-sm-start {
  8173. align-items: flex-start !important;
  8174. }
  8175. .align-items-sm-end {
  8176. align-items: flex-end !important;
  8177. }
  8178. .align-items-sm-center {
  8179. align-items: center !important;
  8180. }
  8181. .align-items-sm-baseline {
  8182. align-items: baseline !important;
  8183. }
  8184. .align-items-sm-stretch {
  8185. align-items: stretch !important;
  8186. }
  8187. .align-content-sm-start {
  8188. align-content: flex-start !important;
  8189. }
  8190. .align-content-sm-end {
  8191. align-content: flex-end !important;
  8192. }
  8193. .align-content-sm-center {
  8194. align-content: center !important;
  8195. }
  8196. .align-content-sm-between {
  8197. align-content: space-between !important;
  8198. }
  8199. .align-content-sm-around {
  8200. align-content: space-around !important;
  8201. }
  8202. .align-content-sm-stretch {
  8203. align-content: stretch !important;
  8204. }
  8205. .align-self-sm-auto {
  8206. align-self: auto !important;
  8207. }
  8208. .align-self-sm-start {
  8209. align-self: flex-start !important;
  8210. }
  8211. .align-self-sm-end {
  8212. align-self: flex-end !important;
  8213. }
  8214. .align-self-sm-center {
  8215. align-self: center !important;
  8216. }
  8217. .align-self-sm-baseline {
  8218. align-self: baseline !important;
  8219. }
  8220. .align-self-sm-stretch {
  8221. align-self: stretch !important;
  8222. }
  8223. .order-sm-first {
  8224. order: -1 !important;
  8225. }
  8226. .order-sm-0 {
  8227. order: 0 !important;
  8228. }
  8229. .order-sm-1 {
  8230. order: 1 !important;
  8231. }
  8232. .order-sm-2 {
  8233. order: 2 !important;
  8234. }
  8235. .order-sm-3 {
  8236. order: 3 !important;
  8237. }
  8238. .order-sm-4 {
  8239. order: 4 !important;
  8240. }
  8241. .order-sm-5 {
  8242. order: 5 !important;
  8243. }
  8244. .order-sm-last {
  8245. order: 6 !important;
  8246. }
  8247. .m-sm-0 {
  8248. margin: 0 !important;
  8249. }
  8250. .m-sm-1 {
  8251. margin: 0.25rem !important;
  8252. }
  8253. .m-sm-2 {
  8254. margin: 0.5rem !important;
  8255. }
  8256. .m-sm-3 {
  8257. margin: 1rem !important;
  8258. }
  8259. .m-sm-4 {
  8260. margin: 1.5rem !important;
  8261. }
  8262. .m-sm-5 {
  8263. margin: 3rem !important;
  8264. }
  8265. .m-sm-auto {
  8266. margin: auto !important;
  8267. }
  8268. .mx-sm-0 {
  8269. margin-right: 0 !important;
  8270. margin-left: 0 !important;
  8271. }
  8272. .mx-sm-1 {
  8273. margin-right: 0.25rem !important;
  8274. margin-left: 0.25rem !important;
  8275. }
  8276. .mx-sm-2 {
  8277. margin-right: 0.5rem !important;
  8278. margin-left: 0.5rem !important;
  8279. }
  8280. .mx-sm-3 {
  8281. margin-right: 1rem !important;
  8282. margin-left: 1rem !important;
  8283. }
  8284. .mx-sm-4 {
  8285. margin-right: 1.5rem !important;
  8286. margin-left: 1.5rem !important;
  8287. }
  8288. .mx-sm-5 {
  8289. margin-right: 3rem !important;
  8290. margin-left: 3rem !important;
  8291. }
  8292. .mx-sm-auto {
  8293. margin-right: auto !important;
  8294. margin-left: auto !important;
  8295. }
  8296. .my-sm-0 {
  8297. margin-top: 0 !important;
  8298. margin-bottom: 0 !important;
  8299. }
  8300. .my-sm-1 {
  8301. margin-top: 0.25rem !important;
  8302. margin-bottom: 0.25rem !important;
  8303. }
  8304. .my-sm-2 {
  8305. margin-top: 0.5rem !important;
  8306. margin-bottom: 0.5rem !important;
  8307. }
  8308. .my-sm-3 {
  8309. margin-top: 1rem !important;
  8310. margin-bottom: 1rem !important;
  8311. }
  8312. .my-sm-4 {
  8313. margin-top: 1.5rem !important;
  8314. margin-bottom: 1.5rem !important;
  8315. }
  8316. .my-sm-5 {
  8317. margin-top: 3rem !important;
  8318. margin-bottom: 3rem !important;
  8319. }
  8320. .my-sm-auto {
  8321. margin-top: auto !important;
  8322. margin-bottom: auto !important;
  8323. }
  8324. .mt-sm-0 {
  8325. margin-top: 0 !important;
  8326. }
  8327. .mt-sm-1 {
  8328. margin-top: 0.25rem !important;
  8329. }
  8330. .mt-sm-2 {
  8331. margin-top: 0.5rem !important;
  8332. }
  8333. .mt-sm-3 {
  8334. margin-top: 1rem !important;
  8335. }
  8336. .mt-sm-4 {
  8337. margin-top: 1.5rem !important;
  8338. }
  8339. .mt-sm-5 {
  8340. margin-top: 3rem !important;
  8341. }
  8342. .mt-sm-auto {
  8343. margin-top: auto !important;
  8344. }
  8345. .me-sm-0 {
  8346. margin-right: 0 !important;
  8347. }
  8348. .me-sm-1 {
  8349. margin-right: 0.25rem !important;
  8350. }
  8351. .me-sm-2 {
  8352. margin-right: 0.5rem !important;
  8353. }
  8354. .me-sm-3 {
  8355. margin-right: 1rem !important;
  8356. }
  8357. .me-sm-4 {
  8358. margin-right: 1.5rem !important;
  8359. }
  8360. .me-sm-5 {
  8361. margin-right: 3rem !important;
  8362. }
  8363. .me-sm-auto {
  8364. margin-right: auto !important;
  8365. }
  8366. .mb-sm-0 {
  8367. margin-bottom: 0 !important;
  8368. }
  8369. .mb-sm-1 {
  8370. margin-bottom: 0.25rem !important;
  8371. }
  8372. .mb-sm-2 {
  8373. margin-bottom: 0.5rem !important;
  8374. }
  8375. .mb-sm-3 {
  8376. margin-bottom: 1rem !important;
  8377. }
  8378. .mb-sm-4 {
  8379. margin-bottom: 1.5rem !important;
  8380. }
  8381. .mb-sm-5 {
  8382. margin-bottom: 3rem !important;
  8383. }
  8384. .mb-sm-auto {
  8385. margin-bottom: auto !important;
  8386. }
  8387. .ms-sm-0 {
  8388. margin-left: 0 !important;
  8389. }
  8390. .ms-sm-1 {
  8391. margin-left: 0.25rem !important;
  8392. }
  8393. .ms-sm-2 {
  8394. margin-left: 0.5rem !important;
  8395. }
  8396. .ms-sm-3 {
  8397. margin-left: 1rem !important;
  8398. }
  8399. .ms-sm-4 {
  8400. margin-left: 1.5rem !important;
  8401. }
  8402. .ms-sm-5 {
  8403. margin-left: 3rem !important;
  8404. }
  8405. .ms-sm-auto {
  8406. margin-left: auto !important;
  8407. }
  8408. .p-sm-0 {
  8409. padding: 0 !important;
  8410. }
  8411. .p-sm-1 {
  8412. padding: 0.25rem !important;
  8413. }
  8414. .p-sm-2 {
  8415. padding: 0.5rem !important;
  8416. }
  8417. .p-sm-3 {
  8418. padding: 1rem !important;
  8419. }
  8420. .p-sm-4 {
  8421. padding: 1.5rem !important;
  8422. }
  8423. .p-sm-5 {
  8424. padding: 3rem !important;
  8425. }
  8426. .px-sm-0 {
  8427. padding-right: 0 !important;
  8428. padding-left: 0 !important;
  8429. }
  8430. .px-sm-1 {
  8431. padding-right: 0.25rem !important;
  8432. padding-left: 0.25rem !important;
  8433. }
  8434. .px-sm-2 {
  8435. padding-right: 0.5rem !important;
  8436. padding-left: 0.5rem !important;
  8437. }
  8438. .px-sm-3 {
  8439. padding-right: 1rem !important;
  8440. padding-left: 1rem !important;
  8441. }
  8442. .px-sm-4 {
  8443. padding-right: 1.5rem !important;
  8444. padding-left: 1.5rem !important;
  8445. }
  8446. .px-sm-5 {
  8447. padding-right: 3rem !important;
  8448. padding-left: 3rem !important;
  8449. }
  8450. .py-sm-0 {
  8451. padding-top: 0 !important;
  8452. padding-bottom: 0 !important;
  8453. }
  8454. .py-sm-1 {
  8455. padding-top: 0.25rem !important;
  8456. padding-bottom: 0.25rem !important;
  8457. }
  8458. .py-sm-2 {
  8459. padding-top: 0.5rem !important;
  8460. padding-bottom: 0.5rem !important;
  8461. }
  8462. .py-sm-3 {
  8463. padding-top: 1rem !important;
  8464. padding-bottom: 1rem !important;
  8465. }
  8466. .py-sm-4 {
  8467. padding-top: 1.5rem !important;
  8468. padding-bottom: 1.5rem !important;
  8469. }
  8470. .py-sm-5 {
  8471. padding-top: 3rem !important;
  8472. padding-bottom: 3rem !important;
  8473. }
  8474. .pt-sm-0 {
  8475. padding-top: 0 !important;
  8476. }
  8477. .pt-sm-1 {
  8478. padding-top: 0.25rem !important;
  8479. }
  8480. .pt-sm-2 {
  8481. padding-top: 0.5rem !important;
  8482. }
  8483. .pt-sm-3 {
  8484. padding-top: 1rem !important;
  8485. }
  8486. .pt-sm-4 {
  8487. padding-top: 1.5rem !important;
  8488. }
  8489. .pt-sm-5 {
  8490. padding-top: 3rem !important;
  8491. }
  8492. .pe-sm-0 {
  8493. padding-right: 0 !important;
  8494. }
  8495. .pe-sm-1 {
  8496. padding-right: 0.25rem !important;
  8497. }
  8498. .pe-sm-2 {
  8499. padding-right: 0.5rem !important;
  8500. }
  8501. .pe-sm-3 {
  8502. padding-right: 1rem !important;
  8503. }
  8504. .pe-sm-4 {
  8505. padding-right: 1.5rem !important;
  8506. }
  8507. .pe-sm-5 {
  8508. padding-right: 3rem !important;
  8509. }
  8510. .pb-sm-0 {
  8511. padding-bottom: 0 !important;
  8512. }
  8513. .pb-sm-1 {
  8514. padding-bottom: 0.25rem !important;
  8515. }
  8516. .pb-sm-2 {
  8517. padding-bottom: 0.5rem !important;
  8518. }
  8519. .pb-sm-3 {
  8520. padding-bottom: 1rem !important;
  8521. }
  8522. .pb-sm-4 {
  8523. padding-bottom: 1.5rem !important;
  8524. }
  8525. .pb-sm-5 {
  8526. padding-bottom: 3rem !important;
  8527. }
  8528. .ps-sm-0 {
  8529. padding-left: 0 !important;
  8530. }
  8531. .ps-sm-1 {
  8532. padding-left: 0.25rem !important;
  8533. }
  8534. .ps-sm-2 {
  8535. padding-left: 0.5rem !important;
  8536. }
  8537. .ps-sm-3 {
  8538. padding-left: 1rem !important;
  8539. }
  8540. .ps-sm-4 {
  8541. padding-left: 1.5rem !important;
  8542. }
  8543. .ps-sm-5 {
  8544. padding-left: 3rem !important;
  8545. }
  8546. .gap-sm-0 {
  8547. gap: 0 !important;
  8548. }
  8549. .gap-sm-1 {
  8550. gap: 0.25rem !important;
  8551. }
  8552. .gap-sm-2 {
  8553. gap: 0.5rem !important;
  8554. }
  8555. .gap-sm-3 {
  8556. gap: 1rem !important;
  8557. }
  8558. .gap-sm-4 {
  8559. gap: 1.5rem !important;
  8560. }
  8561. .gap-sm-5 {
  8562. gap: 3rem !important;
  8563. }
  8564. .row-gap-sm-0 {
  8565. row-gap: 0 !important;
  8566. }
  8567. .row-gap-sm-1 {
  8568. row-gap: 0.25rem !important;
  8569. }
  8570. .row-gap-sm-2 {
  8571. row-gap: 0.5rem !important;
  8572. }
  8573. .row-gap-sm-3 {
  8574. row-gap: 1rem !important;
  8575. }
  8576. .row-gap-sm-4 {
  8577. row-gap: 1.5rem !important;
  8578. }
  8579. .row-gap-sm-5 {
  8580. row-gap: 3rem !important;
  8581. }
  8582. .column-gap-sm-0 {
  8583. -moz-column-gap: 0 !important;
  8584. column-gap: 0 !important;
  8585. }
  8586. .column-gap-sm-1 {
  8587. -moz-column-gap: 0.25rem !important;
  8588. column-gap: 0.25rem !important;
  8589. }
  8590. .column-gap-sm-2 {
  8591. -moz-column-gap: 0.5rem !important;
  8592. column-gap: 0.5rem !important;
  8593. }
  8594. .column-gap-sm-3 {
  8595. -moz-column-gap: 1rem !important;
  8596. column-gap: 1rem !important;
  8597. }
  8598. .column-gap-sm-4 {
  8599. -moz-column-gap: 1.5rem !important;
  8600. column-gap: 1.5rem !important;
  8601. }
  8602. .column-gap-sm-5 {
  8603. -moz-column-gap: 3rem !important;
  8604. column-gap: 3rem !important;
  8605. }
  8606. .text-sm-start {
  8607. text-align: left !important;
  8608. }
  8609. .text-sm-end {
  8610. text-align: right !important;
  8611. }
  8612. .text-sm-center {
  8613. text-align: center !important;
  8614. }
  8615. }
  8616. @media (min-width: 768px) {
  8617. .float-md-start {
  8618. float: left !important;
  8619. }
  8620. .float-md-end {
  8621. float: right !important;
  8622. }
  8623. .float-md-none {
  8624. float: none !important;
  8625. }
  8626. .object-fit-md-contain {
  8627. -o-object-fit: contain !important;
  8628. object-fit: contain !important;
  8629. }
  8630. .object-fit-md-cover {
  8631. -o-object-fit: cover !important;
  8632. object-fit: cover !important;
  8633. }
  8634. .object-fit-md-fill {
  8635. -o-object-fit: fill !important;
  8636. object-fit: fill !important;
  8637. }
  8638. .object-fit-md-scale {
  8639. -o-object-fit: scale-down !important;
  8640. object-fit: scale-down !important;
  8641. }
  8642. .object-fit-md-none {
  8643. -o-object-fit: none !important;
  8644. object-fit: none !important;
  8645. }
  8646. .d-md-inline {
  8647. display: inline !important;
  8648. }
  8649. .d-md-inline-block {
  8650. display: inline-block !important;
  8651. }
  8652. .d-md-block {
  8653. display: block !important;
  8654. }
  8655. .d-md-grid {
  8656. display: grid !important;
  8657. }
  8658. .d-md-inline-grid {
  8659. display: inline-grid !important;
  8660. }
  8661. .d-md-table {
  8662. display: table !important;
  8663. }
  8664. .d-md-table-row {
  8665. display: table-row !important;
  8666. }
  8667. .d-md-table-cell {
  8668. display: table-cell !important;
  8669. }
  8670. .d-md-flex {
  8671. display: flex !important;
  8672. }
  8673. .d-md-inline-flex {
  8674. display: inline-flex !important;
  8675. }
  8676. .d-md-none {
  8677. display: none !important;
  8678. }
  8679. .flex-md-fill {
  8680. flex: 1 1 auto !important;
  8681. }
  8682. .flex-md-row {
  8683. flex-direction: row !important;
  8684. }
  8685. .flex-md-column {
  8686. flex-direction: column !important;
  8687. }
  8688. .flex-md-row-reverse {
  8689. flex-direction: row-reverse !important;
  8690. }
  8691. .flex-md-column-reverse {
  8692. flex-direction: column-reverse !important;
  8693. }
  8694. .flex-md-grow-0 {
  8695. flex-grow: 0 !important;
  8696. }
  8697. .flex-md-grow-1 {
  8698. flex-grow: 1 !important;
  8699. }
  8700. .flex-md-shrink-0 {
  8701. flex-shrink: 0 !important;
  8702. }
  8703. .flex-md-shrink-1 {
  8704. flex-shrink: 1 !important;
  8705. }
  8706. .flex-md-wrap {
  8707. flex-wrap: wrap !important;
  8708. }
  8709. .flex-md-nowrap {
  8710. flex-wrap: nowrap !important;
  8711. }
  8712. .flex-md-wrap-reverse {
  8713. flex-wrap: wrap-reverse !important;
  8714. }
  8715. .justify-content-md-start {
  8716. justify-content: flex-start !important;
  8717. }
  8718. .justify-content-md-end {
  8719. justify-content: flex-end !important;
  8720. }
  8721. .justify-content-md-center {
  8722. justify-content: center !important;
  8723. }
  8724. .justify-content-md-between {
  8725. justify-content: space-between !important;
  8726. }
  8727. .justify-content-md-around {
  8728. justify-content: space-around !important;
  8729. }
  8730. .justify-content-md-evenly {
  8731. justify-content: space-evenly !important;
  8732. }
  8733. .align-items-md-start {
  8734. align-items: flex-start !important;
  8735. }
  8736. .align-items-md-end {
  8737. align-items: flex-end !important;
  8738. }
  8739. .align-items-md-center {
  8740. align-items: center !important;
  8741. }
  8742. .align-items-md-baseline {
  8743. align-items: baseline !important;
  8744. }
  8745. .align-items-md-stretch {
  8746. align-items: stretch !important;
  8747. }
  8748. .align-content-md-start {
  8749. align-content: flex-start !important;
  8750. }
  8751. .align-content-md-end {
  8752. align-content: flex-end !important;
  8753. }
  8754. .align-content-md-center {
  8755. align-content: center !important;
  8756. }
  8757. .align-content-md-between {
  8758. align-content: space-between !important;
  8759. }
  8760. .align-content-md-around {
  8761. align-content: space-around !important;
  8762. }
  8763. .align-content-md-stretch {
  8764. align-content: stretch !important;
  8765. }
  8766. .align-self-md-auto {
  8767. align-self: auto !important;
  8768. }
  8769. .align-self-md-start {
  8770. align-self: flex-start !important;
  8771. }
  8772. .align-self-md-end {
  8773. align-self: flex-end !important;
  8774. }
  8775. .align-self-md-center {
  8776. align-self: center !important;
  8777. }
  8778. .align-self-md-baseline {
  8779. align-self: baseline !important;
  8780. }
  8781. .align-self-md-stretch {
  8782. align-self: stretch !important;
  8783. }
  8784. .order-md-first {
  8785. order: -1 !important;
  8786. }
  8787. .order-md-0 {
  8788. order: 0 !important;
  8789. }
  8790. .order-md-1 {
  8791. order: 1 !important;
  8792. }
  8793. .order-md-2 {
  8794. order: 2 !important;
  8795. }
  8796. .order-md-3 {
  8797. order: 3 !important;
  8798. }
  8799. .order-md-4 {
  8800. order: 4 !important;
  8801. }
  8802. .order-md-5 {
  8803. order: 5 !important;
  8804. }
  8805. .order-md-last {
  8806. order: 6 !important;
  8807. }
  8808. .m-md-0 {
  8809. margin: 0 !important;
  8810. }
  8811. .m-md-1 {
  8812. margin: 0.25rem !important;
  8813. }
  8814. .m-md-2 {
  8815. margin: 0.5rem !important;
  8816. }
  8817. .m-md-3 {
  8818. margin: 1rem !important;
  8819. }
  8820. .m-md-4 {
  8821. margin: 1.5rem !important;
  8822. }
  8823. .m-md-5 {
  8824. margin: 3rem !important;
  8825. }
  8826. .m-md-auto {
  8827. margin: auto !important;
  8828. }
  8829. .mx-md-0 {
  8830. margin-right: 0 !important;
  8831. margin-left: 0 !important;
  8832. }
  8833. .mx-md-1 {
  8834. margin-right: 0.25rem !important;
  8835. margin-left: 0.25rem !important;
  8836. }
  8837. .mx-md-2 {
  8838. margin-right: 0.5rem !important;
  8839. margin-left: 0.5rem !important;
  8840. }
  8841. .mx-md-3 {
  8842. margin-right: 1rem !important;
  8843. margin-left: 1rem !important;
  8844. }
  8845. .mx-md-4 {
  8846. margin-right: 1.5rem !important;
  8847. margin-left: 1.5rem !important;
  8848. }
  8849. .mx-md-5 {
  8850. margin-right: 3rem !important;
  8851. margin-left: 3rem !important;
  8852. }
  8853. .mx-md-auto {
  8854. margin-right: auto !important;
  8855. margin-left: auto !important;
  8856. }
  8857. .my-md-0 {
  8858. margin-top: 0 !important;
  8859. margin-bottom: 0 !important;
  8860. }
  8861. .my-md-1 {
  8862. margin-top: 0.25rem !important;
  8863. margin-bottom: 0.25rem !important;
  8864. }
  8865. .my-md-2 {
  8866. margin-top: 0.5rem !important;
  8867. margin-bottom: 0.5rem !important;
  8868. }
  8869. .my-md-3 {
  8870. margin-top: 1rem !important;
  8871. margin-bottom: 1rem !important;
  8872. }
  8873. .my-md-4 {
  8874. margin-top: 1.5rem !important;
  8875. margin-bottom: 1.5rem !important;
  8876. }
  8877. .my-md-5 {
  8878. margin-top: 3rem !important;
  8879. margin-bottom: 3rem !important;
  8880. }
  8881. .my-md-auto {
  8882. margin-top: auto !important;
  8883. margin-bottom: auto !important;
  8884. }
  8885. .mt-md-0 {
  8886. margin-top: 0 !important;
  8887. }
  8888. .mt-md-1 {
  8889. margin-top: 0.25rem !important;
  8890. }
  8891. .mt-md-2 {
  8892. margin-top: 0.5rem !important;
  8893. }
  8894. .mt-md-3 {
  8895. margin-top: 1rem !important;
  8896. }
  8897. .mt-md-4 {
  8898. margin-top: 1.5rem !important;
  8899. }
  8900. .mt-md-5 {
  8901. margin-top: 3rem !important;
  8902. }
  8903. .mt-md-auto {
  8904. margin-top: auto !important;
  8905. }
  8906. .me-md-0 {
  8907. margin-right: 0 !important;
  8908. }
  8909. .me-md-1 {
  8910. margin-right: 0.25rem !important;
  8911. }
  8912. .me-md-2 {
  8913. margin-right: 0.5rem !important;
  8914. }
  8915. .me-md-3 {
  8916. margin-right: 1rem !important;
  8917. }
  8918. .me-md-4 {
  8919. margin-right: 1.5rem !important;
  8920. }
  8921. .me-md-5 {
  8922. margin-right: 3rem !important;
  8923. }
  8924. .me-md-auto {
  8925. margin-right: auto !important;
  8926. }
  8927. .mb-md-0 {
  8928. margin-bottom: 0 !important;
  8929. }
  8930. .mb-md-1 {
  8931. margin-bottom: 0.25rem !important;
  8932. }
  8933. .mb-md-2 {
  8934. margin-bottom: 0.5rem !important;
  8935. }
  8936. .mb-md-3 {
  8937. margin-bottom: 1rem !important;
  8938. }
  8939. .mb-md-4 {
  8940. margin-bottom: 1.5rem !important;
  8941. }
  8942. .mb-md-5 {
  8943. margin-bottom: 3rem !important;
  8944. }
  8945. .mb-md-auto {
  8946. margin-bottom: auto !important;
  8947. }
  8948. .ms-md-0 {
  8949. margin-left: 0 !important;
  8950. }
  8951. .ms-md-1 {
  8952. margin-left: 0.25rem !important;
  8953. }
  8954. .ms-md-2 {
  8955. margin-left: 0.5rem !important;
  8956. }
  8957. .ms-md-3 {
  8958. margin-left: 1rem !important;
  8959. }
  8960. .ms-md-4 {
  8961. margin-left: 1.5rem !important;
  8962. }
  8963. .ms-md-5 {
  8964. margin-left: 3rem !important;
  8965. }
  8966. .ms-md-auto {
  8967. margin-left: auto !important;
  8968. }
  8969. .p-md-0 {
  8970. padding: 0 !important;
  8971. }
  8972. .p-md-1 {
  8973. padding: 0.25rem !important;
  8974. }
  8975. .p-md-2 {
  8976. padding: 0.5rem !important;
  8977. }
  8978. .p-md-3 {
  8979. padding: 1rem !important;
  8980. }
  8981. .p-md-4 {
  8982. padding: 1.5rem !important;
  8983. }
  8984. .p-md-5 {
  8985. padding: 3rem !important;
  8986. }
  8987. .px-md-0 {
  8988. padding-right: 0 !important;
  8989. padding-left: 0 !important;
  8990. }
  8991. .px-md-1 {
  8992. padding-right: 0.25rem !important;
  8993. padding-left: 0.25rem !important;
  8994. }
  8995. .px-md-2 {
  8996. padding-right: 0.5rem !important;
  8997. padding-left: 0.5rem !important;
  8998. }
  8999. .px-md-3 {
  9000. padding-right: 1rem !important;
  9001. padding-left: 1rem !important;
  9002. }
  9003. .px-md-4 {
  9004. padding-right: 1.5rem !important;
  9005. padding-left: 1.5rem !important;
  9006. }
  9007. .px-md-5 {
  9008. padding-right: 3rem !important;
  9009. padding-left: 3rem !important;
  9010. }
  9011. .py-md-0 {
  9012. padding-top: 0 !important;
  9013. padding-bottom: 0 !important;
  9014. }
  9015. .py-md-1 {
  9016. padding-top: 0.25rem !important;
  9017. padding-bottom: 0.25rem !important;
  9018. }
  9019. .py-md-2 {
  9020. padding-top: 0.5rem !important;
  9021. padding-bottom: 0.5rem !important;
  9022. }
  9023. .py-md-3 {
  9024. padding-top: 1rem !important;
  9025. padding-bottom: 1rem !important;
  9026. }
  9027. .py-md-4 {
  9028. padding-top: 1.5rem !important;
  9029. padding-bottom: 1.5rem !important;
  9030. }
  9031. .py-md-5 {
  9032. padding-top: 3rem !important;
  9033. padding-bottom: 3rem !important;
  9034. }
  9035. .pt-md-0 {
  9036. padding-top: 0 !important;
  9037. }
  9038. .pt-md-1 {
  9039. padding-top: 0.25rem !important;
  9040. }
  9041. .pt-md-2 {
  9042. padding-top: 0.5rem !important;
  9043. }
  9044. .pt-md-3 {
  9045. padding-top: 1rem !important;
  9046. }
  9047. .pt-md-4 {
  9048. padding-top: 1.5rem !important;
  9049. }
  9050. .pt-md-5 {
  9051. padding-top: 3rem !important;
  9052. }
  9053. .pe-md-0 {
  9054. padding-right: 0 !important;
  9055. }
  9056. .pe-md-1 {
  9057. padding-right: 0.25rem !important;
  9058. }
  9059. .pe-md-2 {
  9060. padding-right: 0.5rem !important;
  9061. }
  9062. .pe-md-3 {
  9063. padding-right: 1rem !important;
  9064. }
  9065. .pe-md-4 {
  9066. padding-right: 1.5rem !important;
  9067. }
  9068. .pe-md-5 {
  9069. padding-right: 3rem !important;
  9070. }
  9071. .pb-md-0 {
  9072. padding-bottom: 0 !important;
  9073. }
  9074. .pb-md-1 {
  9075. padding-bottom: 0.25rem !important;
  9076. }
  9077. .pb-md-2 {
  9078. padding-bottom: 0.5rem !important;
  9079. }
  9080. .pb-md-3 {
  9081. padding-bottom: 1rem !important;
  9082. }
  9083. .pb-md-4 {
  9084. padding-bottom: 1.5rem !important;
  9085. }
  9086. .pb-md-5 {
  9087. padding-bottom: 3rem !important;
  9088. }
  9089. .ps-md-0 {
  9090. padding-left: 0 !important;
  9091. }
  9092. .ps-md-1 {
  9093. padding-left: 0.25rem !important;
  9094. }
  9095. .ps-md-2 {
  9096. padding-left: 0.5rem !important;
  9097. }
  9098. .ps-md-3 {
  9099. padding-left: 1rem !important;
  9100. }
  9101. .ps-md-4 {
  9102. padding-left: 1.5rem !important;
  9103. }
  9104. .ps-md-5 {
  9105. padding-left: 3rem !important;
  9106. }
  9107. .gap-md-0 {
  9108. gap: 0 !important;
  9109. }
  9110. .gap-md-1 {
  9111. gap: 0.25rem !important;
  9112. }
  9113. .gap-md-2 {
  9114. gap: 0.5rem !important;
  9115. }
  9116. .gap-md-3 {
  9117. gap: 1rem !important;
  9118. }
  9119. .gap-md-4 {
  9120. gap: 1.5rem !important;
  9121. }
  9122. .gap-md-5 {
  9123. gap: 3rem !important;
  9124. }
  9125. .row-gap-md-0 {
  9126. row-gap: 0 !important;
  9127. }
  9128. .row-gap-md-1 {
  9129. row-gap: 0.25rem !important;
  9130. }
  9131. .row-gap-md-2 {
  9132. row-gap: 0.5rem !important;
  9133. }
  9134. .row-gap-md-3 {
  9135. row-gap: 1rem !important;
  9136. }
  9137. .row-gap-md-4 {
  9138. row-gap: 1.5rem !important;
  9139. }
  9140. .row-gap-md-5 {
  9141. row-gap: 3rem !important;
  9142. }
  9143. .column-gap-md-0 {
  9144. -moz-column-gap: 0 !important;
  9145. column-gap: 0 !important;
  9146. }
  9147. .column-gap-md-1 {
  9148. -moz-column-gap: 0.25rem !important;
  9149. column-gap: 0.25rem !important;
  9150. }
  9151. .column-gap-md-2 {
  9152. -moz-column-gap: 0.5rem !important;
  9153. column-gap: 0.5rem !important;
  9154. }
  9155. .column-gap-md-3 {
  9156. -moz-column-gap: 1rem !important;
  9157. column-gap: 1rem !important;
  9158. }
  9159. .column-gap-md-4 {
  9160. -moz-column-gap: 1.5rem !important;
  9161. column-gap: 1.5rem !important;
  9162. }
  9163. .column-gap-md-5 {
  9164. -moz-column-gap: 3rem !important;
  9165. column-gap: 3rem !important;
  9166. }
  9167. .text-md-start {
  9168. text-align: left !important;
  9169. }
  9170. .text-md-end {
  9171. text-align: right !important;
  9172. }
  9173. .text-md-center {
  9174. text-align: center !important;
  9175. }
  9176. }
  9177. @media (min-width: 992px) {
  9178. .float-lg-start {
  9179. float: left !important;
  9180. }
  9181. .float-lg-end {
  9182. float: right !important;
  9183. }
  9184. .float-lg-none {
  9185. float: none !important;
  9186. }
  9187. .object-fit-lg-contain {
  9188. -o-object-fit: contain !important;
  9189. object-fit: contain !important;
  9190. }
  9191. .object-fit-lg-cover {
  9192. -o-object-fit: cover !important;
  9193. object-fit: cover !important;
  9194. }
  9195. .object-fit-lg-fill {
  9196. -o-object-fit: fill !important;
  9197. object-fit: fill !important;
  9198. }
  9199. .object-fit-lg-scale {
  9200. -o-object-fit: scale-down !important;
  9201. object-fit: scale-down !important;
  9202. }
  9203. .object-fit-lg-none {
  9204. -o-object-fit: none !important;
  9205. object-fit: none !important;
  9206. }
  9207. .d-lg-inline {
  9208. display: inline !important;
  9209. }
  9210. .d-lg-inline-block {
  9211. display: inline-block !important;
  9212. }
  9213. .d-lg-block {
  9214. display: block !important;
  9215. }
  9216. .d-lg-grid {
  9217. display: grid !important;
  9218. }
  9219. .d-lg-inline-grid {
  9220. display: inline-grid !important;
  9221. }
  9222. .d-lg-table {
  9223. display: table !important;
  9224. }
  9225. .d-lg-table-row {
  9226. display: table-row !important;
  9227. }
  9228. .d-lg-table-cell {
  9229. display: table-cell !important;
  9230. }
  9231. .d-lg-flex {
  9232. display: flex !important;
  9233. }
  9234. .d-lg-inline-flex {
  9235. display: inline-flex !important;
  9236. }
  9237. .d-lg-none {
  9238. display: none !important;
  9239. }
  9240. .flex-lg-fill {
  9241. flex: 1 1 auto !important;
  9242. }
  9243. .flex-lg-row {
  9244. flex-direction: row !important;
  9245. }
  9246. .flex-lg-column {
  9247. flex-direction: column !important;
  9248. }
  9249. .flex-lg-row-reverse {
  9250. flex-direction: row-reverse !important;
  9251. }
  9252. .flex-lg-column-reverse {
  9253. flex-direction: column-reverse !important;
  9254. }
  9255. .flex-lg-grow-0 {
  9256. flex-grow: 0 !important;
  9257. }
  9258. .flex-lg-grow-1 {
  9259. flex-grow: 1 !important;
  9260. }
  9261. .flex-lg-shrink-0 {
  9262. flex-shrink: 0 !important;
  9263. }
  9264. .flex-lg-shrink-1 {
  9265. flex-shrink: 1 !important;
  9266. }
  9267. .flex-lg-wrap {
  9268. flex-wrap: wrap !important;
  9269. }
  9270. .flex-lg-nowrap {
  9271. flex-wrap: nowrap !important;
  9272. }
  9273. .flex-lg-wrap-reverse {
  9274. flex-wrap: wrap-reverse !important;
  9275. }
  9276. .justify-content-lg-start {
  9277. justify-content: flex-start !important;
  9278. }
  9279. .justify-content-lg-end {
  9280. justify-content: flex-end !important;
  9281. }
  9282. .justify-content-lg-center {
  9283. justify-content: center !important;
  9284. }
  9285. .justify-content-lg-between {
  9286. justify-content: space-between !important;
  9287. }
  9288. .justify-content-lg-around {
  9289. justify-content: space-around !important;
  9290. }
  9291. .justify-content-lg-evenly {
  9292. justify-content: space-evenly !important;
  9293. }
  9294. .align-items-lg-start {
  9295. align-items: flex-start !important;
  9296. }
  9297. .align-items-lg-end {
  9298. align-items: flex-end !important;
  9299. }
  9300. .align-items-lg-center {
  9301. align-items: center !important;
  9302. }
  9303. .align-items-lg-baseline {
  9304. align-items: baseline !important;
  9305. }
  9306. .align-items-lg-stretch {
  9307. align-items: stretch !important;
  9308. }
  9309. .align-content-lg-start {
  9310. align-content: flex-start !important;
  9311. }
  9312. .align-content-lg-end {
  9313. align-content: flex-end !important;
  9314. }
  9315. .align-content-lg-center {
  9316. align-content: center !important;
  9317. }
  9318. .align-content-lg-between {
  9319. align-content: space-between !important;
  9320. }
  9321. .align-content-lg-around {
  9322. align-content: space-around !important;
  9323. }
  9324. .align-content-lg-stretch {
  9325. align-content: stretch !important;
  9326. }
  9327. .align-self-lg-auto {
  9328. align-self: auto !important;
  9329. }
  9330. .align-self-lg-start {
  9331. align-self: flex-start !important;
  9332. }
  9333. .align-self-lg-end {
  9334. align-self: flex-end !important;
  9335. }
  9336. .align-self-lg-center {
  9337. align-self: center !important;
  9338. }
  9339. .align-self-lg-baseline {
  9340. align-self: baseline !important;
  9341. }
  9342. .align-self-lg-stretch {
  9343. align-self: stretch !important;
  9344. }
  9345. .order-lg-first {
  9346. order: -1 !important;
  9347. }
  9348. .order-lg-0 {
  9349. order: 0 !important;
  9350. }
  9351. .order-lg-1 {
  9352. order: 1 !important;
  9353. }
  9354. .order-lg-2 {
  9355. order: 2 !important;
  9356. }
  9357. .order-lg-3 {
  9358. order: 3 !important;
  9359. }
  9360. .order-lg-4 {
  9361. order: 4 !important;
  9362. }
  9363. .order-lg-5 {
  9364. order: 5 !important;
  9365. }
  9366. .order-lg-last {
  9367. order: 6 !important;
  9368. }
  9369. .m-lg-0 {
  9370. margin: 0 !important;
  9371. }
  9372. .m-lg-1 {
  9373. margin: 0.25rem !important;
  9374. }
  9375. .m-lg-2 {
  9376. margin: 0.5rem !important;
  9377. }
  9378. .m-lg-3 {
  9379. margin: 1rem !important;
  9380. }
  9381. .m-lg-4 {
  9382. margin: 1.5rem !important;
  9383. }
  9384. .m-lg-5 {
  9385. margin: 3rem !important;
  9386. }
  9387. .m-lg-auto {
  9388. margin: auto !important;
  9389. }
  9390. .mx-lg-0 {
  9391. margin-right: 0 !important;
  9392. margin-left: 0 !important;
  9393. }
  9394. .mx-lg-1 {
  9395. margin-right: 0.25rem !important;
  9396. margin-left: 0.25rem !important;
  9397. }
  9398. .mx-lg-2 {
  9399. margin-right: 0.5rem !important;
  9400. margin-left: 0.5rem !important;
  9401. }
  9402. .mx-lg-3 {
  9403. margin-right: 1rem !important;
  9404. margin-left: 1rem !important;
  9405. }
  9406. .mx-lg-4 {
  9407. margin-right: 1.5rem !important;
  9408. margin-left: 1.5rem !important;
  9409. }
  9410. .mx-lg-5 {
  9411. margin-right: 3rem !important;
  9412. margin-left: 3rem !important;
  9413. }
  9414. .mx-lg-auto {
  9415. margin-right: auto !important;
  9416. margin-left: auto !important;
  9417. }
  9418. .my-lg-0 {
  9419. margin-top: 0 !important;
  9420. margin-bottom: 0 !important;
  9421. }
  9422. .my-lg-1 {
  9423. margin-top: 0.25rem !important;
  9424. margin-bottom: 0.25rem !important;
  9425. }
  9426. .my-lg-2 {
  9427. margin-top: 0.5rem !important;
  9428. margin-bottom: 0.5rem !important;
  9429. }
  9430. .my-lg-3 {
  9431. margin-top: 1rem !important;
  9432. margin-bottom: 1rem !important;
  9433. }
  9434. .my-lg-4 {
  9435. margin-top: 1.5rem !important;
  9436. margin-bottom: 1.5rem !important;
  9437. }
  9438. .my-lg-5 {
  9439. margin-top: 3rem !important;
  9440. margin-bottom: 3rem !important;
  9441. }
  9442. .my-lg-auto {
  9443. margin-top: auto !important;
  9444. margin-bottom: auto !important;
  9445. }
  9446. .mt-lg-0 {
  9447. margin-top: 0 !important;
  9448. }
  9449. .mt-lg-1 {
  9450. margin-top: 0.25rem !important;
  9451. }
  9452. .mt-lg-2 {
  9453. margin-top: 0.5rem !important;
  9454. }
  9455. .mt-lg-3 {
  9456. margin-top: 1rem !important;
  9457. }
  9458. .mt-lg-4 {
  9459. margin-top: 1.5rem !important;
  9460. }
  9461. .mt-lg-5 {
  9462. margin-top: 3rem !important;
  9463. }
  9464. .mt-lg-auto {
  9465. margin-top: auto !important;
  9466. }
  9467. .me-lg-0 {
  9468. margin-right: 0 !important;
  9469. }
  9470. .me-lg-1 {
  9471. margin-right: 0.25rem !important;
  9472. }
  9473. .me-lg-2 {
  9474. margin-right: 0.5rem !important;
  9475. }
  9476. .me-lg-3 {
  9477. margin-right: 1rem !important;
  9478. }
  9479. .me-lg-4 {
  9480. margin-right: 1.5rem !important;
  9481. }
  9482. .me-lg-5 {
  9483. margin-right: 3rem !important;
  9484. }
  9485. .me-lg-auto {
  9486. margin-right: auto !important;
  9487. }
  9488. .mb-lg-0 {
  9489. margin-bottom: 0 !important;
  9490. }
  9491. .mb-lg-1 {
  9492. margin-bottom: 0.25rem !important;
  9493. }
  9494. .mb-lg-2 {
  9495. margin-bottom: 0.5rem !important;
  9496. }
  9497. .mb-lg-3 {
  9498. margin-bottom: 1rem !important;
  9499. }
  9500. .mb-lg-4 {
  9501. margin-bottom: 1.5rem !important;
  9502. }
  9503. .mb-lg-5 {
  9504. margin-bottom: 3rem !important;
  9505. }
  9506. .mb-lg-auto {
  9507. margin-bottom: auto !important;
  9508. }
  9509. .ms-lg-0 {
  9510. margin-left: 0 !important;
  9511. }
  9512. .ms-lg-1 {
  9513. margin-left: 0.25rem !important;
  9514. }
  9515. .ms-lg-2 {
  9516. margin-left: 0.5rem !important;
  9517. }
  9518. .ms-lg-3 {
  9519. margin-left: 1rem !important;
  9520. }
  9521. .ms-lg-4 {
  9522. margin-left: 1.5rem !important;
  9523. }
  9524. .ms-lg-5 {
  9525. margin-left: 3rem !important;
  9526. }
  9527. .ms-lg-auto {
  9528. margin-left: auto !important;
  9529. }
  9530. .p-lg-0 {
  9531. padding: 0 !important;
  9532. }
  9533. .p-lg-1 {
  9534. padding: 0.25rem !important;
  9535. }
  9536. .p-lg-2 {
  9537. padding: 0.5rem !important;
  9538. }
  9539. .p-lg-3 {
  9540. padding: 1rem !important;
  9541. }
  9542. .p-lg-4 {
  9543. padding: 1.5rem !important;
  9544. }
  9545. .p-lg-5 {
  9546. padding: 3rem !important;
  9547. }
  9548. .px-lg-0 {
  9549. padding-right: 0 !important;
  9550. padding-left: 0 !important;
  9551. }
  9552. .px-lg-1 {
  9553. padding-right: 0.25rem !important;
  9554. padding-left: 0.25rem !important;
  9555. }
  9556. .px-lg-2 {
  9557. padding-right: 0.5rem !important;
  9558. padding-left: 0.5rem !important;
  9559. }
  9560. .px-lg-3 {
  9561. padding-right: 1rem !important;
  9562. padding-left: 1rem !important;
  9563. }
  9564. .px-lg-4 {
  9565. padding-right: 1.5rem !important;
  9566. padding-left: 1.5rem !important;
  9567. }
  9568. .px-lg-5 {
  9569. padding-right: 3rem !important;
  9570. padding-left: 3rem !important;
  9571. }
  9572. .py-lg-0 {
  9573. padding-top: 0 !important;
  9574. padding-bottom: 0 !important;
  9575. }
  9576. .py-lg-1 {
  9577. padding-top: 0.25rem !important;
  9578. padding-bottom: 0.25rem !important;
  9579. }
  9580. .py-lg-2 {
  9581. padding-top: 0.5rem !important;
  9582. padding-bottom: 0.5rem !important;
  9583. }
  9584. .py-lg-3 {
  9585. padding-top: 1rem !important;
  9586. padding-bottom: 1rem !important;
  9587. }
  9588. .py-lg-4 {
  9589. padding-top: 1.5rem !important;
  9590. padding-bottom: 1.5rem !important;
  9591. }
  9592. .py-lg-5 {
  9593. padding-top: 3rem !important;
  9594. padding-bottom: 3rem !important;
  9595. }
  9596. .pt-lg-0 {
  9597. padding-top: 0 !important;
  9598. }
  9599. .pt-lg-1 {
  9600. padding-top: 0.25rem !important;
  9601. }
  9602. .pt-lg-2 {
  9603. padding-top: 0.5rem !important;
  9604. }
  9605. .pt-lg-3 {
  9606. padding-top: 1rem !important;
  9607. }
  9608. .pt-lg-4 {
  9609. padding-top: 1.5rem !important;
  9610. }
  9611. .pt-lg-5 {
  9612. padding-top: 3rem !important;
  9613. }
  9614. .pe-lg-0 {
  9615. padding-right: 0 !important;
  9616. }
  9617. .pe-lg-1 {
  9618. padding-right: 0.25rem !important;
  9619. }
  9620. .pe-lg-2 {
  9621. padding-right: 0.5rem !important;
  9622. }
  9623. .pe-lg-3 {
  9624. padding-right: 1rem !important;
  9625. }
  9626. .pe-lg-4 {
  9627. padding-right: 1.5rem !important;
  9628. }
  9629. .pe-lg-5 {
  9630. padding-right: 3rem !important;
  9631. }
  9632. .pb-lg-0 {
  9633. padding-bottom: 0 !important;
  9634. }
  9635. .pb-lg-1 {
  9636. padding-bottom: 0.25rem !important;
  9637. }
  9638. .pb-lg-2 {
  9639. padding-bottom: 0.5rem !important;
  9640. }
  9641. .pb-lg-3 {
  9642. padding-bottom: 1rem !important;
  9643. }
  9644. .pb-lg-4 {
  9645. padding-bottom: 1.5rem !important;
  9646. }
  9647. .pb-lg-5 {
  9648. padding-bottom: 3rem !important;
  9649. }
  9650. .ps-lg-0 {
  9651. padding-left: 0 !important;
  9652. }
  9653. .ps-lg-1 {
  9654. padding-left: 0.25rem !important;
  9655. }
  9656. .ps-lg-2 {
  9657. padding-left: 0.5rem !important;
  9658. }
  9659. .ps-lg-3 {
  9660. padding-left: 1rem !important;
  9661. }
  9662. .ps-lg-4 {
  9663. padding-left: 1.5rem !important;
  9664. }
  9665. .ps-lg-5 {
  9666. padding-left: 3rem !important;
  9667. }
  9668. .gap-lg-0 {
  9669. gap: 0 !important;
  9670. }
  9671. .gap-lg-1 {
  9672. gap: 0.25rem !important;
  9673. }
  9674. .gap-lg-2 {
  9675. gap: 0.5rem !important;
  9676. }
  9677. .gap-lg-3 {
  9678. gap: 1rem !important;
  9679. }
  9680. .gap-lg-4 {
  9681. gap: 1.5rem !important;
  9682. }
  9683. .gap-lg-5 {
  9684. gap: 3rem !important;
  9685. }
  9686. .row-gap-lg-0 {
  9687. row-gap: 0 !important;
  9688. }
  9689. .row-gap-lg-1 {
  9690. row-gap: 0.25rem !important;
  9691. }
  9692. .row-gap-lg-2 {
  9693. row-gap: 0.5rem !important;
  9694. }
  9695. .row-gap-lg-3 {
  9696. row-gap: 1rem !important;
  9697. }
  9698. .row-gap-lg-4 {
  9699. row-gap: 1.5rem !important;
  9700. }
  9701. .row-gap-lg-5 {
  9702. row-gap: 3rem !important;
  9703. }
  9704. .column-gap-lg-0 {
  9705. -moz-column-gap: 0 !important;
  9706. column-gap: 0 !important;
  9707. }
  9708. .column-gap-lg-1 {
  9709. -moz-column-gap: 0.25rem !important;
  9710. column-gap: 0.25rem !important;
  9711. }
  9712. .column-gap-lg-2 {
  9713. -moz-column-gap: 0.5rem !important;
  9714. column-gap: 0.5rem !important;
  9715. }
  9716. .column-gap-lg-3 {
  9717. -moz-column-gap: 1rem !important;
  9718. column-gap: 1rem !important;
  9719. }
  9720. .column-gap-lg-4 {
  9721. -moz-column-gap: 1.5rem !important;
  9722. column-gap: 1.5rem !important;
  9723. }
  9724. .column-gap-lg-5 {
  9725. -moz-column-gap: 3rem !important;
  9726. column-gap: 3rem !important;
  9727. }
  9728. .text-lg-start {
  9729. text-align: left !important;
  9730. }
  9731. .text-lg-end {
  9732. text-align: right !important;
  9733. }
  9734. .text-lg-center {
  9735. text-align: center !important;
  9736. }
  9737. }
  9738. @media (min-width: 1200px) {
  9739. .float-xl-start {
  9740. float: left !important;
  9741. }
  9742. .float-xl-end {
  9743. float: right !important;
  9744. }
  9745. .float-xl-none {
  9746. float: none !important;
  9747. }
  9748. .object-fit-xl-contain {
  9749. -o-object-fit: contain !important;
  9750. object-fit: contain !important;
  9751. }
  9752. .object-fit-xl-cover {
  9753. -o-object-fit: cover !important;
  9754. object-fit: cover !important;
  9755. }
  9756. .object-fit-xl-fill {
  9757. -o-object-fit: fill !important;
  9758. object-fit: fill !important;
  9759. }
  9760. .object-fit-xl-scale {
  9761. -o-object-fit: scale-down !important;
  9762. object-fit: scale-down !important;
  9763. }
  9764. .object-fit-xl-none {
  9765. -o-object-fit: none !important;
  9766. object-fit: none !important;
  9767. }
  9768. .d-xl-inline {
  9769. display: inline !important;
  9770. }
  9771. .d-xl-inline-block {
  9772. display: inline-block !important;
  9773. }
  9774. .d-xl-block {
  9775. display: block !important;
  9776. }
  9777. .d-xl-grid {
  9778. display: grid !important;
  9779. }
  9780. .d-xl-inline-grid {
  9781. display: inline-grid !important;
  9782. }
  9783. .d-xl-table {
  9784. display: table !important;
  9785. }
  9786. .d-xl-table-row {
  9787. display: table-row !important;
  9788. }
  9789. .d-xl-table-cell {
  9790. display: table-cell !important;
  9791. }
  9792. .d-xl-flex {
  9793. display: flex !important;
  9794. }
  9795. .d-xl-inline-flex {
  9796. display: inline-flex !important;
  9797. }
  9798. .d-xl-none {
  9799. display: none !important;
  9800. }
  9801. .flex-xl-fill {
  9802. flex: 1 1 auto !important;
  9803. }
  9804. .flex-xl-row {
  9805. flex-direction: row !important;
  9806. }
  9807. .flex-xl-column {
  9808. flex-direction: column !important;
  9809. }
  9810. .flex-xl-row-reverse {
  9811. flex-direction: row-reverse !important;
  9812. }
  9813. .flex-xl-column-reverse {
  9814. flex-direction: column-reverse !important;
  9815. }
  9816. .flex-xl-grow-0 {
  9817. flex-grow: 0 !important;
  9818. }
  9819. .flex-xl-grow-1 {
  9820. flex-grow: 1 !important;
  9821. }
  9822. .flex-xl-shrink-0 {
  9823. flex-shrink: 0 !important;
  9824. }
  9825. .flex-xl-shrink-1 {
  9826. flex-shrink: 1 !important;
  9827. }
  9828. .flex-xl-wrap {
  9829. flex-wrap: wrap !important;
  9830. }
  9831. .flex-xl-nowrap {
  9832. flex-wrap: nowrap !important;
  9833. }
  9834. .flex-xl-wrap-reverse {
  9835. flex-wrap: wrap-reverse !important;
  9836. }
  9837. .justify-content-xl-start {
  9838. justify-content: flex-start !important;
  9839. }
  9840. .justify-content-xl-end {
  9841. justify-content: flex-end !important;
  9842. }
  9843. .justify-content-xl-center {
  9844. justify-content: center !important;
  9845. }
  9846. .justify-content-xl-between {
  9847. justify-content: space-between !important;
  9848. }
  9849. .justify-content-xl-around {
  9850. justify-content: space-around !important;
  9851. }
  9852. .justify-content-xl-evenly {
  9853. justify-content: space-evenly !important;
  9854. }
  9855. .align-items-xl-start {
  9856. align-items: flex-start !important;
  9857. }
  9858. .align-items-xl-end {
  9859. align-items: flex-end !important;
  9860. }
  9861. .align-items-xl-center {
  9862. align-items: center !important;
  9863. }
  9864. .align-items-xl-baseline {
  9865. align-items: baseline !important;
  9866. }
  9867. .align-items-xl-stretch {
  9868. align-items: stretch !important;
  9869. }
  9870. .align-content-xl-start {
  9871. align-content: flex-start !important;
  9872. }
  9873. .align-content-xl-end {
  9874. align-content: flex-end !important;
  9875. }
  9876. .align-content-xl-center {
  9877. align-content: center !important;
  9878. }
  9879. .align-content-xl-between {
  9880. align-content: space-between !important;
  9881. }
  9882. .align-content-xl-around {
  9883. align-content: space-around !important;
  9884. }
  9885. .align-content-xl-stretch {
  9886. align-content: stretch !important;
  9887. }
  9888. .align-self-xl-auto {
  9889. align-self: auto !important;
  9890. }
  9891. .align-self-xl-start {
  9892. align-self: flex-start !important;
  9893. }
  9894. .align-self-xl-end {
  9895. align-self: flex-end !important;
  9896. }
  9897. .align-self-xl-center {
  9898. align-self: center !important;
  9899. }
  9900. .align-self-xl-baseline {
  9901. align-self: baseline !important;
  9902. }
  9903. .align-self-xl-stretch {
  9904. align-self: stretch !important;
  9905. }
  9906. .order-xl-first {
  9907. order: -1 !important;
  9908. }
  9909. .order-xl-0 {
  9910. order: 0 !important;
  9911. }
  9912. .order-xl-1 {
  9913. order: 1 !important;
  9914. }
  9915. .order-xl-2 {
  9916. order: 2 !important;
  9917. }
  9918. .order-xl-3 {
  9919. order: 3 !important;
  9920. }
  9921. .order-xl-4 {
  9922. order: 4 !important;
  9923. }
  9924. .order-xl-5 {
  9925. order: 5 !important;
  9926. }
  9927. .order-xl-last {
  9928. order: 6 !important;
  9929. }
  9930. .m-xl-0 {
  9931. margin: 0 !important;
  9932. }
  9933. .m-xl-1 {
  9934. margin: 0.25rem !important;
  9935. }
  9936. .m-xl-2 {
  9937. margin: 0.5rem !important;
  9938. }
  9939. .m-xl-3 {
  9940. margin: 1rem !important;
  9941. }
  9942. .m-xl-4 {
  9943. margin: 1.5rem !important;
  9944. }
  9945. .m-xl-5 {
  9946. margin: 3rem !important;
  9947. }
  9948. .m-xl-auto {
  9949. margin: auto !important;
  9950. }
  9951. .mx-xl-0 {
  9952. margin-right: 0 !important;
  9953. margin-left: 0 !important;
  9954. }
  9955. .mx-xl-1 {
  9956. margin-right: 0.25rem !important;
  9957. margin-left: 0.25rem !important;
  9958. }
  9959. .mx-xl-2 {
  9960. margin-right: 0.5rem !important;
  9961. margin-left: 0.5rem !important;
  9962. }
  9963. .mx-xl-3 {
  9964. margin-right: 1rem !important;
  9965. margin-left: 1rem !important;
  9966. }
  9967. .mx-xl-4 {
  9968. margin-right: 1.5rem !important;
  9969. margin-left: 1.5rem !important;
  9970. }
  9971. .mx-xl-5 {
  9972. margin-right: 3rem !important;
  9973. margin-left: 3rem !important;
  9974. }
  9975. .mx-xl-auto {
  9976. margin-right: auto !important;
  9977. margin-left: auto !important;
  9978. }
  9979. .my-xl-0 {
  9980. margin-top: 0 !important;
  9981. margin-bottom: 0 !important;
  9982. }
  9983. .my-xl-1 {
  9984. margin-top: 0.25rem !important;
  9985. margin-bottom: 0.25rem !important;
  9986. }
  9987. .my-xl-2 {
  9988. margin-top: 0.5rem !important;
  9989. margin-bottom: 0.5rem !important;
  9990. }
  9991. .my-xl-3 {
  9992. margin-top: 1rem !important;
  9993. margin-bottom: 1rem !important;
  9994. }
  9995. .my-xl-4 {
  9996. margin-top: 1.5rem !important;
  9997. margin-bottom: 1.5rem !important;
  9998. }
  9999. .my-xl-5 {
  10000. margin-top: 3rem !important;
  10001. margin-bottom: 3rem !important;
  10002. }
  10003. .my-xl-auto {
  10004. margin-top: auto !important;
  10005. margin-bottom: auto !important;
  10006. }
  10007. .mt-xl-0 {
  10008. margin-top: 0 !important;
  10009. }
  10010. .mt-xl-1 {
  10011. margin-top: 0.25rem !important;
  10012. }
  10013. .mt-xl-2 {
  10014. margin-top: 0.5rem !important;
  10015. }
  10016. .mt-xl-3 {
  10017. margin-top: 1rem !important;
  10018. }
  10019. .mt-xl-4 {
  10020. margin-top: 1.5rem !important;
  10021. }
  10022. .mt-xl-5 {
  10023. margin-top: 3rem !important;
  10024. }
  10025. .mt-xl-auto {
  10026. margin-top: auto !important;
  10027. }
  10028. .me-xl-0 {
  10029. margin-right: 0 !important;
  10030. }
  10031. .me-xl-1 {
  10032. margin-right: 0.25rem !important;
  10033. }
  10034. .me-xl-2 {
  10035. margin-right: 0.5rem !important;
  10036. }
  10037. .me-xl-3 {
  10038. margin-right: 1rem !important;
  10039. }
  10040. .me-xl-4 {
  10041. margin-right: 1.5rem !important;
  10042. }
  10043. .me-xl-5 {
  10044. margin-right: 3rem !important;
  10045. }
  10046. .me-xl-auto {
  10047. margin-right: auto !important;
  10048. }
  10049. .mb-xl-0 {
  10050. margin-bottom: 0 !important;
  10051. }
  10052. .mb-xl-1 {
  10053. margin-bottom: 0.25rem !important;
  10054. }
  10055. .mb-xl-2 {
  10056. margin-bottom: 0.5rem !important;
  10057. }
  10058. .mb-xl-3 {
  10059. margin-bottom: 1rem !important;
  10060. }
  10061. .mb-xl-4 {
  10062. margin-bottom: 1.5rem !important;
  10063. }
  10064. .mb-xl-5 {
  10065. margin-bottom: 3rem !important;
  10066. }
  10067. .mb-xl-auto {
  10068. margin-bottom: auto !important;
  10069. }
  10070. .ms-xl-0 {
  10071. margin-left: 0 !important;
  10072. }
  10073. .ms-xl-1 {
  10074. margin-left: 0.25rem !important;
  10075. }
  10076. .ms-xl-2 {
  10077. margin-left: 0.5rem !important;
  10078. }
  10079. .ms-xl-3 {
  10080. margin-left: 1rem !important;
  10081. }
  10082. .ms-xl-4 {
  10083. margin-left: 1.5rem !important;
  10084. }
  10085. .ms-xl-5 {
  10086. margin-left: 3rem !important;
  10087. }
  10088. .ms-xl-auto {
  10089. margin-left: auto !important;
  10090. }
  10091. .p-xl-0 {
  10092. padding: 0 !important;
  10093. }
  10094. .p-xl-1 {
  10095. padding: 0.25rem !important;
  10096. }
  10097. .p-xl-2 {
  10098. padding: 0.5rem !important;
  10099. }
  10100. .p-xl-3 {
  10101. padding: 1rem !important;
  10102. }
  10103. .p-xl-4 {
  10104. padding: 1.5rem !important;
  10105. }
  10106. .p-xl-5 {
  10107. padding: 3rem !important;
  10108. }
  10109. .px-xl-0 {
  10110. padding-right: 0 !important;
  10111. padding-left: 0 !important;
  10112. }
  10113. .px-xl-1 {
  10114. padding-right: 0.25rem !important;
  10115. padding-left: 0.25rem !important;
  10116. }
  10117. .px-xl-2 {
  10118. padding-right: 0.5rem !important;
  10119. padding-left: 0.5rem !important;
  10120. }
  10121. .px-xl-3 {
  10122. padding-right: 1rem !important;
  10123. padding-left: 1rem !important;
  10124. }
  10125. .px-xl-4 {
  10126. padding-right: 1.5rem !important;
  10127. padding-left: 1.5rem !important;
  10128. }
  10129. .px-xl-5 {
  10130. padding-right: 3rem !important;
  10131. padding-left: 3rem !important;
  10132. }
  10133. .py-xl-0 {
  10134. padding-top: 0 !important;
  10135. padding-bottom: 0 !important;
  10136. }
  10137. .py-xl-1 {
  10138. padding-top: 0.25rem !important;
  10139. padding-bottom: 0.25rem !important;
  10140. }
  10141. .py-xl-2 {
  10142. padding-top: 0.5rem !important;
  10143. padding-bottom: 0.5rem !important;
  10144. }
  10145. .py-xl-3 {
  10146. padding-top: 1rem !important;
  10147. padding-bottom: 1rem !important;
  10148. }
  10149. .py-xl-4 {
  10150. padding-top: 1.5rem !important;
  10151. padding-bottom: 1.5rem !important;
  10152. }
  10153. .py-xl-5 {
  10154. padding-top: 3rem !important;
  10155. padding-bottom: 3rem !important;
  10156. }
  10157. .pt-xl-0 {
  10158. padding-top: 0 !important;
  10159. }
  10160. .pt-xl-1 {
  10161. padding-top: 0.25rem !important;
  10162. }
  10163. .pt-xl-2 {
  10164. padding-top: 0.5rem !important;
  10165. }
  10166. .pt-xl-3 {
  10167. padding-top: 1rem !important;
  10168. }
  10169. .pt-xl-4 {
  10170. padding-top: 1.5rem !important;
  10171. }
  10172. .pt-xl-5 {
  10173. padding-top: 3rem !important;
  10174. }
  10175. .pe-xl-0 {
  10176. padding-right: 0 !important;
  10177. }
  10178. .pe-xl-1 {
  10179. padding-right: 0.25rem !important;
  10180. }
  10181. .pe-xl-2 {
  10182. padding-right: 0.5rem !important;
  10183. }
  10184. .pe-xl-3 {
  10185. padding-right: 1rem !important;
  10186. }
  10187. .pe-xl-4 {
  10188. padding-right: 1.5rem !important;
  10189. }
  10190. .pe-xl-5 {
  10191. padding-right: 3rem !important;
  10192. }
  10193. .pb-xl-0 {
  10194. padding-bottom: 0 !important;
  10195. }
  10196. .pb-xl-1 {
  10197. padding-bottom: 0.25rem !important;
  10198. }
  10199. .pb-xl-2 {
  10200. padding-bottom: 0.5rem !important;
  10201. }
  10202. .pb-xl-3 {
  10203. padding-bottom: 1rem !important;
  10204. }
  10205. .pb-xl-4 {
  10206. padding-bottom: 1.5rem !important;
  10207. }
  10208. .pb-xl-5 {
  10209. padding-bottom: 3rem !important;
  10210. }
  10211. .ps-xl-0 {
  10212. padding-left: 0 !important;
  10213. }
  10214. .ps-xl-1 {
  10215. padding-left: 0.25rem !important;
  10216. }
  10217. .ps-xl-2 {
  10218. padding-left: 0.5rem !important;
  10219. }
  10220. .ps-xl-3 {
  10221. padding-left: 1rem !important;
  10222. }
  10223. .ps-xl-4 {
  10224. padding-left: 1.5rem !important;
  10225. }
  10226. .ps-xl-5 {
  10227. padding-left: 3rem !important;
  10228. }
  10229. .gap-xl-0 {
  10230. gap: 0 !important;
  10231. }
  10232. .gap-xl-1 {
  10233. gap: 0.25rem !important;
  10234. }
  10235. .gap-xl-2 {
  10236. gap: 0.5rem !important;
  10237. }
  10238. .gap-xl-3 {
  10239. gap: 1rem !important;
  10240. }
  10241. .gap-xl-4 {
  10242. gap: 1.5rem !important;
  10243. }
  10244. .gap-xl-5 {
  10245. gap: 3rem !important;
  10246. }
  10247. .row-gap-xl-0 {
  10248. row-gap: 0 !important;
  10249. }
  10250. .row-gap-xl-1 {
  10251. row-gap: 0.25rem !important;
  10252. }
  10253. .row-gap-xl-2 {
  10254. row-gap: 0.5rem !important;
  10255. }
  10256. .row-gap-xl-3 {
  10257. row-gap: 1rem !important;
  10258. }
  10259. .row-gap-xl-4 {
  10260. row-gap: 1.5rem !important;
  10261. }
  10262. .row-gap-xl-5 {
  10263. row-gap: 3rem !important;
  10264. }
  10265. .column-gap-xl-0 {
  10266. -moz-column-gap: 0 !important;
  10267. column-gap: 0 !important;
  10268. }
  10269. .column-gap-xl-1 {
  10270. -moz-column-gap: 0.25rem !important;
  10271. column-gap: 0.25rem !important;
  10272. }
  10273. .column-gap-xl-2 {
  10274. -moz-column-gap: 0.5rem !important;
  10275. column-gap: 0.5rem !important;
  10276. }
  10277. .column-gap-xl-3 {
  10278. -moz-column-gap: 1rem !important;
  10279. column-gap: 1rem !important;
  10280. }
  10281. .column-gap-xl-4 {
  10282. -moz-column-gap: 1.5rem !important;
  10283. column-gap: 1.5rem !important;
  10284. }
  10285. .column-gap-xl-5 {
  10286. -moz-column-gap: 3rem !important;
  10287. column-gap: 3rem !important;
  10288. }
  10289. .text-xl-start {
  10290. text-align: left !important;
  10291. }
  10292. .text-xl-end {
  10293. text-align: right !important;
  10294. }
  10295. .text-xl-center {
  10296. text-align: center !important;
  10297. }
  10298. }
  10299. @media (min-width: 1400px) {
  10300. .float-xxl-start {
  10301. float: left !important;
  10302. }
  10303. .float-xxl-end {
  10304. float: right !important;
  10305. }
  10306. .float-xxl-none {
  10307. float: none !important;
  10308. }
  10309. .object-fit-xxl-contain {
  10310. -o-object-fit: contain !important;
  10311. object-fit: contain !important;
  10312. }
  10313. .object-fit-xxl-cover {
  10314. -o-object-fit: cover !important;
  10315. object-fit: cover !important;
  10316. }
  10317. .object-fit-xxl-fill {
  10318. -o-object-fit: fill !important;
  10319. object-fit: fill !important;
  10320. }
  10321. .object-fit-xxl-scale {
  10322. -o-object-fit: scale-down !important;
  10323. object-fit: scale-down !important;
  10324. }
  10325. .object-fit-xxl-none {
  10326. -o-object-fit: none !important;
  10327. object-fit: none !important;
  10328. }
  10329. .d-xxl-inline {
  10330. display: inline !important;
  10331. }
  10332. .d-xxl-inline-block {
  10333. display: inline-block !important;
  10334. }
  10335. .d-xxl-block {
  10336. display: block !important;
  10337. }
  10338. .d-xxl-grid {
  10339. display: grid !important;
  10340. }
  10341. .d-xxl-inline-grid {
  10342. display: inline-grid !important;
  10343. }
  10344. .d-xxl-table {
  10345. display: table !important;
  10346. }
  10347. .d-xxl-table-row {
  10348. display: table-row !important;
  10349. }
  10350. .d-xxl-table-cell {
  10351. display: table-cell !important;
  10352. }
  10353. .d-xxl-flex {
  10354. display: flex !important;
  10355. }
  10356. .d-xxl-inline-flex {
  10357. display: inline-flex !important;
  10358. }
  10359. .d-xxl-none {
  10360. display: none !important;
  10361. }
  10362. .flex-xxl-fill {
  10363. flex: 1 1 auto !important;
  10364. }
  10365. .flex-xxl-row {
  10366. flex-direction: row !important;
  10367. }
  10368. .flex-xxl-column {
  10369. flex-direction: column !important;
  10370. }
  10371. .flex-xxl-row-reverse {
  10372. flex-direction: row-reverse !important;
  10373. }
  10374. .flex-xxl-column-reverse {
  10375. flex-direction: column-reverse !important;
  10376. }
  10377. .flex-xxl-grow-0 {
  10378. flex-grow: 0 !important;
  10379. }
  10380. .flex-xxl-grow-1 {
  10381. flex-grow: 1 !important;
  10382. }
  10383. .flex-xxl-shrink-0 {
  10384. flex-shrink: 0 !important;
  10385. }
  10386. .flex-xxl-shrink-1 {
  10387. flex-shrink: 1 !important;
  10388. }
  10389. .flex-xxl-wrap {
  10390. flex-wrap: wrap !important;
  10391. }
  10392. .flex-xxl-nowrap {
  10393. flex-wrap: nowrap !important;
  10394. }
  10395. .flex-xxl-wrap-reverse {
  10396. flex-wrap: wrap-reverse !important;
  10397. }
  10398. .justify-content-xxl-start {
  10399. justify-content: flex-start !important;
  10400. }
  10401. .justify-content-xxl-end {
  10402. justify-content: flex-end !important;
  10403. }
  10404. .justify-content-xxl-center {
  10405. justify-content: center !important;
  10406. }
  10407. .justify-content-xxl-between {
  10408. justify-content: space-between !important;
  10409. }
  10410. .justify-content-xxl-around {
  10411. justify-content: space-around !important;
  10412. }
  10413. .justify-content-xxl-evenly {
  10414. justify-content: space-evenly !important;
  10415. }
  10416. .align-items-xxl-start {
  10417. align-items: flex-start !important;
  10418. }
  10419. .align-items-xxl-end {
  10420. align-items: flex-end !important;
  10421. }
  10422. .align-items-xxl-center {
  10423. align-items: center !important;
  10424. }
  10425. .align-items-xxl-baseline {
  10426. align-items: baseline !important;
  10427. }
  10428. .align-items-xxl-stretch {
  10429. align-items: stretch !important;
  10430. }
  10431. .align-content-xxl-start {
  10432. align-content: flex-start !important;
  10433. }
  10434. .align-content-xxl-end {
  10435. align-content: flex-end !important;
  10436. }
  10437. .align-content-xxl-center {
  10438. align-content: center !important;
  10439. }
  10440. .align-content-xxl-between {
  10441. align-content: space-between !important;
  10442. }
  10443. .align-content-xxl-around {
  10444. align-content: space-around !important;
  10445. }
  10446. .align-content-xxl-stretch {
  10447. align-content: stretch !important;
  10448. }
  10449. .align-self-xxl-auto {
  10450. align-self: auto !important;
  10451. }
  10452. .align-self-xxl-start {
  10453. align-self: flex-start !important;
  10454. }
  10455. .align-self-xxl-end {
  10456. align-self: flex-end !important;
  10457. }
  10458. .align-self-xxl-center {
  10459. align-self: center !important;
  10460. }
  10461. .align-self-xxl-baseline {
  10462. align-self: baseline !important;
  10463. }
  10464. .align-self-xxl-stretch {
  10465. align-self: stretch !important;
  10466. }
  10467. .order-xxl-first {
  10468. order: -1 !important;
  10469. }
  10470. .order-xxl-0 {
  10471. order: 0 !important;
  10472. }
  10473. .order-xxl-1 {
  10474. order: 1 !important;
  10475. }
  10476. .order-xxl-2 {
  10477. order: 2 !important;
  10478. }
  10479. .order-xxl-3 {
  10480. order: 3 !important;
  10481. }
  10482. .order-xxl-4 {
  10483. order: 4 !important;
  10484. }
  10485. .order-xxl-5 {
  10486. order: 5 !important;
  10487. }
  10488. .order-xxl-last {
  10489. order: 6 !important;
  10490. }
  10491. .m-xxl-0 {
  10492. margin: 0 !important;
  10493. }
  10494. .m-xxl-1 {
  10495. margin: 0.25rem !important;
  10496. }
  10497. .m-xxl-2 {
  10498. margin: 0.5rem !important;
  10499. }
  10500. .m-xxl-3 {
  10501. margin: 1rem !important;
  10502. }
  10503. .m-xxl-4 {
  10504. margin: 1.5rem !important;
  10505. }
  10506. .m-xxl-5 {
  10507. margin: 3rem !important;
  10508. }
  10509. .m-xxl-auto {
  10510. margin: auto !important;
  10511. }
  10512. .mx-xxl-0 {
  10513. margin-right: 0 !important;
  10514. margin-left: 0 !important;
  10515. }
  10516. .mx-xxl-1 {
  10517. margin-right: 0.25rem !important;
  10518. margin-left: 0.25rem !important;
  10519. }
  10520. .mx-xxl-2 {
  10521. margin-right: 0.5rem !important;
  10522. margin-left: 0.5rem !important;
  10523. }
  10524. .mx-xxl-3 {
  10525. margin-right: 1rem !important;
  10526. margin-left: 1rem !important;
  10527. }
  10528. .mx-xxl-4 {
  10529. margin-right: 1.5rem !important;
  10530. margin-left: 1.5rem !important;
  10531. }
  10532. .mx-xxl-5 {
  10533. margin-right: 3rem !important;
  10534. margin-left: 3rem !important;
  10535. }
  10536. .mx-xxl-auto {
  10537. margin-right: auto !important;
  10538. margin-left: auto !important;
  10539. }
  10540. .my-xxl-0 {
  10541. margin-top: 0 !important;
  10542. margin-bottom: 0 !important;
  10543. }
  10544. .my-xxl-1 {
  10545. margin-top: 0.25rem !important;
  10546. margin-bottom: 0.25rem !important;
  10547. }
  10548. .my-xxl-2 {
  10549. margin-top: 0.5rem !important;
  10550. margin-bottom: 0.5rem !important;
  10551. }
  10552. .my-xxl-3 {
  10553. margin-top: 1rem !important;
  10554. margin-bottom: 1rem !important;
  10555. }
  10556. .my-xxl-4 {
  10557. margin-top: 1.5rem !important;
  10558. margin-bottom: 1.5rem !important;
  10559. }
  10560. .my-xxl-5 {
  10561. margin-top: 3rem !important;
  10562. margin-bottom: 3rem !important;
  10563. }
  10564. .my-xxl-auto {
  10565. margin-top: auto !important;
  10566. margin-bottom: auto !important;
  10567. }
  10568. .mt-xxl-0 {
  10569. margin-top: 0 !important;
  10570. }
  10571. .mt-xxl-1 {
  10572. margin-top: 0.25rem !important;
  10573. }
  10574. .mt-xxl-2 {
  10575. margin-top: 0.5rem !important;
  10576. }
  10577. .mt-xxl-3 {
  10578. margin-top: 1rem !important;
  10579. }
  10580. .mt-xxl-4 {
  10581. margin-top: 1.5rem !important;
  10582. }
  10583. .mt-xxl-5 {
  10584. margin-top: 3rem !important;
  10585. }
  10586. .mt-xxl-auto {
  10587. margin-top: auto !important;
  10588. }
  10589. .me-xxl-0 {
  10590. margin-right: 0 !important;
  10591. }
  10592. .me-xxl-1 {
  10593. margin-right: 0.25rem !important;
  10594. }
  10595. .me-xxl-2 {
  10596. margin-right: 0.5rem !important;
  10597. }
  10598. .me-xxl-3 {
  10599. margin-right: 1rem !important;
  10600. }
  10601. .me-xxl-4 {
  10602. margin-right: 1.5rem !important;
  10603. }
  10604. .me-xxl-5 {
  10605. margin-right: 3rem !important;
  10606. }
  10607. .me-xxl-auto {
  10608. margin-right: auto !important;
  10609. }
  10610. .mb-xxl-0 {
  10611. margin-bottom: 0 !important;
  10612. }
  10613. .mb-xxl-1 {
  10614. margin-bottom: 0.25rem !important;
  10615. }
  10616. .mb-xxl-2 {
  10617. margin-bottom: 0.5rem !important;
  10618. }
  10619. .mb-xxl-3 {
  10620. margin-bottom: 1rem !important;
  10621. }
  10622. .mb-xxl-4 {
  10623. margin-bottom: 1.5rem !important;
  10624. }
  10625. .mb-xxl-5 {
  10626. margin-bottom: 3rem !important;
  10627. }
  10628. .mb-xxl-auto {
  10629. margin-bottom: auto !important;
  10630. }
  10631. .ms-xxl-0 {
  10632. margin-left: 0 !important;
  10633. }
  10634. .ms-xxl-1 {
  10635. margin-left: 0.25rem !important;
  10636. }
  10637. .ms-xxl-2 {
  10638. margin-left: 0.5rem !important;
  10639. }
  10640. .ms-xxl-3 {
  10641. margin-left: 1rem !important;
  10642. }
  10643. .ms-xxl-4 {
  10644. margin-left: 1.5rem !important;
  10645. }
  10646. .ms-xxl-5 {
  10647. margin-left: 3rem !important;
  10648. }
  10649. .ms-xxl-auto {
  10650. margin-left: auto !important;
  10651. }
  10652. .p-xxl-0 {
  10653. padding: 0 !important;
  10654. }
  10655. .p-xxl-1 {
  10656. padding: 0.25rem !important;
  10657. }
  10658. .p-xxl-2 {
  10659. padding: 0.5rem !important;
  10660. }
  10661. .p-xxl-3 {
  10662. padding: 1rem !important;
  10663. }
  10664. .p-xxl-4 {
  10665. padding: 1.5rem !important;
  10666. }
  10667. .p-xxl-5 {
  10668. padding: 3rem !important;
  10669. }
  10670. .px-xxl-0 {
  10671. padding-right: 0 !important;
  10672. padding-left: 0 !important;
  10673. }
  10674. .px-xxl-1 {
  10675. padding-right: 0.25rem !important;
  10676. padding-left: 0.25rem !important;
  10677. }
  10678. .px-xxl-2 {
  10679. padding-right: 0.5rem !important;
  10680. padding-left: 0.5rem !important;
  10681. }
  10682. .px-xxl-3 {
  10683. padding-right: 1rem !important;
  10684. padding-left: 1rem !important;
  10685. }
  10686. .px-xxl-4 {
  10687. padding-right: 1.5rem !important;
  10688. padding-left: 1.5rem !important;
  10689. }
  10690. .px-xxl-5 {
  10691. padding-right: 3rem !important;
  10692. padding-left: 3rem !important;
  10693. }
  10694. .py-xxl-0 {
  10695. padding-top: 0 !important;
  10696. padding-bottom: 0 !important;
  10697. }
  10698. .py-xxl-1 {
  10699. padding-top: 0.25rem !important;
  10700. padding-bottom: 0.25rem !important;
  10701. }
  10702. .py-xxl-2 {
  10703. padding-top: 0.5rem !important;
  10704. padding-bottom: 0.5rem !important;
  10705. }
  10706. .py-xxl-3 {
  10707. padding-top: 1rem !important;
  10708. padding-bottom: 1rem !important;
  10709. }
  10710. .py-xxl-4 {
  10711. padding-top: 1.5rem !important;
  10712. padding-bottom: 1.5rem !important;
  10713. }
  10714. .py-xxl-5 {
  10715. padding-top: 3rem !important;
  10716. padding-bottom: 3rem !important;
  10717. }
  10718. .pt-xxl-0 {
  10719. padding-top: 0 !important;
  10720. }
  10721. .pt-xxl-1 {
  10722. padding-top: 0.25rem !important;
  10723. }
  10724. .pt-xxl-2 {
  10725. padding-top: 0.5rem !important;
  10726. }
  10727. .pt-xxl-3 {
  10728. padding-top: 1rem !important;
  10729. }
  10730. .pt-xxl-4 {
  10731. padding-top: 1.5rem !important;
  10732. }
  10733. .pt-xxl-5 {
  10734. padding-top: 3rem !important;
  10735. }
  10736. .pe-xxl-0 {
  10737. padding-right: 0 !important;
  10738. }
  10739. .pe-xxl-1 {
  10740. padding-right: 0.25rem !important;
  10741. }
  10742. .pe-xxl-2 {
  10743. padding-right: 0.5rem !important;
  10744. }
  10745. .pe-xxl-3 {
  10746. padding-right: 1rem !important;
  10747. }
  10748. .pe-xxl-4 {
  10749. padding-right: 1.5rem !important;
  10750. }
  10751. .pe-xxl-5 {
  10752. padding-right: 3rem !important;
  10753. }
  10754. .pb-xxl-0 {
  10755. padding-bottom: 0 !important;
  10756. }
  10757. .pb-xxl-1 {
  10758. padding-bottom: 0.25rem !important;
  10759. }
  10760. .pb-xxl-2 {
  10761. padding-bottom: 0.5rem !important;
  10762. }
  10763. .pb-xxl-3 {
  10764. padding-bottom: 1rem !important;
  10765. }
  10766. .pb-xxl-4 {
  10767. padding-bottom: 1.5rem !important;
  10768. }
  10769. .pb-xxl-5 {
  10770. padding-bottom: 3rem !important;
  10771. }
  10772. .ps-xxl-0 {
  10773. padding-left: 0 !important;
  10774. }
  10775. .ps-xxl-1 {
  10776. padding-left: 0.25rem !important;
  10777. }
  10778. .ps-xxl-2 {
  10779. padding-left: 0.5rem !important;
  10780. }
  10781. .ps-xxl-3 {
  10782. padding-left: 1rem !important;
  10783. }
  10784. .ps-xxl-4 {
  10785. padding-left: 1.5rem !important;
  10786. }
  10787. .ps-xxl-5 {
  10788. padding-left: 3rem !important;
  10789. }
  10790. .gap-xxl-0 {
  10791. gap: 0 !important;
  10792. }
  10793. .gap-xxl-1 {
  10794. gap: 0.25rem !important;
  10795. }
  10796. .gap-xxl-2 {
  10797. gap: 0.5rem !important;
  10798. }
  10799. .gap-xxl-3 {
  10800. gap: 1rem !important;
  10801. }
  10802. .gap-xxl-4 {
  10803. gap: 1.5rem !important;
  10804. }
  10805. .gap-xxl-5 {
  10806. gap: 3rem !important;
  10807. }
  10808. .row-gap-xxl-0 {
  10809. row-gap: 0 !important;
  10810. }
  10811. .row-gap-xxl-1 {
  10812. row-gap: 0.25rem !important;
  10813. }
  10814. .row-gap-xxl-2 {
  10815. row-gap: 0.5rem !important;
  10816. }
  10817. .row-gap-xxl-3 {
  10818. row-gap: 1rem !important;
  10819. }
  10820. .row-gap-xxl-4 {
  10821. row-gap: 1.5rem !important;
  10822. }
  10823. .row-gap-xxl-5 {
  10824. row-gap: 3rem !important;
  10825. }
  10826. .column-gap-xxl-0 {
  10827. -moz-column-gap: 0 !important;
  10828. column-gap: 0 !important;
  10829. }
  10830. .column-gap-xxl-1 {
  10831. -moz-column-gap: 0.25rem !important;
  10832. column-gap: 0.25rem !important;
  10833. }
  10834. .column-gap-xxl-2 {
  10835. -moz-column-gap: 0.5rem !important;
  10836. column-gap: 0.5rem !important;
  10837. }
  10838. .column-gap-xxl-3 {
  10839. -moz-column-gap: 1rem !important;
  10840. column-gap: 1rem !important;
  10841. }
  10842. .column-gap-xxl-4 {
  10843. -moz-column-gap: 1.5rem !important;
  10844. column-gap: 1.5rem !important;
  10845. }
  10846. .column-gap-xxl-5 {
  10847. -moz-column-gap: 3rem !important;
  10848. column-gap: 3rem !important;
  10849. }
  10850. .text-xxl-start {
  10851. text-align: left !important;
  10852. }
  10853. .text-xxl-end {
  10854. text-align: right !important;
  10855. }
  10856. .text-xxl-center {
  10857. text-align: center !important;
  10858. }
  10859. }
  10860. @media (min-width: 1200px) {
  10861. .fs-1 {
  10862. font-size: 2.5rem !important;
  10863. }
  10864. .fs-2 {
  10865. font-size: 2rem !important;
  10866. }
  10867. .fs-3 {
  10868. font-size: 1.75rem !important;
  10869. }
  10870. .fs-4 {
  10871. font-size: 1.5rem !important;
  10872. }
  10873. }
  10874. @media print {
  10875. .d-print-inline {
  10876. display: inline !important;
  10877. }
  10878. .d-print-inline-block {
  10879. display: inline-block !important;
  10880. }
  10881. .d-print-block {
  10882. display: block !important;
  10883. }
  10884. .d-print-grid {
  10885. display: grid !important;
  10886. }
  10887. .d-print-inline-grid {
  10888. display: inline-grid !important;
  10889. }
  10890. .d-print-table {
  10891. display: table !important;
  10892. }
  10893. .d-print-table-row {
  10894. display: table-row !important;
  10895. }
  10896. .d-print-table-cell {
  10897. display: table-cell !important;
  10898. }
  10899. .d-print-flex {
  10900. display: flex !important;
  10901. }
  10902. .d-print-inline-flex {
  10903. display: inline-flex !important;
  10904. }
  10905. .d-print-none {
  10906. display: none !important;
  10907. }
  10908. }
  10909. body {
  10910. -webkit-font-smoothing: antialiased;
  10911. }
  10912. .badge.bg-light {
  10913. color: #373a3c;
  10914. }
  10915. .progress .progress-bar {
  10916. font-size: 8px;
  10917. line-height: 8px;
  10918. }