bootstrap.css 191 KB

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