lumen-bootstrap.css 207 KB

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