bootstrap.css 276 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035
  1. @charset "UTF-8";
  2. /*
  3. Template Name: Skote - Admin & Dashboard Template
  4. Author: Themesbrand
  5. Version: 3.3.0.
  6. Website: https://themesbrand.com/
  7. Contact: themesbrand@gmail.com
  8. File: Custom Bootstrap Css File
  9. */
  10. /*!
  11. * Bootstrap v5.1.3 (https://getbootstrap.com/)
  12. * Copyright 2011-2021 The Bootstrap Authors
  13. * Copyright 2011-2021 Twitter, Inc.
  14. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
  15. */
  16. :root {
  17. --bs-blue: #556ee6;
  18. --bs-indigo: #564ab1;
  19. --bs-purple: #6f42c1;
  20. --bs-pink: #e83e8c;
  21. --bs-red: #f46a6a;
  22. --bs-orange: #f1734f;
  23. --bs-yellow: #f1b44c;
  24. --bs-green: #34c38f;
  25. --bs-teal: #050505;
  26. --bs-cyan: #50a5f1;
  27. --bs-white: #fff;
  28. --bs-gray: #74788d;
  29. --bs-gray-dark: #343a40;
  30. --bs-gray-100: #f8f9fa;
  31. --bs-gray-200: #eff2f7;
  32. --bs-gray-300: #f6f6f6;
  33. --bs-gray-400: #ced4da;
  34. --bs-gray-500: #adb5bd;
  35. --bs-gray-600: #74788d;
  36. --bs-gray-700: #495057;
  37. --bs-gray-800: #343a40;
  38. --bs-gray-900: #212529;
  39. --bs-primary: #556ee6;
  40. --bs-secondary: #74788d;
  41. --bs-success: #34c38f;
  42. --bs-info: #50a5f1;
  43. --bs-warning: #f1b44c;
  44. --bs-danger: #f46a6a;
  45. --bs-pink: #e83e8c;
  46. --bs-light: #eff2f7;
  47. --bs-dark: #343a40;
  48. --bs-primary-rgb: 85, 110, 230;
  49. --bs-secondary-rgb: 116, 120, 141;
  50. --bs-success-rgb: 52, 195, 143;
  51. --bs-info-rgb: 80, 165, 241;
  52. --bs-warning-rgb: 241, 180, 76;
  53. --bs-danger-rgb: 244, 106, 106;
  54. --bs-pink-rgb: 232, 62, 140;
  55. --bs-light-rgb: 239, 242, 247;
  56. --bs-dark-rgb: 52, 58, 64;
  57. --bs-white-rgb: 255, 255, 255;
  58. --bs-black-rgb: 0, 0, 0;
  59. --bs-body-color-rgb: 73, 80, 87;
  60. --bs-body-bg-rgb: 248, 248, 251;
  61. --bs-font-sans-serif: "Poppins", sans-serif;
  62. --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  63. --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  64. --bs-body-font-family: var(--bs-font-sans-serif);
  65. --bs-body-font-size: 0.8125rem;
  66. --bs-body-font-weight: 400;
  67. --bs-body-line-height: 1.5;
  68. --bs-body-color: #495057;
  69. --bs-body-bg: #f8f8fb;
  70. }
  71. *,
  72. *::before,
  73. *::after {
  74. -webkit-box-sizing: border-box;
  75. box-sizing: border-box;
  76. }
  77. @media (prefers-reduced-motion: no-preference) {
  78. :root {
  79. scroll-behavior: smooth;
  80. }
  81. }
  82. body {
  83. margin: 0;
  84. font-family: var(--bs-body-font-family);
  85. font-size: var(--bs-body-font-size);
  86. font-weight: var(--bs-body-font-weight);
  87. line-height: var(--bs-body-line-height);
  88. color: var(--bs-body-color);
  89. text-align: var(--bs-body-text-align);
  90. background-color: var(--bs-body-bg);
  91. -webkit-text-size-adjust: 100%;
  92. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  93. }
  94. hr {
  95. margin: 1rem 0;
  96. color: inherit;
  97. background-color: currentColor;
  98. border: 0;
  99. opacity: 0.2;
  100. }
  101. hr:not([size]) {
  102. height: 1px;
  103. }
  104. h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  105. margin-top: 0;
  106. margin-bottom: 0.5rem;
  107. font-weight: 500;
  108. line-height: 1.2;
  109. }
  110. h1, .h1 {
  111. font-size: calc(1.328125rem + 0.9375vw);
  112. }
  113. @media (min-width: 1200px) {
  114. h1, .h1 {
  115. font-size: 2.03125rem;
  116. }
  117. }
  118. h2, .h2 {
  119. font-size: calc(1.2875rem + 0.45vw);
  120. }
  121. @media (min-width: 1200px) {
  122. h2, .h2 {
  123. font-size: 1.625rem;
  124. }
  125. }
  126. h3, .h3 {
  127. font-size: calc(1.2671875rem + 0.20625vw);
  128. }
  129. @media (min-width: 1200px) {
  130. h3, .h3 {
  131. font-size: 1.421875rem;
  132. }
  133. }
  134. h4, .h4 {
  135. font-size: 1.21875rem;
  136. }
  137. h5, .h5 {
  138. font-size: 1.015625rem;
  139. }
  140. h6, .h6 {
  141. font-size: 0.8125rem;
  142. }
  143. p {
  144. margin-top: 0;
  145. margin-bottom: 1rem;
  146. }
  147. abbr[title],
  148. abbr[data-bs-original-title] {
  149. -webkit-text-decoration: underline dotted;
  150. text-decoration: underline dotted;
  151. cursor: help;
  152. -webkit-text-decoration-skip-ink: none;
  153. text-decoration-skip-ink: none;
  154. }
  155. address {
  156. margin-bottom: 1rem;
  157. font-style: normal;
  158. line-height: inherit;
  159. }
  160. ol,
  161. ul {
  162. padding-right: 2rem;
  163. }
  164. ol,
  165. ul,
  166. dl {
  167. margin-top: 0;
  168. margin-bottom: 1rem;
  169. }
  170. ol ol,
  171. ul ul,
  172. ol ul,
  173. ul ol {
  174. margin-bottom: 0;
  175. }
  176. dt {
  177. font-weight: 600;
  178. }
  179. dd {
  180. margin-bottom: 0.5rem;
  181. margin-right: 0;
  182. }
  183. blockquote {
  184. margin: 0 0 1rem;
  185. }
  186. b,
  187. strong {
  188. font-weight: bolder;
  189. }
  190. small, .small {
  191. font-size: 80%;
  192. }
  193. mark, .mark {
  194. padding: 0.2em;
  195. background-color: #fcf8e3;
  196. }
  197. sub,
  198. sup {
  199. position: relative;
  200. font-size: 0.75em;
  201. line-height: 0;
  202. vertical-align: baseline;
  203. }
  204. sub {
  205. bottom: -0.25em;
  206. }
  207. sup {
  208. top: -0.5em;
  209. }
  210. a {
  211. color: #556ee6;
  212. text-decoration: none;
  213. }
  214. a:hover {
  215. color: #4458b8;
  216. text-decoration: underline;
  217. }
  218. a:not([href]):not([class]), a:not([href]):not([class]):hover {
  219. color: inherit;
  220. text-decoration: none;
  221. }
  222. pre,
  223. code,
  224. kbd,
  225. samp {
  226. font-family: var(--bs-font-monospace);
  227. font-size: 1em;
  228. direction: ltr ;
  229. unicode-bidi: bidi-override;
  230. }
  231. pre {
  232. display: block;
  233. margin-top: 0;
  234. margin-bottom: 1rem;
  235. overflow: auto;
  236. font-size: 87.5%;
  237. color: #212529;
  238. }
  239. pre code {
  240. font-size: inherit;
  241. color: inherit;
  242. word-break: normal;
  243. }
  244. code {
  245. font-size: 87.5%;
  246. color: #e83e8c;
  247. word-wrap: break-word;
  248. }
  249. a > code {
  250. color: inherit;
  251. }
  252. kbd {
  253. padding: 0.2rem 0.4rem;
  254. font-size: 87.5%;
  255. color: #fff;
  256. background-color: #212529;
  257. border-radius: 0.2rem;
  258. }
  259. kbd kbd {
  260. padding: 0;
  261. font-size: 1em;
  262. font-weight: 600;
  263. }
  264. figure {
  265. margin: 0 0 1rem;
  266. }
  267. img,
  268. svg {
  269. vertical-align: middle;
  270. }
  271. table {
  272. caption-side: bottom;
  273. border-collapse: collapse;
  274. }
  275. caption {
  276. padding-top: 0.75rem;
  277. padding-bottom: 0.75rem;
  278. color: #74788d;
  279. text-align: right;
  280. }
  281. th {
  282. text-align: inherit;
  283. text-align: -webkit-match-parent;
  284. }
  285. thead,
  286. tbody,
  287. tfoot,
  288. tr,
  289. td,
  290. th {
  291. border-color: inherit;
  292. border-style: solid;
  293. border-width: 0;
  294. }
  295. label {
  296. display: inline-block;
  297. }
  298. button {
  299. border-radius: 0;
  300. }
  301. button:focus:not(:focus-visible) {
  302. outline: 0;
  303. }
  304. input,
  305. button,
  306. select,
  307. optgroup,
  308. textarea {
  309. margin: 0;
  310. font-family: inherit;
  311. font-size: inherit;
  312. line-height: inherit;
  313. }
  314. button,
  315. select {
  316. text-transform: none;
  317. }
  318. [role=button] {
  319. cursor: pointer;
  320. }
  321. select {
  322. word-wrap: normal;
  323. }
  324. select:disabled {
  325. opacity: 1;
  326. }
  327. [list]::-webkit-calendar-picker-indicator {
  328. display: none;
  329. }
  330. button,
  331. [type=button],
  332. [type=reset],
  333. [type=submit] {
  334. -webkit-appearance: button;
  335. }
  336. button:not(:disabled),
  337. [type=button]:not(:disabled),
  338. [type=reset]:not(:disabled),
  339. [type=submit]:not(:disabled) {
  340. cursor: pointer;
  341. }
  342. ::-moz-focus-inner {
  343. padding: 0;
  344. border-style: none;
  345. }
  346. textarea {
  347. resize: vertical;
  348. }
  349. fieldset {
  350. min-width: 0;
  351. padding: 0;
  352. margin: 0;
  353. border: 0;
  354. }
  355. legend {
  356. float: right;
  357. width: 100%;
  358. padding: 0;
  359. margin-bottom: 0.5rem;
  360. font-size: calc(1.275rem + 0.3vw);
  361. line-height: inherit;
  362. }
  363. @media (min-width: 1200px) {
  364. legend {
  365. font-size: 1.5rem;
  366. }
  367. }
  368. legend + * {
  369. clear: right;
  370. }
  371. ::-webkit-datetime-edit-fields-wrapper,
  372. ::-webkit-datetime-edit-text,
  373. ::-webkit-datetime-edit-minute,
  374. ::-webkit-datetime-edit-hour-field,
  375. ::-webkit-datetime-edit-day-field,
  376. ::-webkit-datetime-edit-month-field,
  377. ::-webkit-datetime-edit-year-field {
  378. padding: 0;
  379. }
  380. ::-webkit-inner-spin-button {
  381. height: auto;
  382. }
  383. [type=search] {
  384. outline-offset: -2px;
  385. -webkit-appearance: textfield;
  386. }
  387. [type="tel"],
  388. [type="url"],
  389. [type="email"],
  390. [type="number"] {
  391. direction: ltr;
  392. }
  393. ::-webkit-search-decoration {
  394. -webkit-appearance: none;
  395. }
  396. ::-webkit-color-swatch-wrapper {
  397. padding: 0;
  398. }
  399. ::-webkit-file-upload-button {
  400. font: inherit;
  401. }
  402. ::file-selector-button {
  403. font: inherit;
  404. }
  405. ::-webkit-file-upload-button {
  406. font: inherit;
  407. -webkit-appearance: button;
  408. }
  409. output {
  410. display: inline-block;
  411. }
  412. iframe {
  413. border: 0;
  414. }
  415. summary {
  416. display: list-item;
  417. cursor: pointer;
  418. }
  419. progress {
  420. vertical-align: baseline;
  421. }
  422. [hidden] {
  423. display: none !important;
  424. }
  425. .lead {
  426. font-size: 1.015625rem;
  427. font-weight: 300;
  428. }
  429. .display-1 {
  430. font-size: calc(1.725rem + 5.7vw);
  431. font-weight: 300;
  432. line-height: 1.2;
  433. }
  434. @media (min-width: 1200px) {
  435. .display-1 {
  436. font-size: 6rem;
  437. }
  438. }
  439. .display-2 {
  440. font-size: calc(1.675rem + 5.1vw);
  441. font-weight: 300;
  442. line-height: 1.2;
  443. }
  444. @media (min-width: 1200px) {
  445. .display-2 {
  446. font-size: 5.5rem;
  447. }
  448. }
  449. .display-3 {
  450. font-size: calc(1.575rem + 3.9vw);
  451. font-weight: 300;
  452. line-height: 1.2;
  453. }
  454. @media (min-width: 1200px) {
  455. .display-3 {
  456. font-size: 4.5rem;
  457. }
  458. }
  459. .display-4 {
  460. font-size: calc(1.475rem + 2.7vw);
  461. font-weight: 300;
  462. line-height: 1.2;
  463. }
  464. @media (min-width: 1200px) {
  465. .display-4 {
  466. font-size: 3.5rem;
  467. }
  468. }
  469. .display-5 {
  470. font-size: calc(1.425rem + 2.1vw);
  471. font-weight: 300;
  472. line-height: 1.2;
  473. }
  474. @media (min-width: 1200px) {
  475. .display-5 {
  476. font-size: 3rem;
  477. }
  478. }
  479. .display-6 {
  480. font-size: calc(1.375rem + 1.5vw);
  481. font-weight: 300;
  482. line-height: 1.2;
  483. }
  484. @media (min-width: 1200px) {
  485. .display-6 {
  486. font-size: 2.5rem;
  487. }
  488. }
  489. .list-unstyled {
  490. padding-right: 0;
  491. list-style: none;
  492. }
  493. .list-inline {
  494. padding-right: 0;
  495. list-style: none;
  496. }
  497. .list-inline-item {
  498. display: inline-block;
  499. }
  500. .list-inline-item:not(:last-child) {
  501. margin-left: 0.5rem;
  502. }
  503. .initialism {
  504. font-size: 80%;
  505. text-transform: uppercase;
  506. }
  507. .blockquote {
  508. margin-bottom: 1rem;
  509. font-size: 1.015625rem;
  510. }
  511. .blockquote > :last-child {
  512. margin-bottom: 0;
  513. }
  514. .blockquote-footer {
  515. margin-top: -1rem;
  516. margin-bottom: 1rem;
  517. font-size: 80%;
  518. color: #74788d;
  519. }
  520. .blockquote-footer::before {
  521. content: "— ";
  522. }
  523. .img-fluid {
  524. max-width: 100%;
  525. height: auto;
  526. }
  527. .img-thumbnail {
  528. padding: 0.25rem;
  529. background-color: #f8f8fb;
  530. border: 1px solid #f6f6f6;
  531. border-radius: 0.25rem;
  532. max-width: 100%;
  533. height: auto;
  534. }
  535. .figure {
  536. display: inline-block;
  537. }
  538. .figure-img {
  539. margin-bottom: 0.5rem;
  540. line-height: 1;
  541. }
  542. .figure-caption {
  543. font-size: 80%;
  544. color: #74788d;
  545. }
  546. .container,
  547. .container-fluid,
  548. .container-xxl,
  549. .container-xl,
  550. .container-lg,
  551. .container-md,
  552. .container-sm {
  553. width: 100%;
  554. padding-left: var(--bs-gutter-x, 12px);
  555. padding-right: var(--bs-gutter-x, 12px);
  556. margin-left: auto;
  557. margin-right: auto;
  558. }
  559. @media (min-width: 576px) {
  560. .container-sm, .container {
  561. max-width: 540px;
  562. }
  563. }
  564. @media (min-width: 768px) {
  565. .container-md, .container-sm, .container {
  566. max-width: 720px;
  567. }
  568. }
  569. @media (min-width: 992px) {
  570. .container-lg, .container-md, .container-sm, .container {
  571. max-width: 960px;
  572. }
  573. }
  574. @media (min-width: 1200px) {
  575. .container-xl, .container-lg, .container-md, .container-sm, .container {
  576. max-width: 1140px;
  577. }
  578. }
  579. @media (min-width: 1400px) {
  580. .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
  581. max-width: 1320px;
  582. }
  583. }
  584. .row {
  585. --bs-gutter-x: 24px;
  586. --bs-gutter-y: 0;
  587. display: -webkit-box;
  588. display: -ms-flexbox;
  589. display: flex;
  590. -ms-flex-wrap: wrap;
  591. flex-wrap: wrap;
  592. margin-top: calc(-1 * var(--bs-gutter-y));
  593. margin-left: calc(-0.5 * var(--bs-gutter-x));
  594. margin-right: calc(-0.5 * var(--bs-gutter-x));
  595. }
  596. .row > * {
  597. -ms-flex-negative: 0;
  598. flex-shrink: 0;
  599. width: 100%;
  600. max-width: 100%;
  601. padding-left: calc(var(--bs-gutter-x) * 0.5);
  602. padding-right: calc(var(--bs-gutter-x) * 0.5);
  603. margin-top: var(--bs-gutter-y);
  604. }
  605. .col {
  606. -webkit-box-flex: 1;
  607. -ms-flex: 1 0 0%;
  608. flex: 1 0 0%;
  609. }
  610. .row-cols-auto > * {
  611. -webkit-box-flex: 0;
  612. -ms-flex: 0 0 auto;
  613. flex: 0 0 auto;
  614. width: auto;
  615. }
  616. .row-cols-1 > * {
  617. -webkit-box-flex: 0;
  618. -ms-flex: 0 0 auto;
  619. flex: 0 0 auto;
  620. width: 100%;
  621. }
  622. .row-cols-2 > * {
  623. -webkit-box-flex: 0;
  624. -ms-flex: 0 0 auto;
  625. flex: 0 0 auto;
  626. width: 50%;
  627. }
  628. .row-cols-3 > * {
  629. -webkit-box-flex: 0;
  630. -ms-flex: 0 0 auto;
  631. flex: 0 0 auto;
  632. width: 33.3333333333%;
  633. }
  634. .row-cols-4 > * {
  635. -webkit-box-flex: 0;
  636. -ms-flex: 0 0 auto;
  637. flex: 0 0 auto;
  638. width: 25%;
  639. }
  640. .row-cols-5 > * {
  641. -webkit-box-flex: 0;
  642. -ms-flex: 0 0 auto;
  643. flex: 0 0 auto;
  644. width: 20%;
  645. }
  646. .row-cols-6 > * {
  647. -webkit-box-flex: 0;
  648. -ms-flex: 0 0 auto;
  649. flex: 0 0 auto;
  650. width: 16.6666666667%;
  651. }
  652. .col-auto {
  653. -webkit-box-flex: 0;
  654. -ms-flex: 0 0 auto;
  655. flex: 0 0 auto;
  656. width: auto;
  657. }
  658. .col-1 {
  659. -webkit-box-flex: 0;
  660. -ms-flex: 0 0 auto;
  661. flex: 0 0 auto;
  662. width: 8.33333333%;
  663. }
  664. .col-2 {
  665. -webkit-box-flex: 0;
  666. -ms-flex: 0 0 auto;
  667. flex: 0 0 auto;
  668. width: 16.66666667%;
  669. }
  670. .col-3 {
  671. -webkit-box-flex: 0;
  672. -ms-flex: 0 0 auto;
  673. flex: 0 0 auto;
  674. width: 25%;
  675. }
  676. .col-4 {
  677. -webkit-box-flex: 0;
  678. -ms-flex: 0 0 auto;
  679. flex: 0 0 auto;
  680. width: 33.33333333%;
  681. }
  682. .col-5 {
  683. -webkit-box-flex: 0;
  684. -ms-flex: 0 0 auto;
  685. flex: 0 0 auto;
  686. width: 41.66666667%;
  687. }
  688. .col-6 {
  689. -webkit-box-flex: 0;
  690. -ms-flex: 0 0 auto;
  691. flex: 0 0 auto;
  692. width: 50%;
  693. }
  694. .col-7 {
  695. -webkit-box-flex: 0;
  696. -ms-flex: 0 0 auto;
  697. flex: 0 0 auto;
  698. width: 58.33333333%;
  699. }
  700. .col-8 {
  701. -webkit-box-flex: 0;
  702. -ms-flex: 0 0 auto;
  703. flex: 0 0 auto;
  704. width: 66.66666667%;
  705. }
  706. .col-9 {
  707. -webkit-box-flex: 0;
  708. -ms-flex: 0 0 auto;
  709. flex: 0 0 auto;
  710. width: 75%;
  711. }
  712. .col-10 {
  713. -webkit-box-flex: 0;
  714. -ms-flex: 0 0 auto;
  715. flex: 0 0 auto;
  716. width: 83.33333333%;
  717. }
  718. .col-11 {
  719. -webkit-box-flex: 0;
  720. -ms-flex: 0 0 auto;
  721. flex: 0 0 auto;
  722. width: 91.66666667%;
  723. }
  724. .col-12 {
  725. -webkit-box-flex: 0;
  726. -ms-flex: 0 0 auto;
  727. flex: 0 0 auto;
  728. width: 100%;
  729. }
  730. .offset-1 {
  731. margin-right: 8.33333333%;
  732. }
  733. .offset-2 {
  734. margin-right: 16.66666667%;
  735. }
  736. .offset-3 {
  737. margin-right: 25%;
  738. }
  739. .offset-4 {
  740. margin-right: 33.33333333%;
  741. }
  742. .offset-5 {
  743. margin-right: 41.66666667%;
  744. }
  745. .offset-6 {
  746. margin-right: 50%;
  747. }
  748. .offset-7 {
  749. margin-right: 58.33333333%;
  750. }
  751. .offset-8 {
  752. margin-right: 66.66666667%;
  753. }
  754. .offset-9 {
  755. margin-right: 75%;
  756. }
  757. .offset-10 {
  758. margin-right: 83.33333333%;
  759. }
  760. .offset-11 {
  761. margin-right: 91.66666667%;
  762. }
  763. .g-0,
  764. .gx-0 {
  765. --bs-gutter-x: 0;
  766. }
  767. .g-0,
  768. .gy-0 {
  769. --bs-gutter-y: 0;
  770. }
  771. .g-1,
  772. .gx-1 {
  773. --bs-gutter-x: 0.25rem;
  774. }
  775. .g-1,
  776. .gy-1 {
  777. --bs-gutter-y: 0.25rem;
  778. }
  779. .g-2,
  780. .gx-2 {
  781. --bs-gutter-x: 0.5rem;
  782. }
  783. .g-2,
  784. .gy-2 {
  785. --bs-gutter-y: 0.5rem;
  786. }
  787. .g-3,
  788. .gx-3 {
  789. --bs-gutter-x: 1rem;
  790. }
  791. .g-3,
  792. .gy-3 {
  793. --bs-gutter-y: 1rem;
  794. }
  795. .g-4,
  796. .gx-4 {
  797. --bs-gutter-x: 1.5rem;
  798. }
  799. .g-4,
  800. .gy-4 {
  801. --bs-gutter-y: 1.5rem;
  802. }
  803. .g-5,
  804. .gx-5 {
  805. --bs-gutter-x: 3rem;
  806. }
  807. .g-5,
  808. .gy-5 {
  809. --bs-gutter-y: 3rem;
  810. }
  811. @media (min-width: 576px) {
  812. .col-sm {
  813. -webkit-box-flex: 1;
  814. -ms-flex: 1 0 0%;
  815. flex: 1 0 0%;
  816. }
  817. .row-cols-sm-auto > * {
  818. -webkit-box-flex: 0;
  819. -ms-flex: 0 0 auto;
  820. flex: 0 0 auto;
  821. width: auto;
  822. }
  823. .row-cols-sm-1 > * {
  824. -webkit-box-flex: 0;
  825. -ms-flex: 0 0 auto;
  826. flex: 0 0 auto;
  827. width: 100%;
  828. }
  829. .row-cols-sm-2 > * {
  830. -webkit-box-flex: 0;
  831. -ms-flex: 0 0 auto;
  832. flex: 0 0 auto;
  833. width: 50%;
  834. }
  835. .row-cols-sm-3 > * {
  836. -webkit-box-flex: 0;
  837. -ms-flex: 0 0 auto;
  838. flex: 0 0 auto;
  839. width: 33.3333333333%;
  840. }
  841. .row-cols-sm-4 > * {
  842. -webkit-box-flex: 0;
  843. -ms-flex: 0 0 auto;
  844. flex: 0 0 auto;
  845. width: 25%;
  846. }
  847. .row-cols-sm-5 > * {
  848. -webkit-box-flex: 0;
  849. -ms-flex: 0 0 auto;
  850. flex: 0 0 auto;
  851. width: 20%;
  852. }
  853. .row-cols-sm-6 > * {
  854. -webkit-box-flex: 0;
  855. -ms-flex: 0 0 auto;
  856. flex: 0 0 auto;
  857. width: 16.6666666667%;
  858. }
  859. .col-sm-auto {
  860. -webkit-box-flex: 0;
  861. -ms-flex: 0 0 auto;
  862. flex: 0 0 auto;
  863. width: auto;
  864. }
  865. .col-sm-1 {
  866. -webkit-box-flex: 0;
  867. -ms-flex: 0 0 auto;
  868. flex: 0 0 auto;
  869. width: 8.33333333%;
  870. }
  871. .col-sm-2 {
  872. -webkit-box-flex: 0;
  873. -ms-flex: 0 0 auto;
  874. flex: 0 0 auto;
  875. width: 16.66666667%;
  876. }
  877. .col-sm-3 {
  878. -webkit-box-flex: 0;
  879. -ms-flex: 0 0 auto;
  880. flex: 0 0 auto;
  881. width: 25%;
  882. }
  883. .col-sm-4 {
  884. -webkit-box-flex: 0;
  885. -ms-flex: 0 0 auto;
  886. flex: 0 0 auto;
  887. width: 33.33333333%;
  888. }
  889. .col-sm-5 {
  890. -webkit-box-flex: 0;
  891. -ms-flex: 0 0 auto;
  892. flex: 0 0 auto;
  893. width: 41.66666667%;
  894. }
  895. .col-sm-6 {
  896. -webkit-box-flex: 0;
  897. -ms-flex: 0 0 auto;
  898. flex: 0 0 auto;
  899. width: 50%;
  900. }
  901. .col-sm-7 {
  902. -webkit-box-flex: 0;
  903. -ms-flex: 0 0 auto;
  904. flex: 0 0 auto;
  905. width: 58.33333333%;
  906. }
  907. .col-sm-8 {
  908. -webkit-box-flex: 0;
  909. -ms-flex: 0 0 auto;
  910. flex: 0 0 auto;
  911. width: 66.66666667%;
  912. }
  913. .col-sm-9 {
  914. -webkit-box-flex: 0;
  915. -ms-flex: 0 0 auto;
  916. flex: 0 0 auto;
  917. width: 75%;
  918. }
  919. .col-sm-10 {
  920. -webkit-box-flex: 0;
  921. -ms-flex: 0 0 auto;
  922. flex: 0 0 auto;
  923. width: 83.33333333%;
  924. }
  925. .col-sm-11 {
  926. -webkit-box-flex: 0;
  927. -ms-flex: 0 0 auto;
  928. flex: 0 0 auto;
  929. width: 91.66666667%;
  930. }
  931. .col-sm-12 {
  932. -webkit-box-flex: 0;
  933. -ms-flex: 0 0 auto;
  934. flex: 0 0 auto;
  935. width: 100%;
  936. }
  937. .offset-sm-0 {
  938. margin-right: 0;
  939. }
  940. .offset-sm-1 {
  941. margin-right: 8.33333333%;
  942. }
  943. .offset-sm-2 {
  944. margin-right: 16.66666667%;
  945. }
  946. .offset-sm-3 {
  947. margin-right: 25%;
  948. }
  949. .offset-sm-4 {
  950. margin-right: 33.33333333%;
  951. }
  952. .offset-sm-5 {
  953. margin-right: 41.66666667%;
  954. }
  955. .offset-sm-6 {
  956. margin-right: 50%;
  957. }
  958. .offset-sm-7 {
  959. margin-right: 58.33333333%;
  960. }
  961. .offset-sm-8 {
  962. margin-right: 66.66666667%;
  963. }
  964. .offset-sm-9 {
  965. margin-right: 75%;
  966. }
  967. .offset-sm-10 {
  968. margin-right: 83.33333333%;
  969. }
  970. .offset-sm-11 {
  971. margin-right: 91.66666667%;
  972. }
  973. .g-sm-0,
  974. .gx-sm-0 {
  975. --bs-gutter-x: 0;
  976. }
  977. .g-sm-0,
  978. .gy-sm-0 {
  979. --bs-gutter-y: 0;
  980. }
  981. .g-sm-1,
  982. .gx-sm-1 {
  983. --bs-gutter-x: 0.25rem;
  984. }
  985. .g-sm-1,
  986. .gy-sm-1 {
  987. --bs-gutter-y: 0.25rem;
  988. }
  989. .g-sm-2,
  990. .gx-sm-2 {
  991. --bs-gutter-x: 0.5rem;
  992. }
  993. .g-sm-2,
  994. .gy-sm-2 {
  995. --bs-gutter-y: 0.5rem;
  996. }
  997. .g-sm-3,
  998. .gx-sm-3 {
  999. --bs-gutter-x: 1rem;
  1000. }
  1001. .g-sm-3,
  1002. .gy-sm-3 {
  1003. --bs-gutter-y: 1rem;
  1004. }
  1005. .g-sm-4,
  1006. .gx-sm-4 {
  1007. --bs-gutter-x: 1.5rem;
  1008. }
  1009. .g-sm-4,
  1010. .gy-sm-4 {
  1011. --bs-gutter-y: 1.5rem;
  1012. }
  1013. .g-sm-5,
  1014. .gx-sm-5 {
  1015. --bs-gutter-x: 3rem;
  1016. }
  1017. .g-sm-5,
  1018. .gy-sm-5 {
  1019. --bs-gutter-y: 3rem;
  1020. }
  1021. }
  1022. @media (min-width: 768px) {
  1023. .col-md {
  1024. -webkit-box-flex: 1;
  1025. -ms-flex: 1 0 0%;
  1026. flex: 1 0 0%;
  1027. }
  1028. .row-cols-md-auto > * {
  1029. -webkit-box-flex: 0;
  1030. -ms-flex: 0 0 auto;
  1031. flex: 0 0 auto;
  1032. width: auto;
  1033. }
  1034. .row-cols-md-1 > * {
  1035. -webkit-box-flex: 0;
  1036. -ms-flex: 0 0 auto;
  1037. flex: 0 0 auto;
  1038. width: 100%;
  1039. }
  1040. .row-cols-md-2 > * {
  1041. -webkit-box-flex: 0;
  1042. -ms-flex: 0 0 auto;
  1043. flex: 0 0 auto;
  1044. width: 50%;
  1045. }
  1046. .row-cols-md-3 > * {
  1047. -webkit-box-flex: 0;
  1048. -ms-flex: 0 0 auto;
  1049. flex: 0 0 auto;
  1050. width: 33.3333333333%;
  1051. }
  1052. .row-cols-md-4 > * {
  1053. -webkit-box-flex: 0;
  1054. -ms-flex: 0 0 auto;
  1055. flex: 0 0 auto;
  1056. width: 25%;
  1057. }
  1058. .row-cols-md-5 > * {
  1059. -webkit-box-flex: 0;
  1060. -ms-flex: 0 0 auto;
  1061. flex: 0 0 auto;
  1062. width: 20%;
  1063. }
  1064. .row-cols-md-6 > * {
  1065. -webkit-box-flex: 0;
  1066. -ms-flex: 0 0 auto;
  1067. flex: 0 0 auto;
  1068. width: 16.6666666667%;
  1069. }
  1070. .col-md-auto {
  1071. -webkit-box-flex: 0;
  1072. -ms-flex: 0 0 auto;
  1073. flex: 0 0 auto;
  1074. width: auto;
  1075. }
  1076. .col-md-1 {
  1077. -webkit-box-flex: 0;
  1078. -ms-flex: 0 0 auto;
  1079. flex: 0 0 auto;
  1080. width: 8.33333333%;
  1081. }
  1082. .col-md-2 {
  1083. -webkit-box-flex: 0;
  1084. -ms-flex: 0 0 auto;
  1085. flex: 0 0 auto;
  1086. width: 16.66666667%;
  1087. }
  1088. .col-md-3 {
  1089. -webkit-box-flex: 0;
  1090. -ms-flex: 0 0 auto;
  1091. flex: 0 0 auto;
  1092. width: 25%;
  1093. }
  1094. .col-md-4 {
  1095. -webkit-box-flex: 0;
  1096. -ms-flex: 0 0 auto;
  1097. flex: 0 0 auto;
  1098. width: 33.33333333%;
  1099. }
  1100. .col-md-5 {
  1101. -webkit-box-flex: 0;
  1102. -ms-flex: 0 0 auto;
  1103. flex: 0 0 auto;
  1104. width: 41.66666667%;
  1105. }
  1106. .col-md-6 {
  1107. -webkit-box-flex: 0;
  1108. -ms-flex: 0 0 auto;
  1109. flex: 0 0 auto;
  1110. width: 50%;
  1111. }
  1112. .col-md-7 {
  1113. -webkit-box-flex: 0;
  1114. -ms-flex: 0 0 auto;
  1115. flex: 0 0 auto;
  1116. width: 58.33333333%;
  1117. }
  1118. .col-md-8 {
  1119. -webkit-box-flex: 0;
  1120. -ms-flex: 0 0 auto;
  1121. flex: 0 0 auto;
  1122. width: 66.66666667%;
  1123. }
  1124. .col-md-9 {
  1125. -webkit-box-flex: 0;
  1126. -ms-flex: 0 0 auto;
  1127. flex: 0 0 auto;
  1128. width: 75%;
  1129. }
  1130. .col-md-10 {
  1131. -webkit-box-flex: 0;
  1132. -ms-flex: 0 0 auto;
  1133. flex: 0 0 auto;
  1134. width: 83.33333333%;
  1135. }
  1136. .col-md-11 {
  1137. -webkit-box-flex: 0;
  1138. -ms-flex: 0 0 auto;
  1139. flex: 0 0 auto;
  1140. width: 91.66666667%;
  1141. }
  1142. .col-md-12 {
  1143. -webkit-box-flex: 0;
  1144. -ms-flex: 0 0 auto;
  1145. flex: 0 0 auto;
  1146. width: 100%;
  1147. }
  1148. .offset-md-0 {
  1149. margin-right: 0;
  1150. }
  1151. .offset-md-1 {
  1152. margin-right: 8.33333333%;
  1153. }
  1154. .offset-md-2 {
  1155. margin-right: 16.66666667%;
  1156. }
  1157. .offset-md-3 {
  1158. margin-right: 25%;
  1159. }
  1160. .offset-md-4 {
  1161. margin-right: 33.33333333%;
  1162. }
  1163. .offset-md-5 {
  1164. margin-right: 41.66666667%;
  1165. }
  1166. .offset-md-6 {
  1167. margin-right: 50%;
  1168. }
  1169. .offset-md-7 {
  1170. margin-right: 58.33333333%;
  1171. }
  1172. .offset-md-8 {
  1173. margin-right: 66.66666667%;
  1174. }
  1175. .offset-md-9 {
  1176. margin-right: 75%;
  1177. }
  1178. .offset-md-10 {
  1179. margin-right: 83.33333333%;
  1180. }
  1181. .offset-md-11 {
  1182. margin-right: 91.66666667%;
  1183. }
  1184. .g-md-0,
  1185. .gx-md-0 {
  1186. --bs-gutter-x: 0;
  1187. }
  1188. .g-md-0,
  1189. .gy-md-0 {
  1190. --bs-gutter-y: 0;
  1191. }
  1192. .g-md-1,
  1193. .gx-md-1 {
  1194. --bs-gutter-x: 0.25rem;
  1195. }
  1196. .g-md-1,
  1197. .gy-md-1 {
  1198. --bs-gutter-y: 0.25rem;
  1199. }
  1200. .g-md-2,
  1201. .gx-md-2 {
  1202. --bs-gutter-x: 0.5rem;
  1203. }
  1204. .g-md-2,
  1205. .gy-md-2 {
  1206. --bs-gutter-y: 0.5rem;
  1207. }
  1208. .g-md-3,
  1209. .gx-md-3 {
  1210. --bs-gutter-x: 1rem;
  1211. }
  1212. .g-md-3,
  1213. .gy-md-3 {
  1214. --bs-gutter-y: 1rem;
  1215. }
  1216. .g-md-4,
  1217. .gx-md-4 {
  1218. --bs-gutter-x: 1.5rem;
  1219. }
  1220. .g-md-4,
  1221. .gy-md-4 {
  1222. --bs-gutter-y: 1.5rem;
  1223. }
  1224. .g-md-5,
  1225. .gx-md-5 {
  1226. --bs-gutter-x: 3rem;
  1227. }
  1228. .g-md-5,
  1229. .gy-md-5 {
  1230. --bs-gutter-y: 3rem;
  1231. }
  1232. }
  1233. @media (min-width: 992px) {
  1234. .col-lg {
  1235. -webkit-box-flex: 1;
  1236. -ms-flex: 1 0 0%;
  1237. flex: 1 0 0%;
  1238. }
  1239. .row-cols-lg-auto > * {
  1240. -webkit-box-flex: 0;
  1241. -ms-flex: 0 0 auto;
  1242. flex: 0 0 auto;
  1243. width: auto;
  1244. }
  1245. .row-cols-lg-1 > * {
  1246. -webkit-box-flex: 0;
  1247. -ms-flex: 0 0 auto;
  1248. flex: 0 0 auto;
  1249. width: 100%;
  1250. }
  1251. .row-cols-lg-2 > * {
  1252. -webkit-box-flex: 0;
  1253. -ms-flex: 0 0 auto;
  1254. flex: 0 0 auto;
  1255. width: 50%;
  1256. }
  1257. .row-cols-lg-3 > * {
  1258. -webkit-box-flex: 0;
  1259. -ms-flex: 0 0 auto;
  1260. flex: 0 0 auto;
  1261. width: 33.3333333333%;
  1262. }
  1263. .row-cols-lg-4 > * {
  1264. -webkit-box-flex: 0;
  1265. -ms-flex: 0 0 auto;
  1266. flex: 0 0 auto;
  1267. width: 25%;
  1268. }
  1269. .row-cols-lg-5 > * {
  1270. -webkit-box-flex: 0;
  1271. -ms-flex: 0 0 auto;
  1272. flex: 0 0 auto;
  1273. width: 20%;
  1274. }
  1275. .row-cols-lg-6 > * {
  1276. -webkit-box-flex: 0;
  1277. -ms-flex: 0 0 auto;
  1278. flex: 0 0 auto;
  1279. width: 16.6666666667%;
  1280. }
  1281. .col-lg-auto {
  1282. -webkit-box-flex: 0;
  1283. -ms-flex: 0 0 auto;
  1284. flex: 0 0 auto;
  1285. width: auto;
  1286. }
  1287. .col-lg-1 {
  1288. -webkit-box-flex: 0;
  1289. -ms-flex: 0 0 auto;
  1290. flex: 0 0 auto;
  1291. width: 8.33333333%;
  1292. }
  1293. .col-lg-2 {
  1294. -webkit-box-flex: 0;
  1295. -ms-flex: 0 0 auto;
  1296. flex: 0 0 auto;
  1297. width: 16.66666667%;
  1298. }
  1299. .col-lg-3 {
  1300. -webkit-box-flex: 0;
  1301. -ms-flex: 0 0 auto;
  1302. flex: 0 0 auto;
  1303. width: 25%;
  1304. }
  1305. .col-lg-4 {
  1306. -webkit-box-flex: 0;
  1307. -ms-flex: 0 0 auto;
  1308. flex: 0 0 auto;
  1309. width: 33.33333333%;
  1310. }
  1311. .col-lg-5 {
  1312. -webkit-box-flex: 0;
  1313. -ms-flex: 0 0 auto;
  1314. flex: 0 0 auto;
  1315. width: 41.66666667%;
  1316. }
  1317. .col-lg-6 {
  1318. -webkit-box-flex: 0;
  1319. -ms-flex: 0 0 auto;
  1320. flex: 0 0 auto;
  1321. width: 50%;
  1322. }
  1323. .col-lg-7 {
  1324. -webkit-box-flex: 0;
  1325. -ms-flex: 0 0 auto;
  1326. flex: 0 0 auto;
  1327. width: 58.33333333%;
  1328. }
  1329. .col-lg-8 {
  1330. -webkit-box-flex: 0;
  1331. -ms-flex: 0 0 auto;
  1332. flex: 0 0 auto;
  1333. width: 66.66666667%;
  1334. }
  1335. .col-lg-9 {
  1336. -webkit-box-flex: 0;
  1337. -ms-flex: 0 0 auto;
  1338. flex: 0 0 auto;
  1339. width: 75%;
  1340. }
  1341. .col-lg-10 {
  1342. -webkit-box-flex: 0;
  1343. -ms-flex: 0 0 auto;
  1344. flex: 0 0 auto;
  1345. width: 83.33333333%;
  1346. }
  1347. .col-lg-11 {
  1348. -webkit-box-flex: 0;
  1349. -ms-flex: 0 0 auto;
  1350. flex: 0 0 auto;
  1351. width: 91.66666667%;
  1352. }
  1353. .col-lg-12 {
  1354. -webkit-box-flex: 0;
  1355. -ms-flex: 0 0 auto;
  1356. flex: 0 0 auto;
  1357. width: 100%;
  1358. }
  1359. .offset-lg-0 {
  1360. margin-right: 0;
  1361. }
  1362. .offset-lg-1 {
  1363. margin-right: 8.33333333%;
  1364. }
  1365. .offset-lg-2 {
  1366. margin-right: 16.66666667%;
  1367. }
  1368. .offset-lg-3 {
  1369. margin-right: 25%;
  1370. }
  1371. .offset-lg-4 {
  1372. margin-right: 33.33333333%;
  1373. }
  1374. .offset-lg-5 {
  1375. margin-right: 41.66666667%;
  1376. }
  1377. .offset-lg-6 {
  1378. margin-right: 50%;
  1379. }
  1380. .offset-lg-7 {
  1381. margin-right: 58.33333333%;
  1382. }
  1383. .offset-lg-8 {
  1384. margin-right: 66.66666667%;
  1385. }
  1386. .offset-lg-9 {
  1387. margin-right: 75%;
  1388. }
  1389. .offset-lg-10 {
  1390. margin-right: 83.33333333%;
  1391. }
  1392. .offset-lg-11 {
  1393. margin-right: 91.66666667%;
  1394. }
  1395. .g-lg-0,
  1396. .gx-lg-0 {
  1397. --bs-gutter-x: 0;
  1398. }
  1399. .g-lg-0,
  1400. .gy-lg-0 {
  1401. --bs-gutter-y: 0;
  1402. }
  1403. .g-lg-1,
  1404. .gx-lg-1 {
  1405. --bs-gutter-x: 0.25rem;
  1406. }
  1407. .g-lg-1,
  1408. .gy-lg-1 {
  1409. --bs-gutter-y: 0.25rem;
  1410. }
  1411. .g-lg-2,
  1412. .gx-lg-2 {
  1413. --bs-gutter-x: 0.5rem;
  1414. }
  1415. .g-lg-2,
  1416. .gy-lg-2 {
  1417. --bs-gutter-y: 0.5rem;
  1418. }
  1419. .g-lg-3,
  1420. .gx-lg-3 {
  1421. --bs-gutter-x: 1rem;
  1422. }
  1423. .g-lg-3,
  1424. .gy-lg-3 {
  1425. --bs-gutter-y: 1rem;
  1426. }
  1427. .g-lg-4,
  1428. .gx-lg-4 {
  1429. --bs-gutter-x: 1.5rem;
  1430. }
  1431. .g-lg-4,
  1432. .gy-lg-4 {
  1433. --bs-gutter-y: 1.5rem;
  1434. }
  1435. .g-lg-5,
  1436. .gx-lg-5 {
  1437. --bs-gutter-x: 3rem;
  1438. }
  1439. .g-lg-5,
  1440. .gy-lg-5 {
  1441. --bs-gutter-y: 3rem;
  1442. }
  1443. }
  1444. @media (min-width: 1200px) {
  1445. .col-xl {
  1446. -webkit-box-flex: 1;
  1447. -ms-flex: 1 0 0%;
  1448. flex: 1 0 0%;
  1449. }
  1450. .row-cols-xl-auto > * {
  1451. -webkit-box-flex: 0;
  1452. -ms-flex: 0 0 auto;
  1453. flex: 0 0 auto;
  1454. width: auto;
  1455. }
  1456. .row-cols-xl-1 > * {
  1457. -webkit-box-flex: 0;
  1458. -ms-flex: 0 0 auto;
  1459. flex: 0 0 auto;
  1460. width: 100%;
  1461. }
  1462. .row-cols-xl-2 > * {
  1463. -webkit-box-flex: 0;
  1464. -ms-flex: 0 0 auto;
  1465. flex: 0 0 auto;
  1466. width: 50%;
  1467. }
  1468. .row-cols-xl-3 > * {
  1469. -webkit-box-flex: 0;
  1470. -ms-flex: 0 0 auto;
  1471. flex: 0 0 auto;
  1472. width: 33.3333333333%;
  1473. }
  1474. .row-cols-xl-4 > * {
  1475. -webkit-box-flex: 0;
  1476. -ms-flex: 0 0 auto;
  1477. flex: 0 0 auto;
  1478. width: 25%;
  1479. }
  1480. .row-cols-xl-5 > * {
  1481. -webkit-box-flex: 0;
  1482. -ms-flex: 0 0 auto;
  1483. flex: 0 0 auto;
  1484. width: 20%;
  1485. }
  1486. .row-cols-xl-6 > * {
  1487. -webkit-box-flex: 0;
  1488. -ms-flex: 0 0 auto;
  1489. flex: 0 0 auto;
  1490. width: 16.6666666667%;
  1491. }
  1492. .col-xl-auto {
  1493. -webkit-box-flex: 0;
  1494. -ms-flex: 0 0 auto;
  1495. flex: 0 0 auto;
  1496. width: auto;
  1497. }
  1498. .col-xl-1 {
  1499. -webkit-box-flex: 0;
  1500. -ms-flex: 0 0 auto;
  1501. flex: 0 0 auto;
  1502. width: 8.33333333%;
  1503. }
  1504. .col-xl-2 {
  1505. -webkit-box-flex: 0;
  1506. -ms-flex: 0 0 auto;
  1507. flex: 0 0 auto;
  1508. width: 16.66666667%;
  1509. }
  1510. .col-xl-3 {
  1511. -webkit-box-flex: 0;
  1512. -ms-flex: 0 0 auto;
  1513. flex: 0 0 auto;
  1514. width: 25%;
  1515. }
  1516. .col-xl-4 {
  1517. -webkit-box-flex: 0;
  1518. -ms-flex: 0 0 auto;
  1519. flex: 0 0 auto;
  1520. width: 33.33333333%;
  1521. }
  1522. .col-xl-5 {
  1523. -webkit-box-flex: 0;
  1524. -ms-flex: 0 0 auto;
  1525. flex: 0 0 auto;
  1526. width: 41.66666667%;
  1527. }
  1528. .col-xl-6 {
  1529. -webkit-box-flex: 0;
  1530. -ms-flex: 0 0 auto;
  1531. flex: 0 0 auto;
  1532. width: 50%;
  1533. }
  1534. .col-xl-7 {
  1535. -webkit-box-flex: 0;
  1536. -ms-flex: 0 0 auto;
  1537. flex: 0 0 auto;
  1538. width: 58.33333333%;
  1539. }
  1540. .col-xl-8 {
  1541. -webkit-box-flex: 0;
  1542. -ms-flex: 0 0 auto;
  1543. flex: 0 0 auto;
  1544. width: 66.66666667%;
  1545. }
  1546. .col-xl-9 {
  1547. -webkit-box-flex: 0;
  1548. -ms-flex: 0 0 auto;
  1549. flex: 0 0 auto;
  1550. width: 75%;
  1551. }
  1552. .col-xl-10 {
  1553. -webkit-box-flex: 0;
  1554. -ms-flex: 0 0 auto;
  1555. flex: 0 0 auto;
  1556. width: 83.33333333%;
  1557. }
  1558. .col-xl-11 {
  1559. -webkit-box-flex: 0;
  1560. -ms-flex: 0 0 auto;
  1561. flex: 0 0 auto;
  1562. width: 91.66666667%;
  1563. }
  1564. .col-xl-12 {
  1565. -webkit-box-flex: 0;
  1566. -ms-flex: 0 0 auto;
  1567. flex: 0 0 auto;
  1568. width: 100%;
  1569. }
  1570. .offset-xl-0 {
  1571. margin-right: 0;
  1572. }
  1573. .offset-xl-1 {
  1574. margin-right: 8.33333333%;
  1575. }
  1576. .offset-xl-2 {
  1577. margin-right: 16.66666667%;
  1578. }
  1579. .offset-xl-3 {
  1580. margin-right: 25%;
  1581. }
  1582. .offset-xl-4 {
  1583. margin-right: 33.33333333%;
  1584. }
  1585. .offset-xl-5 {
  1586. margin-right: 41.66666667%;
  1587. }
  1588. .offset-xl-6 {
  1589. margin-right: 50%;
  1590. }
  1591. .offset-xl-7 {
  1592. margin-right: 58.33333333%;
  1593. }
  1594. .offset-xl-8 {
  1595. margin-right: 66.66666667%;
  1596. }
  1597. .offset-xl-9 {
  1598. margin-right: 75%;
  1599. }
  1600. .offset-xl-10 {
  1601. margin-right: 83.33333333%;
  1602. }
  1603. .offset-xl-11 {
  1604. margin-right: 91.66666667%;
  1605. }
  1606. .g-xl-0,
  1607. .gx-xl-0 {
  1608. --bs-gutter-x: 0;
  1609. }
  1610. .g-xl-0,
  1611. .gy-xl-0 {
  1612. --bs-gutter-y: 0;
  1613. }
  1614. .g-xl-1,
  1615. .gx-xl-1 {
  1616. --bs-gutter-x: 0.25rem;
  1617. }
  1618. .g-xl-1,
  1619. .gy-xl-1 {
  1620. --bs-gutter-y: 0.25rem;
  1621. }
  1622. .g-xl-2,
  1623. .gx-xl-2 {
  1624. --bs-gutter-x: 0.5rem;
  1625. }
  1626. .g-xl-2,
  1627. .gy-xl-2 {
  1628. --bs-gutter-y: 0.5rem;
  1629. }
  1630. .g-xl-3,
  1631. .gx-xl-3 {
  1632. --bs-gutter-x: 1rem;
  1633. }
  1634. .g-xl-3,
  1635. .gy-xl-3 {
  1636. --bs-gutter-y: 1rem;
  1637. }
  1638. .g-xl-4,
  1639. .gx-xl-4 {
  1640. --bs-gutter-x: 1.5rem;
  1641. }
  1642. .g-xl-4,
  1643. .gy-xl-4 {
  1644. --bs-gutter-y: 1.5rem;
  1645. }
  1646. .g-xl-5,
  1647. .gx-xl-5 {
  1648. --bs-gutter-x: 3rem;
  1649. }
  1650. .g-xl-5,
  1651. .gy-xl-5 {
  1652. --bs-gutter-y: 3rem;
  1653. }
  1654. }
  1655. @media (min-width: 1400px) {
  1656. .col-xxl {
  1657. -webkit-box-flex: 1;
  1658. -ms-flex: 1 0 0%;
  1659. flex: 1 0 0%;
  1660. }
  1661. .row-cols-xxl-auto > * {
  1662. -webkit-box-flex: 0;
  1663. -ms-flex: 0 0 auto;
  1664. flex: 0 0 auto;
  1665. width: auto;
  1666. }
  1667. .row-cols-xxl-1 > * {
  1668. -webkit-box-flex: 0;
  1669. -ms-flex: 0 0 auto;
  1670. flex: 0 0 auto;
  1671. width: 100%;
  1672. }
  1673. .row-cols-xxl-2 > * {
  1674. -webkit-box-flex: 0;
  1675. -ms-flex: 0 0 auto;
  1676. flex: 0 0 auto;
  1677. width: 50%;
  1678. }
  1679. .row-cols-xxl-3 > * {
  1680. -webkit-box-flex: 0;
  1681. -ms-flex: 0 0 auto;
  1682. flex: 0 0 auto;
  1683. width: 33.3333333333%;
  1684. }
  1685. .row-cols-xxl-4 > * {
  1686. -webkit-box-flex: 0;
  1687. -ms-flex: 0 0 auto;
  1688. flex: 0 0 auto;
  1689. width: 25%;
  1690. }
  1691. .row-cols-xxl-5 > * {
  1692. -webkit-box-flex: 0;
  1693. -ms-flex: 0 0 auto;
  1694. flex: 0 0 auto;
  1695. width: 20%;
  1696. }
  1697. .row-cols-xxl-6 > * {
  1698. -webkit-box-flex: 0;
  1699. -ms-flex: 0 0 auto;
  1700. flex: 0 0 auto;
  1701. width: 16.6666666667%;
  1702. }
  1703. .col-xxl-auto {
  1704. -webkit-box-flex: 0;
  1705. -ms-flex: 0 0 auto;
  1706. flex: 0 0 auto;
  1707. width: auto;
  1708. }
  1709. .col-xxl-1 {
  1710. -webkit-box-flex: 0;
  1711. -ms-flex: 0 0 auto;
  1712. flex: 0 0 auto;
  1713. width: 8.33333333%;
  1714. }
  1715. .col-xxl-2 {
  1716. -webkit-box-flex: 0;
  1717. -ms-flex: 0 0 auto;
  1718. flex: 0 0 auto;
  1719. width: 16.66666667%;
  1720. }
  1721. .col-xxl-3 {
  1722. -webkit-box-flex: 0;
  1723. -ms-flex: 0 0 auto;
  1724. flex: 0 0 auto;
  1725. width: 25%;
  1726. }
  1727. .col-xxl-4 {
  1728. -webkit-box-flex: 0;
  1729. -ms-flex: 0 0 auto;
  1730. flex: 0 0 auto;
  1731. width: 33.33333333%;
  1732. }
  1733. .col-xxl-5 {
  1734. -webkit-box-flex: 0;
  1735. -ms-flex: 0 0 auto;
  1736. flex: 0 0 auto;
  1737. width: 41.66666667%;
  1738. }
  1739. .col-xxl-6 {
  1740. -webkit-box-flex: 0;
  1741. -ms-flex: 0 0 auto;
  1742. flex: 0 0 auto;
  1743. width: 50%;
  1744. }
  1745. .col-xxl-7 {
  1746. -webkit-box-flex: 0;
  1747. -ms-flex: 0 0 auto;
  1748. flex: 0 0 auto;
  1749. width: 58.33333333%;
  1750. }
  1751. .col-xxl-8 {
  1752. -webkit-box-flex: 0;
  1753. -ms-flex: 0 0 auto;
  1754. flex: 0 0 auto;
  1755. width: 66.66666667%;
  1756. }
  1757. .col-xxl-9 {
  1758. -webkit-box-flex: 0;
  1759. -ms-flex: 0 0 auto;
  1760. flex: 0 0 auto;
  1761. width: 75%;
  1762. }
  1763. .col-xxl-10 {
  1764. -webkit-box-flex: 0;
  1765. -ms-flex: 0 0 auto;
  1766. flex: 0 0 auto;
  1767. width: 83.33333333%;
  1768. }
  1769. .col-xxl-11 {
  1770. -webkit-box-flex: 0;
  1771. -ms-flex: 0 0 auto;
  1772. flex: 0 0 auto;
  1773. width: 91.66666667%;
  1774. }
  1775. .col-xxl-12 {
  1776. -webkit-box-flex: 0;
  1777. -ms-flex: 0 0 auto;
  1778. flex: 0 0 auto;
  1779. width: 100%;
  1780. }
  1781. .offset-xxl-0 {
  1782. margin-right: 0;
  1783. }
  1784. .offset-xxl-1 {
  1785. margin-right: 8.33333333%;
  1786. }
  1787. .offset-xxl-2 {
  1788. margin-right: 16.66666667%;
  1789. }
  1790. .offset-xxl-3 {
  1791. margin-right: 25%;
  1792. }
  1793. .offset-xxl-4 {
  1794. margin-right: 33.33333333%;
  1795. }
  1796. .offset-xxl-5 {
  1797. margin-right: 41.66666667%;
  1798. }
  1799. .offset-xxl-6 {
  1800. margin-right: 50%;
  1801. }
  1802. .offset-xxl-7 {
  1803. margin-right: 58.33333333%;
  1804. }
  1805. .offset-xxl-8 {
  1806. margin-right: 66.66666667%;
  1807. }
  1808. .offset-xxl-9 {
  1809. margin-right: 75%;
  1810. }
  1811. .offset-xxl-10 {
  1812. margin-right: 83.33333333%;
  1813. }
  1814. .offset-xxl-11 {
  1815. margin-right: 91.66666667%;
  1816. }
  1817. .g-xxl-0,
  1818. .gx-xxl-0 {
  1819. --bs-gutter-x: 0;
  1820. }
  1821. .g-xxl-0,
  1822. .gy-xxl-0 {
  1823. --bs-gutter-y: 0;
  1824. }
  1825. .g-xxl-1,
  1826. .gx-xxl-1 {
  1827. --bs-gutter-x: 0.25rem;
  1828. }
  1829. .g-xxl-1,
  1830. .gy-xxl-1 {
  1831. --bs-gutter-y: 0.25rem;
  1832. }
  1833. .g-xxl-2,
  1834. .gx-xxl-2 {
  1835. --bs-gutter-x: 0.5rem;
  1836. }
  1837. .g-xxl-2,
  1838. .gy-xxl-2 {
  1839. --bs-gutter-y: 0.5rem;
  1840. }
  1841. .g-xxl-3,
  1842. .gx-xxl-3 {
  1843. --bs-gutter-x: 1rem;
  1844. }
  1845. .g-xxl-3,
  1846. .gy-xxl-3 {
  1847. --bs-gutter-y: 1rem;
  1848. }
  1849. .g-xxl-4,
  1850. .gx-xxl-4 {
  1851. --bs-gutter-x: 1.5rem;
  1852. }
  1853. .g-xxl-4,
  1854. .gy-xxl-4 {
  1855. --bs-gutter-y: 1.5rem;
  1856. }
  1857. .g-xxl-5,
  1858. .gx-xxl-5 {
  1859. --bs-gutter-x: 3rem;
  1860. }
  1861. .g-xxl-5,
  1862. .gy-xxl-5 {
  1863. --bs-gutter-y: 3rem;
  1864. }
  1865. }
  1866. .table {
  1867. --bs-table-bg: transparent;
  1868. --bs-table-accent-bg: transparent;
  1869. --bs-table-striped-color: #495057;
  1870. --bs-table-striped-bg: #f8f9fa;
  1871. --bs-table-active-color: #495057;
  1872. --bs-table-active-bg: #f8f9fa;
  1873. --bs-table-hover-color: #495057;
  1874. --bs-table-hover-bg: #f8f9fa;
  1875. width: 100%;
  1876. margin-bottom: 1rem;
  1877. color: #495057;
  1878. vertical-align: top;
  1879. border-color: #eff2f7;
  1880. }
  1881. .table > :not(caption) > * > * {
  1882. padding: 0.75rem 0.75rem;
  1883. background-color: var(--bs-table-bg);
  1884. border-bottom-width: 1px;
  1885. -webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  1886. box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  1887. }
  1888. .table > tbody {
  1889. vertical-align: inherit;
  1890. }
  1891. .table > thead {
  1892. vertical-align: bottom;
  1893. }
  1894. .table > :not(:first-child) {
  1895. border-top: 2px solid #eff2f7;
  1896. }
  1897. .caption-top {
  1898. caption-side: top;
  1899. }
  1900. .table-sm > :not(caption) > * > * {
  1901. padding: 0.3rem 0.3rem;
  1902. }
  1903. .table-bordered > :not(caption) > * {
  1904. border-width: 1px 0;
  1905. }
  1906. .table-bordered > :not(caption) > * > * {
  1907. border-width: 0 1px;
  1908. }
  1909. .table-borderless > :not(caption) > * > * {
  1910. border-bottom-width: 0;
  1911. }
  1912. .table-borderless > :not(:first-child) {
  1913. border-top-width: 0;
  1914. }
  1915. .table-striped > tbody > tr:nth-of-type(odd) > * {
  1916. --bs-table-accent-bg: var(--bs-table-striped-bg);
  1917. color: var(--bs-table-striped-color);
  1918. }
  1919. .table-active {
  1920. --bs-table-accent-bg: var(--bs-table-active-bg);
  1921. color: var(--bs-table-active-color);
  1922. }
  1923. .table-hover > tbody > tr:hover > * {
  1924. --bs-table-accent-bg: var(--bs-table-hover-bg);
  1925. color: var(--bs-table-hover-color);
  1926. }
  1927. .table-primary {
  1928. --bs-table-bg: #dde2fa;
  1929. --bs-table-striped-bg: #d2d7ee;
  1930. --bs-table-striped-color: #000;
  1931. --bs-table-active-bg: #c7cbe1;
  1932. --bs-table-active-color: #000;
  1933. --bs-table-hover-bg: #ccd1e7;
  1934. --bs-table-hover-color: #000;
  1935. color: #000;
  1936. border-color: #c7cbe1;
  1937. }
  1938. .table-secondary {
  1939. --bs-table-bg: #e3e4e8;
  1940. --bs-table-striped-bg: #d8d9dc;
  1941. --bs-table-striped-color: #000;
  1942. --bs-table-active-bg: #cccdd1;
  1943. --bs-table-active-color: #000;
  1944. --bs-table-hover-bg: #d2d3d7;
  1945. --bs-table-hover-color: #000;
  1946. color: #000;
  1947. border-color: #cccdd1;
  1948. }
  1949. .table-success {
  1950. --bs-table-bg: #d6f3e9;
  1951. --bs-table-striped-bg: #cbe7dd;
  1952. --bs-table-striped-color: #000;
  1953. --bs-table-active-bg: #c1dbd2;
  1954. --bs-table-active-color: #000;
  1955. --bs-table-hover-bg: #c6e1d8;
  1956. --bs-table-hover-color: #000;
  1957. color: #000;
  1958. border-color: #c1dbd2;
  1959. }
  1960. .table-info {
  1961. --bs-table-bg: #dcedfc;
  1962. --bs-table-striped-bg: #d1e1ef;
  1963. --bs-table-striped-color: #000;
  1964. --bs-table-active-bg: #c6d5e3;
  1965. --bs-table-active-color: #000;
  1966. --bs-table-hover-bg: #ccdbe9;
  1967. --bs-table-hover-color: #000;
  1968. color: #000;
  1969. border-color: #c6d5e3;
  1970. }
  1971. .table-warning {
  1972. --bs-table-bg: #fcf0db;
  1973. --bs-table-striped-bg: #efe4d0;
  1974. --bs-table-striped-color: #000;
  1975. --bs-table-active-bg: #e3d8c5;
  1976. --bs-table-active-color: #000;
  1977. --bs-table-hover-bg: #e9decb;
  1978. --bs-table-hover-color: #000;
  1979. color: #000;
  1980. border-color: #e3d8c5;
  1981. }
  1982. .table-danger {
  1983. --bs-table-bg: #fde1e1;
  1984. --bs-table-striped-bg: #f0d6d6;
  1985. --bs-table-striped-color: #000;
  1986. --bs-table-active-bg: #e4cbcb;
  1987. --bs-table-active-color: #000;
  1988. --bs-table-hover-bg: #ead0d0;
  1989. --bs-table-hover-color: #000;
  1990. color: #000;
  1991. border-color: #e4cbcb;
  1992. }
  1993. .table-light {
  1994. --bs-table-bg: #eff2f7;
  1995. --bs-table-striped-bg: #e3e6eb;
  1996. --bs-table-striped-color: #000;
  1997. --bs-table-active-bg: #d7dade;
  1998. --bs-table-active-color: #000;
  1999. --bs-table-hover-bg: #dde0e4;
  2000. --bs-table-hover-color: #000;
  2001. color: #000;
  2002. border-color: #d7dade;
  2003. }
  2004. .table-dark {
  2005. --bs-table-bg: #343a40;
  2006. --bs-table-striped-bg: #3e444a;
  2007. --bs-table-striped-color: #fff;
  2008. --bs-table-active-bg: #484e53;
  2009. --bs-table-active-color: #fff;
  2010. --bs-table-hover-bg: #43494e;
  2011. --bs-table-hover-color: #fff;
  2012. color: #fff;
  2013. border-color: #484e53;
  2014. }
  2015. .table-responsive {
  2016. overflow-x: auto;
  2017. -webkit-overflow-scrolling: touch;
  2018. }
  2019. @media (max-width: 575.98px) {
  2020. .table-responsive-sm {
  2021. overflow-x: auto;
  2022. -webkit-overflow-scrolling: touch;
  2023. }
  2024. }
  2025. @media (max-width: 767.98px) {
  2026. .table-responsive-md {
  2027. overflow-x: auto;
  2028. -webkit-overflow-scrolling: touch;
  2029. }
  2030. }
  2031. @media (max-width: 991.98px) {
  2032. .table-responsive-lg {
  2033. overflow-x: auto;
  2034. -webkit-overflow-scrolling: touch;
  2035. }
  2036. }
  2037. @media (max-width: 1199.98px) {
  2038. .table-responsive-xl {
  2039. overflow-x: auto;
  2040. -webkit-overflow-scrolling: touch;
  2041. }
  2042. }
  2043. @media (max-width: 1399.98px) {
  2044. .table-responsive-xxl {
  2045. overflow-x: auto;
  2046. -webkit-overflow-scrolling: touch;
  2047. }
  2048. }
  2049. .form-label {
  2050. margin-bottom: 0.5rem;
  2051. }
  2052. .col-form-label {
  2053. padding-top: calc(0.47rem + 1px);
  2054. padding-bottom: calc(0.47rem + 1px);
  2055. margin-bottom: 0;
  2056. font-size: inherit;
  2057. line-height: 1.5;
  2058. }
  2059. .col-form-label-lg {
  2060. padding-top: calc(0.5rem + 1px);
  2061. padding-bottom: calc(0.5rem + 1px);
  2062. font-size: 1.015625rem;
  2063. }
  2064. .col-form-label-sm {
  2065. padding-top: calc(0.25rem + 1px);
  2066. padding-bottom: calc(0.25rem + 1px);
  2067. font-size: 0.7109375rem;
  2068. }
  2069. .form-text {
  2070. margin-top: 0.25rem;
  2071. font-size: 80%;
  2072. color: #74788d;
  2073. }
  2074. .form-control {
  2075. display: block;
  2076. width: 100%;
  2077. padding: 0.47rem 0.75rem;
  2078. font-size: 0.8125rem;
  2079. font-weight: 400;
  2080. line-height: 1.5;
  2081. color: #495057;
  2082. background-color: #fff;
  2083. background-clip: padding-box;
  2084. border: 1px solid #ced4da;
  2085. -webkit-appearance: none;
  2086. -moz-appearance: none;
  2087. appearance: none;
  2088. border-radius: 0.25rem;
  2089. -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2090. transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2091. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2092. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2093. }
  2094. @media (prefers-reduced-motion: reduce) {
  2095. .form-control {
  2096. -webkit-transition: none;
  2097. transition: none;
  2098. }
  2099. }
  2100. .form-control[type=file] {
  2101. overflow: hidden;
  2102. }
  2103. .form-control[type=file]:not(:disabled):not([readonly]) {
  2104. cursor: pointer;
  2105. }
  2106. .form-control:focus {
  2107. color: #495057;
  2108. background-color: #fff;
  2109. border-color: #b9bfc4;
  2110. outline: 0;
  2111. -webkit-box-shadow: none;
  2112. box-shadow: none;
  2113. }
  2114. .form-control::-webkit-date-and-time-value {
  2115. height: 1.5em;
  2116. }
  2117. .form-control::-webkit-input-placeholder {
  2118. color: #74788d;
  2119. opacity: 1;
  2120. }
  2121. .form-control::-moz-placeholder {
  2122. color: #74788d;
  2123. opacity: 1;
  2124. }
  2125. .form-control:-ms-input-placeholder {
  2126. color: #74788d;
  2127. opacity: 1;
  2128. }
  2129. .form-control::-ms-input-placeholder {
  2130. color: #74788d;
  2131. opacity: 1;
  2132. }
  2133. .form-control::placeholder {
  2134. color: #74788d;
  2135. opacity: 1;
  2136. }
  2137. .form-control:disabled, .form-control[readonly] {
  2138. background-color: #eff2f7;
  2139. opacity: 1;
  2140. }
  2141. .form-control::-webkit-file-upload-button {
  2142. padding: 0.47rem 0.75rem;
  2143. margin: -0.47rem -0.75rem;
  2144. -webkit-margin-end: 0.75rem;
  2145. margin-inline-end: 0.75rem;
  2146. color: #495057;
  2147. background-color: #eff2f7;
  2148. pointer-events: none;
  2149. border-color: inherit;
  2150. border-style: solid;
  2151. border-width: 0;
  2152. border-inline-end-width: 1px;
  2153. border-radius: 0;
  2154. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2155. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2156. 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;
  2157. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2158. }
  2159. .form-control::file-selector-button {
  2160. padding: 0.47rem 0.75rem;
  2161. margin: -0.47rem -0.75rem;
  2162. -webkit-margin-end: 0.75rem;
  2163. margin-inline-end: 0.75rem;
  2164. color: #495057;
  2165. background-color: #eff2f7;
  2166. pointer-events: none;
  2167. border-color: inherit;
  2168. border-style: solid;
  2169. border-width: 0;
  2170. border-inline-end-width: 1px;
  2171. border-radius: 0;
  2172. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2173. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2174. 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;
  2175. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2176. }
  2177. @media (prefers-reduced-motion: reduce) {
  2178. .form-control::-webkit-file-upload-button {
  2179. -webkit-transition: none;
  2180. transition: none;
  2181. }
  2182. .form-control::file-selector-button {
  2183. -webkit-transition: none;
  2184. transition: none;
  2185. }
  2186. }
  2187. .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  2188. background-color: #e3e6eb;
  2189. }
  2190. .form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  2191. background-color: #e3e6eb;
  2192. }
  2193. .form-control::-webkit-file-upload-button {
  2194. padding: 0.47rem 0.75rem;
  2195. margin: -0.47rem -0.75rem;
  2196. -webkit-margin-end: 0.75rem;
  2197. margin-inline-end: 0.75rem;
  2198. color: #495057;
  2199. background-color: #eff2f7;
  2200. pointer-events: none;
  2201. border-color: inherit;
  2202. border-style: solid;
  2203. border-width: 0;
  2204. border-inline-end-width: 1px;
  2205. border-radius: 0;
  2206. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2207. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2208. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2209. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2210. }
  2211. @media (prefers-reduced-motion: reduce) {
  2212. .form-control::-webkit-file-upload-button {
  2213. -webkit-transition: none;
  2214. transition: none;
  2215. }
  2216. }
  2217. .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  2218. background-color: #e3e6eb;
  2219. }
  2220. .form-control-plaintext {
  2221. display: block;
  2222. width: 100%;
  2223. padding: 0.47rem 0;
  2224. margin-bottom: 0;
  2225. line-height: 1.5;
  2226. color: #495057;
  2227. background-color: transparent;
  2228. border: solid transparent;
  2229. border-width: 1px 0;
  2230. }
  2231. .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  2232. padding-left: 0;
  2233. padding-right: 0;
  2234. }
  2235. .form-control-sm {
  2236. min-height: calc(1.5em + 0.5rem + 2px);
  2237. padding: 0.25rem 0.5rem;
  2238. font-size: 0.7109375rem;
  2239. border-radius: 0.2rem;
  2240. }
  2241. .form-control-sm::-webkit-file-upload-button {
  2242. padding: 0.25rem 0.5rem;
  2243. margin: -0.25rem -0.5rem;
  2244. -webkit-margin-end: 0.5rem;
  2245. margin-inline-end: 0.5rem;
  2246. }
  2247. .form-control-sm::file-selector-button {
  2248. padding: 0.25rem 0.5rem;
  2249. margin: -0.25rem -0.5rem;
  2250. -webkit-margin-end: 0.5rem;
  2251. margin-inline-end: 0.5rem;
  2252. }
  2253. .form-control-sm::-webkit-file-upload-button {
  2254. padding: 0.25rem 0.5rem;
  2255. margin: -0.25rem -0.5rem;
  2256. -webkit-margin-end: 0.5rem;
  2257. margin-inline-end: 0.5rem;
  2258. }
  2259. .form-control-lg {
  2260. min-height: calc(1.5em + 1rem + 2px);
  2261. padding: 0.5rem 1rem;
  2262. font-size: 1.015625rem;
  2263. border-radius: 0.4rem;
  2264. }
  2265. .form-control-lg::-webkit-file-upload-button {
  2266. padding: 0.5rem 1rem;
  2267. margin: -0.5rem -1rem;
  2268. -webkit-margin-end: 1rem;
  2269. margin-inline-end: 1rem;
  2270. }
  2271. .form-control-lg::file-selector-button {
  2272. padding: 0.5rem 1rem;
  2273. margin: -0.5rem -1rem;
  2274. -webkit-margin-end: 1rem;
  2275. margin-inline-end: 1rem;
  2276. }
  2277. .form-control-lg::-webkit-file-upload-button {
  2278. padding: 0.5rem 1rem;
  2279. margin: -0.5rem -1rem;
  2280. -webkit-margin-end: 1rem;
  2281. margin-inline-end: 1rem;
  2282. }
  2283. textarea.form-control {
  2284. min-height: calc(1.5em + 0.94rem + 2px);
  2285. }
  2286. textarea.form-control-sm {
  2287. min-height: calc(1.5em + 0.5rem + 2px);
  2288. }
  2289. textarea.form-control-lg {
  2290. min-height: calc(1.5em + 1rem + 2px);
  2291. }
  2292. .form-control-color {
  2293. width: 3rem;
  2294. height: auto;
  2295. padding: 0.47rem;
  2296. }
  2297. .form-control-color:not(:disabled):not([readonly]) {
  2298. cursor: pointer;
  2299. }
  2300. .form-control-color::-moz-color-swatch {
  2301. height: 1.5em;
  2302. border-radius: 0.25rem;
  2303. }
  2304. .form-control-color::-webkit-color-swatch {
  2305. height: 1.5em;
  2306. border-radius: 0.25rem;
  2307. }
  2308. .form-select {
  2309. display: block;
  2310. width: 100%;
  2311. padding: 0.47rem 0.75rem 0.47rem 1.75rem;
  2312. -moz-padding-start: calc(0.75rem - 3px);
  2313. font-size: 0.8125rem;
  2314. font-weight: 400;
  2315. line-height: 1.5;
  2316. color: #495057;
  2317. background-color: #fff;
  2318. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  2319. background-repeat: no-repeat;
  2320. background-position: left 0.75rem center;
  2321. background-size: 16px 12px;
  2322. border: 1px solid #ced4da;
  2323. border-radius: 0.25rem;
  2324. -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2325. transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2326. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2327. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2328. -webkit-appearance: none;
  2329. -moz-appearance: none;
  2330. appearance: none;
  2331. }
  2332. @media (prefers-reduced-motion: reduce) {
  2333. .form-select {
  2334. -webkit-transition: none;
  2335. transition: none;
  2336. }
  2337. }
  2338. .form-select:focus {
  2339. border-color: #b9bfc4;
  2340. outline: 0;
  2341. -webkit-box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
  2342. box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
  2343. }
  2344. .form-select[multiple], .form-select[size]:not([size="1"]) {
  2345. padding-left: 0.75rem;
  2346. background-image: none;
  2347. }
  2348. .form-select:disabled {
  2349. color: #74788d;
  2350. background-color: #eff2f7;
  2351. }
  2352. .form-select:-moz-focusring {
  2353. color: transparent;
  2354. text-shadow: 0 0 0 #495057;
  2355. }
  2356. .form-select-sm {
  2357. padding-top: 0.25rem;
  2358. padding-bottom: 0.25rem;
  2359. padding-right: 0.5rem;
  2360. font-size: 0.7109375rem;
  2361. border-radius: 0.2rem;
  2362. }
  2363. .form-select-lg {
  2364. padding-top: 0.5rem;
  2365. padding-bottom: 0.5rem;
  2366. padding-right: 1rem;
  2367. font-size: 1.015625rem;
  2368. border-radius: 0.4rem;
  2369. }
  2370. .form-check {
  2371. display: block;
  2372. min-height: 1.21875rem;
  2373. padding-right: 1.5em;
  2374. margin-bottom: 0.125rem;
  2375. }
  2376. .form-check .form-check-input {
  2377. float: right;
  2378. margin-right: -1.5em;
  2379. }
  2380. .form-check-input {
  2381. width: 1em;
  2382. height: 1em;
  2383. margin-top: 0.25em;
  2384. vertical-align: top;
  2385. background-color: #fff;
  2386. background-repeat: no-repeat;
  2387. background-position: center;
  2388. background-size: contain;
  2389. border: 1px solid rgba(0, 0, 0, 0.25);
  2390. -webkit-appearance: none;
  2391. -moz-appearance: none;
  2392. appearance: none;
  2393. -webkit-print-color-adjust: exact;
  2394. color-adjust: exact;
  2395. -webkit-transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2396. transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2397. transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2398. transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2399. }
  2400. @media (prefers-reduced-motion: reduce) {
  2401. .form-check-input {
  2402. -webkit-transition: none;
  2403. transition: none;
  2404. }
  2405. }
  2406. .form-check-input[type=checkbox] {
  2407. border-radius: 0.25em;
  2408. }
  2409. .form-check-input[type=radio] {
  2410. border-radius: 50%;
  2411. }
  2412. .form-check-input:active {
  2413. -webkit-filter: brightness(90%);
  2414. filter: brightness(90%);
  2415. }
  2416. .form-check-input:focus {
  2417. border-color: #b9bfc4;
  2418. outline: 0;
  2419. -webkit-box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
  2420. box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
  2421. }
  2422. .form-check-input:checked {
  2423. background-color: #556ee6;
  2424. border-color: #556ee6;
  2425. }
  2426. .form-check-input:checked[type=checkbox] {
  2427. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
  2428. }
  2429. .form-check-input:checked[type=radio] {
  2430. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
  2431. }
  2432. .form-check-input[type=checkbox]:indeterminate {
  2433. background-color: #556ee6;
  2434. border-color: #556ee6;
  2435. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
  2436. }
  2437. .form-check-input:disabled {
  2438. pointer-events: none;
  2439. -webkit-filter: none;
  2440. filter: none;
  2441. opacity: 0.5;
  2442. }
  2443. .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  2444. opacity: 0.5;
  2445. }
  2446. .form-switch {
  2447. padding-right: 2.5em;
  2448. }
  2449. .form-switch .form-check-input {
  2450. width: 2em;
  2451. margin-right: -2.5em;
  2452. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  2453. background-position: right center;
  2454. border-radius: 2em;
  2455. -webkit-transition: background-position 0.15s ease-in-out;
  2456. transition: background-position 0.15s ease-in-out;
  2457. }
  2458. @media (prefers-reduced-motion: reduce) {
  2459. .form-switch .form-check-input {
  2460. -webkit-transition: none;
  2461. transition: none;
  2462. }
  2463. }
  2464. .form-switch .form-check-input:focus {
  2465. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23b9bfc4'/%3e%3c/svg%3e");
  2466. }
  2467. .form-switch .form-check-input:checked {
  2468. background-position: left center;
  2469. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  2470. }
  2471. .form-check-inline {
  2472. display: inline-block;
  2473. margin-left: 1rem;
  2474. }
  2475. .btn-check {
  2476. position: absolute;
  2477. clip: rect(0, 0, 0, 0);
  2478. pointer-events: none;
  2479. }
  2480. .btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  2481. pointer-events: none;
  2482. -webkit-filter: none;
  2483. filter: none;
  2484. opacity: 0.65;
  2485. }
  2486. .form-range {
  2487. width: 100%;
  2488. height: 1.3rem;
  2489. padding: 0;
  2490. background-color: transparent;
  2491. -webkit-appearance: none;
  2492. -moz-appearance: none;
  2493. appearance: none;
  2494. }
  2495. .form-range:focus {
  2496. outline: 0;
  2497. }
  2498. .form-range:focus::-webkit-slider-thumb {
  2499. -webkit-box-shadow: 0 0 0 1px #f8f8fb, none;
  2500. box-shadow: 0 0 0 1px #f8f8fb, none;
  2501. }
  2502. .form-range:focus::-moz-range-thumb {
  2503. box-shadow: 0 0 0 1px #f8f8fb, none;
  2504. }
  2505. .form-range::-moz-focus-outer {
  2506. border: 0;
  2507. }
  2508. .form-range::-webkit-slider-thumb {
  2509. width: 1rem;
  2510. height: 1rem;
  2511. margin-top: -0.25rem;
  2512. background-color: #556ee6;
  2513. border: 0;
  2514. border-radius: 1rem;
  2515. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2516. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2517. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2518. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2519. -webkit-appearance: none;
  2520. appearance: none;
  2521. }
  2522. @media (prefers-reduced-motion: reduce) {
  2523. .form-range::-webkit-slider-thumb {
  2524. -webkit-transition: none;
  2525. transition: none;
  2526. }
  2527. }
  2528. .form-range::-webkit-slider-thumb:active {
  2529. background-color: #ccd4f8;
  2530. }
  2531. .form-range::-webkit-slider-runnable-track {
  2532. width: 100%;
  2533. height: 0.5rem;
  2534. color: transparent;
  2535. cursor: pointer;
  2536. background-color: #f6f6f6;
  2537. border-color: transparent;
  2538. border-radius: 1rem;
  2539. }
  2540. .form-range::-moz-range-thumb {
  2541. width: 1rem;
  2542. height: 1rem;
  2543. background-color: #556ee6;
  2544. border: 0;
  2545. border-radius: 1rem;
  2546. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2547. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2548. -moz-appearance: none;
  2549. appearance: none;
  2550. }
  2551. @media (prefers-reduced-motion: reduce) {
  2552. .form-range::-moz-range-thumb {
  2553. -moz-transition: none;
  2554. transition: none;
  2555. }
  2556. }
  2557. .form-range::-moz-range-thumb:active {
  2558. background-color: #ccd4f8;
  2559. }
  2560. .form-range::-moz-range-track {
  2561. width: 100%;
  2562. height: 0.5rem;
  2563. color: transparent;
  2564. cursor: pointer;
  2565. background-color: #f6f6f6;
  2566. border-color: transparent;
  2567. border-radius: 1rem;
  2568. }
  2569. .form-range:disabled {
  2570. pointer-events: none;
  2571. }
  2572. .form-range:disabled::-webkit-slider-thumb {
  2573. background-color: #adb5bd;
  2574. }
  2575. .form-range:disabled::-moz-range-thumb {
  2576. background-color: #adb5bd;
  2577. }
  2578. .form-floating {
  2579. position: relative;
  2580. }
  2581. .form-floating > .form-control,
  2582. .form-floating > .form-select {
  2583. height: calc(3.5rem + 2px);
  2584. line-height: 1.25;
  2585. }
  2586. .form-floating > label {
  2587. position: absolute;
  2588. top: 0;
  2589. right: 0;
  2590. height: 100%;
  2591. padding: 1rem 0.75rem;
  2592. pointer-events: none;
  2593. border: 1px solid transparent;
  2594. -webkit-transform-origin: 100% 0;
  2595. transform-origin: 100% 0;
  2596. -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  2597. transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  2598. transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  2599. transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  2600. }
  2601. @media (prefers-reduced-motion: reduce) {
  2602. .form-floating > label {
  2603. -webkit-transition: none;
  2604. transition: none;
  2605. }
  2606. }
  2607. .form-floating > .form-control {
  2608. padding: 1rem 0.75rem;
  2609. }
  2610. .form-floating > .form-control::-webkit-input-placeholder {
  2611. color: transparent;
  2612. }
  2613. .form-floating > .form-control::-moz-placeholder {
  2614. color: transparent;
  2615. }
  2616. .form-floating > .form-control:-ms-input-placeholder {
  2617. color: transparent;
  2618. }
  2619. .form-floating > .form-control::-ms-input-placeholder {
  2620. color: transparent;
  2621. }
  2622. .form-floating > .form-control::placeholder {
  2623. color: transparent;
  2624. }
  2625. .form-floating > .form-control:not(:-moz-placeholder-shown) {
  2626. padding-top: 1.625rem;
  2627. padding-bottom: 0.625rem;
  2628. }
  2629. .form-floating > .form-control:not(:-ms-input-placeholder) {
  2630. padding-top: 1.625rem;
  2631. padding-bottom: 0.625rem;
  2632. }
  2633. .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  2634. padding-top: 1.625rem;
  2635. padding-bottom: 0.625rem;
  2636. }
  2637. .form-floating > .form-control:-webkit-autofill {
  2638. padding-top: 1.625rem;
  2639. padding-bottom: 0.625rem;
  2640. }
  2641. .form-floating > .form-select {
  2642. padding-top: 1.625rem;
  2643. padding-bottom: 0.625rem;
  2644. }
  2645. .form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  2646. opacity: 0.65;
  2647. transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
  2648. }
  2649. .form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  2650. opacity: 0.65;
  2651. transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
  2652. }
  2653. .form-floating > .form-control:focus ~ label,
  2654. .form-floating > .form-control:not(:placeholder-shown) ~ label,
  2655. .form-floating > .form-select ~ label {
  2656. opacity: 0.65;
  2657. -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
  2658. transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
  2659. }
  2660. .form-floating > .form-control:-webkit-autofill ~ label {
  2661. opacity: 0.65;
  2662. -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
  2663. transform: scale(0.85) translateY(-0.5rem) translateX(-0.15rem);
  2664. }
  2665. .input-group {
  2666. position: relative;
  2667. display: -webkit-box;
  2668. display: -ms-flexbox;
  2669. display: flex;
  2670. -ms-flex-wrap: wrap;
  2671. flex-wrap: wrap;
  2672. -webkit-box-align: stretch;
  2673. -ms-flex-align: stretch;
  2674. align-items: stretch;
  2675. width: 100%;
  2676. }
  2677. .input-group > .form-control,
  2678. .input-group > .form-select {
  2679. position: relative;
  2680. -webkit-box-flex: 1;
  2681. -ms-flex: 1 1 auto;
  2682. flex: 1 1 auto;
  2683. width: 1%;
  2684. min-width: 0;
  2685. }
  2686. .input-group > .form-control:focus,
  2687. .input-group > .form-select:focus {
  2688. z-index: 3;
  2689. }
  2690. .input-group .btn {
  2691. position: relative;
  2692. z-index: 2;
  2693. }
  2694. .input-group .btn:focus {
  2695. z-index: 3;
  2696. }
  2697. .input-group-text {
  2698. display: -webkit-box;
  2699. display: -ms-flexbox;
  2700. display: flex;
  2701. -webkit-box-align: center;
  2702. -ms-flex-align: center;
  2703. align-items: center;
  2704. padding: 0.47rem 0.75rem;
  2705. font-size: 0.8125rem;
  2706. font-weight: 400;
  2707. line-height: 1.5;
  2708. color: #495057;
  2709. text-align: center;
  2710. white-space: nowrap;
  2711. background-color: #eff2f7;
  2712. border: 1px solid #ced4da;
  2713. border-radius: 0.25rem;
  2714. }
  2715. .input-group-lg > .form-control,
  2716. .input-group-lg > .form-select,
  2717. .input-group-lg > .input-group-text,
  2718. .input-group-lg > .btn {
  2719. padding: 0.5rem 1rem;
  2720. font-size: 1.015625rem;
  2721. border-radius: 0.4rem;
  2722. }
  2723. .input-group-sm > .form-control,
  2724. .input-group-sm > .form-select,
  2725. .input-group-sm > .input-group-text,
  2726. .input-group-sm > .btn {
  2727. padding: 0.25rem 0.5rem;
  2728. font-size: 0.7109375rem;
  2729. border-radius: 0.2rem;
  2730. }
  2731. .input-group-lg > .form-select,
  2732. .input-group-sm > .form-select {
  2733. padding-left: 2.5rem;
  2734. }
  2735. .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
  2736. .input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  2737. border-top-left-radius: 0;
  2738. border-bottom-left-radius: 0;
  2739. }
  2740. .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
  2741. .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  2742. border-top-left-radius: 0;
  2743. border-bottom-left-radius: 0;
  2744. }
  2745. .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  2746. margin-right: -1px;
  2747. border-top-right-radius: 0;
  2748. border-bottom-right-radius: 0;
  2749. }
  2750. .valid-feedback {
  2751. display: none;
  2752. width: 100%;
  2753. margin-top: 0.25rem;
  2754. font-size: 80%;
  2755. color: #34c38f;
  2756. }
  2757. .valid-tooltip {
  2758. position: absolute;
  2759. top: 100%;
  2760. z-index: 5;
  2761. display: none;
  2762. max-width: 100%;
  2763. padding: 0.4rem 0.7rem;
  2764. margin-top: 0.1rem;
  2765. font-size: 0.7109375rem;
  2766. line-height: 1.5;
  2767. color: #fff;
  2768. background-color: rgba(52, 195, 143, 0.9);
  2769. border-radius: 0.25rem;
  2770. }
  2771. .was-validated :valid ~ .valid-feedback,
  2772. .was-validated :valid ~ .valid-tooltip,
  2773. .is-valid ~ .valid-feedback,
  2774. .is-valid ~ .valid-tooltip {
  2775. display: block;
  2776. }
  2777. .was-validated .form-control:valid, .form-control.is-valid {
  2778. border-color: #34c38f;
  2779. padding-left: calc(1.5em + 0.94rem);
  2780. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2334c38f' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  2781. background-repeat: no-repeat;
  2782. background-position: left calc(0.375em + 0.235rem) center;
  2783. background-size: calc(0.75em + 0.47rem) calc(0.75em + 0.47rem);
  2784. }
  2785. .was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  2786. border-color: #34c38f;
  2787. -webkit-box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.25);
  2788. box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.25);
  2789. }
  2790. .was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  2791. padding-left: calc(1.5em + 0.94rem);
  2792. background-position: top calc(0.375em + 0.235rem) left calc(0.375em + 0.235rem);
  2793. }
  2794. .was-validated .form-select:valid, .form-select.is-valid {
  2795. border-color: #34c38f;
  2796. }
  2797. .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"] {
  2798. padding-left: calc(0.75em + 3.205rem);
  2799. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2334c38f' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  2800. background-position: left 0.75rem center, center left 2.5rem;
  2801. background-size: 16px 12px, calc(0.75em + 0.47rem) calc(0.75em + 0.47rem);
  2802. }
  2803. .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  2804. border-color: #34c38f;
  2805. -webkit-box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.25);
  2806. box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.25);
  2807. }
  2808. .was-validated .form-check-input:valid, .form-check-input.is-valid {
  2809. border-color: #34c38f;
  2810. }
  2811. .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  2812. background-color: #34c38f;
  2813. }
  2814. .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  2815. -webkit-box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.25);
  2816. box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.25);
  2817. }
  2818. .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  2819. color: #34c38f;
  2820. }
  2821. .form-check-inline .form-check-input ~ .valid-feedback {
  2822. margin-right: 0.5em;
  2823. }
  2824. .was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
  2825. .was-validated .input-group .form-select:valid,
  2826. .input-group .form-select.is-valid {
  2827. z-index: 1;
  2828. }
  2829. .was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
  2830. .was-validated .input-group .form-select:valid:focus,
  2831. .input-group .form-select.is-valid:focus {
  2832. z-index: 3;
  2833. }
  2834. .invalid-feedback {
  2835. display: none;
  2836. width: 100%;
  2837. margin-top: 0.25rem;
  2838. font-size: 80%;
  2839. color: #f46a6a;
  2840. }
  2841. .invalid-tooltip {
  2842. position: absolute;
  2843. top: 100%;
  2844. z-index: 5;
  2845. display: none;
  2846. max-width: 100%;
  2847. padding: 0.4rem 0.7rem;
  2848. margin-top: 0.1rem;
  2849. font-size: 0.7109375rem;
  2850. line-height: 1.5;
  2851. color: #fff;
  2852. background-color: rgba(244, 106, 106, 0.9);
  2853. border-radius: 0.25rem;
  2854. }
  2855. .was-validated :invalid ~ .invalid-feedback,
  2856. .was-validated :invalid ~ .invalid-tooltip,
  2857. .is-invalid ~ .invalid-feedback,
  2858. .is-invalid ~ .invalid-tooltip {
  2859. display: block;
  2860. }
  2861. .was-validated .form-control:invalid, .form-control.is-invalid {
  2862. border-color: #f46a6a;
  2863. padding-left: calc(1.5em + 0.94rem);
  2864. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f46a6a'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f46a6a' stroke='none'/%3e%3c/svg%3e");
  2865. background-repeat: no-repeat;
  2866. background-position: left calc(0.375em + 0.235rem) center;
  2867. background-size: calc(0.75em + 0.47rem) calc(0.75em + 0.47rem);
  2868. }
  2869. .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  2870. border-color: #f46a6a;
  2871. -webkit-box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.25);
  2872. box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.25);
  2873. }
  2874. .was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  2875. padding-left: calc(1.5em + 0.94rem);
  2876. background-position: top calc(0.375em + 0.235rem) left calc(0.375em + 0.235rem);
  2877. }
  2878. .was-validated .form-select:invalid, .form-select.is-invalid {
  2879. border-color: #f46a6a;
  2880. }
  2881. .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"] {
  2882. padding-left: calc(0.75em + 3.205rem);
  2883. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23f46a6a'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23f46a6a' stroke='none'/%3e%3c/svg%3e");
  2884. background-position: left 0.75rem center, center left 2.5rem;
  2885. background-size: 16px 12px, calc(0.75em + 0.47rem) calc(0.75em + 0.47rem);
  2886. }
  2887. .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  2888. border-color: #f46a6a;
  2889. -webkit-box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.25);
  2890. box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.25);
  2891. }
  2892. .was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  2893. border-color: #f46a6a;
  2894. }
  2895. .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  2896. background-color: #f46a6a;
  2897. }
  2898. .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  2899. -webkit-box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.25);
  2900. box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.25);
  2901. }
  2902. .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  2903. color: #f46a6a;
  2904. }
  2905. .form-check-inline .form-check-input ~ .invalid-feedback {
  2906. margin-right: 0.5em;
  2907. }
  2908. .was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
  2909. .was-validated .input-group .form-select:invalid,
  2910. .input-group .form-select.is-invalid {
  2911. z-index: 2;
  2912. }
  2913. .was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
  2914. .was-validated .input-group .form-select:invalid:focus,
  2915. .input-group .form-select.is-invalid:focus {
  2916. z-index: 3;
  2917. }
  2918. .btn {
  2919. display: inline-block;
  2920. font-weight: 400;
  2921. line-height: 1.5;
  2922. color: #495057;
  2923. text-align: center;
  2924. vertical-align: middle;
  2925. cursor: pointer;
  2926. -webkit-user-select: none;
  2927. -moz-user-select: none;
  2928. -ms-user-select: none;
  2929. user-select: none;
  2930. background-color: transparent;
  2931. border: 1px solid transparent;
  2932. padding: 0.47rem 0.75rem;
  2933. font-size: 0.8125rem;
  2934. border-radius: 0.25rem;
  2935. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2936. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2937. 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;
  2938. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  2939. }
  2940. @media (prefers-reduced-motion: reduce) {
  2941. .btn {
  2942. -webkit-transition: none;
  2943. transition: none;
  2944. }
  2945. }
  2946. .btn:hover {
  2947. color: #495057;
  2948. text-decoration: none;
  2949. }
  2950. .btn-check:focus + .btn, .btn:focus {
  2951. outline: 0;
  2952. -webkit-box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
  2953. box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
  2954. }
  2955. .btn:disabled, .btn.disabled, fieldset:disabled .btn {
  2956. pointer-events: none;
  2957. opacity: 0.65;
  2958. }
  2959. .btn-primary {
  2960. color: #fff;
  2961. background-color: #556ee6;
  2962. border-color: #556ee6;
  2963. }
  2964. .btn-primary:hover {
  2965. color: #fff;
  2966. background-color: #485ec4;
  2967. border-color: #4458b8;
  2968. }
  2969. .btn-check:focus + .btn-primary, .btn-primary:focus {
  2970. color: #fff;
  2971. background-color: #485ec4;
  2972. border-color: #4458b8;
  2973. -webkit-box-shadow: 0 0 0 0.15rem rgba(111, 132, 234, 0.5);
  2974. box-shadow: 0 0 0 0.15rem rgba(111, 132, 234, 0.5);
  2975. }
  2976. .btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  2977. color: #fff;
  2978. background-color: #4458b8;
  2979. border-color: #4053ad;
  2980. }
  2981. .btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  2982. -webkit-box-shadow: 0 0 0 0.15rem rgba(111, 132, 234, 0.5);
  2983. box-shadow: 0 0 0 0.15rem rgba(111, 132, 234, 0.5);
  2984. }
  2985. .btn-primary:disabled, .btn-primary.disabled {
  2986. color: #fff;
  2987. background-color: #556ee6;
  2988. border-color: #556ee6;
  2989. }
  2990. .btn-secondary {
  2991. color: #fff;
  2992. background-color: #74788d;
  2993. border-color: #74788d;
  2994. }
  2995. .btn-secondary:hover {
  2996. color: #fff;
  2997. background-color: #636678;
  2998. border-color: #5d6071;
  2999. }
  3000. .btn-check:focus + .btn-secondary, .btn-secondary:focus {
  3001. color: #fff;
  3002. background-color: #636678;
  3003. border-color: #5d6071;
  3004. -webkit-box-shadow: 0 0 0 0.15rem rgba(137, 140, 158, 0.5);
  3005. box-shadow: 0 0 0 0.15rem rgba(137, 140, 158, 0.5);
  3006. }
  3007. .btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  3008. color: #fff;
  3009. background-color: #5d6071;
  3010. border-color: #575a6a;
  3011. }
  3012. .btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  3013. -webkit-box-shadow: 0 0 0 0.15rem rgba(137, 140, 158, 0.5);
  3014. box-shadow: 0 0 0 0.15rem rgba(137, 140, 158, 0.5);
  3015. }
  3016. .btn-secondary:disabled, .btn-secondary.disabled {
  3017. color: #fff;
  3018. background-color: #74788d;
  3019. border-color: #74788d;
  3020. }
  3021. .btn-success {
  3022. color: #fff;
  3023. background-color: #34c38f;
  3024. border-color: #34c38f;
  3025. }
  3026. .btn-success:hover {
  3027. color: #fff;
  3028. background-color: #2ca67a;
  3029. border-color: #2a9c72;
  3030. }
  3031. .btn-check:focus + .btn-success, .btn-success:focus {
  3032. color: #fff;
  3033. background-color: #2ca67a;
  3034. border-color: #2a9c72;
  3035. -webkit-box-shadow: 0 0 0 0.15rem rgba(82, 204, 160, 0.5);
  3036. box-shadow: 0 0 0 0.15rem rgba(82, 204, 160, 0.5);
  3037. }
  3038. .btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  3039. color: #fff;
  3040. background-color: #2a9c72;
  3041. border-color: #27926b;
  3042. }
  3043. .btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
  3044. -webkit-box-shadow: 0 0 0 0.15rem rgba(82, 204, 160, 0.5);
  3045. box-shadow: 0 0 0 0.15rem rgba(82, 204, 160, 0.5);
  3046. }
  3047. .btn-success:disabled, .btn-success.disabled {
  3048. color: #fff;
  3049. background-color: #34c38f;
  3050. border-color: #34c38f;
  3051. }
  3052. .btn-info {
  3053. color: #fff;
  3054. background-color: #50a5f1;
  3055. border-color: #50a5f1;
  3056. }
  3057. .btn-info:hover {
  3058. color: #fff;
  3059. background-color: #448ccd;
  3060. border-color: #4084c1;
  3061. }
  3062. .btn-check:focus + .btn-info, .btn-info:focus {
  3063. color: #fff;
  3064. background-color: #448ccd;
  3065. border-color: #4084c1;
  3066. -webkit-box-shadow: 0 0 0 0.15rem rgba(106, 179, 243, 0.5);
  3067. box-shadow: 0 0 0 0.15rem rgba(106, 179, 243, 0.5);
  3068. }
  3069. .btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  3070. color: #fff;
  3071. background-color: #4084c1;
  3072. border-color: #3c7cb5;
  3073. }
  3074. .btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {
  3075. -webkit-box-shadow: 0 0 0 0.15rem rgba(106, 179, 243, 0.5);
  3076. box-shadow: 0 0 0 0.15rem rgba(106, 179, 243, 0.5);
  3077. }
  3078. .btn-info:disabled, .btn-info.disabled {
  3079. color: #fff;
  3080. background-color: #50a5f1;
  3081. border-color: #50a5f1;
  3082. }
  3083. .btn-warning {
  3084. color: #fff;
  3085. background-color: #f1b44c;
  3086. border-color: #f1b44c;
  3087. }
  3088. .btn-warning:hover {
  3089. color: #fff;
  3090. background-color: #cd9941;
  3091. border-color: #c1903d;
  3092. }
  3093. .btn-check:focus + .btn-warning, .btn-warning:focus {
  3094. color: #fff;
  3095. background-color: #cd9941;
  3096. border-color: #c1903d;
  3097. -webkit-box-shadow: 0 0 0 0.15rem rgba(243, 191, 103, 0.5);
  3098. box-shadow: 0 0 0 0.15rem rgba(243, 191, 103, 0.5);
  3099. }
  3100. .btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  3101. color: #fff;
  3102. background-color: #c1903d;
  3103. border-color: #b58739;
  3104. }
  3105. .btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {
  3106. -webkit-box-shadow: 0 0 0 0.15rem rgba(243, 191, 103, 0.5);
  3107. box-shadow: 0 0 0 0.15rem rgba(243, 191, 103, 0.5);
  3108. }
  3109. .btn-warning:disabled, .btn-warning.disabled {
  3110. color: #fff;
  3111. background-color: #f1b44c;
  3112. border-color: #f1b44c;
  3113. }
  3114. .btn-danger {
  3115. color: #fff;
  3116. background-color: #f46a6a;
  3117. border-color: #f46a6a;
  3118. }
  3119. .btn-danger:hover {
  3120. color: #fff;
  3121. background-color: #cf5a5a;
  3122. border-color: #c35555;
  3123. }
  3124. .btn-check:focus + .btn-danger, .btn-danger:focus {
  3125. color: #fff;
  3126. background-color: #cf5a5a;
  3127. border-color: #c35555;
  3128. -webkit-box-shadow: 0 0 0 0.15rem rgba(246, 128, 128, 0.5);
  3129. box-shadow: 0 0 0 0.15rem rgba(246, 128, 128, 0.5);
  3130. }
  3131. .btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  3132. color: #fff;
  3133. background-color: #c35555;
  3134. border-color: #b75050;
  3135. }
  3136. .btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
  3137. -webkit-box-shadow: 0 0 0 0.15rem rgba(246, 128, 128, 0.5);
  3138. box-shadow: 0 0 0 0.15rem rgba(246, 128, 128, 0.5);
  3139. }
  3140. .btn-danger:disabled, .btn-danger.disabled {
  3141. color: #fff;
  3142. background-color: #f46a6a;
  3143. border-color: #f46a6a;
  3144. }
  3145. .btn-pink {
  3146. color: #fff;
  3147. background-color: #e83e8c;
  3148. border-color: #e83e8c;
  3149. }
  3150. .btn-pink:hover {
  3151. color: #fff;
  3152. background-color: #c53577;
  3153. border-color: #ba3270;
  3154. }
  3155. .btn-check:focus + .btn-pink, .btn-pink:focus {
  3156. color: #fff;
  3157. background-color: #c53577;
  3158. border-color: #ba3270;
  3159. -webkit-box-shadow: 0 0 0 0.15rem rgba(235, 91, 157, 0.5);
  3160. box-shadow: 0 0 0 0.15rem rgba(235, 91, 157, 0.5);
  3161. }
  3162. .btn-check:checked + .btn-pink, .btn-check:active + .btn-pink, .btn-pink:active, .btn-pink.active, .show > .btn-pink.dropdown-toggle {
  3163. color: #fff;
  3164. background-color: #ba3270;
  3165. border-color: #ae2f69;
  3166. }
  3167. .btn-check:checked + .btn-pink:focus, .btn-check:active + .btn-pink:focus, .btn-pink:active:focus, .btn-pink.active:focus, .show > .btn-pink.dropdown-toggle:focus {
  3168. -webkit-box-shadow: 0 0 0 0.15rem rgba(235, 91, 157, 0.5);
  3169. box-shadow: 0 0 0 0.15rem rgba(235, 91, 157, 0.5);
  3170. }
  3171. .btn-pink:disabled, .btn-pink.disabled {
  3172. color: #fff;
  3173. background-color: #e83e8c;
  3174. border-color: #e83e8c;
  3175. }
  3176. .btn-light {
  3177. color: #000;
  3178. background-color: #eff2f7;
  3179. border-color: #eff2f7;
  3180. }
  3181. .btn-light:hover {
  3182. color: #000;
  3183. background-color: #f1f4f8;
  3184. border-color: #f1f3f8;
  3185. }
  3186. .btn-check:focus + .btn-light, .btn-light:focus {
  3187. color: #000;
  3188. background-color: #f1f4f8;
  3189. border-color: #f1f3f8;
  3190. -webkit-box-shadow: 0 0 0 0.15rem rgba(203, 206, 210, 0.5);
  3191. box-shadow: 0 0 0 0.15rem rgba(203, 206, 210, 0.5);
  3192. }
  3193. .btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  3194. color: #000;
  3195. background-color: #f2f5f9;
  3196. border-color: #f1f3f8;
  3197. }
  3198. .btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
  3199. -webkit-box-shadow: 0 0 0 0.15rem rgba(203, 206, 210, 0.5);
  3200. box-shadow: 0 0 0 0.15rem rgba(203, 206, 210, 0.5);
  3201. }
  3202. .btn-light:disabled, .btn-light.disabled {
  3203. color: #000;
  3204. background-color: #eff2f7;
  3205. border-color: #eff2f7;
  3206. }
  3207. .btn-dark {
  3208. color: #fff;
  3209. background-color: #343a40;
  3210. border-color: #343a40;
  3211. }
  3212. .btn-dark:hover {
  3213. color: #fff;
  3214. background-color: #2c3136;
  3215. border-color: #2a2e33;
  3216. }
  3217. .btn-check:focus + .btn-dark, .btn-dark:focus {
  3218. color: #fff;
  3219. background-color: #2c3136;
  3220. border-color: #2a2e33;
  3221. -webkit-box-shadow: 0 0 0 0.15rem rgba(82, 88, 93, 0.5);
  3222. box-shadow: 0 0 0 0.15rem rgba(82, 88, 93, 0.5);
  3223. }
  3224. .btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  3225. color: #fff;
  3226. background-color: #2a2e33;
  3227. border-color: #272c30;
  3228. }
  3229. .btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {
  3230. -webkit-box-shadow: 0 0 0 0.15rem rgba(82, 88, 93, 0.5);
  3231. box-shadow: 0 0 0 0.15rem rgba(82, 88, 93, 0.5);
  3232. }
  3233. .btn-dark:disabled, .btn-dark.disabled {
  3234. color: #fff;
  3235. background-color: #343a40;
  3236. border-color: #343a40;
  3237. }
  3238. .btn-outline-primary {
  3239. color: #556ee6;
  3240. border-color: #556ee6;
  3241. }
  3242. .btn-outline-primary:hover {
  3243. color: #fff;
  3244. background-color: #556ee6;
  3245. border-color: #556ee6;
  3246. }
  3247. .btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  3248. -webkit-box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.5);
  3249. box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.5);
  3250. }
  3251. .btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  3252. color: #fff;
  3253. background-color: #556ee6;
  3254. border-color: #556ee6;
  3255. }
  3256. .btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
  3257. -webkit-box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.5);
  3258. box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.5);
  3259. }
  3260. .btn-outline-primary:disabled, .btn-outline-primary.disabled {
  3261. color: #556ee6;
  3262. background-color: transparent;
  3263. }
  3264. .btn-outline-secondary {
  3265. color: #74788d;
  3266. border-color: #74788d;
  3267. }
  3268. .btn-outline-secondary:hover {
  3269. color: #fff;
  3270. background-color: #74788d;
  3271. border-color: #74788d;
  3272. }
  3273. .btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  3274. -webkit-box-shadow: 0 0 0 0.15rem rgba(116, 120, 141, 0.5);
  3275. box-shadow: 0 0 0 0.15rem rgba(116, 120, 141, 0.5);
  3276. }
  3277. .btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  3278. color: #fff;
  3279. background-color: #74788d;
  3280. border-color: #74788d;
  3281. }
  3282. .btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  3283. -webkit-box-shadow: 0 0 0 0.15rem rgba(116, 120, 141, 0.5);
  3284. box-shadow: 0 0 0 0.15rem rgba(116, 120, 141, 0.5);
  3285. }
  3286. .btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  3287. color: #74788d;
  3288. background-color: transparent;
  3289. }
  3290. .btn-outline-success {
  3291. color: #34c38f;
  3292. border-color: #34c38f;
  3293. }
  3294. .btn-outline-success:hover {
  3295. color: #fff;
  3296. background-color: #34c38f;
  3297. border-color: #34c38f;
  3298. }
  3299. .btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  3300. -webkit-box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.5);
  3301. box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.5);
  3302. }
  3303. .btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  3304. color: #fff;
  3305. background-color: #34c38f;
  3306. border-color: #34c38f;
  3307. }
  3308. .btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  3309. -webkit-box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.5);
  3310. box-shadow: 0 0 0 0.15rem rgba(52, 195, 143, 0.5);
  3311. }
  3312. .btn-outline-success:disabled, .btn-outline-success.disabled {
  3313. color: #34c38f;
  3314. background-color: transparent;
  3315. }
  3316. .btn-outline-info {
  3317. color: #50a5f1;
  3318. border-color: #50a5f1;
  3319. }
  3320. .btn-outline-info:hover {
  3321. color: #fff;
  3322. background-color: #50a5f1;
  3323. border-color: #50a5f1;
  3324. }
  3325. .btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  3326. -webkit-box-shadow: 0 0 0 0.15rem rgba(80, 165, 241, 0.5);
  3327. box-shadow: 0 0 0 0.15rem rgba(80, 165, 241, 0.5);
  3328. }
  3329. .btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  3330. color: #fff;
  3331. background-color: #50a5f1;
  3332. border-color: #50a5f1;
  3333. }
  3334. .btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  3335. -webkit-box-shadow: 0 0 0 0.15rem rgba(80, 165, 241, 0.5);
  3336. box-shadow: 0 0 0 0.15rem rgba(80, 165, 241, 0.5);
  3337. }
  3338. .btn-outline-info:disabled, .btn-outline-info.disabled {
  3339. color: #50a5f1;
  3340. background-color: transparent;
  3341. }
  3342. .btn-outline-warning {
  3343. color: #f1b44c;
  3344. border-color: #f1b44c;
  3345. }
  3346. .btn-outline-warning:hover {
  3347. color: #fff;
  3348. background-color: #f1b44c;
  3349. border-color: #f1b44c;
  3350. }
  3351. .btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  3352. -webkit-box-shadow: 0 0 0 0.15rem rgba(241, 180, 76, 0.5);
  3353. box-shadow: 0 0 0 0.15rem rgba(241, 180, 76, 0.5);
  3354. }
  3355. .btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  3356. color: #fff;
  3357. background-color: #f1b44c;
  3358. border-color: #f1b44c;
  3359. }
  3360. .btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  3361. -webkit-box-shadow: 0 0 0 0.15rem rgba(241, 180, 76, 0.5);
  3362. box-shadow: 0 0 0 0.15rem rgba(241, 180, 76, 0.5);
  3363. }
  3364. .btn-outline-warning:disabled, .btn-outline-warning.disabled {
  3365. color: #f1b44c;
  3366. background-color: transparent;
  3367. }
  3368. .btn-outline-danger {
  3369. color: #f46a6a;
  3370. border-color: #f46a6a;
  3371. }
  3372. .btn-outline-danger:hover {
  3373. color: #fff;
  3374. background-color: #f46a6a;
  3375. border-color: #f46a6a;
  3376. }
  3377. .btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  3378. -webkit-box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.5);
  3379. box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.5);
  3380. }
  3381. .btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  3382. color: #fff;
  3383. background-color: #f46a6a;
  3384. border-color: #f46a6a;
  3385. }
  3386. .btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  3387. -webkit-box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.5);
  3388. box-shadow: 0 0 0 0.15rem rgba(244, 106, 106, 0.5);
  3389. }
  3390. .btn-outline-danger:disabled, .btn-outline-danger.disabled {
  3391. color: #f46a6a;
  3392. background-color: transparent;
  3393. }
  3394. .btn-outline-pink {
  3395. color: #e83e8c;
  3396. border-color: #e83e8c;
  3397. }
  3398. .btn-outline-pink:hover {
  3399. color: #fff;
  3400. background-color: #e83e8c;
  3401. border-color: #e83e8c;
  3402. }
  3403. .btn-check:focus + .btn-outline-pink, .btn-outline-pink:focus {
  3404. -webkit-box-shadow: 0 0 0 0.15rem rgba(232, 62, 140, 0.5);
  3405. box-shadow: 0 0 0 0.15rem rgba(232, 62, 140, 0.5);
  3406. }
  3407. .btn-check:checked + .btn-outline-pink, .btn-check:active + .btn-outline-pink, .btn-outline-pink:active, .btn-outline-pink.active, .btn-outline-pink.dropdown-toggle.show {
  3408. color: #fff;
  3409. background-color: #e83e8c;
  3410. border-color: #e83e8c;
  3411. }
  3412. .btn-check:checked + .btn-outline-pink:focus, .btn-check:active + .btn-outline-pink:focus, .btn-outline-pink:active:focus, .btn-outline-pink.active:focus, .btn-outline-pink.dropdown-toggle.show:focus {
  3413. -webkit-box-shadow: 0 0 0 0.15rem rgba(232, 62, 140, 0.5);
  3414. box-shadow: 0 0 0 0.15rem rgba(232, 62, 140, 0.5);
  3415. }
  3416. .btn-outline-pink:disabled, .btn-outline-pink.disabled {
  3417. color: #e83e8c;
  3418. background-color: transparent;
  3419. }
  3420. .btn-outline-light {
  3421. color: #eff2f7;
  3422. border-color: #eff2f7;
  3423. }
  3424. .btn-outline-light:hover {
  3425. color: #000;
  3426. background-color: #eff2f7;
  3427. border-color: #eff2f7;
  3428. }
  3429. .btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  3430. -webkit-box-shadow: 0 0 0 0.15rem rgba(239, 242, 247, 0.5);
  3431. box-shadow: 0 0 0 0.15rem rgba(239, 242, 247, 0.5);
  3432. }
  3433. .btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
  3434. color: #000;
  3435. background-color: #eff2f7;
  3436. border-color: #eff2f7;
  3437. }
  3438. .btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
  3439. -webkit-box-shadow: 0 0 0 0.15rem rgba(239, 242, 247, 0.5);
  3440. box-shadow: 0 0 0 0.15rem rgba(239, 242, 247, 0.5);
  3441. }
  3442. .btn-outline-light:disabled, .btn-outline-light.disabled {
  3443. color: #eff2f7;
  3444. background-color: transparent;
  3445. }
  3446. .btn-outline-dark {
  3447. color: #343a40;
  3448. border-color: #343a40;
  3449. }
  3450. .btn-outline-dark:hover {
  3451. color: #fff;
  3452. background-color: #343a40;
  3453. border-color: #343a40;
  3454. }
  3455. .btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  3456. -webkit-box-shadow: 0 0 0 0.15rem rgba(52, 58, 64, 0.5);
  3457. box-shadow: 0 0 0 0.15rem rgba(52, 58, 64, 0.5);
  3458. }
  3459. .btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
  3460. color: #fff;
  3461. background-color: #343a40;
  3462. border-color: #343a40;
  3463. }
  3464. .btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
  3465. -webkit-box-shadow: 0 0 0 0.15rem rgba(52, 58, 64, 0.5);
  3466. box-shadow: 0 0 0 0.15rem rgba(52, 58, 64, 0.5);
  3467. }
  3468. .btn-outline-dark:disabled, .btn-outline-dark.disabled {
  3469. color: #343a40;
  3470. background-color: transparent;
  3471. }
  3472. .btn-link {
  3473. font-weight: 400;
  3474. color: #556ee6;
  3475. text-decoration: none;
  3476. }
  3477. .btn-link:hover {
  3478. color: #4458b8;
  3479. text-decoration: underline;
  3480. }
  3481. .btn-link:focus {
  3482. text-decoration: underline;
  3483. }
  3484. .btn-link:disabled, .btn-link.disabled {
  3485. color: #74788d;
  3486. }
  3487. .btn-lg, .btn-group-lg > .btn {
  3488. padding: 0.5rem 1rem;
  3489. font-size: 1.015625rem;
  3490. border-radius: 0.4rem;
  3491. }
  3492. .btn-sm, .btn-group-sm > .btn {
  3493. padding: 0.25rem 0.5rem;
  3494. font-size: 0.7109375rem;
  3495. border-radius: 0.2rem;
  3496. }
  3497. .fade {
  3498. -webkit-transition: opacity 0.15s linear;
  3499. transition: opacity 0.15s linear;
  3500. }
  3501. @media (prefers-reduced-motion: reduce) {
  3502. .fade {
  3503. -webkit-transition: none;
  3504. transition: none;
  3505. }
  3506. }
  3507. .fade:not(.show) {
  3508. opacity: 0;
  3509. }
  3510. .collapse:not(.show) {
  3511. display: none;
  3512. }
  3513. .collapsing {
  3514. height: 0;
  3515. overflow: hidden;
  3516. -webkit-transition: height 0.35s ease;
  3517. transition: height 0.35s ease;
  3518. }
  3519. @media (prefers-reduced-motion: reduce) {
  3520. .collapsing {
  3521. -webkit-transition: none;
  3522. transition: none;
  3523. }
  3524. }
  3525. .collapsing.collapse-horizontal {
  3526. width: 0;
  3527. height: auto;
  3528. -webkit-transition: width 0.35s ease;
  3529. transition: width 0.35s ease;
  3530. }
  3531. @media (prefers-reduced-motion: reduce) {
  3532. .collapsing.collapse-horizontal {
  3533. -webkit-transition: none;
  3534. transition: none;
  3535. }
  3536. }
  3537. .dropup,
  3538. .dropend,
  3539. .dropdown,
  3540. .dropstart {
  3541. position: relative;
  3542. }
  3543. .dropdown-toggle {
  3544. white-space: nowrap;
  3545. }
  3546. .dropdown-menu {
  3547. position: absolute;
  3548. z-index: 1000;
  3549. display: none;
  3550. min-width: 10rem;
  3551. padding: 0.5rem 0;
  3552. margin: 0;
  3553. font-size: 0.8125rem;
  3554. color: #495057;
  3555. text-align: right;
  3556. list-style: none;
  3557. background-color: #fff;
  3558. background-clip: padding-box;
  3559. border: 0 solid rgba(0, 0, 0, 0.15);
  3560. border-radius: 0.25rem;
  3561. }
  3562. .dropdown-menu[data-bs-popper] {
  3563. top: 100%;
  3564. right: 0;
  3565. margin-top: 0.125rem;
  3566. }
  3567. .dropdown-menu-start {
  3568. --bs-position: start;
  3569. }
  3570. .dropdown-menu-start[data-bs-popper] {
  3571. left: auto;
  3572. right: 0;
  3573. }
  3574. .dropdown-menu-end {
  3575. --bs-position: end;
  3576. }
  3577. .dropdown-menu-end[data-bs-popper] {
  3578. left: 0;
  3579. right: auto;
  3580. }
  3581. @media (min-width: 576px) {
  3582. .dropdown-menu-sm-start {
  3583. --bs-position: start;
  3584. }
  3585. .dropdown-menu-sm-start[data-bs-popper] {
  3586. left: auto;
  3587. right: 0;
  3588. }
  3589. .dropdown-menu-sm-end {
  3590. --bs-position: end;
  3591. }
  3592. .dropdown-menu-sm-end[data-bs-popper] {
  3593. left: 0;
  3594. right: auto;
  3595. }
  3596. }
  3597. @media (min-width: 768px) {
  3598. .dropdown-menu-md-start {
  3599. --bs-position: start;
  3600. }
  3601. .dropdown-menu-md-start[data-bs-popper] {
  3602. left: auto;
  3603. right: 0;
  3604. }
  3605. .dropdown-menu-md-end {
  3606. --bs-position: end;
  3607. }
  3608. .dropdown-menu-md-end[data-bs-popper] {
  3609. left: 0;
  3610. right: auto;
  3611. }
  3612. }
  3613. @media (min-width: 992px) {
  3614. .dropdown-menu-lg-start {
  3615. --bs-position: start;
  3616. }
  3617. .dropdown-menu-lg-start[data-bs-popper] {
  3618. left: auto;
  3619. right: 0;
  3620. }
  3621. .dropdown-menu-lg-end {
  3622. --bs-position: end;
  3623. }
  3624. .dropdown-menu-lg-end[data-bs-popper] {
  3625. left: 0;
  3626. right: auto;
  3627. }
  3628. }
  3629. @media (min-width: 1200px) {
  3630. .dropdown-menu-xl-start {
  3631. --bs-position: start;
  3632. }
  3633. .dropdown-menu-xl-start[data-bs-popper] {
  3634. left: auto;
  3635. right: 0;
  3636. }
  3637. .dropdown-menu-xl-end {
  3638. --bs-position: end;
  3639. }
  3640. .dropdown-menu-xl-end[data-bs-popper] {
  3641. left: 0;
  3642. right: auto;
  3643. }
  3644. }
  3645. @media (min-width: 1400px) {
  3646. .dropdown-menu-xxl-start {
  3647. --bs-position: start;
  3648. }
  3649. .dropdown-menu-xxl-start[data-bs-popper] {
  3650. left: auto;
  3651. right: 0;
  3652. }
  3653. .dropdown-menu-xxl-end {
  3654. --bs-position: end;
  3655. }
  3656. .dropdown-menu-xxl-end[data-bs-popper] {
  3657. left: 0;
  3658. right: auto;
  3659. }
  3660. }
  3661. .dropup .dropdown-menu[data-bs-popper] {
  3662. top: auto;
  3663. bottom: 100%;
  3664. margin-top: 0;
  3665. margin-bottom: 0.125rem;
  3666. }
  3667. .dropend .dropdown-menu[data-bs-popper] {
  3668. top: 0;
  3669. left: auto;
  3670. right: 100%;
  3671. margin-top: 0;
  3672. margin-right: 0.125rem;
  3673. }
  3674. .dropend .dropdown-toggle::after {
  3675. vertical-align: 0;
  3676. }
  3677. .dropstart .dropdown-menu[data-bs-popper] {
  3678. top: 0;
  3679. left: 100%;
  3680. right: auto;
  3681. margin-top: 0;
  3682. margin-left: 0.125rem;
  3683. }
  3684. .dropstart .dropdown-toggle::before {
  3685. vertical-align: 0;
  3686. }
  3687. .dropdown-divider {
  3688. height: 0;
  3689. margin: 0.5rem 0;
  3690. overflow: hidden;
  3691. border-top: 1px solid #eff2f7;
  3692. }
  3693. .dropdown-item {
  3694. display: block;
  3695. width: 100%;
  3696. padding: 0.35rem 1.5rem;
  3697. clear: both;
  3698. font-weight: 400;
  3699. color: #212529;
  3700. text-align: inherit;
  3701. white-space: nowrap;
  3702. background-color: transparent;
  3703. border: 0;
  3704. }
  3705. .dropdown-item:hover, .dropdown-item:focus {
  3706. color: #1e2125;
  3707. text-decoration: none;
  3708. background-color: #f8f9fa;
  3709. }
  3710. .dropdown-item.active, .dropdown-item:active {
  3711. color: #343a40;
  3712. text-decoration: none;
  3713. background-color: #f8f9fa;
  3714. }
  3715. .dropdown-item.disabled, .dropdown-item:disabled {
  3716. color: #74788d;
  3717. pointer-events: none;
  3718. background-color: transparent;
  3719. }
  3720. .dropdown-menu.show {
  3721. display: block;
  3722. }
  3723. .dropdown-header {
  3724. display: block;
  3725. padding: 0.5rem 1.5rem;
  3726. margin-bottom: 0;
  3727. font-size: 0.7109375rem;
  3728. color: #74788d;
  3729. white-space: nowrap;
  3730. }
  3731. .dropdown-item-text {
  3732. display: block;
  3733. padding: 0.35rem 1.5rem;
  3734. color: #212529;
  3735. }
  3736. .dropdown-menu-dark {
  3737. color: #f6f6f6;
  3738. background-color: #343a40;
  3739. border-color: rgba(0, 0, 0, 0.15);
  3740. }
  3741. .dropdown-menu-dark .dropdown-item {
  3742. color: #f6f6f6;
  3743. }
  3744. .dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  3745. color: #fff;
  3746. background-color: rgba(255, 255, 255, 0.15);
  3747. }
  3748. .dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  3749. color: #343a40;
  3750. background-color: #f8f9fa;
  3751. }
  3752. .dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  3753. color: #adb5bd;
  3754. }
  3755. .dropdown-menu-dark .dropdown-divider {
  3756. border-color: #eff2f7;
  3757. }
  3758. .dropdown-menu-dark .dropdown-item-text {
  3759. color: #f6f6f6;
  3760. }
  3761. .dropdown-menu-dark .dropdown-header {
  3762. color: #adb5bd;
  3763. }
  3764. .btn-group,
  3765. .btn-group-vertical {
  3766. position: relative;
  3767. display: -webkit-inline-box;
  3768. display: -ms-inline-flexbox;
  3769. display: inline-flex;
  3770. vertical-align: middle;
  3771. }
  3772. .btn-group > .btn,
  3773. .btn-group-vertical > .btn {
  3774. position: relative;
  3775. -webkit-box-flex: 1;
  3776. -ms-flex: 1 1 auto;
  3777. flex: 1 1 auto;
  3778. }
  3779. .btn-group > .btn-check:checked + .btn,
  3780. .btn-group > .btn-check:focus + .btn,
  3781. .btn-group > .btn:hover,
  3782. .btn-group > .btn:focus,
  3783. .btn-group > .btn:active,
  3784. .btn-group > .btn.active,
  3785. .btn-group-vertical > .btn-check:checked + .btn,
  3786. .btn-group-vertical > .btn-check:focus + .btn,
  3787. .btn-group-vertical > .btn:hover,
  3788. .btn-group-vertical > .btn:focus,
  3789. .btn-group-vertical > .btn:active,
  3790. .btn-group-vertical > .btn.active {
  3791. z-index: 1;
  3792. }
  3793. .btn-toolbar {
  3794. display: -webkit-box;
  3795. display: -ms-flexbox;
  3796. display: flex;
  3797. -ms-flex-wrap: wrap;
  3798. flex-wrap: wrap;
  3799. -webkit-box-pack: start;
  3800. -ms-flex-pack: start;
  3801. justify-content: flex-start;
  3802. }
  3803. .btn-toolbar .input-group {
  3804. width: auto;
  3805. }
  3806. .btn-group > .btn:not(:first-child),
  3807. .btn-group > .btn-group:not(:first-child) {
  3808. margin-right: -1px;
  3809. }
  3810. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  3811. .btn-group > .btn-group:not(:last-child) > .btn {
  3812. border-top-left-radius: 0;
  3813. border-bottom-left-radius: 0;
  3814. }
  3815. .btn-group > .btn:nth-child(n+3),
  3816. .btn-group > :not(.btn-check) + .btn,
  3817. .btn-group > .btn-group:not(:first-child) > .btn {
  3818. border-top-right-radius: 0;
  3819. border-bottom-right-radius: 0;
  3820. }
  3821. .dropdown-toggle-split {
  3822. padding-left: 0.5625rem;
  3823. padding-right: 0.5625rem;
  3824. }
  3825. .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  3826. margin-right: 0;
  3827. }
  3828. .dropstart .dropdown-toggle-split::before {
  3829. margin-left: 0;
  3830. }
  3831. .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  3832. padding-left: 0.375rem;
  3833. padding-right: 0.375rem;
  3834. }
  3835. .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  3836. padding-left: 0.75rem;
  3837. padding-right: 0.75rem;
  3838. }
  3839. .btn-group-vertical {
  3840. -webkit-box-orient: vertical;
  3841. -webkit-box-direction: normal;
  3842. -ms-flex-direction: column;
  3843. flex-direction: column;
  3844. -webkit-box-align: start;
  3845. -ms-flex-align: start;
  3846. align-items: flex-start;
  3847. -webkit-box-pack: center;
  3848. -ms-flex-pack: center;
  3849. justify-content: center;
  3850. }
  3851. .btn-group-vertical > .btn,
  3852. .btn-group-vertical > .btn-group {
  3853. width: 100%;
  3854. }
  3855. .btn-group-vertical > .btn:not(:first-child),
  3856. .btn-group-vertical > .btn-group:not(:first-child) {
  3857. margin-top: -1px;
  3858. }
  3859. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  3860. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  3861. border-bottom-left-radius: 0;
  3862. border-bottom-right-radius: 0;
  3863. }
  3864. .btn-group-vertical > .btn ~ .btn,
  3865. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  3866. border-top-right-radius: 0;
  3867. border-top-left-radius: 0;
  3868. }
  3869. .nav {
  3870. display: -webkit-box;
  3871. display: -ms-flexbox;
  3872. display: flex;
  3873. -ms-flex-wrap: wrap;
  3874. flex-wrap: wrap;
  3875. padding-right: 0;
  3876. margin-bottom: 0;
  3877. list-style: none;
  3878. }
  3879. .nav-link {
  3880. display: block;
  3881. padding: 0.5rem 1rem;
  3882. color: #556ee6;
  3883. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  3884. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  3885. }
  3886. @media (prefers-reduced-motion: reduce) {
  3887. .nav-link {
  3888. -webkit-transition: none;
  3889. transition: none;
  3890. }
  3891. }
  3892. .nav-link:hover, .nav-link:focus {
  3893. color: #4458b8;
  3894. text-decoration: none;
  3895. }
  3896. .nav-link.disabled {
  3897. color: #74788d;
  3898. pointer-events: none;
  3899. cursor: default;
  3900. }
  3901. .nav-tabs {
  3902. border-bottom: 1px solid #ced4da;
  3903. }
  3904. .nav-tabs .nav-link {
  3905. margin-bottom: -1px;
  3906. background: none;
  3907. border: 1px solid transparent;
  3908. border-top-right-radius: 0.25rem;
  3909. border-top-left-radius: 0.25rem;
  3910. }
  3911. .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  3912. border-color: #eff2f7 #eff2f7 #ced4da;
  3913. isolation: isolate;
  3914. }
  3915. .nav-tabs .nav-link.disabled {
  3916. color: #74788d;
  3917. background-color: transparent;
  3918. border-color: transparent;
  3919. }
  3920. .nav-tabs .nav-link.active,
  3921. .nav-tabs .nav-item.show .nav-link {
  3922. color: #495057;
  3923. background-color: #fff;
  3924. border-color: #ced4da #ced4da #fff;
  3925. }
  3926. .nav-tabs .dropdown-menu {
  3927. margin-top: -1px;
  3928. border-top-right-radius: 0;
  3929. border-top-left-radius: 0;
  3930. }
  3931. .nav-pills .nav-link {
  3932. background: none;
  3933. border: 0;
  3934. border-radius: 0.25rem;
  3935. }
  3936. .nav-pills .nav-link.active,
  3937. .nav-pills .show > .nav-link {
  3938. color: #fff;
  3939. background-color: #556ee6;
  3940. }
  3941. .nav-fill > .nav-link,
  3942. .nav-fill .nav-item {
  3943. -webkit-box-flex: 1;
  3944. -ms-flex: 1 1 auto;
  3945. flex: 1 1 auto;
  3946. text-align: center;
  3947. }
  3948. .nav-justified > .nav-link,
  3949. .nav-justified .nav-item {
  3950. -ms-flex-preferred-size: 0;
  3951. flex-basis: 0;
  3952. -webkit-box-flex: 1;
  3953. -ms-flex-positive: 1;
  3954. flex-grow: 1;
  3955. text-align: center;
  3956. }
  3957. .nav-fill .nav-item .nav-link,
  3958. .nav-justified .nav-item .nav-link {
  3959. width: 100%;
  3960. }
  3961. .tab-content > .tab-pane {
  3962. display: none;
  3963. }
  3964. .tab-content > .active {
  3965. display: block;
  3966. }
  3967. .navbar {
  3968. position: relative;
  3969. display: -webkit-box;
  3970. display: -ms-flexbox;
  3971. display: flex;
  3972. -ms-flex-wrap: wrap;
  3973. flex-wrap: wrap;
  3974. -webkit-box-align: center;
  3975. -ms-flex-align: center;
  3976. align-items: center;
  3977. -webkit-box-pack: justify;
  3978. -ms-flex-pack: justify;
  3979. justify-content: space-between;
  3980. padding-top: 0.5rem;
  3981. padding-bottom: 0.5rem;
  3982. }
  3983. .navbar > .container,
  3984. .navbar > .container-fluid,
  3985. .navbar > .container-sm,
  3986. .navbar > .container-md,
  3987. .navbar > .container-lg,
  3988. .navbar > .container-xl,
  3989. .navbar > .container-xxl {
  3990. display: -webkit-box;
  3991. display: -ms-flexbox;
  3992. display: flex;
  3993. -ms-flex-wrap: inherit;
  3994. flex-wrap: inherit;
  3995. -webkit-box-align: center;
  3996. -ms-flex-align: center;
  3997. align-items: center;
  3998. -webkit-box-pack: justify;
  3999. -ms-flex-pack: justify;
  4000. justify-content: space-between;
  4001. }
  4002. .navbar-brand {
  4003. padding-top: 0.34765625rem;
  4004. padding-bottom: 0.34765625rem;
  4005. margin-left: 1rem;
  4006. font-size: 1.015625rem;
  4007. white-space: nowrap;
  4008. }
  4009. .navbar-brand:hover, .navbar-brand:focus {
  4010. text-decoration: none;
  4011. }
  4012. .navbar-nav {
  4013. display: -webkit-box;
  4014. display: -ms-flexbox;
  4015. display: flex;
  4016. -webkit-box-orient: vertical;
  4017. -webkit-box-direction: normal;
  4018. -ms-flex-direction: column;
  4019. flex-direction: column;
  4020. padding-right: 0;
  4021. margin-bottom: 0;
  4022. list-style: none;
  4023. }
  4024. .navbar-nav .nav-link {
  4025. padding-left: 0;
  4026. padding-right: 0;
  4027. }
  4028. .navbar-nav .dropdown-menu {
  4029. position: static;
  4030. }
  4031. .navbar-text {
  4032. padding-top: 0.5rem;
  4033. padding-bottom: 0.5rem;
  4034. }
  4035. .navbar-collapse {
  4036. -ms-flex-preferred-size: 100%;
  4037. flex-basis: 100%;
  4038. -webkit-box-flex: 1;
  4039. -ms-flex-positive: 1;
  4040. flex-grow: 1;
  4041. -webkit-box-align: center;
  4042. -ms-flex-align: center;
  4043. align-items: center;
  4044. }
  4045. .navbar-toggler {
  4046. padding: 0.25rem 0.75rem;
  4047. font-size: 1.015625rem;
  4048. line-height: 1;
  4049. background-color: transparent;
  4050. border: 1px solid transparent;
  4051. border-radius: 0.25rem;
  4052. -webkit-transition: -webkit-box-shadow 0.15s ease-in-out;
  4053. transition: -webkit-box-shadow 0.15s ease-in-out;
  4054. transition: box-shadow 0.15s ease-in-out;
  4055. transition: box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  4056. }
  4057. @media (prefers-reduced-motion: reduce) {
  4058. .navbar-toggler {
  4059. -webkit-transition: none;
  4060. transition: none;
  4061. }
  4062. }
  4063. .navbar-toggler:hover {
  4064. text-decoration: none;
  4065. }
  4066. .navbar-toggler:focus {
  4067. text-decoration: none;
  4068. outline: 0;
  4069. -webkit-box-shadow: 0 0 0 0.15rem;
  4070. box-shadow: 0 0 0 0.15rem;
  4071. }
  4072. .navbar-toggler-icon {
  4073. display: inline-block;
  4074. width: 1.5em;
  4075. height: 1.5em;
  4076. vertical-align: middle;
  4077. background-repeat: no-repeat;
  4078. background-position: center;
  4079. background-size: 100%;
  4080. }
  4081. .navbar-nav-scroll {
  4082. max-height: var(--bs-scroll-height, 75vh);
  4083. overflow-y: auto;
  4084. }
  4085. @media (min-width: 576px) {
  4086. .navbar-expand-sm {
  4087. -ms-flex-wrap: nowrap;
  4088. flex-wrap: nowrap;
  4089. -webkit-box-pack: start;
  4090. -ms-flex-pack: start;
  4091. justify-content: flex-start;
  4092. }
  4093. .navbar-expand-sm .navbar-nav {
  4094. -webkit-box-orient: horizontal;
  4095. -webkit-box-direction: normal;
  4096. -ms-flex-direction: row;
  4097. flex-direction: row;
  4098. }
  4099. .navbar-expand-sm .navbar-nav .dropdown-menu {
  4100. position: absolute;
  4101. }
  4102. .navbar-expand-sm .navbar-nav .nav-link {
  4103. padding-left: 0.5rem;
  4104. padding-right: 0.5rem;
  4105. }
  4106. .navbar-expand-sm .navbar-nav-scroll {
  4107. overflow: visible;
  4108. }
  4109. .navbar-expand-sm .navbar-collapse {
  4110. display: -webkit-box !important;
  4111. display: -ms-flexbox !important;
  4112. display: flex !important;
  4113. -ms-flex-preferred-size: auto;
  4114. flex-basis: auto;
  4115. }
  4116. .navbar-expand-sm .navbar-toggler {
  4117. display: none;
  4118. }
  4119. .navbar-expand-sm .offcanvas-header {
  4120. display: none;
  4121. }
  4122. .navbar-expand-sm .offcanvas {
  4123. position: inherit;
  4124. bottom: 0;
  4125. z-index: 1000;
  4126. -webkit-box-flex: 1;
  4127. -ms-flex-positive: 1;
  4128. flex-grow: 1;
  4129. visibility: visible !important;
  4130. background-color: transparent;
  4131. border-left: 0;
  4132. border-right: 0;
  4133. -webkit-transition: none;
  4134. transition: none;
  4135. -webkit-transform: none;
  4136. transform: none;
  4137. }
  4138. .navbar-expand-sm .offcanvas-top,
  4139. .navbar-expand-sm .offcanvas-bottom {
  4140. height: auto;
  4141. border-top: 0;
  4142. border-bottom: 0;
  4143. }
  4144. .navbar-expand-sm .offcanvas-body {
  4145. display: -webkit-box;
  4146. display: -ms-flexbox;
  4147. display: flex;
  4148. -webkit-box-flex: 0;
  4149. -ms-flex-positive: 0;
  4150. flex-grow: 0;
  4151. padding: 0;
  4152. overflow-y: visible;
  4153. }
  4154. }
  4155. @media (min-width: 768px) {
  4156. .navbar-expand-md {
  4157. -ms-flex-wrap: nowrap;
  4158. flex-wrap: nowrap;
  4159. -webkit-box-pack: start;
  4160. -ms-flex-pack: start;
  4161. justify-content: flex-start;
  4162. }
  4163. .navbar-expand-md .navbar-nav {
  4164. -webkit-box-orient: horizontal;
  4165. -webkit-box-direction: normal;
  4166. -ms-flex-direction: row;
  4167. flex-direction: row;
  4168. }
  4169. .navbar-expand-md .navbar-nav .dropdown-menu {
  4170. position: absolute;
  4171. }
  4172. .navbar-expand-md .navbar-nav .nav-link {
  4173. padding-left: 0.5rem;
  4174. padding-right: 0.5rem;
  4175. }
  4176. .navbar-expand-md .navbar-nav-scroll {
  4177. overflow: visible;
  4178. }
  4179. .navbar-expand-md .navbar-collapse {
  4180. display: -webkit-box !important;
  4181. display: -ms-flexbox !important;
  4182. display: flex !important;
  4183. -ms-flex-preferred-size: auto;
  4184. flex-basis: auto;
  4185. }
  4186. .navbar-expand-md .navbar-toggler {
  4187. display: none;
  4188. }
  4189. .navbar-expand-md .offcanvas-header {
  4190. display: none;
  4191. }
  4192. .navbar-expand-md .offcanvas {
  4193. position: inherit;
  4194. bottom: 0;
  4195. z-index: 1000;
  4196. -webkit-box-flex: 1;
  4197. -ms-flex-positive: 1;
  4198. flex-grow: 1;
  4199. visibility: visible !important;
  4200. background-color: transparent;
  4201. border-left: 0;
  4202. border-right: 0;
  4203. -webkit-transition: none;
  4204. transition: none;
  4205. -webkit-transform: none;
  4206. transform: none;
  4207. }
  4208. .navbar-expand-md .offcanvas-top,
  4209. .navbar-expand-md .offcanvas-bottom {
  4210. height: auto;
  4211. border-top: 0;
  4212. border-bottom: 0;
  4213. }
  4214. .navbar-expand-md .offcanvas-body {
  4215. display: -webkit-box;
  4216. display: -ms-flexbox;
  4217. display: flex;
  4218. -webkit-box-flex: 0;
  4219. -ms-flex-positive: 0;
  4220. flex-grow: 0;
  4221. padding: 0;
  4222. overflow-y: visible;
  4223. }
  4224. }
  4225. @media (min-width: 992px) {
  4226. .navbar-expand-lg {
  4227. -ms-flex-wrap: nowrap;
  4228. flex-wrap: nowrap;
  4229. -webkit-box-pack: start;
  4230. -ms-flex-pack: start;
  4231. justify-content: flex-start;
  4232. }
  4233. .navbar-expand-lg .navbar-nav {
  4234. -webkit-box-orient: horizontal;
  4235. -webkit-box-direction: normal;
  4236. -ms-flex-direction: row;
  4237. flex-direction: row;
  4238. }
  4239. .navbar-expand-lg .navbar-nav .dropdown-menu {
  4240. position: absolute;
  4241. }
  4242. .navbar-expand-lg .navbar-nav .nav-link {
  4243. padding-left: 0.5rem;
  4244. padding-right: 0.5rem;
  4245. }
  4246. .navbar-expand-lg .navbar-nav-scroll {
  4247. overflow: visible;
  4248. }
  4249. .navbar-expand-lg .navbar-collapse {
  4250. display: -webkit-box !important;
  4251. display: -ms-flexbox !important;
  4252. display: flex !important;
  4253. -ms-flex-preferred-size: auto;
  4254. flex-basis: auto;
  4255. }
  4256. .navbar-expand-lg .navbar-toggler {
  4257. display: none;
  4258. }
  4259. .navbar-expand-lg .offcanvas-header {
  4260. display: none;
  4261. }
  4262. .navbar-expand-lg .offcanvas {
  4263. position: inherit;
  4264. bottom: 0;
  4265. z-index: 1000;
  4266. -webkit-box-flex: 1;
  4267. -ms-flex-positive: 1;
  4268. flex-grow: 1;
  4269. visibility: visible !important;
  4270. background-color: transparent;
  4271. border-left: 0;
  4272. border-right: 0;
  4273. -webkit-transition: none;
  4274. transition: none;
  4275. -webkit-transform: none;
  4276. transform: none;
  4277. }
  4278. .navbar-expand-lg .offcanvas-top,
  4279. .navbar-expand-lg .offcanvas-bottom {
  4280. height: auto;
  4281. border-top: 0;
  4282. border-bottom: 0;
  4283. }
  4284. .navbar-expand-lg .offcanvas-body {
  4285. display: -webkit-box;
  4286. display: -ms-flexbox;
  4287. display: flex;
  4288. -webkit-box-flex: 0;
  4289. -ms-flex-positive: 0;
  4290. flex-grow: 0;
  4291. padding: 0;
  4292. overflow-y: visible;
  4293. }
  4294. }
  4295. @media (min-width: 1200px) {
  4296. .navbar-expand-xl {
  4297. -ms-flex-wrap: nowrap;
  4298. flex-wrap: nowrap;
  4299. -webkit-box-pack: start;
  4300. -ms-flex-pack: start;
  4301. justify-content: flex-start;
  4302. }
  4303. .navbar-expand-xl .navbar-nav {
  4304. -webkit-box-orient: horizontal;
  4305. -webkit-box-direction: normal;
  4306. -ms-flex-direction: row;
  4307. flex-direction: row;
  4308. }
  4309. .navbar-expand-xl .navbar-nav .dropdown-menu {
  4310. position: absolute;
  4311. }
  4312. .navbar-expand-xl .navbar-nav .nav-link {
  4313. padding-left: 0.5rem;
  4314. padding-right: 0.5rem;
  4315. }
  4316. .navbar-expand-xl .navbar-nav-scroll {
  4317. overflow: visible;
  4318. }
  4319. .navbar-expand-xl .navbar-collapse {
  4320. display: -webkit-box !important;
  4321. display: -ms-flexbox !important;
  4322. display: flex !important;
  4323. -ms-flex-preferred-size: auto;
  4324. flex-basis: auto;
  4325. }
  4326. .navbar-expand-xl .navbar-toggler {
  4327. display: none;
  4328. }
  4329. .navbar-expand-xl .offcanvas-header {
  4330. display: none;
  4331. }
  4332. .navbar-expand-xl .offcanvas {
  4333. position: inherit;
  4334. bottom: 0;
  4335. z-index: 1000;
  4336. -webkit-box-flex: 1;
  4337. -ms-flex-positive: 1;
  4338. flex-grow: 1;
  4339. visibility: visible !important;
  4340. background-color: transparent;
  4341. border-left: 0;
  4342. border-right: 0;
  4343. -webkit-transition: none;
  4344. transition: none;
  4345. -webkit-transform: none;
  4346. transform: none;
  4347. }
  4348. .navbar-expand-xl .offcanvas-top,
  4349. .navbar-expand-xl .offcanvas-bottom {
  4350. height: auto;
  4351. border-top: 0;
  4352. border-bottom: 0;
  4353. }
  4354. .navbar-expand-xl .offcanvas-body {
  4355. display: -webkit-box;
  4356. display: -ms-flexbox;
  4357. display: flex;
  4358. -webkit-box-flex: 0;
  4359. -ms-flex-positive: 0;
  4360. flex-grow: 0;
  4361. padding: 0;
  4362. overflow-y: visible;
  4363. }
  4364. }
  4365. @media (min-width: 1400px) {
  4366. .navbar-expand-xxl {
  4367. -ms-flex-wrap: nowrap;
  4368. flex-wrap: nowrap;
  4369. -webkit-box-pack: start;
  4370. -ms-flex-pack: start;
  4371. justify-content: flex-start;
  4372. }
  4373. .navbar-expand-xxl .navbar-nav {
  4374. -webkit-box-orient: horizontal;
  4375. -webkit-box-direction: normal;
  4376. -ms-flex-direction: row;
  4377. flex-direction: row;
  4378. }
  4379. .navbar-expand-xxl .navbar-nav .dropdown-menu {
  4380. position: absolute;
  4381. }
  4382. .navbar-expand-xxl .navbar-nav .nav-link {
  4383. padding-left: 0.5rem;
  4384. padding-right: 0.5rem;
  4385. }
  4386. .navbar-expand-xxl .navbar-nav-scroll {
  4387. overflow: visible;
  4388. }
  4389. .navbar-expand-xxl .navbar-collapse {
  4390. display: -webkit-box !important;
  4391. display: -ms-flexbox !important;
  4392. display: flex !important;
  4393. -ms-flex-preferred-size: auto;
  4394. flex-basis: auto;
  4395. }
  4396. .navbar-expand-xxl .navbar-toggler {
  4397. display: none;
  4398. }
  4399. .navbar-expand-xxl .offcanvas-header {
  4400. display: none;
  4401. }
  4402. .navbar-expand-xxl .offcanvas {
  4403. position: inherit;
  4404. bottom: 0;
  4405. z-index: 1000;
  4406. -webkit-box-flex: 1;
  4407. -ms-flex-positive: 1;
  4408. flex-grow: 1;
  4409. visibility: visible !important;
  4410. background-color: transparent;
  4411. border-left: 0;
  4412. border-right: 0;
  4413. -webkit-transition: none;
  4414. transition: none;
  4415. -webkit-transform: none;
  4416. transform: none;
  4417. }
  4418. .navbar-expand-xxl .offcanvas-top,
  4419. .navbar-expand-xxl .offcanvas-bottom {
  4420. height: auto;
  4421. border-top: 0;
  4422. border-bottom: 0;
  4423. }
  4424. .navbar-expand-xxl .offcanvas-body {
  4425. display: -webkit-box;
  4426. display: -ms-flexbox;
  4427. display: flex;
  4428. -webkit-box-flex: 0;
  4429. -ms-flex-positive: 0;
  4430. flex-grow: 0;
  4431. padding: 0;
  4432. overflow-y: visible;
  4433. }
  4434. }
  4435. .navbar-expand {
  4436. -ms-flex-wrap: nowrap;
  4437. flex-wrap: nowrap;
  4438. -webkit-box-pack: start;
  4439. -ms-flex-pack: start;
  4440. justify-content: flex-start;
  4441. }
  4442. .navbar-expand .navbar-nav {
  4443. -webkit-box-orient: horizontal;
  4444. -webkit-box-direction: normal;
  4445. -ms-flex-direction: row;
  4446. flex-direction: row;
  4447. }
  4448. .navbar-expand .navbar-nav .dropdown-menu {
  4449. position: absolute;
  4450. }
  4451. .navbar-expand .navbar-nav .nav-link {
  4452. padding-left: 0.5rem;
  4453. padding-right: 0.5rem;
  4454. }
  4455. .navbar-expand .navbar-nav-scroll {
  4456. overflow: visible;
  4457. }
  4458. .navbar-expand .navbar-collapse {
  4459. display: -webkit-box !important;
  4460. display: -ms-flexbox !important;
  4461. display: flex !important;
  4462. -ms-flex-preferred-size: auto;
  4463. flex-basis: auto;
  4464. }
  4465. .navbar-expand .navbar-toggler {
  4466. display: none;
  4467. }
  4468. .navbar-expand .offcanvas-header {
  4469. display: none;
  4470. }
  4471. .navbar-expand .offcanvas {
  4472. position: inherit;
  4473. bottom: 0;
  4474. z-index: 1000;
  4475. -webkit-box-flex: 1;
  4476. -ms-flex-positive: 1;
  4477. flex-grow: 1;
  4478. visibility: visible !important;
  4479. background-color: transparent;
  4480. border-left: 0;
  4481. border-right: 0;
  4482. -webkit-transition: none;
  4483. transition: none;
  4484. -webkit-transform: none;
  4485. transform: none;
  4486. }
  4487. .navbar-expand .offcanvas-top,
  4488. .navbar-expand .offcanvas-bottom {
  4489. height: auto;
  4490. border-top: 0;
  4491. border-bottom: 0;
  4492. }
  4493. .navbar-expand .offcanvas-body {
  4494. display: -webkit-box;
  4495. display: -ms-flexbox;
  4496. display: flex;
  4497. -webkit-box-flex: 0;
  4498. -ms-flex-positive: 0;
  4499. flex-grow: 0;
  4500. padding: 0;
  4501. overflow-y: visible;
  4502. }
  4503. .navbar-light .navbar-brand {
  4504. color: rgba(0, 0, 0, 0.9);
  4505. }
  4506. .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  4507. color: rgba(0, 0, 0, 0.9);
  4508. }
  4509. .navbar-light .navbar-nav .nav-link {
  4510. color: rgba(0, 0, 0, 0.55);
  4511. }
  4512. .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  4513. color: rgba(0, 0, 0, 0.7);
  4514. }
  4515. .navbar-light .navbar-nav .nav-link.disabled {
  4516. color: rgba(0, 0, 0, 0.3);
  4517. }
  4518. .navbar-light .navbar-nav .show > .nav-link,
  4519. .navbar-light .navbar-nav .nav-link.active {
  4520. color: rgba(0, 0, 0, 0.9);
  4521. }
  4522. .navbar-light .navbar-toggler {
  4523. color: rgba(0, 0, 0, 0.55);
  4524. border-color: rgba(0, 0, 0, 0.1);
  4525. }
  4526. .navbar-light .navbar-toggler-icon {
  4527. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  4528. }
  4529. .navbar-light .navbar-text {
  4530. color: rgba(0, 0, 0, 0.55);
  4531. }
  4532. .navbar-light .navbar-text a,
  4533. .navbar-light .navbar-text a:hover,
  4534. .navbar-light .navbar-text a:focus {
  4535. color: rgba(0, 0, 0, 0.9);
  4536. }
  4537. .navbar-dark .navbar-brand {
  4538. color: #fff;
  4539. }
  4540. .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  4541. color: #fff;
  4542. }
  4543. .navbar-dark .navbar-nav .nav-link {
  4544. color: rgba(255, 255, 255, 0.55);
  4545. }
  4546. .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  4547. color: rgba(255, 255, 255, 0.75);
  4548. }
  4549. .navbar-dark .navbar-nav .nav-link.disabled {
  4550. color: rgba(255, 255, 255, 0.25);
  4551. }
  4552. .navbar-dark .navbar-nav .show > .nav-link,
  4553. .navbar-dark .navbar-nav .nav-link.active {
  4554. color: #fff;
  4555. }
  4556. .navbar-dark .navbar-toggler {
  4557. color: rgba(255, 255, 255, 0.55);
  4558. border-color: rgba(255, 255, 255, 0.1);
  4559. }
  4560. .navbar-dark .navbar-toggler-icon {
  4561. 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");
  4562. }
  4563. .navbar-dark .navbar-text {
  4564. color: rgba(255, 255, 255, 0.55);
  4565. }
  4566. .navbar-dark .navbar-text a,
  4567. .navbar-dark .navbar-text a:hover,
  4568. .navbar-dark .navbar-text a:focus {
  4569. color: #fff;
  4570. }
  4571. .card {
  4572. position: relative;
  4573. display: -webkit-box;
  4574. display: -ms-flexbox;
  4575. display: flex;
  4576. -webkit-box-orient: vertical;
  4577. -webkit-box-direction: normal;
  4578. -ms-flex-direction: column;
  4579. flex-direction: column;
  4580. min-width: 0;
  4581. word-wrap: break-word;
  4582. background-color: #fff;
  4583. background-clip: border-box;
  4584. border: 0 solid #f6f6f6;
  4585. border-radius: 0.25rem;
  4586. }
  4587. .card > hr {
  4588. margin-left: 0;
  4589. margin-right: 0;
  4590. }
  4591. .card > .list-group {
  4592. border-top: inherit;
  4593. border-bottom: inherit;
  4594. }
  4595. .card > .list-group:first-child {
  4596. border-top-width: 0;
  4597. border-top-right-radius: calc(0.25rem - 0);
  4598. border-top-left-radius: calc(0.25rem - 0);
  4599. }
  4600. .card > .list-group:last-child {
  4601. border-bottom-width: 0;
  4602. border-bottom-left-radius: calc(0.25rem - 0);
  4603. border-bottom-right-radius: calc(0.25rem - 0);
  4604. }
  4605. .card > .card-header + .list-group,
  4606. .card > .list-group + .card-footer {
  4607. border-top: 0;
  4608. }
  4609. .card-body {
  4610. -webkit-box-flex: 1;
  4611. -ms-flex: 1 1 auto;
  4612. flex: 1 1 auto;
  4613. padding: 1.25rem 1.25rem;
  4614. }
  4615. .card-title {
  4616. margin-bottom: 0.5rem;
  4617. }
  4618. .card-subtitle {
  4619. margin-top: -0.25rem;
  4620. margin-bottom: 0;
  4621. }
  4622. .card-text:last-child {
  4623. margin-bottom: 0;
  4624. }
  4625. .card-link:hover {
  4626. text-decoration: none;
  4627. }
  4628. .card-link + .card-link {
  4629. margin-right: 1.25rem;
  4630. }
  4631. .card-header {
  4632. padding: 0.625rem 1.25rem;
  4633. margin-bottom: 0;
  4634. background-color: rgba(0, 0, 0, 0.03);
  4635. border-bottom: 0 solid #f6f6f6;
  4636. }
  4637. .card-header:first-child {
  4638. border-radius: calc(0.25rem - 0) calc(0.25rem - 0) 0 0;
  4639. }
  4640. .card-footer {
  4641. padding: 0.625rem 1.25rem;
  4642. background-color: rgba(0, 0, 0, 0.03);
  4643. border-top: 0 solid #f6f6f6;
  4644. }
  4645. .card-footer:last-child {
  4646. border-radius: 0 0 calc(0.25rem - 0) calc(0.25rem - 0);
  4647. }
  4648. .card-header-tabs {
  4649. margin-left: -0.625rem;
  4650. margin-bottom: -0.625rem;
  4651. margin-right: -0.625rem;
  4652. border-bottom: 0;
  4653. }
  4654. .card-header-pills {
  4655. margin-left: -0.625rem;
  4656. margin-right: -0.625rem;
  4657. }
  4658. .card-img-overlay {
  4659. position: absolute;
  4660. top: 0;
  4661. left: 0;
  4662. bottom: 0;
  4663. right: 0;
  4664. padding: 1rem;
  4665. border-radius: calc(0.25rem - 0);
  4666. }
  4667. .card-img,
  4668. .card-img-top,
  4669. .card-img-bottom {
  4670. width: 100%;
  4671. }
  4672. .card-img,
  4673. .card-img-top {
  4674. border-top-right-radius: calc(0.25rem - 0);
  4675. border-top-left-radius: calc(0.25rem - 0);
  4676. }
  4677. .card-img,
  4678. .card-img-bottom {
  4679. border-bottom-left-radius: calc(0.25rem - 0);
  4680. border-bottom-right-radius: calc(0.25rem - 0);
  4681. }
  4682. .card-group > .card {
  4683. margin-bottom: 12px;
  4684. }
  4685. @media (min-width: 576px) {
  4686. .card-group {
  4687. display: -webkit-box;
  4688. display: -ms-flexbox;
  4689. display: flex;
  4690. -webkit-box-orient: horizontal;
  4691. -webkit-box-direction: normal;
  4692. -ms-flex-flow: row wrap;
  4693. flex-flow: row wrap;
  4694. }
  4695. .card-group > .card {
  4696. -webkit-box-flex: 1;
  4697. -ms-flex: 1 0 0%;
  4698. flex: 1 0 0%;
  4699. margin-bottom: 0;
  4700. }
  4701. .card-group > .card + .card {
  4702. margin-right: 0;
  4703. border-right: 0;
  4704. }
  4705. .card-group > .card:not(:last-child) {
  4706. border-top-left-radius: 0;
  4707. border-bottom-left-radius: 0;
  4708. }
  4709. .card-group > .card:not(:last-child) .card-img-top,
  4710. .card-group > .card:not(:last-child) .card-header {
  4711. border-top-left-radius: 0;
  4712. }
  4713. .card-group > .card:not(:last-child) .card-img-bottom,
  4714. .card-group > .card:not(:last-child) .card-footer {
  4715. border-bottom-left-radius: 0;
  4716. }
  4717. .card-group > .card:not(:first-child) {
  4718. border-top-right-radius: 0;
  4719. border-bottom-right-radius: 0;
  4720. }
  4721. .card-group > .card:not(:first-child) .card-img-top,
  4722. .card-group > .card:not(:first-child) .card-header {
  4723. border-top-right-radius: 0;
  4724. }
  4725. .card-group > .card:not(:first-child) .card-img-bottom,
  4726. .card-group > .card:not(:first-child) .card-footer {
  4727. border-bottom-right-radius: 0;
  4728. }
  4729. }
  4730. .accordion-button {
  4731. position: relative;
  4732. display: -webkit-box;
  4733. display: -ms-flexbox;
  4734. display: flex;
  4735. -webkit-box-align: center;
  4736. -ms-flex-align: center;
  4737. align-items: center;
  4738. width: 100%;
  4739. padding: 1rem 1.25rem;
  4740. font-size: 0.8125rem;
  4741. color: #495057;
  4742. text-align: right;
  4743. background-color: transparent;
  4744. border: 0;
  4745. border-radius: 0;
  4746. overflow-anchor: none;
  4747. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
  4748. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
  4749. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  4750. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease, -webkit-box-shadow 0.15s ease-in-out;
  4751. }
  4752. @media (prefers-reduced-motion: reduce) {
  4753. .accordion-button {
  4754. -webkit-transition: none;
  4755. transition: none;
  4756. }
  4757. }
  4758. .accordion-button:not(.collapsed) {
  4759. color: #4d63cf;
  4760. background-color: #eef1fd;
  4761. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
  4762. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
  4763. }
  4764. .accordion-button:not(.collapsed)::after {
  4765. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234d63cf'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  4766. -webkit-transform: rotate(-180deg);
  4767. transform: rotate(-180deg);
  4768. }
  4769. .accordion-button::after {
  4770. -ms-flex-negative: 0;
  4771. flex-shrink: 0;
  4772. width: 16px;
  4773. height: 16px;
  4774. margin-right: auto;
  4775. content: "";
  4776. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23495057'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  4777. background-repeat: no-repeat;
  4778. background-size: 16px;
  4779. -webkit-transition: -webkit-transform 0.2s ease-in-out;
  4780. transition: -webkit-transform 0.2s ease-in-out;
  4781. transition: transform 0.2s ease-in-out;
  4782. transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  4783. }
  4784. @media (prefers-reduced-motion: reduce) {
  4785. .accordion-button::after {
  4786. -webkit-transition: none;
  4787. transition: none;
  4788. }
  4789. }
  4790. .accordion-button:hover {
  4791. z-index: 2;
  4792. }
  4793. .accordion-button:focus {
  4794. z-index: 3;
  4795. border-color: #b9bfc4;
  4796. outline: 0;
  4797. -webkit-box-shadow: none;
  4798. box-shadow: none;
  4799. }
  4800. .accordion-header {
  4801. margin-bottom: 0;
  4802. }
  4803. .accordion-item {
  4804. background-color: transparent;
  4805. border: 1px solid rgba(0, 0, 0, 0.125);
  4806. }
  4807. .accordion-item:first-of-type {
  4808. border-top-right-radius: 0.25rem;
  4809. border-top-left-radius: 0.25rem;
  4810. }
  4811. .accordion-item:first-of-type .accordion-button {
  4812. border-top-right-radius: calc(0.25rem - 1px);
  4813. border-top-left-radius: calc(0.25rem - 1px);
  4814. }
  4815. .accordion-item:not(:first-of-type) {
  4816. border-top: 0;
  4817. }
  4818. .accordion-item:last-of-type {
  4819. border-bottom-left-radius: 0.25rem;
  4820. border-bottom-right-radius: 0.25rem;
  4821. }
  4822. .accordion-item:last-of-type .accordion-button.collapsed {
  4823. border-bottom-left-radius: calc(0.25rem - 1px);
  4824. border-bottom-right-radius: calc(0.25rem - 1px);
  4825. }
  4826. .accordion-item:last-of-type .accordion-collapse {
  4827. border-bottom-left-radius: 0.25rem;
  4828. border-bottom-right-radius: 0.25rem;
  4829. }
  4830. .accordion-body {
  4831. padding: 1rem 1.25rem;
  4832. }
  4833. .accordion-flush .accordion-collapse {
  4834. border-width: 0;
  4835. }
  4836. .accordion-flush .accordion-item {
  4837. border-left: 0;
  4838. border-right: 0;
  4839. border-radius: 0;
  4840. }
  4841. .accordion-flush .accordion-item:first-child {
  4842. border-top: 0;
  4843. }
  4844. .accordion-flush .accordion-item:last-child {
  4845. border-bottom: 0;
  4846. }
  4847. .accordion-flush .accordion-item .accordion-button {
  4848. border-radius: 0;
  4849. }
  4850. .breadcrumb {
  4851. display: -webkit-box;
  4852. display: -ms-flexbox;
  4853. display: flex;
  4854. -ms-flex-wrap: wrap;
  4855. flex-wrap: wrap;
  4856. padding: 0.75rem 1rem;
  4857. margin-bottom: 1rem;
  4858. list-style: none;
  4859. }
  4860. .breadcrumb-item + .breadcrumb-item {
  4861. padding-right: 0.5rem;
  4862. }
  4863. .breadcrumb-item + .breadcrumb-item::before {
  4864. float: right;
  4865. padding-left: 0.5rem;
  4866. color: #74788d;
  4867. content: var(--bs-breadcrumb-divider, "/") ;
  4868. }
  4869. .breadcrumb-item.active {
  4870. color: #74788d;
  4871. }
  4872. .pagination {
  4873. display: -webkit-box;
  4874. display: -ms-flexbox;
  4875. display: flex;
  4876. padding-right: 0;
  4877. list-style: none;
  4878. }
  4879. .page-link {
  4880. position: relative;
  4881. display: block;
  4882. color: #74788d;
  4883. background-color: #fff;
  4884. border: 1px solid #ced4da;
  4885. -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  4886. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  4887. 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;
  4888. transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  4889. }
  4890. @media (prefers-reduced-motion: reduce) {
  4891. .page-link {
  4892. -webkit-transition: none;
  4893. transition: none;
  4894. }
  4895. }
  4896. .page-link:hover {
  4897. z-index: 2;
  4898. color: #4458b8;
  4899. text-decoration: none;
  4900. background-color: #eff2f7;
  4901. border-color: #ced4da;
  4902. }
  4903. .page-link:focus {
  4904. z-index: 3;
  4905. color: #4458b8;
  4906. background-color: #eff2f7;
  4907. outline: 0;
  4908. -webkit-box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
  4909. box-shadow: 0 0 0 0.15rem rgba(85, 110, 230, 0.25);
  4910. }
  4911. .page-item:not(:first-child) .page-link {
  4912. margin-right: -1px;
  4913. }
  4914. .page-item.active .page-link {
  4915. z-index: 3;
  4916. color: #fff;
  4917. background-color: #556ee6;
  4918. border-color: #556ee6;
  4919. }
  4920. .page-item.disabled .page-link {
  4921. color: #ced4da;
  4922. pointer-events: none;
  4923. background-color: #fff;
  4924. border-color: #ced4da;
  4925. }
  4926. .page-link {
  4927. padding: 0.5rem 0.75rem;
  4928. }
  4929. .page-item:first-child .page-link {
  4930. border-top-right-radius: 0.25rem;
  4931. border-bottom-right-radius: 0.25rem;
  4932. }
  4933. .page-item:last-child .page-link {
  4934. border-top-left-radius: 0.25rem;
  4935. border-bottom-left-radius: 0.25rem;
  4936. }
  4937. .pagination-lg .page-link {
  4938. padding: 0.75rem 1.5rem;
  4939. font-size: 1.015625rem;
  4940. }
  4941. .pagination-lg .page-item:first-child .page-link {
  4942. border-top-right-radius: 0.4rem;
  4943. border-bottom-right-radius: 0.4rem;
  4944. }
  4945. .pagination-lg .page-item:last-child .page-link {
  4946. border-top-left-radius: 0.4rem;
  4947. border-bottom-left-radius: 0.4rem;
  4948. }
  4949. .pagination-sm .page-link {
  4950. padding: 0.25rem 0.5rem;
  4951. font-size: 0.7109375rem;
  4952. }
  4953. .pagination-sm .page-item:first-child .page-link {
  4954. border-top-right-radius: 0.2rem;
  4955. border-bottom-right-radius: 0.2rem;
  4956. }
  4957. .pagination-sm .page-item:last-child .page-link {
  4958. border-top-left-radius: 0.2rem;
  4959. border-bottom-left-radius: 0.2rem;
  4960. }
  4961. .badge {
  4962. display: inline-block;
  4963. padding: 0.25em 0.4em;
  4964. font-size: 75%;
  4965. font-weight: 500;
  4966. line-height: 1;
  4967. color: #fff;
  4968. text-align: center;
  4969. white-space: nowrap;
  4970. vertical-align: baseline;
  4971. border-radius: 0.25rem;
  4972. }
  4973. .badge:empty {
  4974. display: none;
  4975. }
  4976. .btn .badge {
  4977. position: relative;
  4978. top: -1px;
  4979. }
  4980. .alert {
  4981. position: relative;
  4982. padding: 0.75rem 1.25rem;
  4983. margin-bottom: 1rem;
  4984. border: 1px solid transparent;
  4985. border-radius: 0.25rem;
  4986. }
  4987. .alert-heading {
  4988. color: inherit;
  4989. }
  4990. .alert-link {
  4991. font-weight: 600;
  4992. }
  4993. .alert-dismissible {
  4994. padding-left: 3.75rem;
  4995. }
  4996. .alert-dismissible .btn-close {
  4997. position: absolute;
  4998. top: 0;
  4999. left: 0;
  5000. z-index: 2;
  5001. padding: 0.9375rem 1.25rem;
  5002. }
  5003. .alert-primary {
  5004. color: #33428a;
  5005. background-color: #dde2fa;
  5006. border-color: #ccd4f8;
  5007. }
  5008. .alert-primary .alert-link {
  5009. color: #29356e;
  5010. }
  5011. .alert-secondary {
  5012. color: #464855;
  5013. background-color: #e3e4e8;
  5014. border-color: #d5d7dd;
  5015. }
  5016. .alert-secondary .alert-link {
  5017. color: #383a44;
  5018. }
  5019. .alert-success {
  5020. color: #1f7556;
  5021. background-color: #d6f3e9;
  5022. border-color: #c2eddd;
  5023. }
  5024. .alert-success .alert-link {
  5025. color: #195e45;
  5026. }
  5027. .alert-info {
  5028. color: #306391;
  5029. background-color: #dcedfc;
  5030. border-color: #cbe4fb;
  5031. }
  5032. .alert-info .alert-link {
  5033. color: #264f74;
  5034. }
  5035. .alert-warning {
  5036. color: #916c2e;
  5037. background-color: #fcf0db;
  5038. border-color: #fbe9c9;
  5039. }
  5040. .alert-warning .alert-link {
  5041. color: #745625;
  5042. }
  5043. .alert-danger {
  5044. color: #924040;
  5045. background-color: #fde1e1;
  5046. border-color: #fcd2d2;
  5047. }
  5048. .alert-danger .alert-link {
  5049. color: #753333;
  5050. }
  5051. .alert-pink {
  5052. color: #8b2554;
  5053. background-color: #fad8e8;
  5054. border-color: #f8c5dd;
  5055. }
  5056. .alert-pink .alert-link {
  5057. color: #6f1e43;
  5058. }
  5059. .alert-light {
  5060. color: #8f9194;
  5061. background-color: #fcfcfd;
  5062. border-color: #fafbfd;
  5063. }
  5064. .alert-light .alert-link {
  5065. color: #727476;
  5066. }
  5067. .alert-dark {
  5068. color: #1f2326;
  5069. background-color: #d6d8d9;
  5070. border-color: #c2c4c6;
  5071. }
  5072. .alert-dark .alert-link {
  5073. color: #191c1e;
  5074. }
  5075. @-webkit-keyframes progress-bar-stripes {
  5076. 0% {
  5077. background-position-x: 0.625rem;
  5078. }
  5079. }
  5080. @keyframes progress-bar-stripes {
  5081. 0% {
  5082. background-position-x: 0.625rem;
  5083. }
  5084. }
  5085. .progress {
  5086. display: -webkit-box;
  5087. display: -ms-flexbox;
  5088. display: flex;
  5089. height: 0.625rem;
  5090. overflow: hidden;
  5091. font-size: 0.609375rem;
  5092. background-color: #f6f6f6;
  5093. border-radius: 0.25rem;
  5094. }
  5095. .progress-bar {
  5096. display: -webkit-box;
  5097. display: -ms-flexbox;
  5098. display: flex;
  5099. -webkit-box-orient: vertical;
  5100. -webkit-box-direction: normal;
  5101. -ms-flex-direction: column;
  5102. flex-direction: column;
  5103. -webkit-box-pack: center;
  5104. -ms-flex-pack: center;
  5105. justify-content: center;
  5106. overflow: hidden;
  5107. color: #fff;
  5108. text-align: center;
  5109. white-space: nowrap;
  5110. background-color: #556ee6;
  5111. -webkit-transition: width 0.6s ease;
  5112. transition: width 0.6s ease;
  5113. }
  5114. @media (prefers-reduced-motion: reduce) {
  5115. .progress-bar {
  5116. -webkit-transition: none;
  5117. transition: none;
  5118. }
  5119. }
  5120. .progress-bar-striped {
  5121. 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);
  5122. background-size: 0.625rem 0.625rem;
  5123. }
  5124. .progress-bar-animated {
  5125. -webkit-animation: 1s linear infinite progress-bar-stripes;
  5126. animation: 1s linear infinite progress-bar-stripes;
  5127. }
  5128. @media (prefers-reduced-motion: reduce) {
  5129. .progress-bar-animated {
  5130. -webkit-animation: none;
  5131. animation: none;
  5132. }
  5133. }
  5134. .list-group {
  5135. display: -webkit-box;
  5136. display: -ms-flexbox;
  5137. display: flex;
  5138. -webkit-box-orient: vertical;
  5139. -webkit-box-direction: normal;
  5140. -ms-flex-direction: column;
  5141. flex-direction: column;
  5142. padding-right: 0;
  5143. margin-bottom: 0;
  5144. border-radius: 0.25rem;
  5145. }
  5146. .list-group-numbered {
  5147. list-style-type: none;
  5148. counter-reset: section;
  5149. }
  5150. .list-group-numbered > li::before {
  5151. content: counters(section, ".") ". ";
  5152. counter-increment: section;
  5153. }
  5154. .list-group-item-action {
  5155. width: 100%;
  5156. color: #495057;
  5157. text-align: inherit;
  5158. }
  5159. .list-group-item-action:hover, .list-group-item-action:focus {
  5160. z-index: 1;
  5161. color: #495057;
  5162. text-decoration: none;
  5163. background-color: #f8f9fa;
  5164. }
  5165. .list-group-item-action:active {
  5166. color: #495057;
  5167. background-color: #eff2f7;
  5168. }
  5169. .list-group-item {
  5170. position: relative;
  5171. display: block;
  5172. padding: 0.75rem 1.25rem;
  5173. color: #212529;
  5174. background-color: #fff;
  5175. border: 1px solid #eff2f7;
  5176. }
  5177. .list-group-item:first-child {
  5178. border-top-right-radius: inherit;
  5179. border-top-left-radius: inherit;
  5180. }
  5181. .list-group-item:last-child {
  5182. border-bottom-left-radius: inherit;
  5183. border-bottom-right-radius: inherit;
  5184. }
  5185. .list-group-item.disabled, .list-group-item:disabled {
  5186. color: #74788d;
  5187. pointer-events: none;
  5188. background-color: #fff;
  5189. }
  5190. .list-group-item.active {
  5191. z-index: 2;
  5192. color: #fff;
  5193. background-color: #556ee6;
  5194. border-color: #556ee6;
  5195. }
  5196. .list-group-item + .list-group-item {
  5197. border-top-width: 0;
  5198. }
  5199. .list-group-item + .list-group-item.active {
  5200. margin-top: -1px;
  5201. border-top-width: 1px;
  5202. }
  5203. .list-group-horizontal {
  5204. -webkit-box-orient: horizontal;
  5205. -webkit-box-direction: normal;
  5206. -ms-flex-direction: row;
  5207. flex-direction: row;
  5208. }
  5209. .list-group-horizontal > .list-group-item:first-child {
  5210. border-bottom-right-radius: 0.25rem;
  5211. border-top-left-radius: 0;
  5212. }
  5213. .list-group-horizontal > .list-group-item:last-child {
  5214. border-top-left-radius: 0.25rem;
  5215. border-bottom-right-radius: 0;
  5216. }
  5217. .list-group-horizontal > .list-group-item.active {
  5218. margin-top: 0;
  5219. }
  5220. .list-group-horizontal > .list-group-item + .list-group-item {
  5221. border-top-width: 1px;
  5222. border-right-width: 0;
  5223. }
  5224. .list-group-horizontal > .list-group-item + .list-group-item.active {
  5225. margin-right: -1px;
  5226. border-right-width: 1px;
  5227. }
  5228. @media (min-width: 576px) {
  5229. .list-group-horizontal-sm {
  5230. -webkit-box-orient: horizontal;
  5231. -webkit-box-direction: normal;
  5232. -ms-flex-direction: row;
  5233. flex-direction: row;
  5234. }
  5235. .list-group-horizontal-sm > .list-group-item:first-child {
  5236. border-bottom-right-radius: 0.25rem;
  5237. border-top-left-radius: 0;
  5238. }
  5239. .list-group-horizontal-sm > .list-group-item:last-child {
  5240. border-top-left-radius: 0.25rem;
  5241. border-bottom-right-radius: 0;
  5242. }
  5243. .list-group-horizontal-sm > .list-group-item.active {
  5244. margin-top: 0;
  5245. }
  5246. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  5247. border-top-width: 1px;
  5248. border-right-width: 0;
  5249. }
  5250. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  5251. margin-right: -1px;
  5252. border-right-width: 1px;
  5253. }
  5254. }
  5255. @media (min-width: 768px) {
  5256. .list-group-horizontal-md {
  5257. -webkit-box-orient: horizontal;
  5258. -webkit-box-direction: normal;
  5259. -ms-flex-direction: row;
  5260. flex-direction: row;
  5261. }
  5262. .list-group-horizontal-md > .list-group-item:first-child {
  5263. border-bottom-right-radius: 0.25rem;
  5264. border-top-left-radius: 0;
  5265. }
  5266. .list-group-horizontal-md > .list-group-item:last-child {
  5267. border-top-left-radius: 0.25rem;
  5268. border-bottom-right-radius: 0;
  5269. }
  5270. .list-group-horizontal-md > .list-group-item.active {
  5271. margin-top: 0;
  5272. }
  5273. .list-group-horizontal-md > .list-group-item + .list-group-item {
  5274. border-top-width: 1px;
  5275. border-right-width: 0;
  5276. }
  5277. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  5278. margin-right: -1px;
  5279. border-right-width: 1px;
  5280. }
  5281. }
  5282. @media (min-width: 992px) {
  5283. .list-group-horizontal-lg {
  5284. -webkit-box-orient: horizontal;
  5285. -webkit-box-direction: normal;
  5286. -ms-flex-direction: row;
  5287. flex-direction: row;
  5288. }
  5289. .list-group-horizontal-lg > .list-group-item:first-child {
  5290. border-bottom-right-radius: 0.25rem;
  5291. border-top-left-radius: 0;
  5292. }
  5293. .list-group-horizontal-lg > .list-group-item:last-child {
  5294. border-top-left-radius: 0.25rem;
  5295. border-bottom-right-radius: 0;
  5296. }
  5297. .list-group-horizontal-lg > .list-group-item.active {
  5298. margin-top: 0;
  5299. }
  5300. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  5301. border-top-width: 1px;
  5302. border-right-width: 0;
  5303. }
  5304. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  5305. margin-right: -1px;
  5306. border-right-width: 1px;
  5307. }
  5308. }
  5309. @media (min-width: 1200px) {
  5310. .list-group-horizontal-xl {
  5311. -webkit-box-orient: horizontal;
  5312. -webkit-box-direction: normal;
  5313. -ms-flex-direction: row;
  5314. flex-direction: row;
  5315. }
  5316. .list-group-horizontal-xl > .list-group-item:first-child {
  5317. border-bottom-right-radius: 0.25rem;
  5318. border-top-left-radius: 0;
  5319. }
  5320. .list-group-horizontal-xl > .list-group-item:last-child {
  5321. border-top-left-radius: 0.25rem;
  5322. border-bottom-right-radius: 0;
  5323. }
  5324. .list-group-horizontal-xl > .list-group-item.active {
  5325. margin-top: 0;
  5326. }
  5327. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  5328. border-top-width: 1px;
  5329. border-right-width: 0;
  5330. }
  5331. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  5332. margin-right: -1px;
  5333. border-right-width: 1px;
  5334. }
  5335. }
  5336. @media (min-width: 1400px) {
  5337. .list-group-horizontal-xxl {
  5338. -webkit-box-orient: horizontal;
  5339. -webkit-box-direction: normal;
  5340. -ms-flex-direction: row;
  5341. flex-direction: row;
  5342. }
  5343. .list-group-horizontal-xxl > .list-group-item:first-child {
  5344. border-bottom-right-radius: 0.25rem;
  5345. border-top-left-radius: 0;
  5346. }
  5347. .list-group-horizontal-xxl > .list-group-item:last-child {
  5348. border-top-left-radius: 0.25rem;
  5349. border-bottom-right-radius: 0;
  5350. }
  5351. .list-group-horizontal-xxl > .list-group-item.active {
  5352. margin-top: 0;
  5353. }
  5354. .list-group-horizontal-xxl > .list-group-item + .list-group-item {
  5355. border-top-width: 1px;
  5356. border-right-width: 0;
  5357. }
  5358. .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
  5359. margin-right: -1px;
  5360. border-right-width: 1px;
  5361. }
  5362. }
  5363. .list-group-flush {
  5364. border-radius: 0;
  5365. }
  5366. .list-group-flush > .list-group-item {
  5367. border-width: 0 0 1px;
  5368. }
  5369. .list-group-flush > .list-group-item:last-child {
  5370. border-bottom-width: 0;
  5371. }
  5372. .list-group-item-primary {
  5373. color: #33428a;
  5374. background-color: #dde2fa;
  5375. }
  5376. .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  5377. color: #33428a;
  5378. background-color: #c7cbe1;
  5379. }
  5380. .list-group-item-primary.list-group-item-action.active {
  5381. color: #fff;
  5382. background-color: #33428a;
  5383. border-color: #33428a;
  5384. }
  5385. .list-group-item-secondary {
  5386. color: #464855;
  5387. background-color: #e3e4e8;
  5388. }
  5389. .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  5390. color: #464855;
  5391. background-color: #cccdd1;
  5392. }
  5393. .list-group-item-secondary.list-group-item-action.active {
  5394. color: #fff;
  5395. background-color: #464855;
  5396. border-color: #464855;
  5397. }
  5398. .list-group-item-success {
  5399. color: #1f7556;
  5400. background-color: #d6f3e9;
  5401. }
  5402. .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  5403. color: #1f7556;
  5404. background-color: #c1dbd2;
  5405. }
  5406. .list-group-item-success.list-group-item-action.active {
  5407. color: #fff;
  5408. background-color: #1f7556;
  5409. border-color: #1f7556;
  5410. }
  5411. .list-group-item-info {
  5412. color: #306391;
  5413. background-color: #dcedfc;
  5414. }
  5415. .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  5416. color: #306391;
  5417. background-color: #c6d5e3;
  5418. }
  5419. .list-group-item-info.list-group-item-action.active {
  5420. color: #fff;
  5421. background-color: #306391;
  5422. border-color: #306391;
  5423. }
  5424. .list-group-item-warning {
  5425. color: #916c2e;
  5426. background-color: #fcf0db;
  5427. }
  5428. .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  5429. color: #916c2e;
  5430. background-color: #e3d8c5;
  5431. }
  5432. .list-group-item-warning.list-group-item-action.active {
  5433. color: #fff;
  5434. background-color: #916c2e;
  5435. border-color: #916c2e;
  5436. }
  5437. .list-group-item-danger {
  5438. color: #924040;
  5439. background-color: #fde1e1;
  5440. }
  5441. .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  5442. color: #924040;
  5443. background-color: #e4cbcb;
  5444. }
  5445. .list-group-item-danger.list-group-item-action.active {
  5446. color: #fff;
  5447. background-color: #924040;
  5448. border-color: #924040;
  5449. }
  5450. .list-group-item-pink {
  5451. color: #8b2554;
  5452. background-color: #fad8e8;
  5453. }
  5454. .list-group-item-pink.list-group-item-action:hover, .list-group-item-pink.list-group-item-action:focus {
  5455. color: #8b2554;
  5456. background-color: #e1c2d1;
  5457. }
  5458. .list-group-item-pink.list-group-item-action.active {
  5459. color: #fff;
  5460. background-color: #8b2554;
  5461. border-color: #8b2554;
  5462. }
  5463. .list-group-item-light {
  5464. color: #8f9194;
  5465. background-color: #fcfcfd;
  5466. }
  5467. .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  5468. color: #8f9194;
  5469. background-color: #e3e3e4;
  5470. }
  5471. .list-group-item-light.list-group-item-action.active {
  5472. color: #fff;
  5473. background-color: #8f9194;
  5474. border-color: #8f9194;
  5475. }
  5476. .list-group-item-dark {
  5477. color: #1f2326;
  5478. background-color: #d6d8d9;
  5479. }
  5480. .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  5481. color: #1f2326;
  5482. background-color: #c1c2c3;
  5483. }
  5484. .list-group-item-dark.list-group-item-action.active {
  5485. color: #fff;
  5486. background-color: #1f2326;
  5487. border-color: #1f2326;
  5488. }
  5489. .btn-close {
  5490. -webkit-box-sizing: content-box;
  5491. box-sizing: content-box;
  5492. width: 1em;
  5493. height: 1em;
  5494. padding: 0.25em 0.25em;
  5495. color: #000;
  5496. background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  5497. border: 0;
  5498. border-radius: 0.25rem;
  5499. opacity: 0.5;
  5500. }
  5501. .btn-close:hover {
  5502. color: #000;
  5503. text-decoration: none;
  5504. opacity: 0.75;
  5505. }
  5506. .btn-close:focus {
  5507. outline: 0;
  5508. -webkit-box-shadow: none;
  5509. box-shadow: none;
  5510. opacity: 1;
  5511. }
  5512. .btn-close:disabled, .btn-close.disabled {
  5513. pointer-events: none;
  5514. -webkit-user-select: none;
  5515. -moz-user-select: none;
  5516. -ms-user-select: none;
  5517. user-select: none;
  5518. opacity: 0.25;
  5519. }
  5520. .btn-close-white {
  5521. -webkit-filter: invert(1) grayscale(100%) brightness(200%);
  5522. filter: invert(1) grayscale(100%) brightness(200%);
  5523. }
  5524. .toast {
  5525. width: 350px;
  5526. max-width: 100%;
  5527. font-size: 0.875rem;
  5528. pointer-events: auto;
  5529. background-color: rgba(255, 255, 255, 0.85);
  5530. background-clip: padding-box;
  5531. border: 1px solid rgba(0, 0, 0, 0.1);
  5532. -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  5533. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  5534. border-radius: 0.25rem;
  5535. }
  5536. .toast.showing {
  5537. opacity: 0;
  5538. }
  5539. .toast:not(.show) {
  5540. display: none;
  5541. }
  5542. .toast-container {
  5543. width: -webkit-max-content;
  5544. width: -moz-max-content;
  5545. width: max-content;
  5546. max-width: 100%;
  5547. pointer-events: none;
  5548. }
  5549. .toast-container > :not(:last-child) {
  5550. margin-bottom: 12px;
  5551. }
  5552. .toast-header {
  5553. display: -webkit-box;
  5554. display: -ms-flexbox;
  5555. display: flex;
  5556. -webkit-box-align: center;
  5557. -ms-flex-align: center;
  5558. align-items: center;
  5559. padding: 0.25rem 0.75rem;
  5560. color: #74788d;
  5561. background-color: rgba(255, 255, 255, 0.85);
  5562. background-clip: padding-box;
  5563. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  5564. border-top-right-radius: calc(0.25rem - 1px);
  5565. border-top-left-radius: calc(0.25rem - 1px);
  5566. }
  5567. .toast-header .btn-close {
  5568. margin-left: -0.375rem;
  5569. margin-right: 0.75rem;
  5570. }
  5571. .toast-body {
  5572. padding: 0.75rem;
  5573. word-wrap: break-word;
  5574. }
  5575. .modal {
  5576. position: fixed;
  5577. top: 0;
  5578. right: 0;
  5579. z-index: 1055;
  5580. display: none;
  5581. width: 100%;
  5582. height: 100%;
  5583. overflow-x: hidden;
  5584. overflow-y: auto;
  5585. outline: 0;
  5586. }
  5587. .modal-dialog {
  5588. position: relative;
  5589. width: auto;
  5590. margin: 0.5rem;
  5591. pointer-events: none;
  5592. }
  5593. .modal.fade .modal-dialog {
  5594. -webkit-transition: -webkit-transform 0.3s ease-out;
  5595. transition: -webkit-transform 0.3s ease-out;
  5596. transition: transform 0.3s ease-out;
  5597. transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  5598. -webkit-transform: translate(0, -50px);
  5599. transform: translate(0, -50px);
  5600. }
  5601. @media (prefers-reduced-motion: reduce) {
  5602. .modal.fade .modal-dialog {
  5603. -webkit-transition: none;
  5604. transition: none;
  5605. }
  5606. }
  5607. .modal.show .modal-dialog {
  5608. -webkit-transform: none;
  5609. transform: none;
  5610. }
  5611. .modal.modal-static .modal-dialog {
  5612. -webkit-transform: scale(1.02);
  5613. transform: scale(1.02);
  5614. }
  5615. .modal-dialog-scrollable {
  5616. height: calc(100% - 1rem);
  5617. }
  5618. .modal-dialog-scrollable .modal-content {
  5619. max-height: 100%;
  5620. overflow: hidden;
  5621. }
  5622. .modal-dialog-scrollable .modal-body {
  5623. overflow-y: auto;
  5624. }
  5625. .modal-dialog-centered {
  5626. display: -webkit-box;
  5627. display: -ms-flexbox;
  5628. display: flex;
  5629. -webkit-box-align: center;
  5630. -ms-flex-align: center;
  5631. align-items: center;
  5632. min-height: calc(100% - 1rem);
  5633. }
  5634. .modal-content {
  5635. position: relative;
  5636. display: -webkit-box;
  5637. display: -ms-flexbox;
  5638. display: flex;
  5639. -webkit-box-orient: vertical;
  5640. -webkit-box-direction: normal;
  5641. -ms-flex-direction: column;
  5642. flex-direction: column;
  5643. width: 100%;
  5644. pointer-events: auto;
  5645. background-color: #fff;
  5646. background-clip: padding-box;
  5647. border: 1px solid #f6f6f6;
  5648. border-radius: 0.4rem;
  5649. outline: 0;
  5650. }
  5651. .modal-backdrop {
  5652. position: fixed;
  5653. top: 0;
  5654. right: 0;
  5655. z-index: 1050;
  5656. width: 100vw;
  5657. height: 100vh;
  5658. background-color: #000;
  5659. }
  5660. .modal-backdrop.fade {
  5661. opacity: 0;
  5662. }
  5663. .modal-backdrop.show {
  5664. opacity: 0.5;
  5665. }
  5666. .modal-header {
  5667. display: -webkit-box;
  5668. display: -ms-flexbox;
  5669. display: flex;
  5670. -ms-flex-negative: 0;
  5671. flex-shrink: 0;
  5672. -webkit-box-align: center;
  5673. -ms-flex-align: center;
  5674. align-items: center;
  5675. -webkit-box-pack: justify;
  5676. -ms-flex-pack: justify;
  5677. justify-content: space-between;
  5678. padding: 1rem 1rem;
  5679. border-bottom: 1px solid #eff2f7;
  5680. border-top-right-radius: calc(0.4rem - 1px);
  5681. border-top-left-radius: calc(0.4rem - 1px);
  5682. }
  5683. .modal-header .btn-close {
  5684. padding: 0.5rem 0.5rem;
  5685. margin: -0.5rem auto -0.5rem -0.5rem;
  5686. }
  5687. .modal-title {
  5688. margin-bottom: 0;
  5689. line-height: 1.5;
  5690. }
  5691. .modal-body {
  5692. position: relative;
  5693. -webkit-box-flex: 1;
  5694. -ms-flex: 1 1 auto;
  5695. flex: 1 1 auto;
  5696. padding: 1rem;
  5697. }
  5698. .modal-footer {
  5699. display: -webkit-box;
  5700. display: -ms-flexbox;
  5701. display: flex;
  5702. -ms-flex-wrap: wrap;
  5703. flex-wrap: wrap;
  5704. -ms-flex-negative: 0;
  5705. flex-shrink: 0;
  5706. -webkit-box-align: center;
  5707. -ms-flex-align: center;
  5708. align-items: center;
  5709. -webkit-box-pack: end;
  5710. -ms-flex-pack: end;
  5711. justify-content: flex-end;
  5712. padding: 0.75rem;
  5713. border-top: 1px solid #eff2f7;
  5714. border-bottom-left-radius: calc(0.4rem - 1px);
  5715. border-bottom-right-radius: calc(0.4rem - 1px);
  5716. }
  5717. .modal-footer > * {
  5718. margin: 0.25rem;
  5719. }
  5720. @media (min-width: 576px) {
  5721. .modal-dialog {
  5722. max-width: 500px;
  5723. margin: 1.75rem auto;
  5724. }
  5725. .modal-dialog-scrollable {
  5726. height: calc(100% - 3.5rem);
  5727. }
  5728. .modal-dialog-centered {
  5729. min-height: calc(100% - 3.5rem);
  5730. }
  5731. .modal-sm {
  5732. max-width: 300px;
  5733. }
  5734. }
  5735. @media (min-width: 992px) {
  5736. .modal-lg,
  5737. .modal-xl {
  5738. max-width: 800px;
  5739. }
  5740. }
  5741. @media (min-width: 1200px) {
  5742. .modal-xl {
  5743. max-width: 1140px;
  5744. }
  5745. }
  5746. .modal-fullscreen {
  5747. width: 100vw;
  5748. max-width: none;
  5749. height: 100%;
  5750. margin: 0;
  5751. }
  5752. .modal-fullscreen .modal-content {
  5753. height: 100%;
  5754. border: 0;
  5755. border-radius: 0;
  5756. }
  5757. .modal-fullscreen .modal-header {
  5758. border-radius: 0;
  5759. }
  5760. .modal-fullscreen .modal-body {
  5761. overflow-y: auto;
  5762. }
  5763. .modal-fullscreen .modal-footer {
  5764. border-radius: 0;
  5765. }
  5766. @media (max-width: 575.98px) {
  5767. .modal-fullscreen-sm-down {
  5768. width: 100vw;
  5769. max-width: none;
  5770. height: 100%;
  5771. margin: 0;
  5772. }
  5773. .modal-fullscreen-sm-down .modal-content {
  5774. height: 100%;
  5775. border: 0;
  5776. border-radius: 0;
  5777. }
  5778. .modal-fullscreen-sm-down .modal-header {
  5779. border-radius: 0;
  5780. }
  5781. .modal-fullscreen-sm-down .modal-body {
  5782. overflow-y: auto;
  5783. }
  5784. .modal-fullscreen-sm-down .modal-footer {
  5785. border-radius: 0;
  5786. }
  5787. }
  5788. @media (max-width: 767.98px) {
  5789. .modal-fullscreen-md-down {
  5790. width: 100vw;
  5791. max-width: none;
  5792. height: 100%;
  5793. margin: 0;
  5794. }
  5795. .modal-fullscreen-md-down .modal-content {
  5796. height: 100%;
  5797. border: 0;
  5798. border-radius: 0;
  5799. }
  5800. .modal-fullscreen-md-down .modal-header {
  5801. border-radius: 0;
  5802. }
  5803. .modal-fullscreen-md-down .modal-body {
  5804. overflow-y: auto;
  5805. }
  5806. .modal-fullscreen-md-down .modal-footer {
  5807. border-radius: 0;
  5808. }
  5809. }
  5810. @media (max-width: 991.98px) {
  5811. .modal-fullscreen-lg-down {
  5812. width: 100vw;
  5813. max-width: none;
  5814. height: 100%;
  5815. margin: 0;
  5816. }
  5817. .modal-fullscreen-lg-down .modal-content {
  5818. height: 100%;
  5819. border: 0;
  5820. border-radius: 0;
  5821. }
  5822. .modal-fullscreen-lg-down .modal-header {
  5823. border-radius: 0;
  5824. }
  5825. .modal-fullscreen-lg-down .modal-body {
  5826. overflow-y: auto;
  5827. }
  5828. .modal-fullscreen-lg-down .modal-footer {
  5829. border-radius: 0;
  5830. }
  5831. }
  5832. @media (max-width: 1199.98px) {
  5833. .modal-fullscreen-xl-down {
  5834. width: 100vw;
  5835. max-width: none;
  5836. height: 100%;
  5837. margin: 0;
  5838. }
  5839. .modal-fullscreen-xl-down .modal-content {
  5840. height: 100%;
  5841. border: 0;
  5842. border-radius: 0;
  5843. }
  5844. .modal-fullscreen-xl-down .modal-header {
  5845. border-radius: 0;
  5846. }
  5847. .modal-fullscreen-xl-down .modal-body {
  5848. overflow-y: auto;
  5849. }
  5850. .modal-fullscreen-xl-down .modal-footer {
  5851. border-radius: 0;
  5852. }
  5853. }
  5854. @media (max-width: 1399.98px) {
  5855. .modal-fullscreen-xxl-down {
  5856. width: 100vw;
  5857. max-width: none;
  5858. height: 100%;
  5859. margin: 0;
  5860. }
  5861. .modal-fullscreen-xxl-down .modal-content {
  5862. height: 100%;
  5863. border: 0;
  5864. border-radius: 0;
  5865. }
  5866. .modal-fullscreen-xxl-down .modal-header {
  5867. border-radius: 0;
  5868. }
  5869. .modal-fullscreen-xxl-down .modal-body {
  5870. overflow-y: auto;
  5871. }
  5872. .modal-fullscreen-xxl-down .modal-footer {
  5873. border-radius: 0;
  5874. }
  5875. }
  5876. .tooltip {
  5877. position: absolute;
  5878. z-index: 1080;
  5879. display: block;
  5880. margin: 0;
  5881. font-family: var(--bs-font-sans-serif);
  5882. font-style: normal;
  5883. font-weight: 400;
  5884. line-height: 1.5;
  5885. text-align: right;
  5886. text-align: start;
  5887. text-decoration: none;
  5888. text-shadow: none;
  5889. text-transform: none;
  5890. letter-spacing: normal;
  5891. word-break: normal;
  5892. word-spacing: normal;
  5893. white-space: normal;
  5894. line-break: auto;
  5895. font-size: 0.7109375rem;
  5896. word-wrap: break-word;
  5897. opacity: 0;
  5898. }
  5899. .tooltip.show {
  5900. opacity: 0.9;
  5901. }
  5902. .tooltip .tooltip-arrow {
  5903. position: absolute;
  5904. display: block;
  5905. width: 0.8rem;
  5906. height: 0.4rem;
  5907. }
  5908. .tooltip .tooltip-arrow::before {
  5909. position: absolute;
  5910. content: "";
  5911. border-color: transparent;
  5912. border-style: solid;
  5913. }
  5914. .bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {
  5915. padding: 0.4rem 0;
  5916. }
  5917. .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  5918. bottom: 0;
  5919. }
  5920. .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  5921. top: -1px;
  5922. border-width: 0.4rem 0.4rem 0;
  5923. border-top-color: #000;
  5924. }
  5925. .bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {
  5926. padding: 0 0.4rem;
  5927. }
  5928. .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  5929. right: 0;
  5930. width: 0.4rem;
  5931. height: 0.8rem;
  5932. }
  5933. .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  5934. left: -1px;
  5935. border-width: 0.4rem 0 0.4rem 0.4rem;
  5936. border-left-color: #000;
  5937. }
  5938. .bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {
  5939. padding: 0.4rem 0;
  5940. }
  5941. .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  5942. top: 0;
  5943. }
  5944. .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  5945. bottom: -1px;
  5946. border-width: 0 0.4rem 0.4rem;
  5947. border-bottom-color: #000;
  5948. }
  5949. .bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {
  5950. padding: 0 0.4rem;
  5951. }
  5952. .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  5953. left: 0;
  5954. width: 0.4rem;
  5955. height: 0.8rem;
  5956. }
  5957. .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  5958. right: -1px;
  5959. border-width: 0.4rem 0.4rem 0.4rem 0;
  5960. border-right-color: #000;
  5961. }
  5962. .tooltip-inner {
  5963. max-width: 200px;
  5964. padding: 0.4rem 0.7rem;
  5965. color: #fff;
  5966. text-align: center;
  5967. background-color: #000;
  5968. border-radius: 0.25rem;
  5969. }
  5970. .popover {
  5971. position: absolute;
  5972. top: 0;
  5973. left: 0 ;
  5974. z-index: 1070;
  5975. display: block;
  5976. max-width: 276px;
  5977. font-family: var(--bs-font-sans-serif);
  5978. font-style: normal;
  5979. font-weight: 400;
  5980. line-height: 1.5;
  5981. text-align: right;
  5982. text-align: start;
  5983. text-decoration: none;
  5984. text-shadow: none;
  5985. text-transform: none;
  5986. letter-spacing: normal;
  5987. word-break: normal;
  5988. word-spacing: normal;
  5989. white-space: normal;
  5990. line-break: auto;
  5991. font-size: 0.7109375rem;
  5992. word-wrap: break-word;
  5993. background-color: #fff;
  5994. background-clip: padding-box;
  5995. border: 1px solid #f6f6f6;
  5996. border-radius: 0.4rem;
  5997. }
  5998. .popover .popover-arrow {
  5999. position: absolute;
  6000. display: block;
  6001. width: 1rem;
  6002. height: 0.5rem;
  6003. }
  6004. .popover .popover-arrow::before, .popover .popover-arrow::after {
  6005. position: absolute;
  6006. display: block;
  6007. content: "";
  6008. border-color: transparent;
  6009. border-style: solid;
  6010. }
  6011. .bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  6012. bottom: calc(-0.5rem - 1px);
  6013. }
  6014. .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  6015. bottom: 0;
  6016. border-width: 0.5rem 0.5rem 0;
  6017. border-top-color: #f6f6f6;
  6018. }
  6019. .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  6020. bottom: 1px;
  6021. border-width: 0.5rem 0.5rem 0;
  6022. border-top-color: #fff;
  6023. }
  6024. .bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  6025. right: calc(-0.5rem - 1px);
  6026. width: 0.5rem;
  6027. height: 1rem;
  6028. }
  6029. .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  6030. right: 0;
  6031. border-width: 0.5rem 0 0.5rem 0.5rem;
  6032. border-left-color: #f6f6f6;
  6033. }
  6034. .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  6035. right: 1px;
  6036. border-width: 0.5rem 0 0.5rem 0.5rem;
  6037. border-left-color: #fff;
  6038. }
  6039. .bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  6040. top: calc(-0.5rem - 1px);
  6041. }
  6042. .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  6043. top: 0;
  6044. border-width: 0 0.5rem 0.5rem 0.5rem;
  6045. border-bottom-color: #f6f6f6;
  6046. }
  6047. .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  6048. top: 1px;
  6049. border-width: 0 0.5rem 0.5rem 0.5rem;
  6050. border-bottom-color: #fff;
  6051. }
  6052. .bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  6053. position: absolute;
  6054. top: 0;
  6055. right: 50%;
  6056. display: block;
  6057. width: 1rem;
  6058. margin-right: -0.5rem;
  6059. content: "";
  6060. border-bottom: 1px solid whitesmoke;
  6061. }
  6062. .bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  6063. left: calc(-0.5rem - 1px);
  6064. width: 0.5rem;
  6065. height: 1rem;
  6066. }
  6067. .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  6068. left: 0;
  6069. border-width: 0.5rem 0.5rem 0.5rem 0;
  6070. border-right-color: #f6f6f6;
  6071. }
  6072. .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  6073. left: 1px;
  6074. border-width: 0.5rem 0.5rem 0.5rem 0;
  6075. border-right-color: #fff;
  6076. }
  6077. .popover-header {
  6078. padding: 0.5rem 1rem;
  6079. margin-bottom: 0;
  6080. font-size: 0.8125rem;
  6081. background-color: whitesmoke;
  6082. border-bottom: 1px solid #f6f6f6;
  6083. border-top-right-radius: calc(0.4rem - 1px);
  6084. border-top-left-radius: calc(0.4rem - 1px);
  6085. }
  6086. .popover-header:empty {
  6087. display: none;
  6088. }
  6089. .popover-body {
  6090. padding: 1rem 1rem;
  6091. color: #495057;
  6092. }
  6093. .carousel {
  6094. position: relative;
  6095. }
  6096. .carousel.pointer-event {
  6097. -ms-touch-action: pan-y;
  6098. touch-action: pan-y;
  6099. }
  6100. .carousel-inner {
  6101. position: relative;
  6102. width: 100%;
  6103. overflow: hidden;
  6104. }
  6105. .carousel-inner::after {
  6106. display: block;
  6107. clear: both;
  6108. content: "";
  6109. }
  6110. .carousel-item {
  6111. position: relative;
  6112. display: none;
  6113. float: right;
  6114. width: 100%;
  6115. margin-left: -100%;
  6116. -webkit-backface-visibility: hidden;
  6117. backface-visibility: hidden;
  6118. -webkit-transition: -webkit-transform 0.6s ease-in-out;
  6119. transition: -webkit-transform 0.6s ease-in-out;
  6120. transition: transform 0.6s ease-in-out;
  6121. transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
  6122. }
  6123. @media (prefers-reduced-motion: reduce) {
  6124. .carousel-item {
  6125. -webkit-transition: none;
  6126. transition: none;
  6127. }
  6128. }
  6129. .carousel-item.active,
  6130. .carousel-item-next,
  6131. .carousel-item-prev {
  6132. display: block;
  6133. }
  6134. .carousel-item-next:not(.carousel-item-start),
  6135. .active.carousel-item-end {
  6136. -webkit-transform: translateX(100%);
  6137. transform: translateX(100%);
  6138. }
  6139. .carousel-item-prev:not(.carousel-item-end),
  6140. .active.carousel-item-start {
  6141. -webkit-transform: translateX(-100%);
  6142. transform: translateX(-100%);
  6143. }
  6144. .carousel-fade .carousel-item {
  6145. opacity: 0;
  6146. -webkit-transition-property: opacity;
  6147. transition-property: opacity;
  6148. -webkit-transform: none;
  6149. transform: none;
  6150. }
  6151. .carousel-fade .carousel-item.active,
  6152. .carousel-fade .carousel-item-next.carousel-item-start,
  6153. .carousel-fade .carousel-item-prev.carousel-item-end {
  6154. z-index: 1;
  6155. opacity: 1;
  6156. }
  6157. .carousel-fade .active.carousel-item-start,
  6158. .carousel-fade .active.carousel-item-end {
  6159. z-index: 0;
  6160. opacity: 0;
  6161. -webkit-transition: opacity 0s 0.6s;
  6162. transition: opacity 0s 0.6s;
  6163. }
  6164. @media (prefers-reduced-motion: reduce) {
  6165. .carousel-fade .active.carousel-item-start,
  6166. .carousel-fade .active.carousel-item-end {
  6167. -webkit-transition: none;
  6168. transition: none;
  6169. }
  6170. }
  6171. .carousel-control-prev,
  6172. .carousel-control-next {
  6173. position: absolute;
  6174. top: 0;
  6175. bottom: 0;
  6176. z-index: 1;
  6177. display: -webkit-box;
  6178. display: -ms-flexbox;
  6179. display: flex;
  6180. -webkit-box-align: center;
  6181. -ms-flex-align: center;
  6182. align-items: center;
  6183. -webkit-box-pack: center;
  6184. -ms-flex-pack: center;
  6185. justify-content: center;
  6186. width: 15%;
  6187. padding: 0;
  6188. color: #fff;
  6189. text-align: center;
  6190. background: none;
  6191. border: 0;
  6192. opacity: 0.5;
  6193. -webkit-transition: opacity 0.15s ease;
  6194. transition: opacity 0.15s ease;
  6195. }
  6196. @media (prefers-reduced-motion: reduce) {
  6197. .carousel-control-prev,
  6198. .carousel-control-next {
  6199. -webkit-transition: none;
  6200. transition: none;
  6201. }
  6202. }
  6203. .carousel-control-prev:hover, .carousel-control-prev:focus,
  6204. .carousel-control-next:hover,
  6205. .carousel-control-next:focus {
  6206. color: #fff;
  6207. text-decoration: none;
  6208. outline: 0;
  6209. opacity: 0.9;
  6210. }
  6211. .carousel-control-prev {
  6212. right: 0;
  6213. }
  6214. .carousel-control-next {
  6215. left: 0;
  6216. }
  6217. .carousel-control-prev-icon,
  6218. .carousel-control-next-icon {
  6219. display: inline-block;
  6220. width: 2rem;
  6221. height: 2rem;
  6222. background-repeat: no-repeat;
  6223. background-position: 50%;
  6224. background-size: 100% 100%;
  6225. }
  6226. .carousel-control-next-icon {
  6227. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  6228. }
  6229. .carousel-control-prev-icon {
  6230. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  6231. }
  6232. .carousel-indicators {
  6233. position: absolute;
  6234. left: 0;
  6235. bottom: 0;
  6236. right: 0;
  6237. z-index: 2;
  6238. display: -webkit-box;
  6239. display: -ms-flexbox;
  6240. display: flex;
  6241. -webkit-box-pack: center;
  6242. -ms-flex-pack: center;
  6243. justify-content: center;
  6244. padding: 0;
  6245. margin-left: 15%;
  6246. margin-bottom: 1rem;
  6247. margin-right: 15%;
  6248. list-style: none;
  6249. }
  6250. .carousel-indicators [data-bs-target] {
  6251. -webkit-box-sizing: content-box;
  6252. box-sizing: content-box;
  6253. -webkit-box-flex: 0;
  6254. -ms-flex: 0 1 auto;
  6255. flex: 0 1 auto;
  6256. width: 30px;
  6257. height: 3px;
  6258. padding: 0;
  6259. margin-left: 3px;
  6260. margin-right: 3px;
  6261. text-indent: -999px;
  6262. cursor: pointer;
  6263. background-color: #fff;
  6264. background-clip: padding-box;
  6265. border: 0;
  6266. border-top: 10px solid transparent;
  6267. border-bottom: 10px solid transparent;
  6268. opacity: 0.5;
  6269. -webkit-transition: opacity 0.6s ease;
  6270. transition: opacity 0.6s ease;
  6271. }
  6272. @media (prefers-reduced-motion: reduce) {
  6273. .carousel-indicators [data-bs-target] {
  6274. -webkit-transition: none;
  6275. transition: none;
  6276. }
  6277. }
  6278. .carousel-indicators .active {
  6279. opacity: 1;
  6280. }
  6281. .carousel-caption {
  6282. position: absolute;
  6283. left: 15%;
  6284. bottom: 1.25rem;
  6285. right: 15%;
  6286. padding-top: 1.25rem;
  6287. padding-bottom: 1.25rem;
  6288. color: #fff;
  6289. text-align: center;
  6290. }
  6291. .carousel-dark .carousel-control-next-icon,
  6292. .carousel-dark .carousel-control-prev-icon {
  6293. -webkit-filter: invert(1) grayscale(100);
  6294. filter: invert(1) grayscale(100);
  6295. }
  6296. .carousel-dark .carousel-indicators [data-bs-target] {
  6297. background-color: #000;
  6298. }
  6299. .carousel-dark .carousel-caption {
  6300. color: #000;
  6301. }
  6302. @-webkit-keyframes spinner-border {
  6303. to {
  6304. -webkit-transform: rotate(360deg) ;
  6305. transform: rotate(360deg) ;
  6306. }
  6307. }
  6308. @keyframes spinner-border {
  6309. to {
  6310. -webkit-transform: rotate(360deg) ;
  6311. transform: rotate(360deg) ;
  6312. }
  6313. }
  6314. .spinner-border {
  6315. display: inline-block;
  6316. width: 2rem;
  6317. height: 2rem;
  6318. vertical-align: -0.125em;
  6319. border: 0.25em solid currentColor;
  6320. border-left-color: transparent;
  6321. border-radius: 50%;
  6322. -webkit-animation: 0.75s linear infinite spinner-border;
  6323. animation: 0.75s linear infinite spinner-border;
  6324. }
  6325. .spinner-border-sm {
  6326. width: 1rem;
  6327. height: 1rem;
  6328. border-width: 0.2em;
  6329. }
  6330. @-webkit-keyframes spinner-grow {
  6331. 0% {
  6332. -webkit-transform: scale(0);
  6333. transform: scale(0);
  6334. }
  6335. 50% {
  6336. opacity: 1;
  6337. -webkit-transform: none;
  6338. transform: none;
  6339. }
  6340. }
  6341. @keyframes spinner-grow {
  6342. 0% {
  6343. -webkit-transform: scale(0);
  6344. transform: scale(0);
  6345. }
  6346. 50% {
  6347. opacity: 1;
  6348. -webkit-transform: none;
  6349. transform: none;
  6350. }
  6351. }
  6352. .spinner-grow {
  6353. display: inline-block;
  6354. width: 2rem;
  6355. height: 2rem;
  6356. vertical-align: -0.125em;
  6357. background-color: currentColor;
  6358. border-radius: 50%;
  6359. opacity: 0;
  6360. -webkit-animation: 0.75s linear infinite spinner-grow;
  6361. animation: 0.75s linear infinite spinner-grow;
  6362. }
  6363. .spinner-grow-sm {
  6364. width: 1rem;
  6365. height: 1rem;
  6366. }
  6367. @media (prefers-reduced-motion: reduce) {
  6368. .spinner-border,
  6369. .spinner-grow {
  6370. -webkit-animation-duration: 1.5s;
  6371. animation-duration: 1.5s;
  6372. }
  6373. }
  6374. .offcanvas {
  6375. position: fixed;
  6376. bottom: 0;
  6377. z-index: 1045;
  6378. display: -webkit-box;
  6379. display: -ms-flexbox;
  6380. display: flex;
  6381. -webkit-box-orient: vertical;
  6382. -webkit-box-direction: normal;
  6383. -ms-flex-direction: column;
  6384. flex-direction: column;
  6385. max-width: 100%;
  6386. visibility: hidden;
  6387. background-color: #fff;
  6388. background-clip: padding-box;
  6389. outline: 0;
  6390. -webkit-transition: -webkit-transform 0.3s ease-in-out;
  6391. transition: -webkit-transform 0.3s ease-in-out;
  6392. transition: transform 0.3s ease-in-out;
  6393. transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  6394. }
  6395. @media (prefers-reduced-motion: reduce) {
  6396. .offcanvas {
  6397. -webkit-transition: none;
  6398. transition: none;
  6399. }
  6400. }
  6401. .offcanvas-backdrop {
  6402. position: fixed;
  6403. top: 0;
  6404. right: 0;
  6405. z-index: 1040;
  6406. width: 100vw;
  6407. height: 100vh;
  6408. background-color: #000;
  6409. }
  6410. .offcanvas-backdrop.fade {
  6411. opacity: 0;
  6412. }
  6413. .offcanvas-backdrop.show {
  6414. opacity: 0.5;
  6415. }
  6416. .offcanvas-header {
  6417. display: -webkit-box;
  6418. display: -ms-flexbox;
  6419. display: flex;
  6420. -webkit-box-align: center;
  6421. -ms-flex-align: center;
  6422. align-items: center;
  6423. -webkit-box-pack: justify;
  6424. -ms-flex-pack: justify;
  6425. justify-content: space-between;
  6426. padding: 1rem 1rem;
  6427. }
  6428. .offcanvas-header .btn-close {
  6429. padding: 0.5rem 0.5rem;
  6430. margin-top: -0.5rem;
  6431. margin-left: -0.5rem;
  6432. margin-bottom: -0.5rem;
  6433. }
  6434. .offcanvas-title {
  6435. margin-bottom: 0;
  6436. line-height: 1.5;
  6437. }
  6438. .offcanvas-body {
  6439. -webkit-box-flex: 1;
  6440. -ms-flex-positive: 1;
  6441. flex-grow: 1;
  6442. padding: 1rem 1rem;
  6443. overflow-y: auto;
  6444. }
  6445. .offcanvas-start {
  6446. top: 0;
  6447. right: 0;
  6448. width: 400px;
  6449. border-left: 1px solid #f6f6f6;
  6450. -webkit-transform: translateX(100%);
  6451. transform: translateX(100%);
  6452. }
  6453. .offcanvas-end {
  6454. top: 0;
  6455. left: 0;
  6456. width: 400px;
  6457. border-right: 1px solid #f6f6f6;
  6458. -webkit-transform: translateX(-100%);
  6459. transform: translateX(-100%);
  6460. }
  6461. .offcanvas-top {
  6462. top: 0;
  6463. left: 0;
  6464. right: 0;
  6465. height: 30vh;
  6466. max-height: 100%;
  6467. border-bottom: 1px solid #f6f6f6;
  6468. -webkit-transform: translateY(-100%);
  6469. transform: translateY(-100%);
  6470. }
  6471. .offcanvas-bottom {
  6472. left: 0;
  6473. right: 0;
  6474. height: 30vh;
  6475. max-height: 100%;
  6476. border-top: 1px solid #f6f6f6;
  6477. -webkit-transform: translateY(100%);
  6478. transform: translateY(100%);
  6479. }
  6480. .offcanvas.show {
  6481. -webkit-transform: none;
  6482. transform: none;
  6483. }
  6484. .placeholder {
  6485. display: inline-block;
  6486. min-height: 1em;
  6487. vertical-align: middle;
  6488. cursor: wait;
  6489. background-color: currentColor;
  6490. opacity: 0.5;
  6491. }
  6492. .placeholder.btn::before {
  6493. display: inline-block;
  6494. content: "";
  6495. }
  6496. .placeholder-xs {
  6497. min-height: 0.6em;
  6498. }
  6499. .placeholder-sm {
  6500. min-height: 0.8em;
  6501. }
  6502. .placeholder-lg {
  6503. min-height: 1.2em;
  6504. }
  6505. .placeholder-glow .placeholder {
  6506. -webkit-animation: placeholder-glow 2s ease-in-out infinite;
  6507. animation: placeholder-glow 2s ease-in-out infinite;
  6508. }
  6509. @-webkit-keyframes placeholder-glow {
  6510. 50% {
  6511. opacity: 0.2;
  6512. }
  6513. }
  6514. @keyframes placeholder-glow {
  6515. 50% {
  6516. opacity: 0.2;
  6517. }
  6518. }
  6519. .placeholder-wave {
  6520. -webkit-mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6521. mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  6522. -webkit-mask-size: 200% 100%;
  6523. mask-size: 200% 100%;
  6524. -webkit-animation: placeholder-wave 2s linear infinite;
  6525. animation: placeholder-wave 2s linear infinite;
  6526. }
  6527. @-webkit-keyframes placeholder-wave {
  6528. 100% {
  6529. -webkit-mask-position: -200% 0%;
  6530. mask-position: -200% 0%;
  6531. }
  6532. }
  6533. @keyframes placeholder-wave {
  6534. 100% {
  6535. -webkit-mask-position: -200% 0%;
  6536. mask-position: -200% 0%;
  6537. }
  6538. }
  6539. .clearfix::after {
  6540. display: block;
  6541. clear: both;
  6542. content: "";
  6543. }
  6544. .link-primary {
  6545. color: #556ee6;
  6546. }
  6547. .link-primary:hover, .link-primary:focus {
  6548. color: #4458b8;
  6549. }
  6550. .link-secondary {
  6551. color: #74788d;
  6552. }
  6553. .link-secondary:hover, .link-secondary:focus {
  6554. color: #5d6071;
  6555. }
  6556. .link-success {
  6557. color: #34c38f;
  6558. }
  6559. .link-success:hover, .link-success:focus {
  6560. color: #2a9c72;
  6561. }
  6562. .link-info {
  6563. color: #50a5f1;
  6564. }
  6565. .link-info:hover, .link-info:focus {
  6566. color: #4084c1;
  6567. }
  6568. .link-warning {
  6569. color: #f1b44c;
  6570. }
  6571. .link-warning:hover, .link-warning:focus {
  6572. color: #c1903d;
  6573. }
  6574. .link-danger {
  6575. color: #f46a6a;
  6576. }
  6577. .link-danger:hover, .link-danger:focus {
  6578. color: #c35555;
  6579. }
  6580. .link-pink {
  6581. color: #e83e8c;
  6582. }
  6583. .link-pink:hover, .link-pink:focus {
  6584. color: #ba3270;
  6585. }
  6586. .link-light {
  6587. color: #eff2f7;
  6588. }
  6589. .link-light:hover, .link-light:focus {
  6590. color: #f2f5f9;
  6591. }
  6592. .link-dark {
  6593. color: #343a40;
  6594. }
  6595. .link-dark:hover, .link-dark:focus {
  6596. color: #2a2e33;
  6597. }
  6598. .ratio {
  6599. position: relative;
  6600. width: 100%;
  6601. }
  6602. .ratio::before {
  6603. display: block;
  6604. padding-top: var(--bs-aspect-ratio);
  6605. content: "";
  6606. }
  6607. .ratio > * {
  6608. position: absolute;
  6609. top: 0;
  6610. right: 0;
  6611. width: 100%;
  6612. height: 100%;
  6613. }
  6614. .ratio-1x1 {
  6615. --bs-aspect-ratio: 100%;
  6616. }
  6617. .ratio-4x3 {
  6618. --bs-aspect-ratio: 75%;
  6619. }
  6620. .ratio-16x9 {
  6621. --bs-aspect-ratio: 56.25%;
  6622. }
  6623. .ratio-21x9 {
  6624. --bs-aspect-ratio: 459%;
  6625. }
  6626. .fixed-top {
  6627. position: fixed;
  6628. top: 0;
  6629. left: 0;
  6630. right: 0;
  6631. z-index: 1030;
  6632. }
  6633. .fixed-bottom {
  6634. position: fixed;
  6635. left: 0;
  6636. bottom: 0;
  6637. right: 0;
  6638. z-index: 1030;
  6639. }
  6640. .sticky-top {
  6641. position: sticky;
  6642. top: 0;
  6643. z-index: 1020;
  6644. }
  6645. @media (min-width: 576px) {
  6646. .sticky-sm-top {
  6647. position: sticky;
  6648. top: 0;
  6649. z-index: 1020;
  6650. }
  6651. }
  6652. @media (min-width: 768px) {
  6653. .sticky-md-top {
  6654. position: sticky;
  6655. top: 0;
  6656. z-index: 1020;
  6657. }
  6658. }
  6659. @media (min-width: 992px) {
  6660. .sticky-lg-top {
  6661. position: sticky;
  6662. top: 0;
  6663. z-index: 1020;
  6664. }
  6665. }
  6666. @media (min-width: 1200px) {
  6667. .sticky-xl-top {
  6668. position: sticky;
  6669. top: 0;
  6670. z-index: 1020;
  6671. }
  6672. }
  6673. @media (min-width: 1400px) {
  6674. .sticky-xxl-top {
  6675. position: sticky;
  6676. top: 0;
  6677. z-index: 1020;
  6678. }
  6679. }
  6680. .hstack {
  6681. display: -webkit-box;
  6682. display: -ms-flexbox;
  6683. display: flex;
  6684. -webkit-box-orient: horizontal;
  6685. -webkit-box-direction: normal;
  6686. -ms-flex-direction: row;
  6687. flex-direction: row;
  6688. -webkit-box-align: center;
  6689. -ms-flex-align: center;
  6690. align-items: center;
  6691. -ms-flex-item-align: stretch;
  6692. align-self: stretch;
  6693. }
  6694. .vstack {
  6695. display: -webkit-box;
  6696. display: -ms-flexbox;
  6697. display: flex;
  6698. -webkit-box-flex: 1;
  6699. -ms-flex: 1 1 auto;
  6700. flex: 1 1 auto;
  6701. -webkit-box-orient: vertical;
  6702. -webkit-box-direction: normal;
  6703. -ms-flex-direction: column;
  6704. flex-direction: column;
  6705. -ms-flex-item-align: stretch;
  6706. align-self: stretch;
  6707. }
  6708. .visually-hidden,
  6709. .visually-hidden-focusable:not(:focus):not(:focus-within) {
  6710. position: absolute !important;
  6711. width: 1px !important;
  6712. height: 1px !important;
  6713. padding: 0 !important;
  6714. margin: -1px !important;
  6715. overflow: hidden !important;
  6716. clip: rect(0, 0, 0, 0) !important;
  6717. white-space: nowrap !important;
  6718. border: 0 !important;
  6719. }
  6720. .stretched-link::after {
  6721. position: absolute;
  6722. top: 0;
  6723. left: 0;
  6724. bottom: 0;
  6725. right: 0;
  6726. z-index: 1;
  6727. content: "";
  6728. }
  6729. .text-truncate {
  6730. overflow: hidden;
  6731. text-overflow: ellipsis;
  6732. white-space: nowrap;
  6733. }
  6734. .vr {
  6735. display: inline-block;
  6736. -ms-flex-item-align: stretch;
  6737. align-self: stretch;
  6738. width: 1px;
  6739. min-height: 1em;
  6740. background-color: currentColor;
  6741. opacity: 0.2;
  6742. }
  6743. .align-baseline {
  6744. vertical-align: baseline !important;
  6745. }
  6746. .align-top {
  6747. vertical-align: top !important;
  6748. }
  6749. .align-middle {
  6750. vertical-align: middle !important;
  6751. }
  6752. .align-bottom {
  6753. vertical-align: bottom !important;
  6754. }
  6755. .align-text-bottom {
  6756. vertical-align: text-bottom !important;
  6757. }
  6758. .align-text-top {
  6759. vertical-align: text-top !important;
  6760. }
  6761. .float-start {
  6762. float: right !important;
  6763. }
  6764. .float-end {
  6765. float: left !important;
  6766. }
  6767. .float-none {
  6768. float: none !important;
  6769. }
  6770. .opacity-0 {
  6771. opacity: 0 !important;
  6772. }
  6773. .opacity-25 {
  6774. opacity: 0.25 !important;
  6775. }
  6776. .opacity-50 {
  6777. opacity: 0.5 !important;
  6778. }
  6779. .opacity-75 {
  6780. opacity: 0.75 !important;
  6781. }
  6782. .opacity-100 {
  6783. opacity: 1 !important;
  6784. }
  6785. .overflow-auto {
  6786. overflow: auto !important;
  6787. }
  6788. .overflow-hidden {
  6789. overflow: hidden !important;
  6790. }
  6791. .overflow-visible {
  6792. overflow: visible !important;
  6793. }
  6794. .overflow-scroll {
  6795. overflow: scroll !important;
  6796. }
  6797. .d-inline {
  6798. display: inline !important;
  6799. }
  6800. .d-inline-block {
  6801. display: inline-block !important;
  6802. }
  6803. .d-block {
  6804. display: block !important;
  6805. }
  6806. .d-grid {
  6807. display: grid !important;
  6808. }
  6809. .d-table {
  6810. display: table !important;
  6811. }
  6812. .d-table-row {
  6813. display: table-row !important;
  6814. }
  6815. .d-table-cell {
  6816. display: table-cell !important;
  6817. }
  6818. .d-flex {
  6819. display: -webkit-box !important;
  6820. display: -ms-flexbox !important;
  6821. display: flex !important;
  6822. }
  6823. .d-inline-flex {
  6824. display: -webkit-inline-box !important;
  6825. display: -ms-inline-flexbox !important;
  6826. display: inline-flex !important;
  6827. }
  6828. .d-none {
  6829. display: none !important;
  6830. }
  6831. .shadow {
  6832. -webkit-box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03) !important;
  6833. box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03) !important;
  6834. }
  6835. .shadow-sm {
  6836. -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  6837. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  6838. }
  6839. .shadow-lg {
  6840. -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  6841. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  6842. }
  6843. .shadow-none {
  6844. -webkit-box-shadow: none !important;
  6845. box-shadow: none !important;
  6846. }
  6847. .position-static {
  6848. position: static !important;
  6849. }
  6850. .position-relative {
  6851. position: relative !important;
  6852. }
  6853. .position-absolute {
  6854. position: absolute !important;
  6855. }
  6856. .position-fixed {
  6857. position: fixed !important;
  6858. }
  6859. .position-sticky {
  6860. position: sticky !important;
  6861. }
  6862. .top-0 {
  6863. top: 0 !important;
  6864. }
  6865. .top-50 {
  6866. top: 50% !important;
  6867. }
  6868. .top-100 {
  6869. top: 100% !important;
  6870. }
  6871. .bottom-0 {
  6872. bottom: 0 !important;
  6873. }
  6874. .bottom-50 {
  6875. bottom: 50% !important;
  6876. }
  6877. .bottom-100 {
  6878. bottom: 100% !important;
  6879. }
  6880. .start-0 {
  6881. right: 0 !important;
  6882. }
  6883. .start-50 {
  6884. right: 50% !important;
  6885. }
  6886. .start-100 {
  6887. right: 100% !important;
  6888. }
  6889. .end-0 {
  6890. left: 0 !important;
  6891. }
  6892. .end-50 {
  6893. left: 50% !important;
  6894. }
  6895. .end-100 {
  6896. left: 100% !important;
  6897. }
  6898. .translate-middle {
  6899. -webkit-transform: translate(50%, -50%) !important;
  6900. transform: translate(50%, -50%) !important;
  6901. }
  6902. .translate-middle-x {
  6903. -webkit-transform: translateX(50%) !important;
  6904. transform: translateX(50%) !important;
  6905. }
  6906. .translate-middle-y {
  6907. -webkit-transform: translateY(-50%) !important;
  6908. transform: translateY(-50%) !important;
  6909. }
  6910. .border {
  6911. border: 1px solid #eff2f7 !important;
  6912. }
  6913. .border-0 {
  6914. border: 0 !important;
  6915. }
  6916. .border-top {
  6917. border-top: 1px solid #eff2f7 !important;
  6918. }
  6919. .border-top-0 {
  6920. border-top: 0 !important;
  6921. }
  6922. .border-end {
  6923. border-left: 1px solid #eff2f7 !important;
  6924. }
  6925. .border-end-0 {
  6926. border-left: 0 !important;
  6927. }
  6928. .border-bottom {
  6929. border-bottom: 1px solid #eff2f7 !important;
  6930. }
  6931. .border-bottom-0 {
  6932. border-bottom: 0 !important;
  6933. }
  6934. .border-start {
  6935. border-right: 1px solid #eff2f7 !important;
  6936. }
  6937. .border-start-0 {
  6938. border-right: 0 !important;
  6939. }
  6940. .border-primary {
  6941. border-color: #556ee6 !important;
  6942. }
  6943. .border-secondary {
  6944. border-color: #74788d !important;
  6945. }
  6946. .border-success {
  6947. border-color: #34c38f !important;
  6948. }
  6949. .border-info {
  6950. border-color: #50a5f1 !important;
  6951. }
  6952. .border-warning {
  6953. border-color: #f1b44c !important;
  6954. }
  6955. .border-danger {
  6956. border-color: #f46a6a !important;
  6957. }
  6958. .border-pink {
  6959. border-color: #e83e8c !important;
  6960. }
  6961. .border-light {
  6962. border-color: #eff2f7 !important;
  6963. }
  6964. .border-dark {
  6965. border-color: #343a40 !important;
  6966. }
  6967. .border-white {
  6968. border-color: #fff !important;
  6969. }
  6970. .border-0 {
  6971. border-width: 0 !important;
  6972. }
  6973. .border-1 {
  6974. border-width: 1px !important;
  6975. }
  6976. .border-2 {
  6977. border-width: 2px !important;
  6978. }
  6979. .border-3 {
  6980. border-width: 3px !important;
  6981. }
  6982. .border-4 {
  6983. border-width: 4px !important;
  6984. }
  6985. .border-5 {
  6986. border-width: 5px !important;
  6987. }
  6988. .w-25 {
  6989. width: 25% !important;
  6990. }
  6991. .w-50 {
  6992. width: 50% !important;
  6993. }
  6994. .w-75 {
  6995. width: 75% !important;
  6996. }
  6997. .w-100 {
  6998. width: 100% !important;
  6999. }
  7000. .w-auto {
  7001. width: auto !important;
  7002. }
  7003. .mw-100 {
  7004. max-width: 100% !important;
  7005. }
  7006. .vw-100 {
  7007. width: 100vw !important;
  7008. }
  7009. .min-vw-100 {
  7010. min-width: 100vw !important;
  7011. }
  7012. .h-25 {
  7013. height: 25% !important;
  7014. }
  7015. .h-50 {
  7016. height: 50% !important;
  7017. }
  7018. .h-75 {
  7019. height: 75% !important;
  7020. }
  7021. .h-100 {
  7022. height: 100% !important;
  7023. }
  7024. .h-auto {
  7025. height: auto !important;
  7026. }
  7027. .mh-100 {
  7028. max-height: 100% !important;
  7029. }
  7030. .vh-100 {
  7031. height: 100vh !important;
  7032. }
  7033. .min-vh-100 {
  7034. min-height: 100vh !important;
  7035. }
  7036. .flex-fill {
  7037. -webkit-box-flex: 1 !important;
  7038. -ms-flex: 1 1 auto !important;
  7039. flex: 1 1 auto !important;
  7040. }
  7041. .flex-row {
  7042. -webkit-box-orient: horizontal !important;
  7043. -webkit-box-direction: normal !important;
  7044. -ms-flex-direction: row !important;
  7045. flex-direction: row !important;
  7046. }
  7047. .flex-column {
  7048. -webkit-box-orient: vertical !important;
  7049. -webkit-box-direction: normal !important;
  7050. -ms-flex-direction: column !important;
  7051. flex-direction: column !important;
  7052. }
  7053. .flex-row-reverse {
  7054. -webkit-box-orient: horizontal !important;
  7055. -webkit-box-direction: reverse !important;
  7056. -ms-flex-direction: row-reverse !important;
  7057. flex-direction: row-reverse !important;
  7058. }
  7059. .flex-column-reverse {
  7060. -webkit-box-orient: vertical !important;
  7061. -webkit-box-direction: reverse !important;
  7062. -ms-flex-direction: column-reverse !important;
  7063. flex-direction: column-reverse !important;
  7064. }
  7065. .flex-grow-0 {
  7066. -webkit-box-flex: 0 !important;
  7067. -ms-flex-positive: 0 !important;
  7068. flex-grow: 0 !important;
  7069. }
  7070. .flex-grow-1 {
  7071. -webkit-box-flex: 1 !important;
  7072. -ms-flex-positive: 1 !important;
  7073. flex-grow: 1 !important;
  7074. }
  7075. .flex-shrink-0 {
  7076. -ms-flex-negative: 0 !important;
  7077. flex-shrink: 0 !important;
  7078. }
  7079. .flex-shrink-1 {
  7080. -ms-flex-negative: 1 !important;
  7081. flex-shrink: 1 !important;
  7082. }
  7083. .flex-wrap {
  7084. -ms-flex-wrap: wrap !important;
  7085. flex-wrap: wrap !important;
  7086. }
  7087. .flex-nowrap {
  7088. -ms-flex-wrap: nowrap !important;
  7089. flex-wrap: nowrap !important;
  7090. }
  7091. .flex-wrap-reverse {
  7092. -ms-flex-wrap: wrap-reverse !important;
  7093. flex-wrap: wrap-reverse !important;
  7094. }
  7095. .gap-0 {
  7096. gap: 0 !important;
  7097. }
  7098. .gap-1 {
  7099. gap: 0.25rem !important;
  7100. }
  7101. .gap-2 {
  7102. gap: 0.5rem !important;
  7103. }
  7104. .gap-3 {
  7105. gap: 1rem !important;
  7106. }
  7107. .gap-4 {
  7108. gap: 1.5rem !important;
  7109. }
  7110. .gap-5 {
  7111. gap: 3rem !important;
  7112. }
  7113. .justify-content-start {
  7114. -webkit-box-pack: start !important;
  7115. -ms-flex-pack: start !important;
  7116. justify-content: flex-start !important;
  7117. }
  7118. .justify-content-end {
  7119. -webkit-box-pack: end !important;
  7120. -ms-flex-pack: end !important;
  7121. justify-content: flex-end !important;
  7122. }
  7123. .justify-content-center {
  7124. -webkit-box-pack: center !important;
  7125. -ms-flex-pack: center !important;
  7126. justify-content: center !important;
  7127. }
  7128. .justify-content-between {
  7129. -webkit-box-pack: justify !important;
  7130. -ms-flex-pack: justify !important;
  7131. justify-content: space-between !important;
  7132. }
  7133. .justify-content-around {
  7134. -ms-flex-pack: distribute !important;
  7135. justify-content: space-around !important;
  7136. }
  7137. .justify-content-evenly {
  7138. -webkit-box-pack: space-evenly !important;
  7139. -ms-flex-pack: space-evenly !important;
  7140. justify-content: space-evenly !important;
  7141. }
  7142. .align-items-start {
  7143. -webkit-box-align: start !important;
  7144. -ms-flex-align: start !important;
  7145. align-items: flex-start !important;
  7146. }
  7147. .align-items-end {
  7148. -webkit-box-align: end !important;
  7149. -ms-flex-align: end !important;
  7150. align-items: flex-end !important;
  7151. }
  7152. .align-items-center {
  7153. -webkit-box-align: center !important;
  7154. -ms-flex-align: center !important;
  7155. align-items: center !important;
  7156. }
  7157. .align-items-baseline {
  7158. -webkit-box-align: baseline !important;
  7159. -ms-flex-align: baseline !important;
  7160. align-items: baseline !important;
  7161. }
  7162. .align-items-stretch {
  7163. -webkit-box-align: stretch !important;
  7164. -ms-flex-align: stretch !important;
  7165. align-items: stretch !important;
  7166. }
  7167. .align-content-start {
  7168. -ms-flex-line-pack: start !important;
  7169. align-content: flex-start !important;
  7170. }
  7171. .align-content-end {
  7172. -ms-flex-line-pack: end !important;
  7173. align-content: flex-end !important;
  7174. }
  7175. .align-content-center {
  7176. -ms-flex-line-pack: center !important;
  7177. align-content: center !important;
  7178. }
  7179. .align-content-between {
  7180. -ms-flex-line-pack: justify !important;
  7181. align-content: space-between !important;
  7182. }
  7183. .align-content-around {
  7184. -ms-flex-line-pack: distribute !important;
  7185. align-content: space-around !important;
  7186. }
  7187. .align-content-stretch {
  7188. -ms-flex-line-pack: stretch !important;
  7189. align-content: stretch !important;
  7190. }
  7191. .align-self-auto {
  7192. -ms-flex-item-align: auto !important;
  7193. align-self: auto !important;
  7194. }
  7195. .align-self-start {
  7196. -ms-flex-item-align: start !important;
  7197. align-self: flex-start !important;
  7198. }
  7199. .align-self-end {
  7200. -ms-flex-item-align: end !important;
  7201. align-self: flex-end !important;
  7202. }
  7203. .align-self-center {
  7204. -ms-flex-item-align: center !important;
  7205. align-self: center !important;
  7206. }
  7207. .align-self-baseline {
  7208. -ms-flex-item-align: baseline !important;
  7209. align-self: baseline !important;
  7210. }
  7211. .align-self-stretch {
  7212. -ms-flex-item-align: stretch !important;
  7213. align-self: stretch !important;
  7214. }
  7215. .order-first {
  7216. -webkit-box-ordinal-group: 0 !important;
  7217. -ms-flex-order: -1 !important;
  7218. order: -1 !important;
  7219. }
  7220. .order-0 {
  7221. -webkit-box-ordinal-group: 1 !important;
  7222. -ms-flex-order: 0 !important;
  7223. order: 0 !important;
  7224. }
  7225. .order-1 {
  7226. -webkit-box-ordinal-group: 2 !important;
  7227. -ms-flex-order: 1 !important;
  7228. order: 1 !important;
  7229. }
  7230. .order-2 {
  7231. -webkit-box-ordinal-group: 3 !important;
  7232. -ms-flex-order: 2 !important;
  7233. order: 2 !important;
  7234. }
  7235. .order-3 {
  7236. -webkit-box-ordinal-group: 4 !important;
  7237. -ms-flex-order: 3 !important;
  7238. order: 3 !important;
  7239. }
  7240. .order-4 {
  7241. -webkit-box-ordinal-group: 5 !important;
  7242. -ms-flex-order: 4 !important;
  7243. order: 4 !important;
  7244. }
  7245. .order-5 {
  7246. -webkit-box-ordinal-group: 6 !important;
  7247. -ms-flex-order: 5 !important;
  7248. order: 5 !important;
  7249. }
  7250. .order-last {
  7251. -webkit-box-ordinal-group: 7 !important;
  7252. -ms-flex-order: 6 !important;
  7253. order: 6 !important;
  7254. }
  7255. .m-0 {
  7256. margin: 0 !important;
  7257. }
  7258. .m-1 {
  7259. margin: 0.25rem !important;
  7260. }
  7261. .m-2 {
  7262. margin: 0.5rem !important;
  7263. }
  7264. .m-3 {
  7265. margin: 1rem !important;
  7266. }
  7267. .m-4 {
  7268. margin: 1.5rem !important;
  7269. }
  7270. .m-5 {
  7271. margin: 3rem !important;
  7272. }
  7273. .m-auto {
  7274. margin: auto !important;
  7275. }
  7276. .mx-0 {
  7277. margin-left: 0 !important;
  7278. margin-right: 0 !important;
  7279. }
  7280. .mx-1 {
  7281. margin-left: 0.25rem !important;
  7282. margin-right: 0.25rem !important;
  7283. }
  7284. .mx-2 {
  7285. margin-left: 0.5rem !important;
  7286. margin-right: 0.5rem !important;
  7287. }
  7288. .mx-3 {
  7289. margin-left: 1rem !important;
  7290. margin-right: 1rem !important;
  7291. }
  7292. .mx-4 {
  7293. margin-left: 1.5rem !important;
  7294. margin-right: 1.5rem !important;
  7295. }
  7296. .mx-5 {
  7297. margin-left: 3rem !important;
  7298. margin-right: 3rem !important;
  7299. }
  7300. .mx-auto {
  7301. margin-left: auto !important;
  7302. margin-right: auto !important;
  7303. }
  7304. .my-0 {
  7305. margin-top: 0 !important;
  7306. margin-bottom: 0 !important;
  7307. }
  7308. .my-1 {
  7309. margin-top: 0.25rem !important;
  7310. margin-bottom: 0.25rem !important;
  7311. }
  7312. .my-2 {
  7313. margin-top: 0.5rem !important;
  7314. margin-bottom: 0.5rem !important;
  7315. }
  7316. .my-3 {
  7317. margin-top: 1rem !important;
  7318. margin-bottom: 1rem !important;
  7319. }
  7320. .my-4 {
  7321. margin-top: 1.5rem !important;
  7322. margin-bottom: 1.5rem !important;
  7323. }
  7324. .my-5 {
  7325. margin-top: 3rem !important;
  7326. margin-bottom: 3rem !important;
  7327. }
  7328. .my-auto {
  7329. margin-top: auto !important;
  7330. margin-bottom: auto !important;
  7331. }
  7332. .mt-0 {
  7333. margin-top: 0 !important;
  7334. }
  7335. .mt-1 {
  7336. margin-top: 0.25rem !important;
  7337. }
  7338. .mt-2 {
  7339. margin-top: 0.5rem !important;
  7340. }
  7341. .mt-3 {
  7342. margin-top: 1rem !important;
  7343. }
  7344. .mt-4 {
  7345. margin-top: 1.5rem !important;
  7346. }
  7347. .mt-5 {
  7348. margin-top: 3rem !important;
  7349. }
  7350. .mt-auto {
  7351. margin-top: auto !important;
  7352. }
  7353. .me-0 {
  7354. margin-left: 0 !important;
  7355. }
  7356. .me-1 {
  7357. margin-left: 0.25rem !important;
  7358. }
  7359. .me-2 {
  7360. margin-left: 0.5rem !important;
  7361. }
  7362. .me-3 {
  7363. margin-left: 1rem !important;
  7364. }
  7365. .me-4 {
  7366. margin-left: 1.5rem !important;
  7367. }
  7368. .me-5 {
  7369. margin-left: 3rem !important;
  7370. }
  7371. .me-auto {
  7372. margin-left: auto !important;
  7373. }
  7374. .mb-0 {
  7375. margin-bottom: 0 !important;
  7376. }
  7377. .mb-1 {
  7378. margin-bottom: 0.25rem !important;
  7379. }
  7380. .mb-2 {
  7381. margin-bottom: 0.5rem !important;
  7382. }
  7383. .mb-3 {
  7384. margin-bottom: 1rem !important;
  7385. }
  7386. .mb-4 {
  7387. margin-bottom: 1.5rem !important;
  7388. }
  7389. .mb-5 {
  7390. margin-bottom: 3rem !important;
  7391. }
  7392. .mb-auto {
  7393. margin-bottom: auto !important;
  7394. }
  7395. .ms-0 {
  7396. margin-right: 0 !important;
  7397. }
  7398. .ms-1 {
  7399. margin-right: 0.25rem !important;
  7400. }
  7401. .ms-2 {
  7402. margin-right: 0.5rem !important;
  7403. }
  7404. .ms-3 {
  7405. margin-right: 1rem !important;
  7406. }
  7407. .ms-4 {
  7408. margin-right: 1.5rem !important;
  7409. }
  7410. .ms-5 {
  7411. margin-right: 3rem !important;
  7412. }
  7413. .ms-auto {
  7414. margin-right: auto !important;
  7415. }
  7416. .m-n1 {
  7417. margin: -0.25rem !important;
  7418. }
  7419. .m-n2 {
  7420. margin: -0.5rem !important;
  7421. }
  7422. .m-n3 {
  7423. margin: -1rem !important;
  7424. }
  7425. .m-n4 {
  7426. margin: -1.5rem !important;
  7427. }
  7428. .m-n5 {
  7429. margin: -3rem !important;
  7430. }
  7431. .mx-n1 {
  7432. margin-left: -0.25rem !important;
  7433. margin-right: -0.25rem !important;
  7434. }
  7435. .mx-n2 {
  7436. margin-left: -0.5rem !important;
  7437. margin-right: -0.5rem !important;
  7438. }
  7439. .mx-n3 {
  7440. margin-left: -1rem !important;
  7441. margin-right: -1rem !important;
  7442. }
  7443. .mx-n4 {
  7444. margin-left: -1.5rem !important;
  7445. margin-right: -1.5rem !important;
  7446. }
  7447. .mx-n5 {
  7448. margin-left: -3rem !important;
  7449. margin-right: -3rem !important;
  7450. }
  7451. .my-n1 {
  7452. margin-top: -0.25rem !important;
  7453. margin-bottom: -0.25rem !important;
  7454. }
  7455. .my-n2 {
  7456. margin-top: -0.5rem !important;
  7457. margin-bottom: -0.5rem !important;
  7458. }
  7459. .my-n3 {
  7460. margin-top: -1rem !important;
  7461. margin-bottom: -1rem !important;
  7462. }
  7463. .my-n4 {
  7464. margin-top: -1.5rem !important;
  7465. margin-bottom: -1.5rem !important;
  7466. }
  7467. .my-n5 {
  7468. margin-top: -3rem !important;
  7469. margin-bottom: -3rem !important;
  7470. }
  7471. .mt-n1 {
  7472. margin-top: -0.25rem !important;
  7473. }
  7474. .mt-n2 {
  7475. margin-top: -0.5rem !important;
  7476. }
  7477. .mt-n3 {
  7478. margin-top: -1rem !important;
  7479. }
  7480. .mt-n4 {
  7481. margin-top: -1.5rem !important;
  7482. }
  7483. .mt-n5 {
  7484. margin-top: -3rem !important;
  7485. }
  7486. .me-n1 {
  7487. margin-left: -0.25rem !important;
  7488. }
  7489. .me-n2 {
  7490. margin-left: -0.5rem !important;
  7491. }
  7492. .me-n3 {
  7493. margin-left: -1rem !important;
  7494. }
  7495. .me-n4 {
  7496. margin-left: -1.5rem !important;
  7497. }
  7498. .me-n5 {
  7499. margin-left: -3rem !important;
  7500. }
  7501. .mb-n1 {
  7502. margin-bottom: -0.25rem !important;
  7503. }
  7504. .mb-n2 {
  7505. margin-bottom: -0.5rem !important;
  7506. }
  7507. .mb-n3 {
  7508. margin-bottom: -1rem !important;
  7509. }
  7510. .mb-n4 {
  7511. margin-bottom: -1.5rem !important;
  7512. }
  7513. .mb-n5 {
  7514. margin-bottom: -3rem !important;
  7515. }
  7516. .ms-n1 {
  7517. margin-right: -0.25rem !important;
  7518. }
  7519. .ms-n2 {
  7520. margin-right: -0.5rem !important;
  7521. }
  7522. .ms-n3 {
  7523. margin-right: -1rem !important;
  7524. }
  7525. .ms-n4 {
  7526. margin-right: -1.5rem !important;
  7527. }
  7528. .ms-n5 {
  7529. margin-right: -3rem !important;
  7530. }
  7531. .p-0 {
  7532. padding: 0 !important;
  7533. }
  7534. .p-1 {
  7535. padding: 0.25rem !important;
  7536. }
  7537. .p-2 {
  7538. padding: 0.5rem !important;
  7539. }
  7540. .p-3 {
  7541. padding: 1rem !important;
  7542. }
  7543. .p-4 {
  7544. padding: 1.5rem !important;
  7545. }
  7546. .p-5 {
  7547. padding: 3rem !important;
  7548. }
  7549. .px-0 {
  7550. padding-left: 0 !important;
  7551. padding-right: 0 !important;
  7552. }
  7553. .px-1 {
  7554. padding-left: 0.25rem !important;
  7555. padding-right: 0.25rem !important;
  7556. }
  7557. .px-2 {
  7558. padding-left: 0.5rem !important;
  7559. padding-right: 0.5rem !important;
  7560. }
  7561. .px-3 {
  7562. padding-left: 1rem !important;
  7563. padding-right: 1rem !important;
  7564. }
  7565. .px-4 {
  7566. padding-left: 1.5rem !important;
  7567. padding-right: 1.5rem !important;
  7568. }
  7569. .px-5 {
  7570. padding-left: 3rem !important;
  7571. padding-right: 3rem !important;
  7572. }
  7573. .py-0 {
  7574. padding-top: 0 !important;
  7575. padding-bottom: 0 !important;
  7576. }
  7577. .py-1 {
  7578. padding-top: 0.25rem !important;
  7579. padding-bottom: 0.25rem !important;
  7580. }
  7581. .py-2 {
  7582. padding-top: 0.5rem !important;
  7583. padding-bottom: 0.5rem !important;
  7584. }
  7585. .py-3 {
  7586. padding-top: 1rem !important;
  7587. padding-bottom: 1rem !important;
  7588. }
  7589. .py-4 {
  7590. padding-top: 1.5rem !important;
  7591. padding-bottom: 1.5rem !important;
  7592. }
  7593. .py-5 {
  7594. padding-top: 3rem !important;
  7595. padding-bottom: 3rem !important;
  7596. }
  7597. .pt-0 {
  7598. padding-top: 0 !important;
  7599. }
  7600. .pt-1 {
  7601. padding-top: 0.25rem !important;
  7602. }
  7603. .pt-2 {
  7604. padding-top: 0.5rem !important;
  7605. }
  7606. .pt-3 {
  7607. padding-top: 1rem !important;
  7608. }
  7609. .pt-4 {
  7610. padding-top: 1.5rem !important;
  7611. }
  7612. .pt-5 {
  7613. padding-top: 3rem !important;
  7614. }
  7615. .pe-0 {
  7616. padding-left: 0 !important;
  7617. }
  7618. .pe-1 {
  7619. padding-left: 0.25rem !important;
  7620. }
  7621. .pe-2 {
  7622. padding-left: 0.5rem !important;
  7623. }
  7624. .pe-3 {
  7625. padding-left: 1rem !important;
  7626. }
  7627. .pe-4 {
  7628. padding-left: 1.5rem !important;
  7629. }
  7630. .pe-5 {
  7631. padding-left: 3rem !important;
  7632. }
  7633. .pb-0 {
  7634. padding-bottom: 0 !important;
  7635. }
  7636. .pb-1 {
  7637. padding-bottom: 0.25rem !important;
  7638. }
  7639. .pb-2 {
  7640. padding-bottom: 0.5rem !important;
  7641. }
  7642. .pb-3 {
  7643. padding-bottom: 1rem !important;
  7644. }
  7645. .pb-4 {
  7646. padding-bottom: 1.5rem !important;
  7647. }
  7648. .pb-5 {
  7649. padding-bottom: 3rem !important;
  7650. }
  7651. .ps-0 {
  7652. padding-right: 0 !important;
  7653. }
  7654. .ps-1 {
  7655. padding-right: 0.25rem !important;
  7656. }
  7657. .ps-2 {
  7658. padding-right: 0.5rem !important;
  7659. }
  7660. .ps-3 {
  7661. padding-right: 1rem !important;
  7662. }
  7663. .ps-4 {
  7664. padding-right: 1.5rem !important;
  7665. }
  7666. .ps-5 {
  7667. padding-right: 3rem !important;
  7668. }
  7669. .font-monospace {
  7670. font-family: var(--bs-font-monospace) !important;
  7671. }
  7672. .fs-1 {
  7673. font-size: calc(1.328125rem + 0.9375vw) !important;
  7674. }
  7675. .fs-2 {
  7676. font-size: calc(1.2875rem + 0.45vw) !important;
  7677. }
  7678. .fs-3 {
  7679. font-size: calc(1.2671875rem + 0.20625vw) !important;
  7680. }
  7681. .fs-4 {
  7682. font-size: 1.21875rem !important;
  7683. }
  7684. .fs-5 {
  7685. font-size: 1.015625rem !important;
  7686. }
  7687. .fs-6 {
  7688. font-size: 0.8125rem !important;
  7689. }
  7690. .fst-italic {
  7691. font-style: italic !important;
  7692. }
  7693. .fst-normal {
  7694. font-style: normal !important;
  7695. }
  7696. .fw-light {
  7697. font-weight: 300 !important;
  7698. }
  7699. .fw-lighter {
  7700. font-weight: lighter !important;
  7701. }
  7702. .fw-normal {
  7703. font-weight: 400 !important;
  7704. }
  7705. .fw-bold {
  7706. font-weight: 600 !important;
  7707. }
  7708. .fw-bolder {
  7709. font-weight: bolder !important;
  7710. }
  7711. .lh-1 {
  7712. line-height: 1 !important;
  7713. }
  7714. .lh-sm {
  7715. line-height: 1.25 !important;
  7716. }
  7717. .lh-base {
  7718. line-height: 1.5 !important;
  7719. }
  7720. .lh-lg {
  7721. line-height: 2 !important;
  7722. }
  7723. .text-start {
  7724. text-align: right !important;
  7725. }
  7726. .text-end {
  7727. text-align: left !important;
  7728. }
  7729. .text-center {
  7730. text-align: center !important;
  7731. }
  7732. .text-decoration-none {
  7733. text-decoration: none !important;
  7734. }
  7735. .text-decoration-underline {
  7736. text-decoration: underline !important;
  7737. }
  7738. .text-decoration-line-through {
  7739. text-decoration: line-through !important;
  7740. }
  7741. .text-lowercase {
  7742. text-transform: lowercase !important;
  7743. }
  7744. .text-uppercase {
  7745. text-transform: uppercase !important;
  7746. }
  7747. .text-capitalize {
  7748. text-transform: capitalize !important;
  7749. }
  7750. .text-wrap {
  7751. white-space: normal !important;
  7752. }
  7753. .text-nowrap {
  7754. white-space: nowrap !important;
  7755. }
  7756. .text-primary {
  7757. --bs-text-opacity: 1;
  7758. color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
  7759. }
  7760. .text-secondary {
  7761. --bs-text-opacity: 1;
  7762. color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
  7763. }
  7764. .text-success {
  7765. --bs-text-opacity: 1;
  7766. color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
  7767. }
  7768. .text-info {
  7769. --bs-text-opacity: 1;
  7770. color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
  7771. }
  7772. .text-warning {
  7773. --bs-text-opacity: 1;
  7774. color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
  7775. }
  7776. .text-danger {
  7777. --bs-text-opacity: 1;
  7778. color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
  7779. }
  7780. .text-pink {
  7781. --bs-text-opacity: 1;
  7782. color: rgba(var(--bs-pink-rgb), var(--bs-text-opacity)) !important;
  7783. }
  7784. .text-light {
  7785. --bs-text-opacity: 1;
  7786. color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
  7787. }
  7788. .text-dark {
  7789. --bs-text-opacity: 1;
  7790. color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
  7791. }
  7792. .text-black {
  7793. --bs-text-opacity: 1;
  7794. color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
  7795. }
  7796. .text-white {
  7797. --bs-text-opacity: 1;
  7798. color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
  7799. }
  7800. .text-body {
  7801. --bs-text-opacity: 1;
  7802. color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
  7803. }
  7804. .text-muted {
  7805. --bs-text-opacity: 1;
  7806. color: #74788d !important;
  7807. }
  7808. .text-black-50 {
  7809. --bs-text-opacity: 1;
  7810. color: rgba(0, 0, 0, 0.5) !important;
  7811. }
  7812. .text-white-50 {
  7813. --bs-text-opacity: 1;
  7814. color: rgba(255, 255, 255, 0.5) !important;
  7815. }
  7816. .text-reset {
  7817. --bs-text-opacity: 1;
  7818. color: inherit !important;
  7819. }
  7820. .text-opacity-25 {
  7821. --bs-text-opacity: 0.25;
  7822. }
  7823. .text-opacity-50 {
  7824. --bs-text-opacity: 0.5;
  7825. }
  7826. .text-opacity-75 {
  7827. --bs-text-opacity: 0.75;
  7828. }
  7829. .text-opacity-100 {
  7830. --bs-text-opacity: 1;
  7831. }
  7832. .bg-primary {
  7833. --bs-bg-opacity: 1;
  7834. background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
  7835. }
  7836. .bg-secondary {
  7837. --bs-bg-opacity: 1;
  7838. background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
  7839. }
  7840. .bg-success {
  7841. --bs-bg-opacity: 1;
  7842. background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
  7843. }
  7844. .bg-info {
  7845. --bs-bg-opacity: 1;
  7846. background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
  7847. }
  7848. .bg-warning {
  7849. --bs-bg-opacity: 1;
  7850. background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
  7851. }
  7852. .bg-danger {
  7853. --bs-bg-opacity: 1;
  7854. background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
  7855. }
  7856. .bg-pink {
  7857. --bs-bg-opacity: 1;
  7858. background-color: rgba(var(--bs-pink-rgb), var(--bs-bg-opacity)) !important;
  7859. }
  7860. .bg-light {
  7861. --bs-bg-opacity: 1;
  7862. background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
  7863. }
  7864. .bg-dark {
  7865. --bs-bg-opacity: 1;
  7866. background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
  7867. }
  7868. .bg-black {
  7869. --bs-bg-opacity: 1;
  7870. background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
  7871. }
  7872. .bg-white {
  7873. --bs-bg-opacity: 1;
  7874. background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
  7875. }
  7876. .bg-body {
  7877. --bs-bg-opacity: 1;
  7878. background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
  7879. }
  7880. .bg-transparent {
  7881. --bs-bg-opacity: 1;
  7882. background-color: transparent !important;
  7883. }
  7884. .bg-opacity-10 {
  7885. --bs-bg-opacity: 0.1;
  7886. }
  7887. .bg-opacity-25 {
  7888. --bs-bg-opacity: 0.25;
  7889. }
  7890. .bg-opacity-50 {
  7891. --bs-bg-opacity: 0.5;
  7892. }
  7893. .bg-opacity-75 {
  7894. --bs-bg-opacity: 0.75;
  7895. }
  7896. .bg-opacity-100 {
  7897. --bs-bg-opacity: 1;
  7898. }
  7899. .bg-gradient {
  7900. background-image: var(--bs-gradient) !important;
  7901. }
  7902. .user-select-all {
  7903. -webkit-user-select: all !important;
  7904. -moz-user-select: all !important;
  7905. user-select: all !important;
  7906. }
  7907. .user-select-auto {
  7908. -webkit-user-select: auto !important;
  7909. -moz-user-select: auto !important;
  7910. -ms-user-select: auto !important;
  7911. user-select: auto !important;
  7912. }
  7913. .user-select-none {
  7914. -webkit-user-select: none !important;
  7915. -moz-user-select: none !important;
  7916. -ms-user-select: none !important;
  7917. user-select: none !important;
  7918. }
  7919. .pe-none {
  7920. pointer-events: none !important;
  7921. }
  7922. .pe-auto {
  7923. pointer-events: auto !important;
  7924. }
  7925. .rounded {
  7926. border-radius: 0.25rem !important;
  7927. }
  7928. .rounded-0 {
  7929. border-radius: 0 !important;
  7930. }
  7931. .rounded-1 {
  7932. border-radius: 0.2rem !important;
  7933. }
  7934. .rounded-2 {
  7935. border-radius: 0.25rem !important;
  7936. }
  7937. .rounded-3 {
  7938. border-radius: 0.4rem !important;
  7939. }
  7940. .rounded-circle {
  7941. border-radius: 50% !important;
  7942. }
  7943. .rounded-pill {
  7944. border-radius: 50rem !important;
  7945. }
  7946. .rounded-top {
  7947. border-top-right-radius: 0.25rem !important;
  7948. border-top-left-radius: 0.25rem !important;
  7949. }
  7950. .rounded-end {
  7951. border-top-left-radius: 0.25rem !important;
  7952. border-bottom-left-radius: 0.25rem !important;
  7953. }
  7954. .rounded-bottom {
  7955. border-bottom-left-radius: 0.25rem !important;
  7956. border-bottom-right-radius: 0.25rem !important;
  7957. }
  7958. .rounded-start {
  7959. border-bottom-right-radius: 0.25rem !important;
  7960. border-top-right-radius: 0.25rem !important;
  7961. }
  7962. .visible {
  7963. visibility: visible !important;
  7964. }
  7965. .invisible {
  7966. visibility: hidden !important;
  7967. }
  7968. @media (min-width: 576px) {
  7969. .float-sm-start {
  7970. float: right !important;
  7971. }
  7972. .float-sm-end {
  7973. float: left !important;
  7974. }
  7975. .float-sm-none {
  7976. float: none !important;
  7977. }
  7978. .d-sm-inline {
  7979. display: inline !important;
  7980. }
  7981. .d-sm-inline-block {
  7982. display: inline-block !important;
  7983. }
  7984. .d-sm-block {
  7985. display: block !important;
  7986. }
  7987. .d-sm-grid {
  7988. display: grid !important;
  7989. }
  7990. .d-sm-table {
  7991. display: table !important;
  7992. }
  7993. .d-sm-table-row {
  7994. display: table-row !important;
  7995. }
  7996. .d-sm-table-cell {
  7997. display: table-cell !important;
  7998. }
  7999. .d-sm-flex {
  8000. display: -webkit-box !important;
  8001. display: -ms-flexbox !important;
  8002. display: flex !important;
  8003. }
  8004. .d-sm-inline-flex {
  8005. display: -webkit-inline-box !important;
  8006. display: -ms-inline-flexbox !important;
  8007. display: inline-flex !important;
  8008. }
  8009. .d-sm-none {
  8010. display: none !important;
  8011. }
  8012. .flex-sm-fill {
  8013. -webkit-box-flex: 1 !important;
  8014. -ms-flex: 1 1 auto !important;
  8015. flex: 1 1 auto !important;
  8016. }
  8017. .flex-sm-row {
  8018. -webkit-box-orient: horizontal !important;
  8019. -webkit-box-direction: normal !important;
  8020. -ms-flex-direction: row !important;
  8021. flex-direction: row !important;
  8022. }
  8023. .flex-sm-column {
  8024. -webkit-box-orient: vertical !important;
  8025. -webkit-box-direction: normal !important;
  8026. -ms-flex-direction: column !important;
  8027. flex-direction: column !important;
  8028. }
  8029. .flex-sm-row-reverse {
  8030. -webkit-box-orient: horizontal !important;
  8031. -webkit-box-direction: reverse !important;
  8032. -ms-flex-direction: row-reverse !important;
  8033. flex-direction: row-reverse !important;
  8034. }
  8035. .flex-sm-column-reverse {
  8036. -webkit-box-orient: vertical !important;
  8037. -webkit-box-direction: reverse !important;
  8038. -ms-flex-direction: column-reverse !important;
  8039. flex-direction: column-reverse !important;
  8040. }
  8041. .flex-sm-grow-0 {
  8042. -webkit-box-flex: 0 !important;
  8043. -ms-flex-positive: 0 !important;
  8044. flex-grow: 0 !important;
  8045. }
  8046. .flex-sm-grow-1 {
  8047. -webkit-box-flex: 1 !important;
  8048. -ms-flex-positive: 1 !important;
  8049. flex-grow: 1 !important;
  8050. }
  8051. .flex-sm-shrink-0 {
  8052. -ms-flex-negative: 0 !important;
  8053. flex-shrink: 0 !important;
  8054. }
  8055. .flex-sm-shrink-1 {
  8056. -ms-flex-negative: 1 !important;
  8057. flex-shrink: 1 !important;
  8058. }
  8059. .flex-sm-wrap {
  8060. -ms-flex-wrap: wrap !important;
  8061. flex-wrap: wrap !important;
  8062. }
  8063. .flex-sm-nowrap {
  8064. -ms-flex-wrap: nowrap !important;
  8065. flex-wrap: nowrap !important;
  8066. }
  8067. .flex-sm-wrap-reverse {
  8068. -ms-flex-wrap: wrap-reverse !important;
  8069. flex-wrap: wrap-reverse !important;
  8070. }
  8071. .gap-sm-0 {
  8072. gap: 0 !important;
  8073. }
  8074. .gap-sm-1 {
  8075. gap: 0.25rem !important;
  8076. }
  8077. .gap-sm-2 {
  8078. gap: 0.5rem !important;
  8079. }
  8080. .gap-sm-3 {
  8081. gap: 1rem !important;
  8082. }
  8083. .gap-sm-4 {
  8084. gap: 1.5rem !important;
  8085. }
  8086. .gap-sm-5 {
  8087. gap: 3rem !important;
  8088. }
  8089. .justify-content-sm-start {
  8090. -webkit-box-pack: start !important;
  8091. -ms-flex-pack: start !important;
  8092. justify-content: flex-start !important;
  8093. }
  8094. .justify-content-sm-end {
  8095. -webkit-box-pack: end !important;
  8096. -ms-flex-pack: end !important;
  8097. justify-content: flex-end !important;
  8098. }
  8099. .justify-content-sm-center {
  8100. -webkit-box-pack: center !important;
  8101. -ms-flex-pack: center !important;
  8102. justify-content: center !important;
  8103. }
  8104. .justify-content-sm-between {
  8105. -webkit-box-pack: justify !important;
  8106. -ms-flex-pack: justify !important;
  8107. justify-content: space-between !important;
  8108. }
  8109. .justify-content-sm-around {
  8110. -ms-flex-pack: distribute !important;
  8111. justify-content: space-around !important;
  8112. }
  8113. .justify-content-sm-evenly {
  8114. -webkit-box-pack: space-evenly !important;
  8115. -ms-flex-pack: space-evenly !important;
  8116. justify-content: space-evenly !important;
  8117. }
  8118. .align-items-sm-start {
  8119. -webkit-box-align: start !important;
  8120. -ms-flex-align: start !important;
  8121. align-items: flex-start !important;
  8122. }
  8123. .align-items-sm-end {
  8124. -webkit-box-align: end !important;
  8125. -ms-flex-align: end !important;
  8126. align-items: flex-end !important;
  8127. }
  8128. .align-items-sm-center {
  8129. -webkit-box-align: center !important;
  8130. -ms-flex-align: center !important;
  8131. align-items: center !important;
  8132. }
  8133. .align-items-sm-baseline {
  8134. -webkit-box-align: baseline !important;
  8135. -ms-flex-align: baseline !important;
  8136. align-items: baseline !important;
  8137. }
  8138. .align-items-sm-stretch {
  8139. -webkit-box-align: stretch !important;
  8140. -ms-flex-align: stretch !important;
  8141. align-items: stretch !important;
  8142. }
  8143. .align-content-sm-start {
  8144. -ms-flex-line-pack: start !important;
  8145. align-content: flex-start !important;
  8146. }
  8147. .align-content-sm-end {
  8148. -ms-flex-line-pack: end !important;
  8149. align-content: flex-end !important;
  8150. }
  8151. .align-content-sm-center {
  8152. -ms-flex-line-pack: center !important;
  8153. align-content: center !important;
  8154. }
  8155. .align-content-sm-between {
  8156. -ms-flex-line-pack: justify !important;
  8157. align-content: space-between !important;
  8158. }
  8159. .align-content-sm-around {
  8160. -ms-flex-line-pack: distribute !important;
  8161. align-content: space-around !important;
  8162. }
  8163. .align-content-sm-stretch {
  8164. -ms-flex-line-pack: stretch !important;
  8165. align-content: stretch !important;
  8166. }
  8167. .align-self-sm-auto {
  8168. -ms-flex-item-align: auto !important;
  8169. align-self: auto !important;
  8170. }
  8171. .align-self-sm-start {
  8172. -ms-flex-item-align: start !important;
  8173. align-self: flex-start !important;
  8174. }
  8175. .align-self-sm-end {
  8176. -ms-flex-item-align: end !important;
  8177. align-self: flex-end !important;
  8178. }
  8179. .align-self-sm-center {
  8180. -ms-flex-item-align: center !important;
  8181. align-self: center !important;
  8182. }
  8183. .align-self-sm-baseline {
  8184. -ms-flex-item-align: baseline !important;
  8185. align-self: baseline !important;
  8186. }
  8187. .align-self-sm-stretch {
  8188. -ms-flex-item-align: stretch !important;
  8189. align-self: stretch !important;
  8190. }
  8191. .order-sm-first {
  8192. -webkit-box-ordinal-group: 0 !important;
  8193. -ms-flex-order: -1 !important;
  8194. order: -1 !important;
  8195. }
  8196. .order-sm-0 {
  8197. -webkit-box-ordinal-group: 1 !important;
  8198. -ms-flex-order: 0 !important;
  8199. order: 0 !important;
  8200. }
  8201. .order-sm-1 {
  8202. -webkit-box-ordinal-group: 2 !important;
  8203. -ms-flex-order: 1 !important;
  8204. order: 1 !important;
  8205. }
  8206. .order-sm-2 {
  8207. -webkit-box-ordinal-group: 3 !important;
  8208. -ms-flex-order: 2 !important;
  8209. order: 2 !important;
  8210. }
  8211. .order-sm-3 {
  8212. -webkit-box-ordinal-group: 4 !important;
  8213. -ms-flex-order: 3 !important;
  8214. order: 3 !important;
  8215. }
  8216. .order-sm-4 {
  8217. -webkit-box-ordinal-group: 5 !important;
  8218. -ms-flex-order: 4 !important;
  8219. order: 4 !important;
  8220. }
  8221. .order-sm-5 {
  8222. -webkit-box-ordinal-group: 6 !important;
  8223. -ms-flex-order: 5 !important;
  8224. order: 5 !important;
  8225. }
  8226. .order-sm-last {
  8227. -webkit-box-ordinal-group: 7 !important;
  8228. -ms-flex-order: 6 !important;
  8229. order: 6 !important;
  8230. }
  8231. .m-sm-0 {
  8232. margin: 0 !important;
  8233. }
  8234. .m-sm-1 {
  8235. margin: 0.25rem !important;
  8236. }
  8237. .m-sm-2 {
  8238. margin: 0.5rem !important;
  8239. }
  8240. .m-sm-3 {
  8241. margin: 1rem !important;
  8242. }
  8243. .m-sm-4 {
  8244. margin: 1.5rem !important;
  8245. }
  8246. .m-sm-5 {
  8247. margin: 3rem !important;
  8248. }
  8249. .m-sm-auto {
  8250. margin: auto !important;
  8251. }
  8252. .mx-sm-0 {
  8253. margin-left: 0 !important;
  8254. margin-right: 0 !important;
  8255. }
  8256. .mx-sm-1 {
  8257. margin-left: 0.25rem !important;
  8258. margin-right: 0.25rem !important;
  8259. }
  8260. .mx-sm-2 {
  8261. margin-left: 0.5rem !important;
  8262. margin-right: 0.5rem !important;
  8263. }
  8264. .mx-sm-3 {
  8265. margin-left: 1rem !important;
  8266. margin-right: 1rem !important;
  8267. }
  8268. .mx-sm-4 {
  8269. margin-left: 1.5rem !important;
  8270. margin-right: 1.5rem !important;
  8271. }
  8272. .mx-sm-5 {
  8273. margin-left: 3rem !important;
  8274. margin-right: 3rem !important;
  8275. }
  8276. .mx-sm-auto {
  8277. margin-left: auto !important;
  8278. margin-right: auto !important;
  8279. }
  8280. .my-sm-0 {
  8281. margin-top: 0 !important;
  8282. margin-bottom: 0 !important;
  8283. }
  8284. .my-sm-1 {
  8285. margin-top: 0.25rem !important;
  8286. margin-bottom: 0.25rem !important;
  8287. }
  8288. .my-sm-2 {
  8289. margin-top: 0.5rem !important;
  8290. margin-bottom: 0.5rem !important;
  8291. }
  8292. .my-sm-3 {
  8293. margin-top: 1rem !important;
  8294. margin-bottom: 1rem !important;
  8295. }
  8296. .my-sm-4 {
  8297. margin-top: 1.5rem !important;
  8298. margin-bottom: 1.5rem !important;
  8299. }
  8300. .my-sm-5 {
  8301. margin-top: 3rem !important;
  8302. margin-bottom: 3rem !important;
  8303. }
  8304. .my-sm-auto {
  8305. margin-top: auto !important;
  8306. margin-bottom: auto !important;
  8307. }
  8308. .mt-sm-0 {
  8309. margin-top: 0 !important;
  8310. }
  8311. .mt-sm-1 {
  8312. margin-top: 0.25rem !important;
  8313. }
  8314. .mt-sm-2 {
  8315. margin-top: 0.5rem !important;
  8316. }
  8317. .mt-sm-3 {
  8318. margin-top: 1rem !important;
  8319. }
  8320. .mt-sm-4 {
  8321. margin-top: 1.5rem !important;
  8322. }
  8323. .mt-sm-5 {
  8324. margin-top: 3rem !important;
  8325. }
  8326. .mt-sm-auto {
  8327. margin-top: auto !important;
  8328. }
  8329. .me-sm-0 {
  8330. margin-left: 0 !important;
  8331. }
  8332. .me-sm-1 {
  8333. margin-left: 0.25rem !important;
  8334. }
  8335. .me-sm-2 {
  8336. margin-left: 0.5rem !important;
  8337. }
  8338. .me-sm-3 {
  8339. margin-left: 1rem !important;
  8340. }
  8341. .me-sm-4 {
  8342. margin-left: 1.5rem !important;
  8343. }
  8344. .me-sm-5 {
  8345. margin-left: 3rem !important;
  8346. }
  8347. .me-sm-auto {
  8348. margin-left: auto !important;
  8349. }
  8350. .mb-sm-0 {
  8351. margin-bottom: 0 !important;
  8352. }
  8353. .mb-sm-1 {
  8354. margin-bottom: 0.25rem !important;
  8355. }
  8356. .mb-sm-2 {
  8357. margin-bottom: 0.5rem !important;
  8358. }
  8359. .mb-sm-3 {
  8360. margin-bottom: 1rem !important;
  8361. }
  8362. .mb-sm-4 {
  8363. margin-bottom: 1.5rem !important;
  8364. }
  8365. .mb-sm-5 {
  8366. margin-bottom: 3rem !important;
  8367. }
  8368. .mb-sm-auto {
  8369. margin-bottom: auto !important;
  8370. }
  8371. .ms-sm-0 {
  8372. margin-right: 0 !important;
  8373. }
  8374. .ms-sm-1 {
  8375. margin-right: 0.25rem !important;
  8376. }
  8377. .ms-sm-2 {
  8378. margin-right: 0.5rem !important;
  8379. }
  8380. .ms-sm-3 {
  8381. margin-right: 1rem !important;
  8382. }
  8383. .ms-sm-4 {
  8384. margin-right: 1.5rem !important;
  8385. }
  8386. .ms-sm-5 {
  8387. margin-right: 3rem !important;
  8388. }
  8389. .ms-sm-auto {
  8390. margin-right: auto !important;
  8391. }
  8392. .m-sm-n1 {
  8393. margin: -0.25rem !important;
  8394. }
  8395. .m-sm-n2 {
  8396. margin: -0.5rem !important;
  8397. }
  8398. .m-sm-n3 {
  8399. margin: -1rem !important;
  8400. }
  8401. .m-sm-n4 {
  8402. margin: -1.5rem !important;
  8403. }
  8404. .m-sm-n5 {
  8405. margin: -3rem !important;
  8406. }
  8407. .mx-sm-n1 {
  8408. margin-left: -0.25rem !important;
  8409. margin-right: -0.25rem !important;
  8410. }
  8411. .mx-sm-n2 {
  8412. margin-left: -0.5rem !important;
  8413. margin-right: -0.5rem !important;
  8414. }
  8415. .mx-sm-n3 {
  8416. margin-left: -1rem !important;
  8417. margin-right: -1rem !important;
  8418. }
  8419. .mx-sm-n4 {
  8420. margin-left: -1.5rem !important;
  8421. margin-right: -1.5rem !important;
  8422. }
  8423. .mx-sm-n5 {
  8424. margin-left: -3rem !important;
  8425. margin-right: -3rem !important;
  8426. }
  8427. .my-sm-n1 {
  8428. margin-top: -0.25rem !important;
  8429. margin-bottom: -0.25rem !important;
  8430. }
  8431. .my-sm-n2 {
  8432. margin-top: -0.5rem !important;
  8433. margin-bottom: -0.5rem !important;
  8434. }
  8435. .my-sm-n3 {
  8436. margin-top: -1rem !important;
  8437. margin-bottom: -1rem !important;
  8438. }
  8439. .my-sm-n4 {
  8440. margin-top: -1.5rem !important;
  8441. margin-bottom: -1.5rem !important;
  8442. }
  8443. .my-sm-n5 {
  8444. margin-top: -3rem !important;
  8445. margin-bottom: -3rem !important;
  8446. }
  8447. .mt-sm-n1 {
  8448. margin-top: -0.25rem !important;
  8449. }
  8450. .mt-sm-n2 {
  8451. margin-top: -0.5rem !important;
  8452. }
  8453. .mt-sm-n3 {
  8454. margin-top: -1rem !important;
  8455. }
  8456. .mt-sm-n4 {
  8457. margin-top: -1.5rem !important;
  8458. }
  8459. .mt-sm-n5 {
  8460. margin-top: -3rem !important;
  8461. }
  8462. .me-sm-n1 {
  8463. margin-left: -0.25rem !important;
  8464. }
  8465. .me-sm-n2 {
  8466. margin-left: -0.5rem !important;
  8467. }
  8468. .me-sm-n3 {
  8469. margin-left: -1rem !important;
  8470. }
  8471. .me-sm-n4 {
  8472. margin-left: -1.5rem !important;
  8473. }
  8474. .me-sm-n5 {
  8475. margin-left: -3rem !important;
  8476. }
  8477. .mb-sm-n1 {
  8478. margin-bottom: -0.25rem !important;
  8479. }
  8480. .mb-sm-n2 {
  8481. margin-bottom: -0.5rem !important;
  8482. }
  8483. .mb-sm-n3 {
  8484. margin-bottom: -1rem !important;
  8485. }
  8486. .mb-sm-n4 {
  8487. margin-bottom: -1.5rem !important;
  8488. }
  8489. .mb-sm-n5 {
  8490. margin-bottom: -3rem !important;
  8491. }
  8492. .ms-sm-n1 {
  8493. margin-right: -0.25rem !important;
  8494. }
  8495. .ms-sm-n2 {
  8496. margin-right: -0.5rem !important;
  8497. }
  8498. .ms-sm-n3 {
  8499. margin-right: -1rem !important;
  8500. }
  8501. .ms-sm-n4 {
  8502. margin-right: -1.5rem !important;
  8503. }
  8504. .ms-sm-n5 {
  8505. margin-right: -3rem !important;
  8506. }
  8507. .p-sm-0 {
  8508. padding: 0 !important;
  8509. }
  8510. .p-sm-1 {
  8511. padding: 0.25rem !important;
  8512. }
  8513. .p-sm-2 {
  8514. padding: 0.5rem !important;
  8515. }
  8516. .p-sm-3 {
  8517. padding: 1rem !important;
  8518. }
  8519. .p-sm-4 {
  8520. padding: 1.5rem !important;
  8521. }
  8522. .p-sm-5 {
  8523. padding: 3rem !important;
  8524. }
  8525. .px-sm-0 {
  8526. padding-left: 0 !important;
  8527. padding-right: 0 !important;
  8528. }
  8529. .px-sm-1 {
  8530. padding-left: 0.25rem !important;
  8531. padding-right: 0.25rem !important;
  8532. }
  8533. .px-sm-2 {
  8534. padding-left: 0.5rem !important;
  8535. padding-right: 0.5rem !important;
  8536. }
  8537. .px-sm-3 {
  8538. padding-left: 1rem !important;
  8539. padding-right: 1rem !important;
  8540. }
  8541. .px-sm-4 {
  8542. padding-left: 1.5rem !important;
  8543. padding-right: 1.5rem !important;
  8544. }
  8545. .px-sm-5 {
  8546. padding-left: 3rem !important;
  8547. padding-right: 3rem !important;
  8548. }
  8549. .py-sm-0 {
  8550. padding-top: 0 !important;
  8551. padding-bottom: 0 !important;
  8552. }
  8553. .py-sm-1 {
  8554. padding-top: 0.25rem !important;
  8555. padding-bottom: 0.25rem !important;
  8556. }
  8557. .py-sm-2 {
  8558. padding-top: 0.5rem !important;
  8559. padding-bottom: 0.5rem !important;
  8560. }
  8561. .py-sm-3 {
  8562. padding-top: 1rem !important;
  8563. padding-bottom: 1rem !important;
  8564. }
  8565. .py-sm-4 {
  8566. padding-top: 1.5rem !important;
  8567. padding-bottom: 1.5rem !important;
  8568. }
  8569. .py-sm-5 {
  8570. padding-top: 3rem !important;
  8571. padding-bottom: 3rem !important;
  8572. }
  8573. .pt-sm-0 {
  8574. padding-top: 0 !important;
  8575. }
  8576. .pt-sm-1 {
  8577. padding-top: 0.25rem !important;
  8578. }
  8579. .pt-sm-2 {
  8580. padding-top: 0.5rem !important;
  8581. }
  8582. .pt-sm-3 {
  8583. padding-top: 1rem !important;
  8584. }
  8585. .pt-sm-4 {
  8586. padding-top: 1.5rem !important;
  8587. }
  8588. .pt-sm-5 {
  8589. padding-top: 3rem !important;
  8590. }
  8591. .pe-sm-0 {
  8592. padding-left: 0 !important;
  8593. }
  8594. .pe-sm-1 {
  8595. padding-left: 0.25rem !important;
  8596. }
  8597. .pe-sm-2 {
  8598. padding-left: 0.5rem !important;
  8599. }
  8600. .pe-sm-3 {
  8601. padding-left: 1rem !important;
  8602. }
  8603. .pe-sm-4 {
  8604. padding-left: 1.5rem !important;
  8605. }
  8606. .pe-sm-5 {
  8607. padding-left: 3rem !important;
  8608. }
  8609. .pb-sm-0 {
  8610. padding-bottom: 0 !important;
  8611. }
  8612. .pb-sm-1 {
  8613. padding-bottom: 0.25rem !important;
  8614. }
  8615. .pb-sm-2 {
  8616. padding-bottom: 0.5rem !important;
  8617. }
  8618. .pb-sm-3 {
  8619. padding-bottom: 1rem !important;
  8620. }
  8621. .pb-sm-4 {
  8622. padding-bottom: 1.5rem !important;
  8623. }
  8624. .pb-sm-5 {
  8625. padding-bottom: 3rem !important;
  8626. }
  8627. .ps-sm-0 {
  8628. padding-right: 0 !important;
  8629. }
  8630. .ps-sm-1 {
  8631. padding-right: 0.25rem !important;
  8632. }
  8633. .ps-sm-2 {
  8634. padding-right: 0.5rem !important;
  8635. }
  8636. .ps-sm-3 {
  8637. padding-right: 1rem !important;
  8638. }
  8639. .ps-sm-4 {
  8640. padding-right: 1.5rem !important;
  8641. }
  8642. .ps-sm-5 {
  8643. padding-right: 3rem !important;
  8644. }
  8645. .text-sm-start {
  8646. text-align: right !important;
  8647. }
  8648. .text-sm-end {
  8649. text-align: left !important;
  8650. }
  8651. .text-sm-center {
  8652. text-align: center !important;
  8653. }
  8654. }
  8655. @media (min-width: 768px) {
  8656. .float-md-start {
  8657. float: right !important;
  8658. }
  8659. .float-md-end {
  8660. float: left !important;
  8661. }
  8662. .float-md-none {
  8663. float: none !important;
  8664. }
  8665. .d-md-inline {
  8666. display: inline !important;
  8667. }
  8668. .d-md-inline-block {
  8669. display: inline-block !important;
  8670. }
  8671. .d-md-block {
  8672. display: block !important;
  8673. }
  8674. .d-md-grid {
  8675. display: grid !important;
  8676. }
  8677. .d-md-table {
  8678. display: table !important;
  8679. }
  8680. .d-md-table-row {
  8681. display: table-row !important;
  8682. }
  8683. .d-md-table-cell {
  8684. display: table-cell !important;
  8685. }
  8686. .d-md-flex {
  8687. display: -webkit-box !important;
  8688. display: -ms-flexbox !important;
  8689. display: flex !important;
  8690. }
  8691. .d-md-inline-flex {
  8692. display: -webkit-inline-box !important;
  8693. display: -ms-inline-flexbox !important;
  8694. display: inline-flex !important;
  8695. }
  8696. .d-md-none {
  8697. display: none !important;
  8698. }
  8699. .flex-md-fill {
  8700. -webkit-box-flex: 1 !important;
  8701. -ms-flex: 1 1 auto !important;
  8702. flex: 1 1 auto !important;
  8703. }
  8704. .flex-md-row {
  8705. -webkit-box-orient: horizontal !important;
  8706. -webkit-box-direction: normal !important;
  8707. -ms-flex-direction: row !important;
  8708. flex-direction: row !important;
  8709. }
  8710. .flex-md-column {
  8711. -webkit-box-orient: vertical !important;
  8712. -webkit-box-direction: normal !important;
  8713. -ms-flex-direction: column !important;
  8714. flex-direction: column !important;
  8715. }
  8716. .flex-md-row-reverse {
  8717. -webkit-box-orient: horizontal !important;
  8718. -webkit-box-direction: reverse !important;
  8719. -ms-flex-direction: row-reverse !important;
  8720. flex-direction: row-reverse !important;
  8721. }
  8722. .flex-md-column-reverse {
  8723. -webkit-box-orient: vertical !important;
  8724. -webkit-box-direction: reverse !important;
  8725. -ms-flex-direction: column-reverse !important;
  8726. flex-direction: column-reverse !important;
  8727. }
  8728. .flex-md-grow-0 {
  8729. -webkit-box-flex: 0 !important;
  8730. -ms-flex-positive: 0 !important;
  8731. flex-grow: 0 !important;
  8732. }
  8733. .flex-md-grow-1 {
  8734. -webkit-box-flex: 1 !important;
  8735. -ms-flex-positive: 1 !important;
  8736. flex-grow: 1 !important;
  8737. }
  8738. .flex-md-shrink-0 {
  8739. -ms-flex-negative: 0 !important;
  8740. flex-shrink: 0 !important;
  8741. }
  8742. .flex-md-shrink-1 {
  8743. -ms-flex-negative: 1 !important;
  8744. flex-shrink: 1 !important;
  8745. }
  8746. .flex-md-wrap {
  8747. -ms-flex-wrap: wrap !important;
  8748. flex-wrap: wrap !important;
  8749. }
  8750. .flex-md-nowrap {
  8751. -ms-flex-wrap: nowrap !important;
  8752. flex-wrap: nowrap !important;
  8753. }
  8754. .flex-md-wrap-reverse {
  8755. -ms-flex-wrap: wrap-reverse !important;
  8756. flex-wrap: wrap-reverse !important;
  8757. }
  8758. .gap-md-0 {
  8759. gap: 0 !important;
  8760. }
  8761. .gap-md-1 {
  8762. gap: 0.25rem !important;
  8763. }
  8764. .gap-md-2 {
  8765. gap: 0.5rem !important;
  8766. }
  8767. .gap-md-3 {
  8768. gap: 1rem !important;
  8769. }
  8770. .gap-md-4 {
  8771. gap: 1.5rem !important;
  8772. }
  8773. .gap-md-5 {
  8774. gap: 3rem !important;
  8775. }
  8776. .justify-content-md-start {
  8777. -webkit-box-pack: start !important;
  8778. -ms-flex-pack: start !important;
  8779. justify-content: flex-start !important;
  8780. }
  8781. .justify-content-md-end {
  8782. -webkit-box-pack: end !important;
  8783. -ms-flex-pack: end !important;
  8784. justify-content: flex-end !important;
  8785. }
  8786. .justify-content-md-center {
  8787. -webkit-box-pack: center !important;
  8788. -ms-flex-pack: center !important;
  8789. justify-content: center !important;
  8790. }
  8791. .justify-content-md-between {
  8792. -webkit-box-pack: justify !important;
  8793. -ms-flex-pack: justify !important;
  8794. justify-content: space-between !important;
  8795. }
  8796. .justify-content-md-around {
  8797. -ms-flex-pack: distribute !important;
  8798. justify-content: space-around !important;
  8799. }
  8800. .justify-content-md-evenly {
  8801. -webkit-box-pack: space-evenly !important;
  8802. -ms-flex-pack: space-evenly !important;
  8803. justify-content: space-evenly !important;
  8804. }
  8805. .align-items-md-start {
  8806. -webkit-box-align: start !important;
  8807. -ms-flex-align: start !important;
  8808. align-items: flex-start !important;
  8809. }
  8810. .align-items-md-end {
  8811. -webkit-box-align: end !important;
  8812. -ms-flex-align: end !important;
  8813. align-items: flex-end !important;
  8814. }
  8815. .align-items-md-center {
  8816. -webkit-box-align: center !important;
  8817. -ms-flex-align: center !important;
  8818. align-items: center !important;
  8819. }
  8820. .align-items-md-baseline {
  8821. -webkit-box-align: baseline !important;
  8822. -ms-flex-align: baseline !important;
  8823. align-items: baseline !important;
  8824. }
  8825. .align-items-md-stretch {
  8826. -webkit-box-align: stretch !important;
  8827. -ms-flex-align: stretch !important;
  8828. align-items: stretch !important;
  8829. }
  8830. .align-content-md-start {
  8831. -ms-flex-line-pack: start !important;
  8832. align-content: flex-start !important;
  8833. }
  8834. .align-content-md-end {
  8835. -ms-flex-line-pack: end !important;
  8836. align-content: flex-end !important;
  8837. }
  8838. .align-content-md-center {
  8839. -ms-flex-line-pack: center !important;
  8840. align-content: center !important;
  8841. }
  8842. .align-content-md-between {
  8843. -ms-flex-line-pack: justify !important;
  8844. align-content: space-between !important;
  8845. }
  8846. .align-content-md-around {
  8847. -ms-flex-line-pack: distribute !important;
  8848. align-content: space-around !important;
  8849. }
  8850. .align-content-md-stretch {
  8851. -ms-flex-line-pack: stretch !important;
  8852. align-content: stretch !important;
  8853. }
  8854. .align-self-md-auto {
  8855. -ms-flex-item-align: auto !important;
  8856. align-self: auto !important;
  8857. }
  8858. .align-self-md-start {
  8859. -ms-flex-item-align: start !important;
  8860. align-self: flex-start !important;
  8861. }
  8862. .align-self-md-end {
  8863. -ms-flex-item-align: end !important;
  8864. align-self: flex-end !important;
  8865. }
  8866. .align-self-md-center {
  8867. -ms-flex-item-align: center !important;
  8868. align-self: center !important;
  8869. }
  8870. .align-self-md-baseline {
  8871. -ms-flex-item-align: baseline !important;
  8872. align-self: baseline !important;
  8873. }
  8874. .align-self-md-stretch {
  8875. -ms-flex-item-align: stretch !important;
  8876. align-self: stretch !important;
  8877. }
  8878. .order-md-first {
  8879. -webkit-box-ordinal-group: 0 !important;
  8880. -ms-flex-order: -1 !important;
  8881. order: -1 !important;
  8882. }
  8883. .order-md-0 {
  8884. -webkit-box-ordinal-group: 1 !important;
  8885. -ms-flex-order: 0 !important;
  8886. order: 0 !important;
  8887. }
  8888. .order-md-1 {
  8889. -webkit-box-ordinal-group: 2 !important;
  8890. -ms-flex-order: 1 !important;
  8891. order: 1 !important;
  8892. }
  8893. .order-md-2 {
  8894. -webkit-box-ordinal-group: 3 !important;
  8895. -ms-flex-order: 2 !important;
  8896. order: 2 !important;
  8897. }
  8898. .order-md-3 {
  8899. -webkit-box-ordinal-group: 4 !important;
  8900. -ms-flex-order: 3 !important;
  8901. order: 3 !important;
  8902. }
  8903. .order-md-4 {
  8904. -webkit-box-ordinal-group: 5 !important;
  8905. -ms-flex-order: 4 !important;
  8906. order: 4 !important;
  8907. }
  8908. .order-md-5 {
  8909. -webkit-box-ordinal-group: 6 !important;
  8910. -ms-flex-order: 5 !important;
  8911. order: 5 !important;
  8912. }
  8913. .order-md-last {
  8914. -webkit-box-ordinal-group: 7 !important;
  8915. -ms-flex-order: 6 !important;
  8916. order: 6 !important;
  8917. }
  8918. .m-md-0 {
  8919. margin: 0 !important;
  8920. }
  8921. .m-md-1 {
  8922. margin: 0.25rem !important;
  8923. }
  8924. .m-md-2 {
  8925. margin: 0.5rem !important;
  8926. }
  8927. .m-md-3 {
  8928. margin: 1rem !important;
  8929. }
  8930. .m-md-4 {
  8931. margin: 1.5rem !important;
  8932. }
  8933. .m-md-5 {
  8934. margin: 3rem !important;
  8935. }
  8936. .m-md-auto {
  8937. margin: auto !important;
  8938. }
  8939. .mx-md-0 {
  8940. margin-left: 0 !important;
  8941. margin-right: 0 !important;
  8942. }
  8943. .mx-md-1 {
  8944. margin-left: 0.25rem !important;
  8945. margin-right: 0.25rem !important;
  8946. }
  8947. .mx-md-2 {
  8948. margin-left: 0.5rem !important;
  8949. margin-right: 0.5rem !important;
  8950. }
  8951. .mx-md-3 {
  8952. margin-left: 1rem !important;
  8953. margin-right: 1rem !important;
  8954. }
  8955. .mx-md-4 {
  8956. margin-left: 1.5rem !important;
  8957. margin-right: 1.5rem !important;
  8958. }
  8959. .mx-md-5 {
  8960. margin-left: 3rem !important;
  8961. margin-right: 3rem !important;
  8962. }
  8963. .mx-md-auto {
  8964. margin-left: auto !important;
  8965. margin-right: auto !important;
  8966. }
  8967. .my-md-0 {
  8968. margin-top: 0 !important;
  8969. margin-bottom: 0 !important;
  8970. }
  8971. .my-md-1 {
  8972. margin-top: 0.25rem !important;
  8973. margin-bottom: 0.25rem !important;
  8974. }
  8975. .my-md-2 {
  8976. margin-top: 0.5rem !important;
  8977. margin-bottom: 0.5rem !important;
  8978. }
  8979. .my-md-3 {
  8980. margin-top: 1rem !important;
  8981. margin-bottom: 1rem !important;
  8982. }
  8983. .my-md-4 {
  8984. margin-top: 1.5rem !important;
  8985. margin-bottom: 1.5rem !important;
  8986. }
  8987. .my-md-5 {
  8988. margin-top: 3rem !important;
  8989. margin-bottom: 3rem !important;
  8990. }
  8991. .my-md-auto {
  8992. margin-top: auto !important;
  8993. margin-bottom: auto !important;
  8994. }
  8995. .mt-md-0 {
  8996. margin-top: 0 !important;
  8997. }
  8998. .mt-md-1 {
  8999. margin-top: 0.25rem !important;
  9000. }
  9001. .mt-md-2 {
  9002. margin-top: 0.5rem !important;
  9003. }
  9004. .mt-md-3 {
  9005. margin-top: 1rem !important;
  9006. }
  9007. .mt-md-4 {
  9008. margin-top: 1.5rem !important;
  9009. }
  9010. .mt-md-5 {
  9011. margin-top: 3rem !important;
  9012. }
  9013. .mt-md-auto {
  9014. margin-top: auto !important;
  9015. }
  9016. .me-md-0 {
  9017. margin-left: 0 !important;
  9018. }
  9019. .me-md-1 {
  9020. margin-left: 0.25rem !important;
  9021. }
  9022. .me-md-2 {
  9023. margin-left: 0.5rem !important;
  9024. }
  9025. .me-md-3 {
  9026. margin-left: 1rem !important;
  9027. }
  9028. .me-md-4 {
  9029. margin-left: 1.5rem !important;
  9030. }
  9031. .me-md-5 {
  9032. margin-left: 3rem !important;
  9033. }
  9034. .me-md-auto {
  9035. margin-left: auto !important;
  9036. }
  9037. .mb-md-0 {
  9038. margin-bottom: 0 !important;
  9039. }
  9040. .mb-md-1 {
  9041. margin-bottom: 0.25rem !important;
  9042. }
  9043. .mb-md-2 {
  9044. margin-bottom: 0.5rem !important;
  9045. }
  9046. .mb-md-3 {
  9047. margin-bottom: 1rem !important;
  9048. }
  9049. .mb-md-4 {
  9050. margin-bottom: 1.5rem !important;
  9051. }
  9052. .mb-md-5 {
  9053. margin-bottom: 3rem !important;
  9054. }
  9055. .mb-md-auto {
  9056. margin-bottom: auto !important;
  9057. }
  9058. .ms-md-0 {
  9059. margin-right: 0 !important;
  9060. }
  9061. .ms-md-1 {
  9062. margin-right: 0.25rem !important;
  9063. }
  9064. .ms-md-2 {
  9065. margin-right: 0.5rem !important;
  9066. }
  9067. .ms-md-3 {
  9068. margin-right: 1rem !important;
  9069. }
  9070. .ms-md-4 {
  9071. margin-right: 1.5rem !important;
  9072. }
  9073. .ms-md-5 {
  9074. margin-right: 3rem !important;
  9075. }
  9076. .ms-md-auto {
  9077. margin-right: auto !important;
  9078. }
  9079. .m-md-n1 {
  9080. margin: -0.25rem !important;
  9081. }
  9082. .m-md-n2 {
  9083. margin: -0.5rem !important;
  9084. }
  9085. .m-md-n3 {
  9086. margin: -1rem !important;
  9087. }
  9088. .m-md-n4 {
  9089. margin: -1.5rem !important;
  9090. }
  9091. .m-md-n5 {
  9092. margin: -3rem !important;
  9093. }
  9094. .mx-md-n1 {
  9095. margin-left: -0.25rem !important;
  9096. margin-right: -0.25rem !important;
  9097. }
  9098. .mx-md-n2 {
  9099. margin-left: -0.5rem !important;
  9100. margin-right: -0.5rem !important;
  9101. }
  9102. .mx-md-n3 {
  9103. margin-left: -1rem !important;
  9104. margin-right: -1rem !important;
  9105. }
  9106. .mx-md-n4 {
  9107. margin-left: -1.5rem !important;
  9108. margin-right: -1.5rem !important;
  9109. }
  9110. .mx-md-n5 {
  9111. margin-left: -3rem !important;
  9112. margin-right: -3rem !important;
  9113. }
  9114. .my-md-n1 {
  9115. margin-top: -0.25rem !important;
  9116. margin-bottom: -0.25rem !important;
  9117. }
  9118. .my-md-n2 {
  9119. margin-top: -0.5rem !important;
  9120. margin-bottom: -0.5rem !important;
  9121. }
  9122. .my-md-n3 {
  9123. margin-top: -1rem !important;
  9124. margin-bottom: -1rem !important;
  9125. }
  9126. .my-md-n4 {
  9127. margin-top: -1.5rem !important;
  9128. margin-bottom: -1.5rem !important;
  9129. }
  9130. .my-md-n5 {
  9131. margin-top: -3rem !important;
  9132. margin-bottom: -3rem !important;
  9133. }
  9134. .mt-md-n1 {
  9135. margin-top: -0.25rem !important;
  9136. }
  9137. .mt-md-n2 {
  9138. margin-top: -0.5rem !important;
  9139. }
  9140. .mt-md-n3 {
  9141. margin-top: -1rem !important;
  9142. }
  9143. .mt-md-n4 {
  9144. margin-top: -1.5rem !important;
  9145. }
  9146. .mt-md-n5 {
  9147. margin-top: -3rem !important;
  9148. }
  9149. .me-md-n1 {
  9150. margin-left: -0.25rem !important;
  9151. }
  9152. .me-md-n2 {
  9153. margin-left: -0.5rem !important;
  9154. }
  9155. .me-md-n3 {
  9156. margin-left: -1rem !important;
  9157. }
  9158. .me-md-n4 {
  9159. margin-left: -1.5rem !important;
  9160. }
  9161. .me-md-n5 {
  9162. margin-left: -3rem !important;
  9163. }
  9164. .mb-md-n1 {
  9165. margin-bottom: -0.25rem !important;
  9166. }
  9167. .mb-md-n2 {
  9168. margin-bottom: -0.5rem !important;
  9169. }
  9170. .mb-md-n3 {
  9171. margin-bottom: -1rem !important;
  9172. }
  9173. .mb-md-n4 {
  9174. margin-bottom: -1.5rem !important;
  9175. }
  9176. .mb-md-n5 {
  9177. margin-bottom: -3rem !important;
  9178. }
  9179. .ms-md-n1 {
  9180. margin-right: -0.25rem !important;
  9181. }
  9182. .ms-md-n2 {
  9183. margin-right: -0.5rem !important;
  9184. }
  9185. .ms-md-n3 {
  9186. margin-right: -1rem !important;
  9187. }
  9188. .ms-md-n4 {
  9189. margin-right: -1.5rem !important;
  9190. }
  9191. .ms-md-n5 {
  9192. margin-right: -3rem !important;
  9193. }
  9194. .p-md-0 {
  9195. padding: 0 !important;
  9196. }
  9197. .p-md-1 {
  9198. padding: 0.25rem !important;
  9199. }
  9200. .p-md-2 {
  9201. padding: 0.5rem !important;
  9202. }
  9203. .p-md-3 {
  9204. padding: 1rem !important;
  9205. }
  9206. .p-md-4 {
  9207. padding: 1.5rem !important;
  9208. }
  9209. .p-md-5 {
  9210. padding: 3rem !important;
  9211. }
  9212. .px-md-0 {
  9213. padding-left: 0 !important;
  9214. padding-right: 0 !important;
  9215. }
  9216. .px-md-1 {
  9217. padding-left: 0.25rem !important;
  9218. padding-right: 0.25rem !important;
  9219. }
  9220. .px-md-2 {
  9221. padding-left: 0.5rem !important;
  9222. padding-right: 0.5rem !important;
  9223. }
  9224. .px-md-3 {
  9225. padding-left: 1rem !important;
  9226. padding-right: 1rem !important;
  9227. }
  9228. .px-md-4 {
  9229. padding-left: 1.5rem !important;
  9230. padding-right: 1.5rem !important;
  9231. }
  9232. .px-md-5 {
  9233. padding-left: 3rem !important;
  9234. padding-right: 3rem !important;
  9235. }
  9236. .py-md-0 {
  9237. padding-top: 0 !important;
  9238. padding-bottom: 0 !important;
  9239. }
  9240. .py-md-1 {
  9241. padding-top: 0.25rem !important;
  9242. padding-bottom: 0.25rem !important;
  9243. }
  9244. .py-md-2 {
  9245. padding-top: 0.5rem !important;
  9246. padding-bottom: 0.5rem !important;
  9247. }
  9248. .py-md-3 {
  9249. padding-top: 1rem !important;
  9250. padding-bottom: 1rem !important;
  9251. }
  9252. .py-md-4 {
  9253. padding-top: 1.5rem !important;
  9254. padding-bottom: 1.5rem !important;
  9255. }
  9256. .py-md-5 {
  9257. padding-top: 3rem !important;
  9258. padding-bottom: 3rem !important;
  9259. }
  9260. .pt-md-0 {
  9261. padding-top: 0 !important;
  9262. }
  9263. .pt-md-1 {
  9264. padding-top: 0.25rem !important;
  9265. }
  9266. .pt-md-2 {
  9267. padding-top: 0.5rem !important;
  9268. }
  9269. .pt-md-3 {
  9270. padding-top: 1rem !important;
  9271. }
  9272. .pt-md-4 {
  9273. padding-top: 1.5rem !important;
  9274. }
  9275. .pt-md-5 {
  9276. padding-top: 3rem !important;
  9277. }
  9278. .pe-md-0 {
  9279. padding-left: 0 !important;
  9280. }
  9281. .pe-md-1 {
  9282. padding-left: 0.25rem !important;
  9283. }
  9284. .pe-md-2 {
  9285. padding-left: 0.5rem !important;
  9286. }
  9287. .pe-md-3 {
  9288. padding-left: 1rem !important;
  9289. }
  9290. .pe-md-4 {
  9291. padding-left: 1.5rem !important;
  9292. }
  9293. .pe-md-5 {
  9294. padding-left: 3rem !important;
  9295. }
  9296. .pb-md-0 {
  9297. padding-bottom: 0 !important;
  9298. }
  9299. .pb-md-1 {
  9300. padding-bottom: 0.25rem !important;
  9301. }
  9302. .pb-md-2 {
  9303. padding-bottom: 0.5rem !important;
  9304. }
  9305. .pb-md-3 {
  9306. padding-bottom: 1rem !important;
  9307. }
  9308. .pb-md-4 {
  9309. padding-bottom: 1.5rem !important;
  9310. }
  9311. .pb-md-5 {
  9312. padding-bottom: 3rem !important;
  9313. }
  9314. .ps-md-0 {
  9315. padding-right: 0 !important;
  9316. }
  9317. .ps-md-1 {
  9318. padding-right: 0.25rem !important;
  9319. }
  9320. .ps-md-2 {
  9321. padding-right: 0.5rem !important;
  9322. }
  9323. .ps-md-3 {
  9324. padding-right: 1rem !important;
  9325. }
  9326. .ps-md-4 {
  9327. padding-right: 1.5rem !important;
  9328. }
  9329. .ps-md-5 {
  9330. padding-right: 3rem !important;
  9331. }
  9332. .text-md-start {
  9333. text-align: right !important;
  9334. }
  9335. .text-md-end {
  9336. text-align: left !important;
  9337. }
  9338. .text-md-center {
  9339. text-align: center !important;
  9340. }
  9341. }
  9342. @media (min-width: 992px) {
  9343. .float-lg-start {
  9344. float: right !important;
  9345. }
  9346. .float-lg-end {
  9347. float: left !important;
  9348. }
  9349. .float-lg-none {
  9350. float: none !important;
  9351. }
  9352. .d-lg-inline {
  9353. display: inline !important;
  9354. }
  9355. .d-lg-inline-block {
  9356. display: inline-block !important;
  9357. }
  9358. .d-lg-block {
  9359. display: block !important;
  9360. }
  9361. .d-lg-grid {
  9362. display: grid !important;
  9363. }
  9364. .d-lg-table {
  9365. display: table !important;
  9366. }
  9367. .d-lg-table-row {
  9368. display: table-row !important;
  9369. }
  9370. .d-lg-table-cell {
  9371. display: table-cell !important;
  9372. }
  9373. .d-lg-flex {
  9374. display: -webkit-box !important;
  9375. display: -ms-flexbox !important;
  9376. display: flex !important;
  9377. }
  9378. .d-lg-inline-flex {
  9379. display: -webkit-inline-box !important;
  9380. display: -ms-inline-flexbox !important;
  9381. display: inline-flex !important;
  9382. }
  9383. .d-lg-none {
  9384. display: none !important;
  9385. }
  9386. .flex-lg-fill {
  9387. -webkit-box-flex: 1 !important;
  9388. -ms-flex: 1 1 auto !important;
  9389. flex: 1 1 auto !important;
  9390. }
  9391. .flex-lg-row {
  9392. -webkit-box-orient: horizontal !important;
  9393. -webkit-box-direction: normal !important;
  9394. -ms-flex-direction: row !important;
  9395. flex-direction: row !important;
  9396. }
  9397. .flex-lg-column {
  9398. -webkit-box-orient: vertical !important;
  9399. -webkit-box-direction: normal !important;
  9400. -ms-flex-direction: column !important;
  9401. flex-direction: column !important;
  9402. }
  9403. .flex-lg-row-reverse {
  9404. -webkit-box-orient: horizontal !important;
  9405. -webkit-box-direction: reverse !important;
  9406. -ms-flex-direction: row-reverse !important;
  9407. flex-direction: row-reverse !important;
  9408. }
  9409. .flex-lg-column-reverse {
  9410. -webkit-box-orient: vertical !important;
  9411. -webkit-box-direction: reverse !important;
  9412. -ms-flex-direction: column-reverse !important;
  9413. flex-direction: column-reverse !important;
  9414. }
  9415. .flex-lg-grow-0 {
  9416. -webkit-box-flex: 0 !important;
  9417. -ms-flex-positive: 0 !important;
  9418. flex-grow: 0 !important;
  9419. }
  9420. .flex-lg-grow-1 {
  9421. -webkit-box-flex: 1 !important;
  9422. -ms-flex-positive: 1 !important;
  9423. flex-grow: 1 !important;
  9424. }
  9425. .flex-lg-shrink-0 {
  9426. -ms-flex-negative: 0 !important;
  9427. flex-shrink: 0 !important;
  9428. }
  9429. .flex-lg-shrink-1 {
  9430. -ms-flex-negative: 1 !important;
  9431. flex-shrink: 1 !important;
  9432. }
  9433. .flex-lg-wrap {
  9434. -ms-flex-wrap: wrap !important;
  9435. flex-wrap: wrap !important;
  9436. }
  9437. .flex-lg-nowrap {
  9438. -ms-flex-wrap: nowrap !important;
  9439. flex-wrap: nowrap !important;
  9440. }
  9441. .flex-lg-wrap-reverse {
  9442. -ms-flex-wrap: wrap-reverse !important;
  9443. flex-wrap: wrap-reverse !important;
  9444. }
  9445. .gap-lg-0 {
  9446. gap: 0 !important;
  9447. }
  9448. .gap-lg-1 {
  9449. gap: 0.25rem !important;
  9450. }
  9451. .gap-lg-2 {
  9452. gap: 0.5rem !important;
  9453. }
  9454. .gap-lg-3 {
  9455. gap: 1rem !important;
  9456. }
  9457. .gap-lg-4 {
  9458. gap: 1.5rem !important;
  9459. }
  9460. .gap-lg-5 {
  9461. gap: 3rem !important;
  9462. }
  9463. .justify-content-lg-start {
  9464. -webkit-box-pack: start !important;
  9465. -ms-flex-pack: start !important;
  9466. justify-content: flex-start !important;
  9467. }
  9468. .justify-content-lg-end {
  9469. -webkit-box-pack: end !important;
  9470. -ms-flex-pack: end !important;
  9471. justify-content: flex-end !important;
  9472. }
  9473. .justify-content-lg-center {
  9474. -webkit-box-pack: center !important;
  9475. -ms-flex-pack: center !important;
  9476. justify-content: center !important;
  9477. }
  9478. .justify-content-lg-between {
  9479. -webkit-box-pack: justify !important;
  9480. -ms-flex-pack: justify !important;
  9481. justify-content: space-between !important;
  9482. }
  9483. .justify-content-lg-around {
  9484. -ms-flex-pack: distribute !important;
  9485. justify-content: space-around !important;
  9486. }
  9487. .justify-content-lg-evenly {
  9488. -webkit-box-pack: space-evenly !important;
  9489. -ms-flex-pack: space-evenly !important;
  9490. justify-content: space-evenly !important;
  9491. }
  9492. .align-items-lg-start {
  9493. -webkit-box-align: start !important;
  9494. -ms-flex-align: start !important;
  9495. align-items: flex-start !important;
  9496. }
  9497. .align-items-lg-end {
  9498. -webkit-box-align: end !important;
  9499. -ms-flex-align: end !important;
  9500. align-items: flex-end !important;
  9501. }
  9502. .align-items-lg-center {
  9503. -webkit-box-align: center !important;
  9504. -ms-flex-align: center !important;
  9505. align-items: center !important;
  9506. }
  9507. .align-items-lg-baseline {
  9508. -webkit-box-align: baseline !important;
  9509. -ms-flex-align: baseline !important;
  9510. align-items: baseline !important;
  9511. }
  9512. .align-items-lg-stretch {
  9513. -webkit-box-align: stretch !important;
  9514. -ms-flex-align: stretch !important;
  9515. align-items: stretch !important;
  9516. }
  9517. .align-content-lg-start {
  9518. -ms-flex-line-pack: start !important;
  9519. align-content: flex-start !important;
  9520. }
  9521. .align-content-lg-end {
  9522. -ms-flex-line-pack: end !important;
  9523. align-content: flex-end !important;
  9524. }
  9525. .align-content-lg-center {
  9526. -ms-flex-line-pack: center !important;
  9527. align-content: center !important;
  9528. }
  9529. .align-content-lg-between {
  9530. -ms-flex-line-pack: justify !important;
  9531. align-content: space-between !important;
  9532. }
  9533. .align-content-lg-around {
  9534. -ms-flex-line-pack: distribute !important;
  9535. align-content: space-around !important;
  9536. }
  9537. .align-content-lg-stretch {
  9538. -ms-flex-line-pack: stretch !important;
  9539. align-content: stretch !important;
  9540. }
  9541. .align-self-lg-auto {
  9542. -ms-flex-item-align: auto !important;
  9543. align-self: auto !important;
  9544. }
  9545. .align-self-lg-start {
  9546. -ms-flex-item-align: start !important;
  9547. align-self: flex-start !important;
  9548. }
  9549. .align-self-lg-end {
  9550. -ms-flex-item-align: end !important;
  9551. align-self: flex-end !important;
  9552. }
  9553. .align-self-lg-center {
  9554. -ms-flex-item-align: center !important;
  9555. align-self: center !important;
  9556. }
  9557. .align-self-lg-baseline {
  9558. -ms-flex-item-align: baseline !important;
  9559. align-self: baseline !important;
  9560. }
  9561. .align-self-lg-stretch {
  9562. -ms-flex-item-align: stretch !important;
  9563. align-self: stretch !important;
  9564. }
  9565. .order-lg-first {
  9566. -webkit-box-ordinal-group: 0 !important;
  9567. -ms-flex-order: -1 !important;
  9568. order: -1 !important;
  9569. }
  9570. .order-lg-0 {
  9571. -webkit-box-ordinal-group: 1 !important;
  9572. -ms-flex-order: 0 !important;
  9573. order: 0 !important;
  9574. }
  9575. .order-lg-1 {
  9576. -webkit-box-ordinal-group: 2 !important;
  9577. -ms-flex-order: 1 !important;
  9578. order: 1 !important;
  9579. }
  9580. .order-lg-2 {
  9581. -webkit-box-ordinal-group: 3 !important;
  9582. -ms-flex-order: 2 !important;
  9583. order: 2 !important;
  9584. }
  9585. .order-lg-3 {
  9586. -webkit-box-ordinal-group: 4 !important;
  9587. -ms-flex-order: 3 !important;
  9588. order: 3 !important;
  9589. }
  9590. .order-lg-4 {
  9591. -webkit-box-ordinal-group: 5 !important;
  9592. -ms-flex-order: 4 !important;
  9593. order: 4 !important;
  9594. }
  9595. .order-lg-5 {
  9596. -webkit-box-ordinal-group: 6 !important;
  9597. -ms-flex-order: 5 !important;
  9598. order: 5 !important;
  9599. }
  9600. .order-lg-last {
  9601. -webkit-box-ordinal-group: 7 !important;
  9602. -ms-flex-order: 6 !important;
  9603. order: 6 !important;
  9604. }
  9605. .m-lg-0 {
  9606. margin: 0 !important;
  9607. }
  9608. .m-lg-1 {
  9609. margin: 0.25rem !important;
  9610. }
  9611. .m-lg-2 {
  9612. margin: 0.5rem !important;
  9613. }
  9614. .m-lg-3 {
  9615. margin: 1rem !important;
  9616. }
  9617. .m-lg-4 {
  9618. margin: 1.5rem !important;
  9619. }
  9620. .m-lg-5 {
  9621. margin: 3rem !important;
  9622. }
  9623. .m-lg-auto {
  9624. margin: auto !important;
  9625. }
  9626. .mx-lg-0 {
  9627. margin-left: 0 !important;
  9628. margin-right: 0 !important;
  9629. }
  9630. .mx-lg-1 {
  9631. margin-left: 0.25rem !important;
  9632. margin-right: 0.25rem !important;
  9633. }
  9634. .mx-lg-2 {
  9635. margin-left: 0.5rem !important;
  9636. margin-right: 0.5rem !important;
  9637. }
  9638. .mx-lg-3 {
  9639. margin-left: 1rem !important;
  9640. margin-right: 1rem !important;
  9641. }
  9642. .mx-lg-4 {
  9643. margin-left: 1.5rem !important;
  9644. margin-right: 1.5rem !important;
  9645. }
  9646. .mx-lg-5 {
  9647. margin-left: 3rem !important;
  9648. margin-right: 3rem !important;
  9649. }
  9650. .mx-lg-auto {
  9651. margin-left: auto !important;
  9652. margin-right: auto !important;
  9653. }
  9654. .my-lg-0 {
  9655. margin-top: 0 !important;
  9656. margin-bottom: 0 !important;
  9657. }
  9658. .my-lg-1 {
  9659. margin-top: 0.25rem !important;
  9660. margin-bottom: 0.25rem !important;
  9661. }
  9662. .my-lg-2 {
  9663. margin-top: 0.5rem !important;
  9664. margin-bottom: 0.5rem !important;
  9665. }
  9666. .my-lg-3 {
  9667. margin-top: 1rem !important;
  9668. margin-bottom: 1rem !important;
  9669. }
  9670. .my-lg-4 {
  9671. margin-top: 1.5rem !important;
  9672. margin-bottom: 1.5rem !important;
  9673. }
  9674. .my-lg-5 {
  9675. margin-top: 3rem !important;
  9676. margin-bottom: 3rem !important;
  9677. }
  9678. .my-lg-auto {
  9679. margin-top: auto !important;
  9680. margin-bottom: auto !important;
  9681. }
  9682. .mt-lg-0 {
  9683. margin-top: 0 !important;
  9684. }
  9685. .mt-lg-1 {
  9686. margin-top: 0.25rem !important;
  9687. }
  9688. .mt-lg-2 {
  9689. margin-top: 0.5rem !important;
  9690. }
  9691. .mt-lg-3 {
  9692. margin-top: 1rem !important;
  9693. }
  9694. .mt-lg-4 {
  9695. margin-top: 1.5rem !important;
  9696. }
  9697. .mt-lg-5 {
  9698. margin-top: 3rem !important;
  9699. }
  9700. .mt-lg-auto {
  9701. margin-top: auto !important;
  9702. }
  9703. .me-lg-0 {
  9704. margin-left: 0 !important;
  9705. }
  9706. .me-lg-1 {
  9707. margin-left: 0.25rem !important;
  9708. }
  9709. .me-lg-2 {
  9710. margin-left: 0.5rem !important;
  9711. }
  9712. .me-lg-3 {
  9713. margin-left: 1rem !important;
  9714. }
  9715. .me-lg-4 {
  9716. margin-left: 1.5rem !important;
  9717. }
  9718. .me-lg-5 {
  9719. margin-left: 3rem !important;
  9720. }
  9721. .me-lg-auto {
  9722. margin-left: auto !important;
  9723. }
  9724. .mb-lg-0 {
  9725. margin-bottom: 0 !important;
  9726. }
  9727. .mb-lg-1 {
  9728. margin-bottom: 0.25rem !important;
  9729. }
  9730. .mb-lg-2 {
  9731. margin-bottom: 0.5rem !important;
  9732. }
  9733. .mb-lg-3 {
  9734. margin-bottom: 1rem !important;
  9735. }
  9736. .mb-lg-4 {
  9737. margin-bottom: 1.5rem !important;
  9738. }
  9739. .mb-lg-5 {
  9740. margin-bottom: 3rem !important;
  9741. }
  9742. .mb-lg-auto {
  9743. margin-bottom: auto !important;
  9744. }
  9745. .ms-lg-0 {
  9746. margin-right: 0 !important;
  9747. }
  9748. .ms-lg-1 {
  9749. margin-right: 0.25rem !important;
  9750. }
  9751. .ms-lg-2 {
  9752. margin-right: 0.5rem !important;
  9753. }
  9754. .ms-lg-3 {
  9755. margin-right: 1rem !important;
  9756. }
  9757. .ms-lg-4 {
  9758. margin-right: 1.5rem !important;
  9759. }
  9760. .ms-lg-5 {
  9761. margin-right: 3rem !important;
  9762. }
  9763. .ms-lg-auto {
  9764. margin-right: auto !important;
  9765. }
  9766. .m-lg-n1 {
  9767. margin: -0.25rem !important;
  9768. }
  9769. .m-lg-n2 {
  9770. margin: -0.5rem !important;
  9771. }
  9772. .m-lg-n3 {
  9773. margin: -1rem !important;
  9774. }
  9775. .m-lg-n4 {
  9776. margin: -1.5rem !important;
  9777. }
  9778. .m-lg-n5 {
  9779. margin: -3rem !important;
  9780. }
  9781. .mx-lg-n1 {
  9782. margin-left: -0.25rem !important;
  9783. margin-right: -0.25rem !important;
  9784. }
  9785. .mx-lg-n2 {
  9786. margin-left: -0.5rem !important;
  9787. margin-right: -0.5rem !important;
  9788. }
  9789. .mx-lg-n3 {
  9790. margin-left: -1rem !important;
  9791. margin-right: -1rem !important;
  9792. }
  9793. .mx-lg-n4 {
  9794. margin-left: -1.5rem !important;
  9795. margin-right: -1.5rem !important;
  9796. }
  9797. .mx-lg-n5 {
  9798. margin-left: -3rem !important;
  9799. margin-right: -3rem !important;
  9800. }
  9801. .my-lg-n1 {
  9802. margin-top: -0.25rem !important;
  9803. margin-bottom: -0.25rem !important;
  9804. }
  9805. .my-lg-n2 {
  9806. margin-top: -0.5rem !important;
  9807. margin-bottom: -0.5rem !important;
  9808. }
  9809. .my-lg-n3 {
  9810. margin-top: -1rem !important;
  9811. margin-bottom: -1rem !important;
  9812. }
  9813. .my-lg-n4 {
  9814. margin-top: -1.5rem !important;
  9815. margin-bottom: -1.5rem !important;
  9816. }
  9817. .my-lg-n5 {
  9818. margin-top: -3rem !important;
  9819. margin-bottom: -3rem !important;
  9820. }
  9821. .mt-lg-n1 {
  9822. margin-top: -0.25rem !important;
  9823. }
  9824. .mt-lg-n2 {
  9825. margin-top: -0.5rem !important;
  9826. }
  9827. .mt-lg-n3 {
  9828. margin-top: -1rem !important;
  9829. }
  9830. .mt-lg-n4 {
  9831. margin-top: -1.5rem !important;
  9832. }
  9833. .mt-lg-n5 {
  9834. margin-top: -3rem !important;
  9835. }
  9836. .me-lg-n1 {
  9837. margin-left: -0.25rem !important;
  9838. }
  9839. .me-lg-n2 {
  9840. margin-left: -0.5rem !important;
  9841. }
  9842. .me-lg-n3 {
  9843. margin-left: -1rem !important;
  9844. }
  9845. .me-lg-n4 {
  9846. margin-left: -1.5rem !important;
  9847. }
  9848. .me-lg-n5 {
  9849. margin-left: -3rem !important;
  9850. }
  9851. .mb-lg-n1 {
  9852. margin-bottom: -0.25rem !important;
  9853. }
  9854. .mb-lg-n2 {
  9855. margin-bottom: -0.5rem !important;
  9856. }
  9857. .mb-lg-n3 {
  9858. margin-bottom: -1rem !important;
  9859. }
  9860. .mb-lg-n4 {
  9861. margin-bottom: -1.5rem !important;
  9862. }
  9863. .mb-lg-n5 {
  9864. margin-bottom: -3rem !important;
  9865. }
  9866. .ms-lg-n1 {
  9867. margin-right: -0.25rem !important;
  9868. }
  9869. .ms-lg-n2 {
  9870. margin-right: -0.5rem !important;
  9871. }
  9872. .ms-lg-n3 {
  9873. margin-right: -1rem !important;
  9874. }
  9875. .ms-lg-n4 {
  9876. margin-right: -1.5rem !important;
  9877. }
  9878. .ms-lg-n5 {
  9879. margin-right: -3rem !important;
  9880. }
  9881. .p-lg-0 {
  9882. padding: 0 !important;
  9883. }
  9884. .p-lg-1 {
  9885. padding: 0.25rem !important;
  9886. }
  9887. .p-lg-2 {
  9888. padding: 0.5rem !important;
  9889. }
  9890. .p-lg-3 {
  9891. padding: 1rem !important;
  9892. }
  9893. .p-lg-4 {
  9894. padding: 1.5rem !important;
  9895. }
  9896. .p-lg-5 {
  9897. padding: 3rem !important;
  9898. }
  9899. .px-lg-0 {
  9900. padding-left: 0 !important;
  9901. padding-right: 0 !important;
  9902. }
  9903. .px-lg-1 {
  9904. padding-left: 0.25rem !important;
  9905. padding-right: 0.25rem !important;
  9906. }
  9907. .px-lg-2 {
  9908. padding-left: 0.5rem !important;
  9909. padding-right: 0.5rem !important;
  9910. }
  9911. .px-lg-3 {
  9912. padding-left: 1rem !important;
  9913. padding-right: 1rem !important;
  9914. }
  9915. .px-lg-4 {
  9916. padding-left: 1.5rem !important;
  9917. padding-right: 1.5rem !important;
  9918. }
  9919. .px-lg-5 {
  9920. padding-left: 3rem !important;
  9921. padding-right: 3rem !important;
  9922. }
  9923. .py-lg-0 {
  9924. padding-top: 0 !important;
  9925. padding-bottom: 0 !important;
  9926. }
  9927. .py-lg-1 {
  9928. padding-top: 0.25rem !important;
  9929. padding-bottom: 0.25rem !important;
  9930. }
  9931. .py-lg-2 {
  9932. padding-top: 0.5rem !important;
  9933. padding-bottom: 0.5rem !important;
  9934. }
  9935. .py-lg-3 {
  9936. padding-top: 1rem !important;
  9937. padding-bottom: 1rem !important;
  9938. }
  9939. .py-lg-4 {
  9940. padding-top: 1.5rem !important;
  9941. padding-bottom: 1.5rem !important;
  9942. }
  9943. .py-lg-5 {
  9944. padding-top: 3rem !important;
  9945. padding-bottom: 3rem !important;
  9946. }
  9947. .pt-lg-0 {
  9948. padding-top: 0 !important;
  9949. }
  9950. .pt-lg-1 {
  9951. padding-top: 0.25rem !important;
  9952. }
  9953. .pt-lg-2 {
  9954. padding-top: 0.5rem !important;
  9955. }
  9956. .pt-lg-3 {
  9957. padding-top: 1rem !important;
  9958. }
  9959. .pt-lg-4 {
  9960. padding-top: 1.5rem !important;
  9961. }
  9962. .pt-lg-5 {
  9963. padding-top: 3rem !important;
  9964. }
  9965. .pe-lg-0 {
  9966. padding-left: 0 !important;
  9967. }
  9968. .pe-lg-1 {
  9969. padding-left: 0.25rem !important;
  9970. }
  9971. .pe-lg-2 {
  9972. padding-left: 0.5rem !important;
  9973. }
  9974. .pe-lg-3 {
  9975. padding-left: 1rem !important;
  9976. }
  9977. .pe-lg-4 {
  9978. padding-left: 1.5rem !important;
  9979. }
  9980. .pe-lg-5 {
  9981. padding-left: 3rem !important;
  9982. }
  9983. .pb-lg-0 {
  9984. padding-bottom: 0 !important;
  9985. }
  9986. .pb-lg-1 {
  9987. padding-bottom: 0.25rem !important;
  9988. }
  9989. .pb-lg-2 {
  9990. padding-bottom: 0.5rem !important;
  9991. }
  9992. .pb-lg-3 {
  9993. padding-bottom: 1rem !important;
  9994. }
  9995. .pb-lg-4 {
  9996. padding-bottom: 1.5rem !important;
  9997. }
  9998. .pb-lg-5 {
  9999. padding-bottom: 3rem !important;
  10000. }
  10001. .ps-lg-0 {
  10002. padding-right: 0 !important;
  10003. }
  10004. .ps-lg-1 {
  10005. padding-right: 0.25rem !important;
  10006. }
  10007. .ps-lg-2 {
  10008. padding-right: 0.5rem !important;
  10009. }
  10010. .ps-lg-3 {
  10011. padding-right: 1rem !important;
  10012. }
  10013. .ps-lg-4 {
  10014. padding-right: 1.5rem !important;
  10015. }
  10016. .ps-lg-5 {
  10017. padding-right: 3rem !important;
  10018. }
  10019. .text-lg-start {
  10020. text-align: right !important;
  10021. }
  10022. .text-lg-end {
  10023. text-align: left !important;
  10024. }
  10025. .text-lg-center {
  10026. text-align: center !important;
  10027. }
  10028. }
  10029. @media (min-width: 1200px) {
  10030. .float-xl-start {
  10031. float: right !important;
  10032. }
  10033. .float-xl-end {
  10034. float: left !important;
  10035. }
  10036. .float-xl-none {
  10037. float: none !important;
  10038. }
  10039. .d-xl-inline {
  10040. display: inline !important;
  10041. }
  10042. .d-xl-inline-block {
  10043. display: inline-block !important;
  10044. }
  10045. .d-xl-block {
  10046. display: block !important;
  10047. }
  10048. .d-xl-grid {
  10049. display: grid !important;
  10050. }
  10051. .d-xl-table {
  10052. display: table !important;
  10053. }
  10054. .d-xl-table-row {
  10055. display: table-row !important;
  10056. }
  10057. .d-xl-table-cell {
  10058. display: table-cell !important;
  10059. }
  10060. .d-xl-flex {
  10061. display: -webkit-box !important;
  10062. display: -ms-flexbox !important;
  10063. display: flex !important;
  10064. }
  10065. .d-xl-inline-flex {
  10066. display: -webkit-inline-box !important;
  10067. display: -ms-inline-flexbox !important;
  10068. display: inline-flex !important;
  10069. }
  10070. .d-xl-none {
  10071. display: none !important;
  10072. }
  10073. .flex-xl-fill {
  10074. -webkit-box-flex: 1 !important;
  10075. -ms-flex: 1 1 auto !important;
  10076. flex: 1 1 auto !important;
  10077. }
  10078. .flex-xl-row {
  10079. -webkit-box-orient: horizontal !important;
  10080. -webkit-box-direction: normal !important;
  10081. -ms-flex-direction: row !important;
  10082. flex-direction: row !important;
  10083. }
  10084. .flex-xl-column {
  10085. -webkit-box-orient: vertical !important;
  10086. -webkit-box-direction: normal !important;
  10087. -ms-flex-direction: column !important;
  10088. flex-direction: column !important;
  10089. }
  10090. .flex-xl-row-reverse {
  10091. -webkit-box-orient: horizontal !important;
  10092. -webkit-box-direction: reverse !important;
  10093. -ms-flex-direction: row-reverse !important;
  10094. flex-direction: row-reverse !important;
  10095. }
  10096. .flex-xl-column-reverse {
  10097. -webkit-box-orient: vertical !important;
  10098. -webkit-box-direction: reverse !important;
  10099. -ms-flex-direction: column-reverse !important;
  10100. flex-direction: column-reverse !important;
  10101. }
  10102. .flex-xl-grow-0 {
  10103. -webkit-box-flex: 0 !important;
  10104. -ms-flex-positive: 0 !important;
  10105. flex-grow: 0 !important;
  10106. }
  10107. .flex-xl-grow-1 {
  10108. -webkit-box-flex: 1 !important;
  10109. -ms-flex-positive: 1 !important;
  10110. flex-grow: 1 !important;
  10111. }
  10112. .flex-xl-shrink-0 {
  10113. -ms-flex-negative: 0 !important;
  10114. flex-shrink: 0 !important;
  10115. }
  10116. .flex-xl-shrink-1 {
  10117. -ms-flex-negative: 1 !important;
  10118. flex-shrink: 1 !important;
  10119. }
  10120. .flex-xl-wrap {
  10121. -ms-flex-wrap: wrap !important;
  10122. flex-wrap: wrap !important;
  10123. }
  10124. .flex-xl-nowrap {
  10125. -ms-flex-wrap: nowrap !important;
  10126. flex-wrap: nowrap !important;
  10127. }
  10128. .flex-xl-wrap-reverse {
  10129. -ms-flex-wrap: wrap-reverse !important;
  10130. flex-wrap: wrap-reverse !important;
  10131. }
  10132. .gap-xl-0 {
  10133. gap: 0 !important;
  10134. }
  10135. .gap-xl-1 {
  10136. gap: 0.25rem !important;
  10137. }
  10138. .gap-xl-2 {
  10139. gap: 0.5rem !important;
  10140. }
  10141. .gap-xl-3 {
  10142. gap: 1rem !important;
  10143. }
  10144. .gap-xl-4 {
  10145. gap: 1.5rem !important;
  10146. }
  10147. .gap-xl-5 {
  10148. gap: 3rem !important;
  10149. }
  10150. .justify-content-xl-start {
  10151. -webkit-box-pack: start !important;
  10152. -ms-flex-pack: start !important;
  10153. justify-content: flex-start !important;
  10154. }
  10155. .justify-content-xl-end {
  10156. -webkit-box-pack: end !important;
  10157. -ms-flex-pack: end !important;
  10158. justify-content: flex-end !important;
  10159. }
  10160. .justify-content-xl-center {
  10161. -webkit-box-pack: center !important;
  10162. -ms-flex-pack: center !important;
  10163. justify-content: center !important;
  10164. }
  10165. .justify-content-xl-between {
  10166. -webkit-box-pack: justify !important;
  10167. -ms-flex-pack: justify !important;
  10168. justify-content: space-between !important;
  10169. }
  10170. .justify-content-xl-around {
  10171. -ms-flex-pack: distribute !important;
  10172. justify-content: space-around !important;
  10173. }
  10174. .justify-content-xl-evenly {
  10175. -webkit-box-pack: space-evenly !important;
  10176. -ms-flex-pack: space-evenly !important;
  10177. justify-content: space-evenly !important;
  10178. }
  10179. .align-items-xl-start {
  10180. -webkit-box-align: start !important;
  10181. -ms-flex-align: start !important;
  10182. align-items: flex-start !important;
  10183. }
  10184. .align-items-xl-end {
  10185. -webkit-box-align: end !important;
  10186. -ms-flex-align: end !important;
  10187. align-items: flex-end !important;
  10188. }
  10189. .align-items-xl-center {
  10190. -webkit-box-align: center !important;
  10191. -ms-flex-align: center !important;
  10192. align-items: center !important;
  10193. }
  10194. .align-items-xl-baseline {
  10195. -webkit-box-align: baseline !important;
  10196. -ms-flex-align: baseline !important;
  10197. align-items: baseline !important;
  10198. }
  10199. .align-items-xl-stretch {
  10200. -webkit-box-align: stretch !important;
  10201. -ms-flex-align: stretch !important;
  10202. align-items: stretch !important;
  10203. }
  10204. .align-content-xl-start {
  10205. -ms-flex-line-pack: start !important;
  10206. align-content: flex-start !important;
  10207. }
  10208. .align-content-xl-end {
  10209. -ms-flex-line-pack: end !important;
  10210. align-content: flex-end !important;
  10211. }
  10212. .align-content-xl-center {
  10213. -ms-flex-line-pack: center !important;
  10214. align-content: center !important;
  10215. }
  10216. .align-content-xl-between {
  10217. -ms-flex-line-pack: justify !important;
  10218. align-content: space-between !important;
  10219. }
  10220. .align-content-xl-around {
  10221. -ms-flex-line-pack: distribute !important;
  10222. align-content: space-around !important;
  10223. }
  10224. .align-content-xl-stretch {
  10225. -ms-flex-line-pack: stretch !important;
  10226. align-content: stretch !important;
  10227. }
  10228. .align-self-xl-auto {
  10229. -ms-flex-item-align: auto !important;
  10230. align-self: auto !important;
  10231. }
  10232. .align-self-xl-start {
  10233. -ms-flex-item-align: start !important;
  10234. align-self: flex-start !important;
  10235. }
  10236. .align-self-xl-end {
  10237. -ms-flex-item-align: end !important;
  10238. align-self: flex-end !important;
  10239. }
  10240. .align-self-xl-center {
  10241. -ms-flex-item-align: center !important;
  10242. align-self: center !important;
  10243. }
  10244. .align-self-xl-baseline {
  10245. -ms-flex-item-align: baseline !important;
  10246. align-self: baseline !important;
  10247. }
  10248. .align-self-xl-stretch {
  10249. -ms-flex-item-align: stretch !important;
  10250. align-self: stretch !important;
  10251. }
  10252. .order-xl-first {
  10253. -webkit-box-ordinal-group: 0 !important;
  10254. -ms-flex-order: -1 !important;
  10255. order: -1 !important;
  10256. }
  10257. .order-xl-0 {
  10258. -webkit-box-ordinal-group: 1 !important;
  10259. -ms-flex-order: 0 !important;
  10260. order: 0 !important;
  10261. }
  10262. .order-xl-1 {
  10263. -webkit-box-ordinal-group: 2 !important;
  10264. -ms-flex-order: 1 !important;
  10265. order: 1 !important;
  10266. }
  10267. .order-xl-2 {
  10268. -webkit-box-ordinal-group: 3 !important;
  10269. -ms-flex-order: 2 !important;
  10270. order: 2 !important;
  10271. }
  10272. .order-xl-3 {
  10273. -webkit-box-ordinal-group: 4 !important;
  10274. -ms-flex-order: 3 !important;
  10275. order: 3 !important;
  10276. }
  10277. .order-xl-4 {
  10278. -webkit-box-ordinal-group: 5 !important;
  10279. -ms-flex-order: 4 !important;
  10280. order: 4 !important;
  10281. }
  10282. .order-xl-5 {
  10283. -webkit-box-ordinal-group: 6 !important;
  10284. -ms-flex-order: 5 !important;
  10285. order: 5 !important;
  10286. }
  10287. .order-xl-last {
  10288. -webkit-box-ordinal-group: 7 !important;
  10289. -ms-flex-order: 6 !important;
  10290. order: 6 !important;
  10291. }
  10292. .m-xl-0 {
  10293. margin: 0 !important;
  10294. }
  10295. .m-xl-1 {
  10296. margin: 0.25rem !important;
  10297. }
  10298. .m-xl-2 {
  10299. margin: 0.5rem !important;
  10300. }
  10301. .m-xl-3 {
  10302. margin: 1rem !important;
  10303. }
  10304. .m-xl-4 {
  10305. margin: 1.5rem !important;
  10306. }
  10307. .m-xl-5 {
  10308. margin: 3rem !important;
  10309. }
  10310. .m-xl-auto {
  10311. margin: auto !important;
  10312. }
  10313. .mx-xl-0 {
  10314. margin-left: 0 !important;
  10315. margin-right: 0 !important;
  10316. }
  10317. .mx-xl-1 {
  10318. margin-left: 0.25rem !important;
  10319. margin-right: 0.25rem !important;
  10320. }
  10321. .mx-xl-2 {
  10322. margin-left: 0.5rem !important;
  10323. margin-right: 0.5rem !important;
  10324. }
  10325. .mx-xl-3 {
  10326. margin-left: 1rem !important;
  10327. margin-right: 1rem !important;
  10328. }
  10329. .mx-xl-4 {
  10330. margin-left: 1.5rem !important;
  10331. margin-right: 1.5rem !important;
  10332. }
  10333. .mx-xl-5 {
  10334. margin-left: 3rem !important;
  10335. margin-right: 3rem !important;
  10336. }
  10337. .mx-xl-auto {
  10338. margin-left: auto !important;
  10339. margin-right: auto !important;
  10340. }
  10341. .my-xl-0 {
  10342. margin-top: 0 !important;
  10343. margin-bottom: 0 !important;
  10344. }
  10345. .my-xl-1 {
  10346. margin-top: 0.25rem !important;
  10347. margin-bottom: 0.25rem !important;
  10348. }
  10349. .my-xl-2 {
  10350. margin-top: 0.5rem !important;
  10351. margin-bottom: 0.5rem !important;
  10352. }
  10353. .my-xl-3 {
  10354. margin-top: 1rem !important;
  10355. margin-bottom: 1rem !important;
  10356. }
  10357. .my-xl-4 {
  10358. margin-top: 1.5rem !important;
  10359. margin-bottom: 1.5rem !important;
  10360. }
  10361. .my-xl-5 {
  10362. margin-top: 3rem !important;
  10363. margin-bottom: 3rem !important;
  10364. }
  10365. .my-xl-auto {
  10366. margin-top: auto !important;
  10367. margin-bottom: auto !important;
  10368. }
  10369. .mt-xl-0 {
  10370. margin-top: 0 !important;
  10371. }
  10372. .mt-xl-1 {
  10373. margin-top: 0.25rem !important;
  10374. }
  10375. .mt-xl-2 {
  10376. margin-top: 0.5rem !important;
  10377. }
  10378. .mt-xl-3 {
  10379. margin-top: 1rem !important;
  10380. }
  10381. .mt-xl-4 {
  10382. margin-top: 1.5rem !important;
  10383. }
  10384. .mt-xl-5 {
  10385. margin-top: 3rem !important;
  10386. }
  10387. .mt-xl-auto {
  10388. margin-top: auto !important;
  10389. }
  10390. .me-xl-0 {
  10391. margin-left: 0 !important;
  10392. }
  10393. .me-xl-1 {
  10394. margin-left: 0.25rem !important;
  10395. }
  10396. .me-xl-2 {
  10397. margin-left: 0.5rem !important;
  10398. }
  10399. .me-xl-3 {
  10400. margin-left: 1rem !important;
  10401. }
  10402. .me-xl-4 {
  10403. margin-left: 1.5rem !important;
  10404. }
  10405. .me-xl-5 {
  10406. margin-left: 3rem !important;
  10407. }
  10408. .me-xl-auto {
  10409. margin-left: auto !important;
  10410. }
  10411. .mb-xl-0 {
  10412. margin-bottom: 0 !important;
  10413. }
  10414. .mb-xl-1 {
  10415. margin-bottom: 0.25rem !important;
  10416. }
  10417. .mb-xl-2 {
  10418. margin-bottom: 0.5rem !important;
  10419. }
  10420. .mb-xl-3 {
  10421. margin-bottom: 1rem !important;
  10422. }
  10423. .mb-xl-4 {
  10424. margin-bottom: 1.5rem !important;
  10425. }
  10426. .mb-xl-5 {
  10427. margin-bottom: 3rem !important;
  10428. }
  10429. .mb-xl-auto {
  10430. margin-bottom: auto !important;
  10431. }
  10432. .ms-xl-0 {
  10433. margin-right: 0 !important;
  10434. }
  10435. .ms-xl-1 {
  10436. margin-right: 0.25rem !important;
  10437. }
  10438. .ms-xl-2 {
  10439. margin-right: 0.5rem !important;
  10440. }
  10441. .ms-xl-3 {
  10442. margin-right: 1rem !important;
  10443. }
  10444. .ms-xl-4 {
  10445. margin-right: 1.5rem !important;
  10446. }
  10447. .ms-xl-5 {
  10448. margin-right: 3rem !important;
  10449. }
  10450. .ms-xl-auto {
  10451. margin-right: auto !important;
  10452. }
  10453. .m-xl-n1 {
  10454. margin: -0.25rem !important;
  10455. }
  10456. .m-xl-n2 {
  10457. margin: -0.5rem !important;
  10458. }
  10459. .m-xl-n3 {
  10460. margin: -1rem !important;
  10461. }
  10462. .m-xl-n4 {
  10463. margin: -1.5rem !important;
  10464. }
  10465. .m-xl-n5 {
  10466. margin: -3rem !important;
  10467. }
  10468. .mx-xl-n1 {
  10469. margin-left: -0.25rem !important;
  10470. margin-right: -0.25rem !important;
  10471. }
  10472. .mx-xl-n2 {
  10473. margin-left: -0.5rem !important;
  10474. margin-right: -0.5rem !important;
  10475. }
  10476. .mx-xl-n3 {
  10477. margin-left: -1rem !important;
  10478. margin-right: -1rem !important;
  10479. }
  10480. .mx-xl-n4 {
  10481. margin-left: -1.5rem !important;
  10482. margin-right: -1.5rem !important;
  10483. }
  10484. .mx-xl-n5 {
  10485. margin-left: -3rem !important;
  10486. margin-right: -3rem !important;
  10487. }
  10488. .my-xl-n1 {
  10489. margin-top: -0.25rem !important;
  10490. margin-bottom: -0.25rem !important;
  10491. }
  10492. .my-xl-n2 {
  10493. margin-top: -0.5rem !important;
  10494. margin-bottom: -0.5rem !important;
  10495. }
  10496. .my-xl-n3 {
  10497. margin-top: -1rem !important;
  10498. margin-bottom: -1rem !important;
  10499. }
  10500. .my-xl-n4 {
  10501. margin-top: -1.5rem !important;
  10502. margin-bottom: -1.5rem !important;
  10503. }
  10504. .my-xl-n5 {
  10505. margin-top: -3rem !important;
  10506. margin-bottom: -3rem !important;
  10507. }
  10508. .mt-xl-n1 {
  10509. margin-top: -0.25rem !important;
  10510. }
  10511. .mt-xl-n2 {
  10512. margin-top: -0.5rem !important;
  10513. }
  10514. .mt-xl-n3 {
  10515. margin-top: -1rem !important;
  10516. }
  10517. .mt-xl-n4 {
  10518. margin-top: -1.5rem !important;
  10519. }
  10520. .mt-xl-n5 {
  10521. margin-top: -3rem !important;
  10522. }
  10523. .me-xl-n1 {
  10524. margin-left: -0.25rem !important;
  10525. }
  10526. .me-xl-n2 {
  10527. margin-left: -0.5rem !important;
  10528. }
  10529. .me-xl-n3 {
  10530. margin-left: -1rem !important;
  10531. }
  10532. .me-xl-n4 {
  10533. margin-left: -1.5rem !important;
  10534. }
  10535. .me-xl-n5 {
  10536. margin-left: -3rem !important;
  10537. }
  10538. .mb-xl-n1 {
  10539. margin-bottom: -0.25rem !important;
  10540. }
  10541. .mb-xl-n2 {
  10542. margin-bottom: -0.5rem !important;
  10543. }
  10544. .mb-xl-n3 {
  10545. margin-bottom: -1rem !important;
  10546. }
  10547. .mb-xl-n4 {
  10548. margin-bottom: -1.5rem !important;
  10549. }
  10550. .mb-xl-n5 {
  10551. margin-bottom: -3rem !important;
  10552. }
  10553. .ms-xl-n1 {
  10554. margin-right: -0.25rem !important;
  10555. }
  10556. .ms-xl-n2 {
  10557. margin-right: -0.5rem !important;
  10558. }
  10559. .ms-xl-n3 {
  10560. margin-right: -1rem !important;
  10561. }
  10562. .ms-xl-n4 {
  10563. margin-right: -1.5rem !important;
  10564. }
  10565. .ms-xl-n5 {
  10566. margin-right: -3rem !important;
  10567. }
  10568. .p-xl-0 {
  10569. padding: 0 !important;
  10570. }
  10571. .p-xl-1 {
  10572. padding: 0.25rem !important;
  10573. }
  10574. .p-xl-2 {
  10575. padding: 0.5rem !important;
  10576. }
  10577. .p-xl-3 {
  10578. padding: 1rem !important;
  10579. }
  10580. .p-xl-4 {
  10581. padding: 1.5rem !important;
  10582. }
  10583. .p-xl-5 {
  10584. padding: 3rem !important;
  10585. }
  10586. .px-xl-0 {
  10587. padding-left: 0 !important;
  10588. padding-right: 0 !important;
  10589. }
  10590. .px-xl-1 {
  10591. padding-left: 0.25rem !important;
  10592. padding-right: 0.25rem !important;
  10593. }
  10594. .px-xl-2 {
  10595. padding-left: 0.5rem !important;
  10596. padding-right: 0.5rem !important;
  10597. }
  10598. .px-xl-3 {
  10599. padding-left: 1rem !important;
  10600. padding-right: 1rem !important;
  10601. }
  10602. .px-xl-4 {
  10603. padding-left: 1.5rem !important;
  10604. padding-right: 1.5rem !important;
  10605. }
  10606. .px-xl-5 {
  10607. padding-left: 3rem !important;
  10608. padding-right: 3rem !important;
  10609. }
  10610. .py-xl-0 {
  10611. padding-top: 0 !important;
  10612. padding-bottom: 0 !important;
  10613. }
  10614. .py-xl-1 {
  10615. padding-top: 0.25rem !important;
  10616. padding-bottom: 0.25rem !important;
  10617. }
  10618. .py-xl-2 {
  10619. padding-top: 0.5rem !important;
  10620. padding-bottom: 0.5rem !important;
  10621. }
  10622. .py-xl-3 {
  10623. padding-top: 1rem !important;
  10624. padding-bottom: 1rem !important;
  10625. }
  10626. .py-xl-4 {
  10627. padding-top: 1.5rem !important;
  10628. padding-bottom: 1.5rem !important;
  10629. }
  10630. .py-xl-5 {
  10631. padding-top: 3rem !important;
  10632. padding-bottom: 3rem !important;
  10633. }
  10634. .pt-xl-0 {
  10635. padding-top: 0 !important;
  10636. }
  10637. .pt-xl-1 {
  10638. padding-top: 0.25rem !important;
  10639. }
  10640. .pt-xl-2 {
  10641. padding-top: 0.5rem !important;
  10642. }
  10643. .pt-xl-3 {
  10644. padding-top: 1rem !important;
  10645. }
  10646. .pt-xl-4 {
  10647. padding-top: 1.5rem !important;
  10648. }
  10649. .pt-xl-5 {
  10650. padding-top: 3rem !important;
  10651. }
  10652. .pe-xl-0 {
  10653. padding-left: 0 !important;
  10654. }
  10655. .pe-xl-1 {
  10656. padding-left: 0.25rem !important;
  10657. }
  10658. .pe-xl-2 {
  10659. padding-left: 0.5rem !important;
  10660. }
  10661. .pe-xl-3 {
  10662. padding-left: 1rem !important;
  10663. }
  10664. .pe-xl-4 {
  10665. padding-left: 1.5rem !important;
  10666. }
  10667. .pe-xl-5 {
  10668. padding-left: 3rem !important;
  10669. }
  10670. .pb-xl-0 {
  10671. padding-bottom: 0 !important;
  10672. }
  10673. .pb-xl-1 {
  10674. padding-bottom: 0.25rem !important;
  10675. }
  10676. .pb-xl-2 {
  10677. padding-bottom: 0.5rem !important;
  10678. }
  10679. .pb-xl-3 {
  10680. padding-bottom: 1rem !important;
  10681. }
  10682. .pb-xl-4 {
  10683. padding-bottom: 1.5rem !important;
  10684. }
  10685. .pb-xl-5 {
  10686. padding-bottom: 3rem !important;
  10687. }
  10688. .ps-xl-0 {
  10689. padding-right: 0 !important;
  10690. }
  10691. .ps-xl-1 {
  10692. padding-right: 0.25rem !important;
  10693. }
  10694. .ps-xl-2 {
  10695. padding-right: 0.5rem !important;
  10696. }
  10697. .ps-xl-3 {
  10698. padding-right: 1rem !important;
  10699. }
  10700. .ps-xl-4 {
  10701. padding-right: 1.5rem !important;
  10702. }
  10703. .ps-xl-5 {
  10704. padding-right: 3rem !important;
  10705. }
  10706. .text-xl-start {
  10707. text-align: right !important;
  10708. }
  10709. .text-xl-end {
  10710. text-align: left !important;
  10711. }
  10712. .text-xl-center {
  10713. text-align: center !important;
  10714. }
  10715. }
  10716. @media (min-width: 1400px) {
  10717. .float-xxl-start {
  10718. float: right !important;
  10719. }
  10720. .float-xxl-end {
  10721. float: left !important;
  10722. }
  10723. .float-xxl-none {
  10724. float: none !important;
  10725. }
  10726. .d-xxl-inline {
  10727. display: inline !important;
  10728. }
  10729. .d-xxl-inline-block {
  10730. display: inline-block !important;
  10731. }
  10732. .d-xxl-block {
  10733. display: block !important;
  10734. }
  10735. .d-xxl-grid {
  10736. display: grid !important;
  10737. }
  10738. .d-xxl-table {
  10739. display: table !important;
  10740. }
  10741. .d-xxl-table-row {
  10742. display: table-row !important;
  10743. }
  10744. .d-xxl-table-cell {
  10745. display: table-cell !important;
  10746. }
  10747. .d-xxl-flex {
  10748. display: -webkit-box !important;
  10749. display: -ms-flexbox !important;
  10750. display: flex !important;
  10751. }
  10752. .d-xxl-inline-flex {
  10753. display: -webkit-inline-box !important;
  10754. display: -ms-inline-flexbox !important;
  10755. display: inline-flex !important;
  10756. }
  10757. .d-xxl-none {
  10758. display: none !important;
  10759. }
  10760. .flex-xxl-fill {
  10761. -webkit-box-flex: 1 !important;
  10762. -ms-flex: 1 1 auto !important;
  10763. flex: 1 1 auto !important;
  10764. }
  10765. .flex-xxl-row {
  10766. -webkit-box-orient: horizontal !important;
  10767. -webkit-box-direction: normal !important;
  10768. -ms-flex-direction: row !important;
  10769. flex-direction: row !important;
  10770. }
  10771. .flex-xxl-column {
  10772. -webkit-box-orient: vertical !important;
  10773. -webkit-box-direction: normal !important;
  10774. -ms-flex-direction: column !important;
  10775. flex-direction: column !important;
  10776. }
  10777. .flex-xxl-row-reverse {
  10778. -webkit-box-orient: horizontal !important;
  10779. -webkit-box-direction: reverse !important;
  10780. -ms-flex-direction: row-reverse !important;
  10781. flex-direction: row-reverse !important;
  10782. }
  10783. .flex-xxl-column-reverse {
  10784. -webkit-box-orient: vertical !important;
  10785. -webkit-box-direction: reverse !important;
  10786. -ms-flex-direction: column-reverse !important;
  10787. flex-direction: column-reverse !important;
  10788. }
  10789. .flex-xxl-grow-0 {
  10790. -webkit-box-flex: 0 !important;
  10791. -ms-flex-positive: 0 !important;
  10792. flex-grow: 0 !important;
  10793. }
  10794. .flex-xxl-grow-1 {
  10795. -webkit-box-flex: 1 !important;
  10796. -ms-flex-positive: 1 !important;
  10797. flex-grow: 1 !important;
  10798. }
  10799. .flex-xxl-shrink-0 {
  10800. -ms-flex-negative: 0 !important;
  10801. flex-shrink: 0 !important;
  10802. }
  10803. .flex-xxl-shrink-1 {
  10804. -ms-flex-negative: 1 !important;
  10805. flex-shrink: 1 !important;
  10806. }
  10807. .flex-xxl-wrap {
  10808. -ms-flex-wrap: wrap !important;
  10809. flex-wrap: wrap !important;
  10810. }
  10811. .flex-xxl-nowrap {
  10812. -ms-flex-wrap: nowrap !important;
  10813. flex-wrap: nowrap !important;
  10814. }
  10815. .flex-xxl-wrap-reverse {
  10816. -ms-flex-wrap: wrap-reverse !important;
  10817. flex-wrap: wrap-reverse !important;
  10818. }
  10819. .gap-xxl-0 {
  10820. gap: 0 !important;
  10821. }
  10822. .gap-xxl-1 {
  10823. gap: 0.25rem !important;
  10824. }
  10825. .gap-xxl-2 {
  10826. gap: 0.5rem !important;
  10827. }
  10828. .gap-xxl-3 {
  10829. gap: 1rem !important;
  10830. }
  10831. .gap-xxl-4 {
  10832. gap: 1.5rem !important;
  10833. }
  10834. .gap-xxl-5 {
  10835. gap: 3rem !important;
  10836. }
  10837. .justify-content-xxl-start {
  10838. -webkit-box-pack: start !important;
  10839. -ms-flex-pack: start !important;
  10840. justify-content: flex-start !important;
  10841. }
  10842. .justify-content-xxl-end {
  10843. -webkit-box-pack: end !important;
  10844. -ms-flex-pack: end !important;
  10845. justify-content: flex-end !important;
  10846. }
  10847. .justify-content-xxl-center {
  10848. -webkit-box-pack: center !important;
  10849. -ms-flex-pack: center !important;
  10850. justify-content: center !important;
  10851. }
  10852. .justify-content-xxl-between {
  10853. -webkit-box-pack: justify !important;
  10854. -ms-flex-pack: justify !important;
  10855. justify-content: space-between !important;
  10856. }
  10857. .justify-content-xxl-around {
  10858. -ms-flex-pack: distribute !important;
  10859. justify-content: space-around !important;
  10860. }
  10861. .justify-content-xxl-evenly {
  10862. -webkit-box-pack: space-evenly !important;
  10863. -ms-flex-pack: space-evenly !important;
  10864. justify-content: space-evenly !important;
  10865. }
  10866. .align-items-xxl-start {
  10867. -webkit-box-align: start !important;
  10868. -ms-flex-align: start !important;
  10869. align-items: flex-start !important;
  10870. }
  10871. .align-items-xxl-end {
  10872. -webkit-box-align: end !important;
  10873. -ms-flex-align: end !important;
  10874. align-items: flex-end !important;
  10875. }
  10876. .align-items-xxl-center {
  10877. -webkit-box-align: center !important;
  10878. -ms-flex-align: center !important;
  10879. align-items: center !important;
  10880. }
  10881. .align-items-xxl-baseline {
  10882. -webkit-box-align: baseline !important;
  10883. -ms-flex-align: baseline !important;
  10884. align-items: baseline !important;
  10885. }
  10886. .align-items-xxl-stretch {
  10887. -webkit-box-align: stretch !important;
  10888. -ms-flex-align: stretch !important;
  10889. align-items: stretch !important;
  10890. }
  10891. .align-content-xxl-start {
  10892. -ms-flex-line-pack: start !important;
  10893. align-content: flex-start !important;
  10894. }
  10895. .align-content-xxl-end {
  10896. -ms-flex-line-pack: end !important;
  10897. align-content: flex-end !important;
  10898. }
  10899. .align-content-xxl-center {
  10900. -ms-flex-line-pack: center !important;
  10901. align-content: center !important;
  10902. }
  10903. .align-content-xxl-between {
  10904. -ms-flex-line-pack: justify !important;
  10905. align-content: space-between !important;
  10906. }
  10907. .align-content-xxl-around {
  10908. -ms-flex-line-pack: distribute !important;
  10909. align-content: space-around !important;
  10910. }
  10911. .align-content-xxl-stretch {
  10912. -ms-flex-line-pack: stretch !important;
  10913. align-content: stretch !important;
  10914. }
  10915. .align-self-xxl-auto {
  10916. -ms-flex-item-align: auto !important;
  10917. align-self: auto !important;
  10918. }
  10919. .align-self-xxl-start {
  10920. -ms-flex-item-align: start !important;
  10921. align-self: flex-start !important;
  10922. }
  10923. .align-self-xxl-end {
  10924. -ms-flex-item-align: end !important;
  10925. align-self: flex-end !important;
  10926. }
  10927. .align-self-xxl-center {
  10928. -ms-flex-item-align: center !important;
  10929. align-self: center !important;
  10930. }
  10931. .align-self-xxl-baseline {
  10932. -ms-flex-item-align: baseline !important;
  10933. align-self: baseline !important;
  10934. }
  10935. .align-self-xxl-stretch {
  10936. -ms-flex-item-align: stretch !important;
  10937. align-self: stretch !important;
  10938. }
  10939. .order-xxl-first {
  10940. -webkit-box-ordinal-group: 0 !important;
  10941. -ms-flex-order: -1 !important;
  10942. order: -1 !important;
  10943. }
  10944. .order-xxl-0 {
  10945. -webkit-box-ordinal-group: 1 !important;
  10946. -ms-flex-order: 0 !important;
  10947. order: 0 !important;
  10948. }
  10949. .order-xxl-1 {
  10950. -webkit-box-ordinal-group: 2 !important;
  10951. -ms-flex-order: 1 !important;
  10952. order: 1 !important;
  10953. }
  10954. .order-xxl-2 {
  10955. -webkit-box-ordinal-group: 3 !important;
  10956. -ms-flex-order: 2 !important;
  10957. order: 2 !important;
  10958. }
  10959. .order-xxl-3 {
  10960. -webkit-box-ordinal-group: 4 !important;
  10961. -ms-flex-order: 3 !important;
  10962. order: 3 !important;
  10963. }
  10964. .order-xxl-4 {
  10965. -webkit-box-ordinal-group: 5 !important;
  10966. -ms-flex-order: 4 !important;
  10967. order: 4 !important;
  10968. }
  10969. .order-xxl-5 {
  10970. -webkit-box-ordinal-group: 6 !important;
  10971. -ms-flex-order: 5 !important;
  10972. order: 5 !important;
  10973. }
  10974. .order-xxl-last {
  10975. -webkit-box-ordinal-group: 7 !important;
  10976. -ms-flex-order: 6 !important;
  10977. order: 6 !important;
  10978. }
  10979. .m-xxl-0 {
  10980. margin: 0 !important;
  10981. }
  10982. .m-xxl-1 {
  10983. margin: 0.25rem !important;
  10984. }
  10985. .m-xxl-2 {
  10986. margin: 0.5rem !important;
  10987. }
  10988. .m-xxl-3 {
  10989. margin: 1rem !important;
  10990. }
  10991. .m-xxl-4 {
  10992. margin: 1.5rem !important;
  10993. }
  10994. .m-xxl-5 {
  10995. margin: 3rem !important;
  10996. }
  10997. .m-xxl-auto {
  10998. margin: auto !important;
  10999. }
  11000. .mx-xxl-0 {
  11001. margin-left: 0 !important;
  11002. margin-right: 0 !important;
  11003. }
  11004. .mx-xxl-1 {
  11005. margin-left: 0.25rem !important;
  11006. margin-right: 0.25rem !important;
  11007. }
  11008. .mx-xxl-2 {
  11009. margin-left: 0.5rem !important;
  11010. margin-right: 0.5rem !important;
  11011. }
  11012. .mx-xxl-3 {
  11013. margin-left: 1rem !important;
  11014. margin-right: 1rem !important;
  11015. }
  11016. .mx-xxl-4 {
  11017. margin-left: 1.5rem !important;
  11018. margin-right: 1.5rem !important;
  11019. }
  11020. .mx-xxl-5 {
  11021. margin-left: 3rem !important;
  11022. margin-right: 3rem !important;
  11023. }
  11024. .mx-xxl-auto {
  11025. margin-left: auto !important;
  11026. margin-right: auto !important;
  11027. }
  11028. .my-xxl-0 {
  11029. margin-top: 0 !important;
  11030. margin-bottom: 0 !important;
  11031. }
  11032. .my-xxl-1 {
  11033. margin-top: 0.25rem !important;
  11034. margin-bottom: 0.25rem !important;
  11035. }
  11036. .my-xxl-2 {
  11037. margin-top: 0.5rem !important;
  11038. margin-bottom: 0.5rem !important;
  11039. }
  11040. .my-xxl-3 {
  11041. margin-top: 1rem !important;
  11042. margin-bottom: 1rem !important;
  11043. }
  11044. .my-xxl-4 {
  11045. margin-top: 1.5rem !important;
  11046. margin-bottom: 1.5rem !important;
  11047. }
  11048. .my-xxl-5 {
  11049. margin-top: 3rem !important;
  11050. margin-bottom: 3rem !important;
  11051. }
  11052. .my-xxl-auto {
  11053. margin-top: auto !important;
  11054. margin-bottom: auto !important;
  11055. }
  11056. .mt-xxl-0 {
  11057. margin-top: 0 !important;
  11058. }
  11059. .mt-xxl-1 {
  11060. margin-top: 0.25rem !important;
  11061. }
  11062. .mt-xxl-2 {
  11063. margin-top: 0.5rem !important;
  11064. }
  11065. .mt-xxl-3 {
  11066. margin-top: 1rem !important;
  11067. }
  11068. .mt-xxl-4 {
  11069. margin-top: 1.5rem !important;
  11070. }
  11071. .mt-xxl-5 {
  11072. margin-top: 3rem !important;
  11073. }
  11074. .mt-xxl-auto {
  11075. margin-top: auto !important;
  11076. }
  11077. .me-xxl-0 {
  11078. margin-left: 0 !important;
  11079. }
  11080. .me-xxl-1 {
  11081. margin-left: 0.25rem !important;
  11082. }
  11083. .me-xxl-2 {
  11084. margin-left: 0.5rem !important;
  11085. }
  11086. .me-xxl-3 {
  11087. margin-left: 1rem !important;
  11088. }
  11089. .me-xxl-4 {
  11090. margin-left: 1.5rem !important;
  11091. }
  11092. .me-xxl-5 {
  11093. margin-left: 3rem !important;
  11094. }
  11095. .me-xxl-auto {
  11096. margin-left: auto !important;
  11097. }
  11098. .mb-xxl-0 {
  11099. margin-bottom: 0 !important;
  11100. }
  11101. .mb-xxl-1 {
  11102. margin-bottom: 0.25rem !important;
  11103. }
  11104. .mb-xxl-2 {
  11105. margin-bottom: 0.5rem !important;
  11106. }
  11107. .mb-xxl-3 {
  11108. margin-bottom: 1rem !important;
  11109. }
  11110. .mb-xxl-4 {
  11111. margin-bottom: 1.5rem !important;
  11112. }
  11113. .mb-xxl-5 {
  11114. margin-bottom: 3rem !important;
  11115. }
  11116. .mb-xxl-auto {
  11117. margin-bottom: auto !important;
  11118. }
  11119. .ms-xxl-0 {
  11120. margin-right: 0 !important;
  11121. }
  11122. .ms-xxl-1 {
  11123. margin-right: 0.25rem !important;
  11124. }
  11125. .ms-xxl-2 {
  11126. margin-right: 0.5rem !important;
  11127. }
  11128. .ms-xxl-3 {
  11129. margin-right: 1rem !important;
  11130. }
  11131. .ms-xxl-4 {
  11132. margin-right: 1.5rem !important;
  11133. }
  11134. .ms-xxl-5 {
  11135. margin-right: 3rem !important;
  11136. }
  11137. .ms-xxl-auto {
  11138. margin-right: auto !important;
  11139. }
  11140. .m-xxl-n1 {
  11141. margin: -0.25rem !important;
  11142. }
  11143. .m-xxl-n2 {
  11144. margin: -0.5rem !important;
  11145. }
  11146. .m-xxl-n3 {
  11147. margin: -1rem !important;
  11148. }
  11149. .m-xxl-n4 {
  11150. margin: -1.5rem !important;
  11151. }
  11152. .m-xxl-n5 {
  11153. margin: -3rem !important;
  11154. }
  11155. .mx-xxl-n1 {
  11156. margin-left: -0.25rem !important;
  11157. margin-right: -0.25rem !important;
  11158. }
  11159. .mx-xxl-n2 {
  11160. margin-left: -0.5rem !important;
  11161. margin-right: -0.5rem !important;
  11162. }
  11163. .mx-xxl-n3 {
  11164. margin-left: -1rem !important;
  11165. margin-right: -1rem !important;
  11166. }
  11167. .mx-xxl-n4 {
  11168. margin-left: -1.5rem !important;
  11169. margin-right: -1.5rem !important;
  11170. }
  11171. .mx-xxl-n5 {
  11172. margin-left: -3rem !important;
  11173. margin-right: -3rem !important;
  11174. }
  11175. .my-xxl-n1 {
  11176. margin-top: -0.25rem !important;
  11177. margin-bottom: -0.25rem !important;
  11178. }
  11179. .my-xxl-n2 {
  11180. margin-top: -0.5rem !important;
  11181. margin-bottom: -0.5rem !important;
  11182. }
  11183. .my-xxl-n3 {
  11184. margin-top: -1rem !important;
  11185. margin-bottom: -1rem !important;
  11186. }
  11187. .my-xxl-n4 {
  11188. margin-top: -1.5rem !important;
  11189. margin-bottom: -1.5rem !important;
  11190. }
  11191. .my-xxl-n5 {
  11192. margin-top: -3rem !important;
  11193. margin-bottom: -3rem !important;
  11194. }
  11195. .mt-xxl-n1 {
  11196. margin-top: -0.25rem !important;
  11197. }
  11198. .mt-xxl-n2 {
  11199. margin-top: -0.5rem !important;
  11200. }
  11201. .mt-xxl-n3 {
  11202. margin-top: -1rem !important;
  11203. }
  11204. .mt-xxl-n4 {
  11205. margin-top: -1.5rem !important;
  11206. }
  11207. .mt-xxl-n5 {
  11208. margin-top: -3rem !important;
  11209. }
  11210. .me-xxl-n1 {
  11211. margin-left: -0.25rem !important;
  11212. }
  11213. .me-xxl-n2 {
  11214. margin-left: -0.5rem !important;
  11215. }
  11216. .me-xxl-n3 {
  11217. margin-left: -1rem !important;
  11218. }
  11219. .me-xxl-n4 {
  11220. margin-left: -1.5rem !important;
  11221. }
  11222. .me-xxl-n5 {
  11223. margin-left: -3rem !important;
  11224. }
  11225. .mb-xxl-n1 {
  11226. margin-bottom: -0.25rem !important;
  11227. }
  11228. .mb-xxl-n2 {
  11229. margin-bottom: -0.5rem !important;
  11230. }
  11231. .mb-xxl-n3 {
  11232. margin-bottom: -1rem !important;
  11233. }
  11234. .mb-xxl-n4 {
  11235. margin-bottom: -1.5rem !important;
  11236. }
  11237. .mb-xxl-n5 {
  11238. margin-bottom: -3rem !important;
  11239. }
  11240. .ms-xxl-n1 {
  11241. margin-right: -0.25rem !important;
  11242. }
  11243. .ms-xxl-n2 {
  11244. margin-right: -0.5rem !important;
  11245. }
  11246. .ms-xxl-n3 {
  11247. margin-right: -1rem !important;
  11248. }
  11249. .ms-xxl-n4 {
  11250. margin-right: -1.5rem !important;
  11251. }
  11252. .ms-xxl-n5 {
  11253. margin-right: -3rem !important;
  11254. }
  11255. .p-xxl-0 {
  11256. padding: 0 !important;
  11257. }
  11258. .p-xxl-1 {
  11259. padding: 0.25rem !important;
  11260. }
  11261. .p-xxl-2 {
  11262. padding: 0.5rem !important;
  11263. }
  11264. .p-xxl-3 {
  11265. padding: 1rem !important;
  11266. }
  11267. .p-xxl-4 {
  11268. padding: 1.5rem !important;
  11269. }
  11270. .p-xxl-5 {
  11271. padding: 3rem !important;
  11272. }
  11273. .px-xxl-0 {
  11274. padding-left: 0 !important;
  11275. padding-right: 0 !important;
  11276. }
  11277. .px-xxl-1 {
  11278. padding-left: 0.25rem !important;
  11279. padding-right: 0.25rem !important;
  11280. }
  11281. .px-xxl-2 {
  11282. padding-left: 0.5rem !important;
  11283. padding-right: 0.5rem !important;
  11284. }
  11285. .px-xxl-3 {
  11286. padding-left: 1rem !important;
  11287. padding-right: 1rem !important;
  11288. }
  11289. .px-xxl-4 {
  11290. padding-left: 1.5rem !important;
  11291. padding-right: 1.5rem !important;
  11292. }
  11293. .px-xxl-5 {
  11294. padding-left: 3rem !important;
  11295. padding-right: 3rem !important;
  11296. }
  11297. .py-xxl-0 {
  11298. padding-top: 0 !important;
  11299. padding-bottom: 0 !important;
  11300. }
  11301. .py-xxl-1 {
  11302. padding-top: 0.25rem !important;
  11303. padding-bottom: 0.25rem !important;
  11304. }
  11305. .py-xxl-2 {
  11306. padding-top: 0.5rem !important;
  11307. padding-bottom: 0.5rem !important;
  11308. }
  11309. .py-xxl-3 {
  11310. padding-top: 1rem !important;
  11311. padding-bottom: 1rem !important;
  11312. }
  11313. .py-xxl-4 {
  11314. padding-top: 1.5rem !important;
  11315. padding-bottom: 1.5rem !important;
  11316. }
  11317. .py-xxl-5 {
  11318. padding-top: 3rem !important;
  11319. padding-bottom: 3rem !important;
  11320. }
  11321. .pt-xxl-0 {
  11322. padding-top: 0 !important;
  11323. }
  11324. .pt-xxl-1 {
  11325. padding-top: 0.25rem !important;
  11326. }
  11327. .pt-xxl-2 {
  11328. padding-top: 0.5rem !important;
  11329. }
  11330. .pt-xxl-3 {
  11331. padding-top: 1rem !important;
  11332. }
  11333. .pt-xxl-4 {
  11334. padding-top: 1.5rem !important;
  11335. }
  11336. .pt-xxl-5 {
  11337. padding-top: 3rem !important;
  11338. }
  11339. .pe-xxl-0 {
  11340. padding-left: 0 !important;
  11341. }
  11342. .pe-xxl-1 {
  11343. padding-left: 0.25rem !important;
  11344. }
  11345. .pe-xxl-2 {
  11346. padding-left: 0.5rem !important;
  11347. }
  11348. .pe-xxl-3 {
  11349. padding-left: 1rem !important;
  11350. }
  11351. .pe-xxl-4 {
  11352. padding-left: 1.5rem !important;
  11353. }
  11354. .pe-xxl-5 {
  11355. padding-left: 3rem !important;
  11356. }
  11357. .pb-xxl-0 {
  11358. padding-bottom: 0 !important;
  11359. }
  11360. .pb-xxl-1 {
  11361. padding-bottom: 0.25rem !important;
  11362. }
  11363. .pb-xxl-2 {
  11364. padding-bottom: 0.5rem !important;
  11365. }
  11366. .pb-xxl-3 {
  11367. padding-bottom: 1rem !important;
  11368. }
  11369. .pb-xxl-4 {
  11370. padding-bottom: 1.5rem !important;
  11371. }
  11372. .pb-xxl-5 {
  11373. padding-bottom: 3rem !important;
  11374. }
  11375. .ps-xxl-0 {
  11376. padding-right: 0 !important;
  11377. }
  11378. .ps-xxl-1 {
  11379. padding-right: 0.25rem !important;
  11380. }
  11381. .ps-xxl-2 {
  11382. padding-right: 0.5rem !important;
  11383. }
  11384. .ps-xxl-3 {
  11385. padding-right: 1rem !important;
  11386. }
  11387. .ps-xxl-4 {
  11388. padding-right: 1.5rem !important;
  11389. }
  11390. .ps-xxl-5 {
  11391. padding-right: 3rem !important;
  11392. }
  11393. .text-xxl-start {
  11394. text-align: right !important;
  11395. }
  11396. .text-xxl-end {
  11397. text-align: left !important;
  11398. }
  11399. .text-xxl-center {
  11400. text-align: center !important;
  11401. }
  11402. }
  11403. @media (min-width: 1200px) {
  11404. .fs-1 {
  11405. font-size: 2.03125rem !important;
  11406. }
  11407. .fs-2 {
  11408. font-size: 1.625rem !important;
  11409. }
  11410. .fs-3 {
  11411. font-size: 1.421875rem !important;
  11412. }
  11413. }
  11414. @media print {
  11415. .d-print-inline {
  11416. display: inline !important;
  11417. }
  11418. .d-print-inline-block {
  11419. display: inline-block !important;
  11420. }
  11421. .d-print-block {
  11422. display: block !important;
  11423. }
  11424. .d-print-grid {
  11425. display: grid !important;
  11426. }
  11427. .d-print-table {
  11428. display: table !important;
  11429. }
  11430. .d-print-table-row {
  11431. display: table-row !important;
  11432. }
  11433. .d-print-table-cell {
  11434. display: table-cell !important;
  11435. }
  11436. .d-print-flex {
  11437. display: -webkit-box !important;
  11438. display: -ms-flexbox !important;
  11439. display: flex !important;
  11440. }
  11441. .d-print-inline-flex {
  11442. display: -webkit-inline-box !important;
  11443. display: -ms-inline-flexbox !important;
  11444. display: inline-flex !important;
  11445. }
  11446. .d-print-none {
  11447. display: none !important;
  11448. }
  11449. }
  11450. /* =============
  11451. General
  11452. ============= */
  11453. html {
  11454. position: relative;
  11455. min-height: 100%;
  11456. }
  11457. .h1, .h2, .h3, .h4, .h5, .h6,
  11458. h1, h2, h3, h4, h5, h6 {
  11459. color: #495057;
  11460. }
  11461. a {
  11462. text-decoration: none !important;
  11463. }
  11464. label {
  11465. font-weight: 500;
  11466. margin-bottom: 0.5rem;
  11467. }
  11468. .blockquote {
  11469. padding: 10px 20px;
  11470. border-right: 4px solid #f6f6f6;
  11471. }
  11472. .blockquote-reverse {
  11473. border-right: 0;
  11474. border-left: 4px solid #f6f6f6;
  11475. text-align: left;
  11476. }
  11477. @media (min-width: 1200px) {
  11478. .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  11479. max-width: 1140px;
  11480. }
  11481. }
  11482. .row > * {
  11483. position: relative;
  11484. }
  11485. .bg-primary.bg-soft {
  11486. background-color: rgba(85, 110, 230, 0.25) !important;
  11487. }
  11488. .bg-secondary.bg-soft {
  11489. background-color: rgba(116, 120, 141, 0.25) !important;
  11490. }
  11491. .bg-success.bg-soft {
  11492. background-color: rgba(52, 195, 143, 0.25) !important;
  11493. }
  11494. .bg-info.bg-soft {
  11495. background-color: rgba(80, 165, 241, 0.25) !important;
  11496. }
  11497. .bg-warning.bg-soft {
  11498. background-color: rgba(241, 180, 76, 0.25) !important;
  11499. }
  11500. .bg-danger.bg-soft {
  11501. background-color: rgba(244, 106, 106, 0.25) !important;
  11502. }
  11503. .bg-pink.bg-soft {
  11504. background-color: rgba(232, 62, 140, 0.25) !important;
  11505. }
  11506. .bg-light.bg-soft {
  11507. background-color: rgba(239, 242, 247, 0.25) !important;
  11508. }
  11509. .bg-dark.bg-soft {
  11510. background-color: rgba(52, 58, 64, 0.25) !important;
  11511. }
  11512. .badge[href]:hover, .badge[href]:focus {
  11513. color: #fff;
  11514. }
  11515. .badge.bg-primary[href]:hover, .badge.bg-primary[href]:focus {
  11516. background-color: #435fe3 !important;
  11517. }
  11518. .badge.bg-light {
  11519. color: #495057;
  11520. }
  11521. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  11522. color: #495057;
  11523. }
  11524. .badge-soft-primary {
  11525. color: #556ee6;
  11526. background-color: rgba(85, 110, 230, 0.18);
  11527. }
  11528. .badge-soft-primary[href]:hover, .badge-soft-primary[href]:focus {
  11529. color: #556ee6;
  11530. text-decoration: none;
  11531. background-color: rgba(85, 110, 230, 0.4);
  11532. }
  11533. .badge.bg-secondary[href]:hover, .badge.bg-secondary[href]:focus {
  11534. background-color: #6b6e82 !important;
  11535. }
  11536. .badge.bg-light {
  11537. color: #495057;
  11538. }
  11539. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  11540. color: #495057;
  11541. }
  11542. .badge-soft-secondary {
  11543. color: #74788d;
  11544. background-color: rgba(116, 120, 141, 0.18);
  11545. }
  11546. .badge-soft-secondary[href]:hover, .badge-soft-secondary[href]:focus {
  11547. color: #74788d;
  11548. text-decoration: none;
  11549. background-color: rgba(116, 120, 141, 0.4);
  11550. }
  11551. .badge.bg-success[href]:hover, .badge.bg-success[href]:focus {
  11552. background-color: #30b383 !important;
  11553. }
  11554. .badge.bg-light {
  11555. color: #495057;
  11556. }
  11557. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  11558. color: #495057;
  11559. }
  11560. .badge-soft-success {
  11561. color: #34c38f;
  11562. background-color: rgba(52, 195, 143, 0.18);
  11563. }
  11564. .badge-soft-success[href]:hover, .badge-soft-success[href]:focus {
  11565. color: #34c38f;
  11566. text-decoration: none;
  11567. background-color: rgba(52, 195, 143, 0.4);
  11568. }
  11569. .badge.bg-info[href]:hover, .badge.bg-info[href]:focus {
  11570. background-color: #3d9bef !important;
  11571. }
  11572. .badge.bg-light {
  11573. color: #495057;
  11574. }
  11575. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  11576. color: #495057;
  11577. }
  11578. .badge-soft-info {
  11579. color: #50a5f1;
  11580. background-color: rgba(80, 165, 241, 0.18);
  11581. }
  11582. .badge-soft-info[href]:hover, .badge-soft-info[href]:focus {
  11583. color: #50a5f1;
  11584. text-decoration: none;
  11585. background-color: rgba(80, 165, 241, 0.4);
  11586. }
  11587. .badge.bg-warning[href]:hover, .badge.bg-warning[href]:focus {
  11588. background-color: #f0ac39 !important;
  11589. }
  11590. .badge.bg-light {
  11591. color: #495057;
  11592. }
  11593. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  11594. color: #495057;
  11595. }
  11596. .badge-soft-warning {
  11597. color: #f1b44c;
  11598. background-color: rgba(241, 180, 76, 0.18);
  11599. }
  11600. .badge-soft-warning[href]:hover, .badge-soft-warning[href]:focus {
  11601. color: #f1b44c;
  11602. text-decoration: none;
  11603. background-color: rgba(241, 180, 76, 0.4);
  11604. }
  11605. .badge.bg-danger[href]:hover, .badge.bg-danger[href]:focus {
  11606. background-color: #f35757 !important;
  11607. }
  11608. .badge.bg-light {
  11609. color: #495057;
  11610. }
  11611. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  11612. color: #495057;
  11613. }
  11614. .badge-soft-danger {
  11615. color: #f46a6a;
  11616. background-color: rgba(244, 106, 106, 0.18);
  11617. }
  11618. .badge-soft-danger[href]:hover, .badge-soft-danger[href]:focus {
  11619. color: #f46a6a;
  11620. text-decoration: none;
  11621. background-color: rgba(244, 106, 106, 0.4);
  11622. }
  11623. .badge.bg-pink[href]:hover, .badge.bg-pink[href]:focus {
  11624. background-color: #e62c81 !important;
  11625. }
  11626. .badge.bg-light {
  11627. color: #495057;
  11628. }
  11629. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  11630. color: #495057;
  11631. }
  11632. .badge-soft-pink {
  11633. color: #e83e8c;
  11634. background-color: rgba(232, 62, 140, 0.18);
  11635. }
  11636. .badge-soft-pink[href]:hover, .badge-soft-pink[href]:focus {
  11637. color: #e83e8c;
  11638. text-decoration: none;
  11639. background-color: rgba(232, 62, 140, 0.4);
  11640. }
  11641. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  11642. background-color: #e1e7f0 !important;
  11643. }
  11644. .badge.bg-light {
  11645. color: #495057;
  11646. }
  11647. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  11648. color: #495057;
  11649. }
  11650. .badge-soft-light {
  11651. color: #eff2f7;
  11652. background-color: rgba(239, 242, 247, 0.18);
  11653. }
  11654. .badge-soft-light[href]:hover, .badge-soft-light[href]:focus {
  11655. color: #eff2f7;
  11656. text-decoration: none;
  11657. background-color: rgba(239, 242, 247, 0.4);
  11658. }
  11659. .badge.bg-dark[href]:hover, .badge.bg-dark[href]:focus {
  11660. background-color: #2b3035 !important;
  11661. }
  11662. .badge.bg-light {
  11663. color: #495057;
  11664. }
  11665. .badge.bg-light[href]:hover, .badge.bg-light[href]:focus {
  11666. color: #495057;
  11667. }
  11668. .badge-soft-dark {
  11669. color: #343a40;
  11670. background-color: rgba(52, 58, 64, 0.18);
  11671. }
  11672. .badge-soft-dark[href]:hover, .badge-soft-dark[href]:focus {
  11673. color: #343a40;
  11674. text-decoration: none;
  11675. background-color: rgba(52, 58, 64, 0.4);
  11676. }
  11677. .rounded-pill {
  11678. padding-left: 0.6em;
  11679. padding-right: 0.6em;
  11680. }
  11681. .badge.bg-dark {
  11682. color: #eff2f7;
  11683. }
  11684. button,
  11685. a {
  11686. outline: none !important;
  11687. }
  11688. .btn-rounded {
  11689. border-radius: 30px;
  11690. }
  11691. .btn-dark,
  11692. .btn-secondary {
  11693. color: #eff2f7 !important;
  11694. }
  11695. .btn-outline-light {
  11696. color: #212529;
  11697. }
  11698. .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle, .btn-outline-dark:hover,
  11699. .btn-dark:not(:disabled):not(.disabled):active,
  11700. .btn-dark:not(:disabled):not(.disabled).active,
  11701. .show > .btn-dark.dropdown-toggle,
  11702. .btn-dark:hover {
  11703. color: #eff2f7;
  11704. }
  11705. .btn-group-example .btn {
  11706. position: relative;
  11707. }
  11708. .btn-group-example .btn:first-child::before {
  11709. display: none;
  11710. }
  11711. .btn-group-example .btn:before {
  11712. content: "OR";
  11713. position: absolute;
  11714. font-size: 10px;
  11715. width: 24px;
  11716. height: 24px;
  11717. line-height: 24px;
  11718. border-radius: 50%;
  11719. background-color: #74788d;
  11720. color: #eff2f7;
  11721. border: 1px solid #fff;
  11722. right: -12px;
  11723. top: 50%;
  11724. -webkit-transform: translateY(-50%);
  11725. transform: translateY(-50%);
  11726. z-index: 1;
  11727. }
  11728. .btn-label {
  11729. position: relative;
  11730. padding-right: 44px;
  11731. }
  11732. .btn-label .label-icon {
  11733. position: absolute;
  11734. width: 32px;
  11735. height: 100%;
  11736. right: 0;
  11737. top: 0;
  11738. background-color: rgba(255, 255, 255, 0.1);
  11739. border-left: 1px solid rgba(255, 255, 255, 0.1);
  11740. font-size: 16px;
  11741. display: -webkit-box;
  11742. display: -ms-flexbox;
  11743. display: flex;
  11744. -webkit-box-align: center;
  11745. -ms-flex-align: center;
  11746. align-items: center;
  11747. -webkit-box-pack: center;
  11748. -ms-flex-pack: center;
  11749. justify-content: center;
  11750. }
  11751. .btn-label.btn-light .label-icon {
  11752. background-color: rgba(52, 58, 64, 0.1);
  11753. border-left: 1px solid rgba(52, 58, 64, 0.2);
  11754. }
  11755. .btn-group-vertical label {
  11756. margin-bottom: 0px;
  11757. }
  11758. .breadcrumb-item > a {
  11759. color: #495057;
  11760. }
  11761. .breadcrumb-item + .breadcrumb-item::before {
  11762. font-family: "Material Design Icons";
  11763. }
  11764. .card {
  11765. margin-bottom: 24px;
  11766. -webkit-box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
  11767. box-shadow: 0 0.75rem 1.5rem rgba(18, 38, 63, 0.03);
  11768. }
  11769. .card-drop {
  11770. color: #495057;
  11771. }
  11772. .card-title {
  11773. font-size: 15px;
  11774. margin: 0 0 7px 0;
  11775. font-weight: 600;
  11776. }
  11777. .card-title-desc {
  11778. color: #74788d;
  11779. margin-bottom: 24px;
  11780. }
  11781. .dropdown-menu {
  11782. -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  11783. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  11784. -webkit-animation-name: DropDownSlide;
  11785. animation-name: DropDownSlide;
  11786. -webkit-animation-duration: 0.3s;
  11787. animation-duration: 0.3s;
  11788. -webkit-animation-fill-mode: both;
  11789. animation-fill-mode: both;
  11790. margin: 0;
  11791. position: absolute;
  11792. z-index: 1000;
  11793. }
  11794. .dropdown-menu.show {
  11795. top: 100% !important;
  11796. }
  11797. .dropdown-menu-end[style] {
  11798. right: auto !important;
  11799. left: 0 !important;
  11800. }
  11801. .dropdown-menu[data-popper-placement^=left],
  11802. .dropdown-menu[data-popper-placement^=top],
  11803. .dropdown-menu[data-popper-placement^=right] {
  11804. top: auto !important;
  11805. -webkit-animation: none !important;
  11806. animation: none !important;
  11807. }
  11808. @-webkit-keyframes DropDownSlide {
  11809. 100% {
  11810. -webkit-transform: translateY(0);
  11811. transform: translateY(0);
  11812. }
  11813. 0% {
  11814. -webkit-transform: translateY(10px);
  11815. transform: translateY(10px);
  11816. }
  11817. }
  11818. @keyframes DropDownSlide {
  11819. 100% {
  11820. -webkit-transform: translateY(0);
  11821. transform: translateY(0);
  11822. }
  11823. 0% {
  11824. -webkit-transform: translateY(10px);
  11825. transform: translateY(10px);
  11826. }
  11827. }
  11828. @media (min-width: 600px) {
  11829. .dropdown-menu-lg {
  11830. width: 320px;
  11831. }
  11832. .dropdown-menu-md {
  11833. width: 240px;
  11834. }
  11835. }
  11836. .dropdown-divider {
  11837. border-top-color: #eff2f7;
  11838. }
  11839. .dropdown-mega {
  11840. position: static !important;
  11841. }
  11842. .dropdown-megamenu[style] {
  11843. padding: 20px;
  11844. right: 20px !important;
  11845. left: 20px !important;
  11846. }
  11847. .dropdown-mega-menu-xl {
  11848. width: 40rem;
  11849. }
  11850. .dropdown-mega-menu-lg {
  11851. width: 26rem;
  11852. }
  11853. .nav-tabs > li > a, .nav-pills > li > a {
  11854. color: #495057;
  11855. font-weight: 500;
  11856. }
  11857. .nav-pills > a {
  11858. color: #495057;
  11859. font-weight: 500;
  11860. }
  11861. .nav-tabs-custom {
  11862. border-bottom: 2px solid #f6f6f6;
  11863. }
  11864. .nav-tabs-custom .nav-item {
  11865. position: relative;
  11866. color: #343a40;
  11867. }
  11868. .nav-tabs-custom .nav-item .nav-link {
  11869. border: none;
  11870. }
  11871. .nav-tabs-custom .nav-item .nav-link::after {
  11872. content: "";
  11873. background: #556ee6;
  11874. height: 2px;
  11875. position: absolute;
  11876. width: 100%;
  11877. right: 0;
  11878. bottom: -1px;
  11879. -webkit-transition: all 250ms ease 0s;
  11880. transition: all 250ms ease 0s;
  11881. -webkit-transform: scale(0);
  11882. transform: scale(0);
  11883. }
  11884. .nav-tabs-custom .nav-item .nav-link.active {
  11885. color: #556ee6;
  11886. }
  11887. .nav-tabs-custom .nav-item .nav-link.active:after {
  11888. -webkit-transform: scale(1);
  11889. transform: scale(1);
  11890. }
  11891. .vertical-nav .nav .nav-link {
  11892. padding: 24px 16px;
  11893. text-align: center;
  11894. margin-bottom: 8px;
  11895. }
  11896. .vertical-nav .nav .nav-link .nav-icon {
  11897. font-size: 24px;
  11898. }
  11899. .table th {
  11900. font-weight: 600;
  11901. }
  11902. .table .table-light {
  11903. color: #495057;
  11904. border-color: #eff2f7;
  11905. background-color: #f8f9fa;
  11906. }
  11907. .table-bordered {
  11908. border: 1px solid #eff2f7;
  11909. }
  11910. .table-dark > :not(:last-child) > :last-child > * {
  11911. border-bottom-color: #43494e;
  11912. }
  11913. .table-nowrap th,
  11914. .table-nowrap td {
  11915. white-space: nowrap;
  11916. }
  11917. .table > :not(:first-child) {
  11918. border-top: 0;
  11919. }
  11920. .pagination-rounded .page-link {
  11921. border-radius: 30px !important;
  11922. margin: 0 3px !important;
  11923. border: none;
  11924. width: 32px;
  11925. height: 32px;
  11926. padding: 0;
  11927. text-align: center;
  11928. line-height: 32px;
  11929. }
  11930. .progress-sm {
  11931. height: 5px;
  11932. }
  11933. .progress-md {
  11934. height: 8px;
  11935. }
  11936. .progress-lg {
  11937. height: 12px;
  11938. }
  11939. .progress-xl {
  11940. height: 16px;
  11941. }
  11942. .custom-progess {
  11943. position: relative;
  11944. }
  11945. .custom-progess .progress-icon {
  11946. position: absolute;
  11947. top: -12px;
  11948. }
  11949. .custom-progess .progress-icon .avatar-title {
  11950. background: #fff;
  11951. }
  11952. .animated-progess {
  11953. position: relative;
  11954. }
  11955. .animated-progess .progress-bar {
  11956. position: relative;
  11957. border-radius: 6px;
  11958. -webkit-animation: animate-positive 2s;
  11959. animation: animate-positive 2s;
  11960. }
  11961. @-webkit-keyframes animate-positive {
  11962. 0% {
  11963. width: 0;
  11964. }
  11965. }
  11966. @keyframes animate-positive {
  11967. 0% {
  11968. width: 0;
  11969. }
  11970. }ar-title {
  11971. background: #fff;
  11972. }
  11973. .animated-progess {
  11974. position: relative;
  11975. }
  11976. .animated-progess .progress-bar {
  11977. position: relative;
  11978. border-radius: 6px;
  11979. -webkit-animation: animate-positive 2s;
  11980. animation: animate-positive 2s;
  11981. }
  11982. @-webkit-keyframes animate-positive {
  11983. 0% {
  11984. width: 0;
  11985. }
  11986. }
  11987. @keyframes animate-positive {
  11988. 0% {
  11989. width: 0;
  11990. }
  11991. }