styles.css 200 KB

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