pulse-bootstrap.css 194 KB

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