2
0

zephyr-bootstrap.css 205 KB

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