editor.css 212 KB

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