bootstrap.css 206 KB

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