bootstrap.css 199 KB

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