minty-bootstrap.css 203 KB

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