app.css 221 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272
  1. @charset "UTF-8";
  2. @font-face {
  3. font-family: "Arial Black";
  4. src: url(/fonts/arialblack.ttf?ec8b4d9c0e68604dfbeda73d0213c82e);
  5. }
  6. .del {
  7. -webkit-text-decoration-line: line-through;
  8. text-decoration-line: line-through;
  9. }
  10. .flicker {
  11. font-size: 1em;
  12. color: red;
  13. animation: changeshadow 2s ease-in infinite;
  14. -webkit-animation: changeshadow 2s linear infinite;
  15. -moz-animation: changeshadow 2s linear infinite;
  16. -ms-animation: changeshadow 2s linear infinite;
  17. -o-animation: changeshadow 2s linear infinite;
  18. }
  19. @keyframes changeshadow {
  20. 0% {
  21. text-shadow: 0 0 4px red;
  22. }
  23. 50% {
  24. text-shadow: 0 0 40px red;
  25. }
  26. 100% {
  27. text-shadow: 0 0 4px red;
  28. }
  29. }
  30. /* 添加兼容性前缀 */
  31. @-webkit-keyframes changeshadow {
  32. 0% {
  33. text-shadow: 0 0 4px red;
  34. }
  35. 50% {
  36. text-shadow: 0 0 40px red;
  37. }
  38. 100% {
  39. text-shadow: 0 0 4px red;
  40. }
  41. }
  42. .noselect {
  43. -webkit-touch-callout: none;
  44. /* iOS Safari */
  45. -webkit-user-select: none;
  46. /* Chrome/Safari/Opera */
  47. /* Konqueror */
  48. -moz-user-select: none;
  49. /* Firefox */
  50. -ms-user-select: none;
  51. /* Internet Explorer/Edge */
  52. user-select: none;
  53. }
  54. .fa-sort {
  55. opacity: 0.3;
  56. }
  57. .del {
  58. -webkit-text-decoration-line: line-through;
  59. text-decoration-line: line-through;
  60. }
  61. .custom-rich-text-content img {
  62. width: 100%;
  63. height: auto;
  64. }
  65. .nav2 {
  66. margin-top: 0;
  67. }
  68. .nav3 .card {
  69. background: #f9f0f0;
  70. }
  71. table th,
  72. table.table-striped tbody th {
  73. padding-bottom: 0;
  74. }
  75. table th.table-header-layer-1,
  76. table.table-striped tbody th.table-header-layer-1 {
  77. font-weight: normal;
  78. background: none;
  79. text-align: center;
  80. }
  81. table th.table-header-layer-1:nth-child(2),
  82. table.table-striped tbody th.table-header-layer-1:nth-child(2) {
  83. background: #eac3aa;
  84. }
  85. table th.table-header-layer-1:nth-child(3),
  86. table.table-striped tbody th.table-header-layer-1:nth-child(3) {
  87. background: #aac7ea;
  88. }
  89. table th.table-header-layer-1:nth-child(4),
  90. table.table-striped tbody th.table-header-layer-1:nth-child(4) {
  91. background: #aaeace;
  92. }
  93. table th.td-warm,
  94. table.table-striped tbody th.td-warm {
  95. background: #af7651;
  96. }
  97. table th.td-cool,
  98. table.table-striped tbody th.td-cool {
  99. background: #aac7ea;
  100. }
  101. table th.td-helpful,
  102. table.table-striped tbody th.td-helpful {
  103. background: #aaeace;
  104. }
  105. table th.td-yellow,
  106. table.table-striped tbody th.td-yellow {
  107. background: #f8eea0;
  108. }
  109. table th.td-calm,
  110. table.table-striped tbody th.td-calm {
  111. background: #c6d8e3;
  112. }
  113. table td.td-warm,
  114. table tr:nth-of-type(odd).td-warm,
  115. table.table-striped tbody td.td-warm,
  116. table.table-striped tbody tr:nth-of-type(odd).td-warm {
  117. background: #f6eee8;
  118. }
  119. table td.td-cool,
  120. table tr:nth-of-type(odd).td-cool,
  121. table.table-striped tbody td.td-cool,
  122. table.table-striped tbody tr:nth-of-type(odd).td-cool {
  123. background: #e8eef6;
  124. }
  125. table td.td-helpful,
  126. table tr:nth-of-type(odd).td-helpful,
  127. table.table-striped tbody td.td-helpful,
  128. table.table-striped tbody tr:nth-of-type(odd).td-helpful {
  129. background: #e7f5ee;
  130. }
  131. table td.td-yellow,
  132. table tr:nth-of-type(odd).td-yellow,
  133. table.table-striped tbody td.td-yellow,
  134. table.table-striped tbody tr:nth-of-type(odd).td-yellow {
  135. background: #fcfaec;
  136. }
  137. table td.td-calm,
  138. table tr:nth-of-type(odd).td-calm,
  139. table.table-striped tbody td.td-calm,
  140. table.table-striped tbody tr:nth-of-type(odd).td-calm {
  141. background: #ddeffa;
  142. }
  143. table tr:nth-child(even) td.td-warm,
  144. table tr:nth-child(even).td-warm,
  145. table.table-striped tbody tr:nth-child(even) td.td-warm,
  146. table.table-striped tbody tr:nth-child(even).td-warm {
  147. background: #f8f4f1;
  148. }
  149. table tr:nth-child(even) td.td-cool,
  150. table tr:nth-child(even).td-cool,
  151. table.table-striped tbody tr:nth-child(even) td.td-cool,
  152. table.table-striped tbody tr:nth-child(even).td-cool {
  153. background: #edf0f5;
  154. }
  155. table tr:nth-child(even) td.td-helpful,
  156. table tr:nth-child(even).td-helpful,
  157. table.table-striped tbody tr:nth-child(even) td.td-helpful,
  158. table.table-striped tbody tr:nth-child(even).td-helpful {
  159. background: #ecf3ef;
  160. }
  161. table tr:nth-child(even) td.td-yellow,
  162. table tr:nth-child(even).td-yellow,
  163. table.table-striped tbody tr:nth-child(even) td.td-yellow,
  164. table.table-striped tbody tr:nth-child(even).td-yellow {
  165. background: #f8f5e4;
  166. }
  167. table tr:hover td.td-warm,
  168. table tr:hover.td-warm,
  169. table.table-striped tbody tr:hover td.td-warm,
  170. table.table-striped tbody tr:hover.td-warm {
  171. background: #f6e9dc;
  172. }
  173. table tr:hover td.td-cool,
  174. table tr:hover.td-cool,
  175. table.table-striped tbody tr:hover td.td-cool,
  176. table.table-striped tbody tr:hover.td-cool {
  177. background: #d3e0f1;
  178. }
  179. table tr:hover td.td-helpful,
  180. table tr:hover.td-helpful,
  181. table.table-striped tbody tr:hover td.td-helpful,
  182. table.table-striped tbody tr:hover.td-helpful {
  183. background: #d7f3e5;
  184. }
  185. table tr:hover td.td-yellow,
  186. table tr:hover.td-yellow,
  187. table.table-striped tbody tr:hover td.td-yellow,
  188. table.table-striped tbody tr:hover.td-yellow {
  189. background: #fdf3db;
  190. }
  191. table tr.focusing td,
  192. table.table-striped tbody tr.focusing td {
  193. background: #d5aba1;
  194. }
  195. table tr.focusing td.td-warm,
  196. table.table-striped tbody tr.focusing td.td-warm {
  197. background: #e7ae80;
  198. }
  199. table tr.focusing td.td-cool,
  200. table.table-striped tbody tr.focusing td.td-cool {
  201. background: #5f8fcd;
  202. }
  203. table tr.focusing td.td-helpful,
  204. table.table-striped tbody tr.focusing td.td-helpful {
  205. background: #69cb9c;
  206. }
  207. table tr.focusing td.td-yellow,
  208. table.table-striped tbody tr.focusing td.td-yellow {
  209. background: #d9c290;
  210. }
  211. .row-even {
  212. background-color: rgba(0, 0, 0, 0.05);
  213. }
  214. @-webkit-keyframes blink {
  215. from {
  216. opacity: 0.25;
  217. }
  218. to {
  219. opacity: 1;
  220. }
  221. }
  222. @keyframes blink {
  223. from {
  224. opacity: 0.25;
  225. }
  226. to {
  227. opacity: 1;
  228. }
  229. }
  230. .blink {
  231. -webkit-animation: blink;
  232. animation: blink;
  233. -webkit-animation-duration: 2s;
  234. animation-duration: 2s;
  235. -webkit-animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
  236. animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
  237. -webkit-animation-direction: alternate;
  238. animation-direction: alternate;
  239. -webkit-animation-play-state: running;
  240. animation-play-state: running;
  241. -webkit-animation-iteration-count: infinite;
  242. animation-iteration-count: infinite;
  243. }
  244. input[type=checkbox] {
  245. width: 17px;
  246. height: 17px;
  247. opacity: 0.85;
  248. }
  249. /*!
  250. * Bootstrap v4.5.0 (https://getbootstrap.com/)
  251. * Copyright 2011-2020 The Bootstrap Authors
  252. * Copyright 2011-2020 Twitter, Inc.
  253. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  254. */
  255. :root {
  256. --blue: #3490dc;
  257. --indigo: #6574cd;
  258. --purple: #9561e2;
  259. --pink: #f66d9b;
  260. --red: #e3342f;
  261. --orange: #f6993f;
  262. --yellow: #ffed4a;
  263. --green: #38c172;
  264. --teal: #4dc0b5;
  265. --cyan: #6cb2eb;
  266. --white: #fff;
  267. --gray: #6c757d;
  268. --gray-dark: #343a40;
  269. --primary: #3490dc;
  270. --secondary: #6c757d;
  271. --success: #38c172;
  272. --info: #6cb2eb;
  273. --warning: #ffed4a;
  274. --danger: #e3342f;
  275. --light: #f8f9fa;
  276. --dark: #343a40;
  277. --breakpoint-xs: 0;
  278. --breakpoint-sm: 576px;
  279. --breakpoint-md: 768px;
  280. --breakpoint-lg: 992px;
  281. --breakpoint-xl: 1200px;
  282. --font-family-sans-serif: "Nunito", sans-serif;
  283. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  284. }
  285. *,
  286. *::before,
  287. *::after {
  288. box-sizing: border-box;
  289. }
  290. html {
  291. font-family: sans-serif;
  292. line-height: 1.15;
  293. -webkit-text-size-adjust: 100%;
  294. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  295. }
  296. article,
  297. aside,
  298. figcaption,
  299. figure,
  300. footer,
  301. header,
  302. hgroup,
  303. main,
  304. nav,
  305. section {
  306. display: block;
  307. }
  308. body {
  309. margin: 0;
  310. font-family: "Nunito", sans-serif;
  311. font-size: 0.9rem;
  312. font-weight: 400;
  313. line-height: 1.6;
  314. color: #212529;
  315. text-align: left;
  316. background-color: #f8fafc;
  317. }
  318. [tabindex="-1"]:focus:not(:focus-visible) {
  319. outline: 0 !important;
  320. }
  321. hr {
  322. box-sizing: content-box;
  323. height: 0;
  324. overflow: visible;
  325. }
  326. h1,
  327. h2,
  328. h3,
  329. h4,
  330. h5,
  331. h6 {
  332. margin-top: 0;
  333. margin-bottom: 0.5rem;
  334. }
  335. p {
  336. margin-top: 0;
  337. margin-bottom: 1rem;
  338. }
  339. abbr[title],
  340. abbr[data-original-title] {
  341. text-decoration: underline;
  342. -webkit-text-decoration: underline dotted;
  343. text-decoration: underline dotted;
  344. cursor: help;
  345. border-bottom: 0;
  346. -webkit-text-decoration-skip-ink: none;
  347. text-decoration-skip-ink: none;
  348. }
  349. address {
  350. margin-bottom: 1rem;
  351. font-style: normal;
  352. line-height: inherit;
  353. }
  354. ol,
  355. ul,
  356. dl {
  357. margin-top: 0;
  358. margin-bottom: 1rem;
  359. }
  360. ol ol,
  361. ul ul,
  362. ol ul,
  363. ul ol {
  364. margin-bottom: 0;
  365. }
  366. dt {
  367. font-weight: 700;
  368. }
  369. dd {
  370. margin-bottom: 0.5rem;
  371. margin-left: 0;
  372. }
  373. blockquote {
  374. margin: 0 0 1rem;
  375. }
  376. b,
  377. strong {
  378. font-weight: bolder;
  379. }
  380. small {
  381. font-size: 80%;
  382. }
  383. sub,
  384. sup {
  385. position: relative;
  386. font-size: 75%;
  387. line-height: 0;
  388. vertical-align: baseline;
  389. }
  390. sub {
  391. bottom: -0.25em;
  392. }
  393. sup {
  394. top: -0.5em;
  395. }
  396. a {
  397. color: #3490dc;
  398. text-decoration: none;
  399. background-color: transparent;
  400. }
  401. a:hover {
  402. color: #1d68a7;
  403. text-decoration: underline;
  404. }
  405. a:not([href]) {
  406. color: inherit;
  407. text-decoration: none;
  408. }
  409. a:not([href]):hover {
  410. color: inherit;
  411. text-decoration: none;
  412. }
  413. pre,
  414. code,
  415. kbd,
  416. samp {
  417. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  418. font-size: 1em;
  419. }
  420. pre {
  421. margin-top: 0;
  422. margin-bottom: 1rem;
  423. overflow: auto;
  424. -ms-overflow-style: scrollbar;
  425. }
  426. figure {
  427. margin: 0 0 1rem;
  428. }
  429. img {
  430. vertical-align: middle;
  431. border-style: none;
  432. }
  433. svg {
  434. overflow: hidden;
  435. vertical-align: middle;
  436. }
  437. table {
  438. border-collapse: collapse;
  439. }
  440. caption {
  441. padding-top: 0.75rem;
  442. padding-bottom: 0.75rem;
  443. color: #6c757d;
  444. text-align: left;
  445. caption-side: bottom;
  446. }
  447. th {
  448. text-align: inherit;
  449. }
  450. label {
  451. display: inline-block;
  452. margin-bottom: 0.5rem;
  453. }
  454. button {
  455. border-radius: 0;
  456. }
  457. button:focus {
  458. outline: 1px dotted;
  459. outline: 5px auto -webkit-focus-ring-color;
  460. }
  461. input,
  462. button,
  463. select,
  464. optgroup,
  465. textarea {
  466. margin: 0;
  467. font-family: inherit;
  468. font-size: inherit;
  469. line-height: inherit;
  470. }
  471. button,
  472. input {
  473. overflow: visible;
  474. }
  475. button,
  476. select {
  477. text-transform: none;
  478. }
  479. [role=button] {
  480. cursor: pointer;
  481. }
  482. select {
  483. word-wrap: normal;
  484. }
  485. button,
  486. [type=button],
  487. [type=reset],
  488. [type=submit] {
  489. -webkit-appearance: button;
  490. }
  491. button:not(:disabled),
  492. [type=button]:not(:disabled),
  493. [type=reset]:not(:disabled),
  494. [type=submit]:not(:disabled) {
  495. cursor: pointer;
  496. }
  497. button::-moz-focus-inner,
  498. [type=button]::-moz-focus-inner,
  499. [type=reset]::-moz-focus-inner,
  500. [type=submit]::-moz-focus-inner {
  501. padding: 0;
  502. border-style: none;
  503. }
  504. input[type=radio],
  505. input[type=checkbox] {
  506. box-sizing: border-box;
  507. padding: 0;
  508. }
  509. textarea {
  510. overflow: auto;
  511. resize: vertical;
  512. }
  513. fieldset {
  514. min-width: 0;
  515. padding: 0;
  516. margin: 0;
  517. border: 0;
  518. }
  519. legend {
  520. display: block;
  521. width: 100%;
  522. max-width: 100%;
  523. padding: 0;
  524. margin-bottom: 0.5rem;
  525. font-size: 1.5rem;
  526. line-height: inherit;
  527. color: inherit;
  528. white-space: normal;
  529. }
  530. progress {
  531. vertical-align: baseline;
  532. }
  533. [type=number]::-webkit-inner-spin-button,
  534. [type=number]::-webkit-outer-spin-button {
  535. height: auto;
  536. }
  537. [type=search] {
  538. outline-offset: -2px;
  539. -webkit-appearance: none;
  540. }
  541. [type=search]::-webkit-search-decoration {
  542. -webkit-appearance: none;
  543. }
  544. ::-webkit-file-upload-button {
  545. font: inherit;
  546. -webkit-appearance: button;
  547. }
  548. output {
  549. display: inline-block;
  550. }
  551. summary {
  552. display: list-item;
  553. cursor: pointer;
  554. }
  555. template {
  556. display: none;
  557. }
  558. [hidden] {
  559. display: none !important;
  560. }
  561. h1,
  562. h2,
  563. h3,
  564. h4,
  565. h5,
  566. h6,
  567. .h1,
  568. .h2,
  569. .h3,
  570. .h4,
  571. .h5,
  572. .h6 {
  573. margin-bottom: 0.5rem;
  574. font-weight: 500;
  575. line-height: 1.2;
  576. }
  577. h1,
  578. .h1 {
  579. font-size: 2.25rem;
  580. }
  581. h2,
  582. .h2 {
  583. font-size: 1.8rem;
  584. }
  585. h3,
  586. .h3 {
  587. font-size: 1.575rem;
  588. }
  589. h4,
  590. .h4 {
  591. font-size: 1.35rem;
  592. }
  593. h5,
  594. .h5 {
  595. font-size: 1.125rem;
  596. }
  597. h6,
  598. .h6 {
  599. font-size: 0.9rem;
  600. }
  601. .lead {
  602. font-size: 1.125rem;
  603. font-weight: 300;
  604. }
  605. .display-1 {
  606. font-size: 6rem;
  607. font-weight: 300;
  608. line-height: 1.2;
  609. }
  610. .display-2 {
  611. font-size: 5.5rem;
  612. font-weight: 300;
  613. line-height: 1.2;
  614. }
  615. .display-3 {
  616. font-size: 4.5rem;
  617. font-weight: 300;
  618. line-height: 1.2;
  619. }
  620. .display-4 {
  621. font-size: 3.5rem;
  622. font-weight: 300;
  623. line-height: 1.2;
  624. }
  625. hr {
  626. margin-top: 1rem;
  627. margin-bottom: 1rem;
  628. border: 0;
  629. border-top: 1px solid rgba(0, 0, 0, 0.1);
  630. }
  631. small,
  632. .small {
  633. font-size: 80%;
  634. font-weight: 400;
  635. }
  636. mark,
  637. .mark {
  638. padding: 0.2em;
  639. background-color: #fcf8e3;
  640. }
  641. .list-unstyled {
  642. padding-left: 0;
  643. list-style: none;
  644. }
  645. .list-inline {
  646. padding-left: 0;
  647. list-style: none;
  648. }
  649. .list-inline-item {
  650. display: inline-block;
  651. }
  652. .list-inline-item:not(:last-child) {
  653. margin-right: 0.5rem;
  654. }
  655. .initialism {
  656. font-size: 90%;
  657. text-transform: uppercase;
  658. }
  659. .blockquote {
  660. margin-bottom: 1rem;
  661. font-size: 1.125rem;
  662. }
  663. .blockquote-footer {
  664. display: block;
  665. font-size: 80%;
  666. color: #6c757d;
  667. }
  668. .blockquote-footer::before {
  669. content: "\2014\A0";
  670. }
  671. .img-fluid {
  672. max-width: 100%;
  673. height: auto;
  674. }
  675. .img-thumbnail {
  676. padding: 0.25rem;
  677. background-color: #f8fafc;
  678. border: 1px solid #dee2e6;
  679. border-radius: 0.25rem;
  680. max-width: 100%;
  681. height: auto;
  682. }
  683. .figure {
  684. display: inline-block;
  685. }
  686. .figure-img {
  687. margin-bottom: 0.5rem;
  688. line-height: 1;
  689. }
  690. .figure-caption {
  691. font-size: 90%;
  692. color: #6c757d;
  693. }
  694. code {
  695. font-size: 87.5%;
  696. color: #f66d9b;
  697. word-wrap: break-word;
  698. }
  699. a > code {
  700. color: inherit;
  701. }
  702. kbd {
  703. padding: 0.2rem 0.4rem;
  704. font-size: 87.5%;
  705. color: #fff;
  706. background-color: #212529;
  707. border-radius: 0.2rem;
  708. }
  709. kbd kbd {
  710. padding: 0;
  711. font-size: 100%;
  712. font-weight: 700;
  713. }
  714. pre {
  715. display: block;
  716. font-size: 87.5%;
  717. color: #212529;
  718. }
  719. pre code {
  720. font-size: inherit;
  721. color: inherit;
  722. word-break: normal;
  723. }
  724. .pre-scrollable {
  725. max-height: 340px;
  726. overflow-y: scroll;
  727. }
  728. .container {
  729. width: 100%;
  730. padding-right: 15px;
  731. padding-left: 15px;
  732. margin-right: auto;
  733. margin-left: auto;
  734. }
  735. @media (min-width: 576px) {
  736. .container {
  737. max-width: 540px;
  738. }
  739. }
  740. @media (min-width: 768px) {
  741. .container {
  742. max-width: 720px;
  743. }
  744. }
  745. @media (min-width: 992px) {
  746. .container {
  747. max-width: 960px;
  748. }
  749. }
  750. @media (min-width: 1200px) {
  751. .container {
  752. max-width: 1140px;
  753. }
  754. }
  755. .container-fluid,
  756. .container-xl,
  757. .container-lg,
  758. .container-md,
  759. .container-sm {
  760. width: 100%;
  761. padding-right: 15px;
  762. padding-left: 15px;
  763. margin-right: auto;
  764. margin-left: auto;
  765. }
  766. @media (min-width: 576px) {
  767. .container-sm,
  768. .container {
  769. max-width: 540px;
  770. }
  771. }
  772. @media (min-width: 768px) {
  773. .container-md,
  774. .container-sm,
  775. .container {
  776. max-width: 720px;
  777. }
  778. }
  779. @media (min-width: 992px) {
  780. .container-lg,
  781. .container-md,
  782. .container-sm,
  783. .container {
  784. max-width: 960px;
  785. }
  786. }
  787. @media (min-width: 1200px) {
  788. .container-xl,
  789. .container-lg,
  790. .container-md,
  791. .container-sm,
  792. .container {
  793. max-width: 1140px;
  794. }
  795. }
  796. .row {
  797. display: flex;
  798. flex-wrap: wrap;
  799. margin-right: -15px;
  800. margin-left: -15px;
  801. }
  802. .no-gutters {
  803. margin-right: 0;
  804. margin-left: 0;
  805. }
  806. .no-gutters > .col,
  807. .no-gutters > [class*=col-] {
  808. padding-right: 0;
  809. padding-left: 0;
  810. }
  811. .col-xl,
  812. .col-xl-auto,
  813. .col-xl-12,
  814. .col-xl-11,
  815. .col-xl-10,
  816. .col-xl-9,
  817. .col-xl-8,
  818. .col-xl-7,
  819. .col-xl-6,
  820. .col-xl-5,
  821. .col-xl-4,
  822. .col-xl-3,
  823. .col-xl-2,
  824. .col-xl-1,
  825. .col-lg,
  826. .col-lg-auto,
  827. .col-lg-12,
  828. .col-lg-11,
  829. .col-lg-10,
  830. .col-lg-9,
  831. .col-lg-8,
  832. .col-lg-7,
  833. .col-lg-6,
  834. .col-lg-5,
  835. .col-lg-4,
  836. .col-lg-3,
  837. .col-lg-2,
  838. .col-lg-1,
  839. .col-md,
  840. .col-md-auto,
  841. .col-md-12,
  842. .col-md-11,
  843. .col-md-10,
  844. .col-md-9,
  845. .col-md-8,
  846. .col-md-7,
  847. .col-md-6,
  848. .col-md-5,
  849. .col-md-4,
  850. .col-md-3,
  851. .col-md-2,
  852. .col-md-1,
  853. .col-sm,
  854. .col-sm-auto,
  855. .col-sm-12,
  856. .col-sm-11,
  857. .col-sm-10,
  858. .col-sm-9,
  859. .col-sm-8,
  860. .col-sm-7,
  861. .col-sm-6,
  862. .col-sm-5,
  863. .col-sm-4,
  864. .col-sm-3,
  865. .col-sm-2,
  866. .col-sm-1,
  867. .col,
  868. .col-auto,
  869. .col-12,
  870. .col-11,
  871. .col-10,
  872. .col-9,
  873. .col-8,
  874. .col-7,
  875. .col-6,
  876. .col-5,
  877. .col-4,
  878. .col-3,
  879. .col-2,
  880. .col-1 {
  881. position: relative;
  882. width: 100%;
  883. padding-right: 15px;
  884. padding-left: 15px;
  885. }
  886. .col {
  887. flex-basis: 0;
  888. flex-grow: 1;
  889. min-width: 0;
  890. max-width: 100%;
  891. }
  892. .row-cols-1 > * {
  893. flex: 0 0 100%;
  894. max-width: 100%;
  895. }
  896. .row-cols-2 > * {
  897. flex: 0 0 50%;
  898. max-width: 50%;
  899. }
  900. .row-cols-3 > * {
  901. flex: 0 0 33.3333333333%;
  902. max-width: 33.3333333333%;
  903. }
  904. .row-cols-4 > * {
  905. flex: 0 0 25%;
  906. max-width: 25%;
  907. }
  908. .row-cols-5 > * {
  909. flex: 0 0 20%;
  910. max-width: 20%;
  911. }
  912. .row-cols-6 > * {
  913. flex: 0 0 16.6666666667%;
  914. max-width: 16.6666666667%;
  915. }
  916. .col-auto {
  917. flex: 0 0 auto;
  918. width: auto;
  919. max-width: 100%;
  920. }
  921. .col-1 {
  922. flex: 0 0 8.3333333333%;
  923. max-width: 8.3333333333%;
  924. }
  925. .col-2 {
  926. flex: 0 0 16.6666666667%;
  927. max-width: 16.6666666667%;
  928. }
  929. .col-3 {
  930. flex: 0 0 25%;
  931. max-width: 25%;
  932. }
  933. .col-4 {
  934. flex: 0 0 33.3333333333%;
  935. max-width: 33.3333333333%;
  936. }
  937. .col-5 {
  938. flex: 0 0 41.6666666667%;
  939. max-width: 41.6666666667%;
  940. }
  941. .col-6 {
  942. flex: 0 0 50%;
  943. max-width: 50%;
  944. }
  945. .col-7 {
  946. flex: 0 0 58.3333333333%;
  947. max-width: 58.3333333333%;
  948. }
  949. .col-8 {
  950. flex: 0 0 66.6666666667%;
  951. max-width: 66.6666666667%;
  952. }
  953. .col-9 {
  954. flex: 0 0 75%;
  955. max-width: 75%;
  956. }
  957. .col-10 {
  958. flex: 0 0 83.3333333333%;
  959. max-width: 83.3333333333%;
  960. }
  961. .col-11 {
  962. flex: 0 0 91.6666666667%;
  963. max-width: 91.6666666667%;
  964. }
  965. .col-12 {
  966. flex: 0 0 100%;
  967. max-width: 100%;
  968. }
  969. .order-first {
  970. order: -1;
  971. }
  972. .order-last {
  973. order: 13;
  974. }
  975. .order-0 {
  976. order: 0;
  977. }
  978. .order-1 {
  979. order: 1;
  980. }
  981. .order-2 {
  982. order: 2;
  983. }
  984. .order-3 {
  985. order: 3;
  986. }
  987. .order-4 {
  988. order: 4;
  989. }
  990. .order-5 {
  991. order: 5;
  992. }
  993. .order-6 {
  994. order: 6;
  995. }
  996. .order-7 {
  997. order: 7;
  998. }
  999. .order-8 {
  1000. order: 8;
  1001. }
  1002. .order-9 {
  1003. order: 9;
  1004. }
  1005. .order-10 {
  1006. order: 10;
  1007. }
  1008. .order-11 {
  1009. order: 11;
  1010. }
  1011. .order-12 {
  1012. order: 12;
  1013. }
  1014. .offset-1 {
  1015. margin-left: 8.3333333333%;
  1016. }
  1017. .offset-2 {
  1018. margin-left: 16.6666666667%;
  1019. }
  1020. .offset-3 {
  1021. margin-left: 25%;
  1022. }
  1023. .offset-4 {
  1024. margin-left: 33.3333333333%;
  1025. }
  1026. .offset-5 {
  1027. margin-left: 41.6666666667%;
  1028. }
  1029. .offset-6 {
  1030. margin-left: 50%;
  1031. }
  1032. .offset-7 {
  1033. margin-left: 58.3333333333%;
  1034. }
  1035. .offset-8 {
  1036. margin-left: 66.6666666667%;
  1037. }
  1038. .offset-9 {
  1039. margin-left: 75%;
  1040. }
  1041. .offset-10 {
  1042. margin-left: 83.3333333333%;
  1043. }
  1044. .offset-11 {
  1045. margin-left: 91.6666666667%;
  1046. }
  1047. @media (min-width: 576px) {
  1048. .col-sm {
  1049. flex-basis: 0;
  1050. flex-grow: 1;
  1051. min-width: 0;
  1052. max-width: 100%;
  1053. }
  1054. .row-cols-sm-1 > * {
  1055. flex: 0 0 100%;
  1056. max-width: 100%;
  1057. }
  1058. .row-cols-sm-2 > * {
  1059. flex: 0 0 50%;
  1060. max-width: 50%;
  1061. }
  1062. .row-cols-sm-3 > * {
  1063. flex: 0 0 33.3333333333%;
  1064. max-width: 33.3333333333%;
  1065. }
  1066. .row-cols-sm-4 > * {
  1067. flex: 0 0 25%;
  1068. max-width: 25%;
  1069. }
  1070. .row-cols-sm-5 > * {
  1071. flex: 0 0 20%;
  1072. max-width: 20%;
  1073. }
  1074. .row-cols-sm-6 > * {
  1075. flex: 0 0 16.6666666667%;
  1076. max-width: 16.6666666667%;
  1077. }
  1078. .col-sm-auto {
  1079. flex: 0 0 auto;
  1080. width: auto;
  1081. max-width: 100%;
  1082. }
  1083. .col-sm-1 {
  1084. flex: 0 0 8.3333333333%;
  1085. max-width: 8.3333333333%;
  1086. }
  1087. .col-sm-2 {
  1088. flex: 0 0 16.6666666667%;
  1089. max-width: 16.6666666667%;
  1090. }
  1091. .col-sm-3 {
  1092. flex: 0 0 25%;
  1093. max-width: 25%;
  1094. }
  1095. .col-sm-4 {
  1096. flex: 0 0 33.3333333333%;
  1097. max-width: 33.3333333333%;
  1098. }
  1099. .col-sm-5 {
  1100. flex: 0 0 41.6666666667%;
  1101. max-width: 41.6666666667%;
  1102. }
  1103. .col-sm-6 {
  1104. flex: 0 0 50%;
  1105. max-width: 50%;
  1106. }
  1107. .col-sm-7 {
  1108. flex: 0 0 58.3333333333%;
  1109. max-width: 58.3333333333%;
  1110. }
  1111. .col-sm-8 {
  1112. flex: 0 0 66.6666666667%;
  1113. max-width: 66.6666666667%;
  1114. }
  1115. .col-sm-9 {
  1116. flex: 0 0 75%;
  1117. max-width: 75%;
  1118. }
  1119. .col-sm-10 {
  1120. flex: 0 0 83.3333333333%;
  1121. max-width: 83.3333333333%;
  1122. }
  1123. .col-sm-11 {
  1124. flex: 0 0 91.6666666667%;
  1125. max-width: 91.6666666667%;
  1126. }
  1127. .col-sm-12 {
  1128. flex: 0 0 100%;
  1129. max-width: 100%;
  1130. }
  1131. .order-sm-first {
  1132. order: -1;
  1133. }
  1134. .order-sm-last {
  1135. order: 13;
  1136. }
  1137. .order-sm-0 {
  1138. order: 0;
  1139. }
  1140. .order-sm-1 {
  1141. order: 1;
  1142. }
  1143. .order-sm-2 {
  1144. order: 2;
  1145. }
  1146. .order-sm-3 {
  1147. order: 3;
  1148. }
  1149. .order-sm-4 {
  1150. order: 4;
  1151. }
  1152. .order-sm-5 {
  1153. order: 5;
  1154. }
  1155. .order-sm-6 {
  1156. order: 6;
  1157. }
  1158. .order-sm-7 {
  1159. order: 7;
  1160. }
  1161. .order-sm-8 {
  1162. order: 8;
  1163. }
  1164. .order-sm-9 {
  1165. order: 9;
  1166. }
  1167. .order-sm-10 {
  1168. order: 10;
  1169. }
  1170. .order-sm-11 {
  1171. order: 11;
  1172. }
  1173. .order-sm-12 {
  1174. order: 12;
  1175. }
  1176. .offset-sm-0 {
  1177. margin-left: 0;
  1178. }
  1179. .offset-sm-1 {
  1180. margin-left: 8.3333333333%;
  1181. }
  1182. .offset-sm-2 {
  1183. margin-left: 16.6666666667%;
  1184. }
  1185. .offset-sm-3 {
  1186. margin-left: 25%;
  1187. }
  1188. .offset-sm-4 {
  1189. margin-left: 33.3333333333%;
  1190. }
  1191. .offset-sm-5 {
  1192. margin-left: 41.6666666667%;
  1193. }
  1194. .offset-sm-6 {
  1195. margin-left: 50%;
  1196. }
  1197. .offset-sm-7 {
  1198. margin-left: 58.3333333333%;
  1199. }
  1200. .offset-sm-8 {
  1201. margin-left: 66.6666666667%;
  1202. }
  1203. .offset-sm-9 {
  1204. margin-left: 75%;
  1205. }
  1206. .offset-sm-10 {
  1207. margin-left: 83.3333333333%;
  1208. }
  1209. .offset-sm-11 {
  1210. margin-left: 91.6666666667%;
  1211. }
  1212. }
  1213. @media (min-width: 768px) {
  1214. .col-md {
  1215. flex-basis: 0;
  1216. flex-grow: 1;
  1217. min-width: 0;
  1218. max-width: 100%;
  1219. }
  1220. .row-cols-md-1 > * {
  1221. flex: 0 0 100%;
  1222. max-width: 100%;
  1223. }
  1224. .row-cols-md-2 > * {
  1225. flex: 0 0 50%;
  1226. max-width: 50%;
  1227. }
  1228. .row-cols-md-3 > * {
  1229. flex: 0 0 33.3333333333%;
  1230. max-width: 33.3333333333%;
  1231. }
  1232. .row-cols-md-4 > * {
  1233. flex: 0 0 25%;
  1234. max-width: 25%;
  1235. }
  1236. .row-cols-md-5 > * {
  1237. flex: 0 0 20%;
  1238. max-width: 20%;
  1239. }
  1240. .row-cols-md-6 > * {
  1241. flex: 0 0 16.6666666667%;
  1242. max-width: 16.6666666667%;
  1243. }
  1244. .col-md-auto {
  1245. flex: 0 0 auto;
  1246. width: auto;
  1247. max-width: 100%;
  1248. }
  1249. .col-md-1 {
  1250. flex: 0 0 8.3333333333%;
  1251. max-width: 8.3333333333%;
  1252. }
  1253. .col-md-2 {
  1254. flex: 0 0 16.6666666667%;
  1255. max-width: 16.6666666667%;
  1256. }
  1257. .col-md-3 {
  1258. flex: 0 0 25%;
  1259. max-width: 25%;
  1260. }
  1261. .col-md-4 {
  1262. flex: 0 0 33.3333333333%;
  1263. max-width: 33.3333333333%;
  1264. }
  1265. .col-md-5 {
  1266. flex: 0 0 41.6666666667%;
  1267. max-width: 41.6666666667%;
  1268. }
  1269. .col-md-6 {
  1270. flex: 0 0 50%;
  1271. max-width: 50%;
  1272. }
  1273. .col-md-7 {
  1274. flex: 0 0 58.3333333333%;
  1275. max-width: 58.3333333333%;
  1276. }
  1277. .col-md-8 {
  1278. flex: 0 0 66.6666666667%;
  1279. max-width: 66.6666666667%;
  1280. }
  1281. .col-md-9 {
  1282. flex: 0 0 75%;
  1283. max-width: 75%;
  1284. }
  1285. .col-md-10 {
  1286. flex: 0 0 83.3333333333%;
  1287. max-width: 83.3333333333%;
  1288. }
  1289. .col-md-11 {
  1290. flex: 0 0 91.6666666667%;
  1291. max-width: 91.6666666667%;
  1292. }
  1293. .col-md-12 {
  1294. flex: 0 0 100%;
  1295. max-width: 100%;
  1296. }
  1297. .order-md-first {
  1298. order: -1;
  1299. }
  1300. .order-md-last {
  1301. order: 13;
  1302. }
  1303. .order-md-0 {
  1304. order: 0;
  1305. }
  1306. .order-md-1 {
  1307. order: 1;
  1308. }
  1309. .order-md-2 {
  1310. order: 2;
  1311. }
  1312. .order-md-3 {
  1313. order: 3;
  1314. }
  1315. .order-md-4 {
  1316. order: 4;
  1317. }
  1318. .order-md-5 {
  1319. order: 5;
  1320. }
  1321. .order-md-6 {
  1322. order: 6;
  1323. }
  1324. .order-md-7 {
  1325. order: 7;
  1326. }
  1327. .order-md-8 {
  1328. order: 8;
  1329. }
  1330. .order-md-9 {
  1331. order: 9;
  1332. }
  1333. .order-md-10 {
  1334. order: 10;
  1335. }
  1336. .order-md-11 {
  1337. order: 11;
  1338. }
  1339. .order-md-12 {
  1340. order: 12;
  1341. }
  1342. .offset-md-0 {
  1343. margin-left: 0;
  1344. }
  1345. .offset-md-1 {
  1346. margin-left: 8.3333333333%;
  1347. }
  1348. .offset-md-2 {
  1349. margin-left: 16.6666666667%;
  1350. }
  1351. .offset-md-3 {
  1352. margin-left: 25%;
  1353. }
  1354. .offset-md-4 {
  1355. margin-left: 33.3333333333%;
  1356. }
  1357. .offset-md-5 {
  1358. margin-left: 41.6666666667%;
  1359. }
  1360. .offset-md-6 {
  1361. margin-left: 50%;
  1362. }
  1363. .offset-md-7 {
  1364. margin-left: 58.3333333333%;
  1365. }
  1366. .offset-md-8 {
  1367. margin-left: 66.6666666667%;
  1368. }
  1369. .offset-md-9 {
  1370. margin-left: 75%;
  1371. }
  1372. .offset-md-10 {
  1373. margin-left: 83.3333333333%;
  1374. }
  1375. .offset-md-11 {
  1376. margin-left: 91.6666666667%;
  1377. }
  1378. }
  1379. @media (min-width: 992px) {
  1380. .col-lg {
  1381. flex-basis: 0;
  1382. flex-grow: 1;
  1383. min-width: 0;
  1384. max-width: 100%;
  1385. }
  1386. .row-cols-lg-1 > * {
  1387. flex: 0 0 100%;
  1388. max-width: 100%;
  1389. }
  1390. .row-cols-lg-2 > * {
  1391. flex: 0 0 50%;
  1392. max-width: 50%;
  1393. }
  1394. .row-cols-lg-3 > * {
  1395. flex: 0 0 33.3333333333%;
  1396. max-width: 33.3333333333%;
  1397. }
  1398. .row-cols-lg-4 > * {
  1399. flex: 0 0 25%;
  1400. max-width: 25%;
  1401. }
  1402. .row-cols-lg-5 > * {
  1403. flex: 0 0 20%;
  1404. max-width: 20%;
  1405. }
  1406. .row-cols-lg-6 > * {
  1407. flex: 0 0 16.6666666667%;
  1408. max-width: 16.6666666667%;
  1409. }
  1410. .col-lg-auto {
  1411. flex: 0 0 auto;
  1412. width: auto;
  1413. max-width: 100%;
  1414. }
  1415. .col-lg-1 {
  1416. flex: 0 0 8.3333333333%;
  1417. max-width: 8.3333333333%;
  1418. }
  1419. .col-lg-2 {
  1420. flex: 0 0 16.6666666667%;
  1421. max-width: 16.6666666667%;
  1422. }
  1423. .col-lg-3 {
  1424. flex: 0 0 25%;
  1425. max-width: 25%;
  1426. }
  1427. .col-lg-4 {
  1428. flex: 0 0 33.3333333333%;
  1429. max-width: 33.3333333333%;
  1430. }
  1431. .col-lg-5 {
  1432. flex: 0 0 41.6666666667%;
  1433. max-width: 41.6666666667%;
  1434. }
  1435. .col-lg-6 {
  1436. flex: 0 0 50%;
  1437. max-width: 50%;
  1438. }
  1439. .col-lg-7 {
  1440. flex: 0 0 58.3333333333%;
  1441. max-width: 58.3333333333%;
  1442. }
  1443. .col-lg-8 {
  1444. flex: 0 0 66.6666666667%;
  1445. max-width: 66.6666666667%;
  1446. }
  1447. .col-lg-9 {
  1448. flex: 0 0 75%;
  1449. max-width: 75%;
  1450. }
  1451. .col-lg-10 {
  1452. flex: 0 0 83.3333333333%;
  1453. max-width: 83.3333333333%;
  1454. }
  1455. .col-lg-11 {
  1456. flex: 0 0 91.6666666667%;
  1457. max-width: 91.6666666667%;
  1458. }
  1459. .col-lg-12 {
  1460. flex: 0 0 100%;
  1461. max-width: 100%;
  1462. }
  1463. .order-lg-first {
  1464. order: -1;
  1465. }
  1466. .order-lg-last {
  1467. order: 13;
  1468. }
  1469. .order-lg-0 {
  1470. order: 0;
  1471. }
  1472. .order-lg-1 {
  1473. order: 1;
  1474. }
  1475. .order-lg-2 {
  1476. order: 2;
  1477. }
  1478. .order-lg-3 {
  1479. order: 3;
  1480. }
  1481. .order-lg-4 {
  1482. order: 4;
  1483. }
  1484. .order-lg-5 {
  1485. order: 5;
  1486. }
  1487. .order-lg-6 {
  1488. order: 6;
  1489. }
  1490. .order-lg-7 {
  1491. order: 7;
  1492. }
  1493. .order-lg-8 {
  1494. order: 8;
  1495. }
  1496. .order-lg-9 {
  1497. order: 9;
  1498. }
  1499. .order-lg-10 {
  1500. order: 10;
  1501. }
  1502. .order-lg-11 {
  1503. order: 11;
  1504. }
  1505. .order-lg-12 {
  1506. order: 12;
  1507. }
  1508. .offset-lg-0 {
  1509. margin-left: 0;
  1510. }
  1511. .offset-lg-1 {
  1512. margin-left: 8.3333333333%;
  1513. }
  1514. .offset-lg-2 {
  1515. margin-left: 16.6666666667%;
  1516. }
  1517. .offset-lg-3 {
  1518. margin-left: 25%;
  1519. }
  1520. .offset-lg-4 {
  1521. margin-left: 33.3333333333%;
  1522. }
  1523. .offset-lg-5 {
  1524. margin-left: 41.6666666667%;
  1525. }
  1526. .offset-lg-6 {
  1527. margin-left: 50%;
  1528. }
  1529. .offset-lg-7 {
  1530. margin-left: 58.3333333333%;
  1531. }
  1532. .offset-lg-8 {
  1533. margin-left: 66.6666666667%;
  1534. }
  1535. .offset-lg-9 {
  1536. margin-left: 75%;
  1537. }
  1538. .offset-lg-10 {
  1539. margin-left: 83.3333333333%;
  1540. }
  1541. .offset-lg-11 {
  1542. margin-left: 91.6666666667%;
  1543. }
  1544. }
  1545. @media (min-width: 1200px) {
  1546. .col-xl {
  1547. flex-basis: 0;
  1548. flex-grow: 1;
  1549. min-width: 0;
  1550. max-width: 100%;
  1551. }
  1552. .row-cols-xl-1 > * {
  1553. flex: 0 0 100%;
  1554. max-width: 100%;
  1555. }
  1556. .row-cols-xl-2 > * {
  1557. flex: 0 0 50%;
  1558. max-width: 50%;
  1559. }
  1560. .row-cols-xl-3 > * {
  1561. flex: 0 0 33.3333333333%;
  1562. max-width: 33.3333333333%;
  1563. }
  1564. .row-cols-xl-4 > * {
  1565. flex: 0 0 25%;
  1566. max-width: 25%;
  1567. }
  1568. .row-cols-xl-5 > * {
  1569. flex: 0 0 20%;
  1570. max-width: 20%;
  1571. }
  1572. .row-cols-xl-6 > * {
  1573. flex: 0 0 16.6666666667%;
  1574. max-width: 16.6666666667%;
  1575. }
  1576. .col-xl-auto {
  1577. flex: 0 0 auto;
  1578. width: auto;
  1579. max-width: 100%;
  1580. }
  1581. .col-xl-1 {
  1582. flex: 0 0 8.3333333333%;
  1583. max-width: 8.3333333333%;
  1584. }
  1585. .col-xl-2 {
  1586. flex: 0 0 16.6666666667%;
  1587. max-width: 16.6666666667%;
  1588. }
  1589. .col-xl-3 {
  1590. flex: 0 0 25%;
  1591. max-width: 25%;
  1592. }
  1593. .col-xl-4 {
  1594. flex: 0 0 33.3333333333%;
  1595. max-width: 33.3333333333%;
  1596. }
  1597. .col-xl-5 {
  1598. flex: 0 0 41.6666666667%;
  1599. max-width: 41.6666666667%;
  1600. }
  1601. .col-xl-6 {
  1602. flex: 0 0 50%;
  1603. max-width: 50%;
  1604. }
  1605. .col-xl-7 {
  1606. flex: 0 0 58.3333333333%;
  1607. max-width: 58.3333333333%;
  1608. }
  1609. .col-xl-8 {
  1610. flex: 0 0 66.6666666667%;
  1611. max-width: 66.6666666667%;
  1612. }
  1613. .col-xl-9 {
  1614. flex: 0 0 75%;
  1615. max-width: 75%;
  1616. }
  1617. .col-xl-10 {
  1618. flex: 0 0 83.3333333333%;
  1619. max-width: 83.3333333333%;
  1620. }
  1621. .col-xl-11 {
  1622. flex: 0 0 91.6666666667%;
  1623. max-width: 91.6666666667%;
  1624. }
  1625. .col-xl-12 {
  1626. flex: 0 0 100%;
  1627. max-width: 100%;
  1628. }
  1629. .order-xl-first {
  1630. order: -1;
  1631. }
  1632. .order-xl-last {
  1633. order: 13;
  1634. }
  1635. .order-xl-0 {
  1636. order: 0;
  1637. }
  1638. .order-xl-1 {
  1639. order: 1;
  1640. }
  1641. .order-xl-2 {
  1642. order: 2;
  1643. }
  1644. .order-xl-3 {
  1645. order: 3;
  1646. }
  1647. .order-xl-4 {
  1648. order: 4;
  1649. }
  1650. .order-xl-5 {
  1651. order: 5;
  1652. }
  1653. .order-xl-6 {
  1654. order: 6;
  1655. }
  1656. .order-xl-7 {
  1657. order: 7;
  1658. }
  1659. .order-xl-8 {
  1660. order: 8;
  1661. }
  1662. .order-xl-9 {
  1663. order: 9;
  1664. }
  1665. .order-xl-10 {
  1666. order: 10;
  1667. }
  1668. .order-xl-11 {
  1669. order: 11;
  1670. }
  1671. .order-xl-12 {
  1672. order: 12;
  1673. }
  1674. .offset-xl-0 {
  1675. margin-left: 0;
  1676. }
  1677. .offset-xl-1 {
  1678. margin-left: 8.3333333333%;
  1679. }
  1680. .offset-xl-2 {
  1681. margin-left: 16.6666666667%;
  1682. }
  1683. .offset-xl-3 {
  1684. margin-left: 25%;
  1685. }
  1686. .offset-xl-4 {
  1687. margin-left: 33.3333333333%;
  1688. }
  1689. .offset-xl-5 {
  1690. margin-left: 41.6666666667%;
  1691. }
  1692. .offset-xl-6 {
  1693. margin-left: 50%;
  1694. }
  1695. .offset-xl-7 {
  1696. margin-left: 58.3333333333%;
  1697. }
  1698. .offset-xl-8 {
  1699. margin-left: 66.6666666667%;
  1700. }
  1701. .offset-xl-9 {
  1702. margin-left: 75%;
  1703. }
  1704. .offset-xl-10 {
  1705. margin-left: 83.3333333333%;
  1706. }
  1707. .offset-xl-11 {
  1708. margin-left: 91.6666666667%;
  1709. }
  1710. }
  1711. .table {
  1712. width: 100%;
  1713. margin-bottom: 1rem;
  1714. color: #212529;
  1715. }
  1716. .table th,
  1717. .table td {
  1718. padding: 0.75rem;
  1719. vertical-align: top;
  1720. border-top: 1px solid #dee2e6;
  1721. }
  1722. .table thead th {
  1723. vertical-align: bottom;
  1724. border-bottom: 2px solid #dee2e6;
  1725. }
  1726. .table tbody + tbody {
  1727. border-top: 2px solid #dee2e6;
  1728. }
  1729. .table-sm th,
  1730. .table-sm td {
  1731. padding: 0.3rem;
  1732. }
  1733. .table-bordered {
  1734. border: 1px solid #dee2e6;
  1735. }
  1736. .table-bordered th,
  1737. .table-bordered td {
  1738. border: 1px solid #dee2e6;
  1739. }
  1740. .table-bordered thead th,
  1741. .table-bordered thead td {
  1742. border-bottom-width: 2px;
  1743. }
  1744. .table-borderless th,
  1745. .table-borderless td,
  1746. .table-borderless thead th,
  1747. .table-borderless tbody + tbody {
  1748. border: 0;
  1749. }
  1750. .table-striped tbody tr:nth-of-type(odd) {
  1751. background-color: rgba(0, 0, 0, 0.05);
  1752. }
  1753. .table-hover tbody tr:hover {
  1754. color: #212529;
  1755. background-color: rgba(0, 0, 0, 0.075);
  1756. }
  1757. .table-primary,
  1758. .table-primary > th,
  1759. .table-primary > td {
  1760. background-color: #c6e0f5;
  1761. }
  1762. .table-primary th,
  1763. .table-primary td,
  1764. .table-primary thead th,
  1765. .table-primary tbody + tbody {
  1766. border-color: #95c5ed;
  1767. }
  1768. .table-hover .table-primary:hover {
  1769. background-color: #b0d4f1;
  1770. }
  1771. .table-hover .table-primary:hover > td,
  1772. .table-hover .table-primary:hover > th {
  1773. background-color: #b0d4f1;
  1774. }
  1775. .table-secondary,
  1776. .table-secondary > th,
  1777. .table-secondary > td {
  1778. background-color: #d6d8db;
  1779. }
  1780. .table-secondary th,
  1781. .table-secondary td,
  1782. .table-secondary thead th,
  1783. .table-secondary tbody + tbody {
  1784. border-color: #b3b7bb;
  1785. }
  1786. .table-hover .table-secondary:hover {
  1787. background-color: #c8cbcf;
  1788. }
  1789. .table-hover .table-secondary:hover > td,
  1790. .table-hover .table-secondary:hover > th {
  1791. background-color: #c8cbcf;
  1792. }
  1793. .table-success,
  1794. .table-success > th,
  1795. .table-success > td {
  1796. background-color: #c7eed8;
  1797. }
  1798. .table-success th,
  1799. .table-success td,
  1800. .table-success thead th,
  1801. .table-success tbody + tbody {
  1802. border-color: #98dfb6;
  1803. }
  1804. .table-hover .table-success:hover {
  1805. background-color: #b3e8ca;
  1806. }
  1807. .table-hover .table-success:hover > td,
  1808. .table-hover .table-success:hover > th {
  1809. background-color: #b3e8ca;
  1810. }
  1811. .table-info,
  1812. .table-info > th,
  1813. .table-info > td {
  1814. background-color: #d6e9f9;
  1815. }
  1816. .table-info th,
  1817. .table-info td,
  1818. .table-info thead th,
  1819. .table-info tbody + tbody {
  1820. border-color: #b3d7f5;
  1821. }
  1822. .table-hover .table-info:hover {
  1823. background-color: #c0ddf6;
  1824. }
  1825. .table-hover .table-info:hover > td,
  1826. .table-hover .table-info:hover > th {
  1827. background-color: #c0ddf6;
  1828. }
  1829. .table-warning,
  1830. .table-warning > th,
  1831. .table-warning > td {
  1832. background-color: #fffacc;
  1833. }
  1834. .table-warning th,
  1835. .table-warning td,
  1836. .table-warning thead th,
  1837. .table-warning tbody + tbody {
  1838. border-color: #fff6a1;
  1839. }
  1840. .table-hover .table-warning:hover {
  1841. background-color: #fff8b3;
  1842. }
  1843. .table-hover .table-warning:hover > td,
  1844. .table-hover .table-warning:hover > th {
  1845. background-color: #fff8b3;
  1846. }
  1847. .table-danger,
  1848. .table-danger > th,
  1849. .table-danger > td {
  1850. background-color: #f7c6c5;
  1851. }
  1852. .table-danger th,
  1853. .table-danger td,
  1854. .table-danger thead th,
  1855. .table-danger tbody + tbody {
  1856. border-color: #f09593;
  1857. }
  1858. .table-hover .table-danger:hover {
  1859. background-color: #f4b0af;
  1860. }
  1861. .table-hover .table-danger:hover > td,
  1862. .table-hover .table-danger:hover > th {
  1863. background-color: #f4b0af;
  1864. }
  1865. .table-light,
  1866. .table-light > th,
  1867. .table-light > td {
  1868. background-color: #fdfdfe;
  1869. }
  1870. .table-light th,
  1871. .table-light td,
  1872. .table-light thead th,
  1873. .table-light tbody + tbody {
  1874. border-color: #fbfcfc;
  1875. }
  1876. .table-hover .table-light:hover {
  1877. background-color: #ececf6;
  1878. }
  1879. .table-hover .table-light:hover > td,
  1880. .table-hover .table-light:hover > th {
  1881. background-color: #ececf6;
  1882. }
  1883. .table-dark,
  1884. .table-dark > th,
  1885. .table-dark > td {
  1886. background-color: #c6c8ca;
  1887. }
  1888. .table-dark th,
  1889. .table-dark td,
  1890. .table-dark thead th,
  1891. .table-dark tbody + tbody {
  1892. border-color: #95999c;
  1893. }
  1894. .table-hover .table-dark:hover {
  1895. background-color: #b9bbbe;
  1896. }
  1897. .table-hover .table-dark:hover > td,
  1898. .table-hover .table-dark:hover > th {
  1899. background-color: #b9bbbe;
  1900. }
  1901. .table-active,
  1902. .table-active > th,
  1903. .table-active > td {
  1904. background-color: rgba(0, 0, 0, 0.075);
  1905. }
  1906. .table-hover .table-active:hover {
  1907. background-color: rgba(0, 0, 0, 0.075);
  1908. }
  1909. .table-hover .table-active:hover > td,
  1910. .table-hover .table-active:hover > th {
  1911. background-color: rgba(0, 0, 0, 0.075);
  1912. }
  1913. .table .thead-dark th {
  1914. color: #fff;
  1915. background-color: #343a40;
  1916. border-color: #454d55;
  1917. }
  1918. .table .thead-light th {
  1919. color: #495057;
  1920. background-color: #e9ecef;
  1921. border-color: #dee2e6;
  1922. }
  1923. .table-dark {
  1924. color: #fff;
  1925. background-color: #343a40;
  1926. }
  1927. .table-dark th,
  1928. .table-dark td,
  1929. .table-dark thead th {
  1930. border-color: #454d55;
  1931. }
  1932. .table-dark.table-bordered {
  1933. border: 0;
  1934. }
  1935. .table-dark.table-striped tbody tr:nth-of-type(odd) {
  1936. background-color: rgba(255, 255, 255, 0.05);
  1937. }
  1938. .table-dark.table-hover tbody tr:hover {
  1939. color: #fff;
  1940. background-color: rgba(255, 255, 255, 0.075);
  1941. }
  1942. @media (max-width: 575.98px) {
  1943. .table-responsive-sm {
  1944. display: block;
  1945. width: 100%;
  1946. overflow-x: auto;
  1947. -webkit-overflow-scrolling: touch;
  1948. }
  1949. .table-responsive-sm > .table-bordered {
  1950. border: 0;
  1951. }
  1952. }
  1953. @media (max-width: 767.98px) {
  1954. .table-responsive-md {
  1955. display: block;
  1956. width: 100%;
  1957. overflow-x: auto;
  1958. -webkit-overflow-scrolling: touch;
  1959. }
  1960. .table-responsive-md > .table-bordered {
  1961. border: 0;
  1962. }
  1963. }
  1964. @media (max-width: 991.98px) {
  1965. .table-responsive-lg {
  1966. display: block;
  1967. width: 100%;
  1968. overflow-x: auto;
  1969. -webkit-overflow-scrolling: touch;
  1970. }
  1971. .table-responsive-lg > .table-bordered {
  1972. border: 0;
  1973. }
  1974. }
  1975. @media (max-width: 1199.98px) {
  1976. .table-responsive-xl {
  1977. display: block;
  1978. width: 100%;
  1979. overflow-x: auto;
  1980. -webkit-overflow-scrolling: touch;
  1981. }
  1982. .table-responsive-xl > .table-bordered {
  1983. border: 0;
  1984. }
  1985. }
  1986. .table-responsive {
  1987. display: block;
  1988. width: 100%;
  1989. overflow-x: auto;
  1990. -webkit-overflow-scrolling: touch;
  1991. }
  1992. .table-responsive > .table-bordered {
  1993. border: 0;
  1994. }
  1995. .form-control {
  1996. display: block;
  1997. width: 100%;
  1998. height: calc(1.6em + 0.75rem + 2px);
  1999. padding: 0.375rem 0.75rem;
  2000. font-size: 0.9rem;
  2001. font-weight: 400;
  2002. line-height: 1.6;
  2003. color: #495057;
  2004. background-color: #fff;
  2005. background-clip: padding-box;
  2006. border: 1px solid #ced4da;
  2007. border-radius: 0.25rem;
  2008. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2009. }
  2010. @media (prefers-reduced-motion: reduce) {
  2011. .form-control {
  2012. transition: none;
  2013. }
  2014. }
  2015. .form-control::-ms-expand {
  2016. background-color: transparent;
  2017. border: 0;
  2018. }
  2019. .form-control:-moz-focusring {
  2020. color: transparent;
  2021. text-shadow: 0 0 0 #495057;
  2022. }
  2023. .form-control:focus {
  2024. color: #495057;
  2025. background-color: #fff;
  2026. border-color: #a1cbef;
  2027. outline: 0;
  2028. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  2029. }
  2030. .form-control::-moz-placeholder {
  2031. color: #6c757d;
  2032. opacity: 1;
  2033. }
  2034. .form-control:-ms-input-placeholder {
  2035. color: #6c757d;
  2036. opacity: 1;
  2037. }
  2038. .form-control::-ms-input-placeholder {
  2039. color: #6c757d;
  2040. opacity: 1;
  2041. }
  2042. .form-control::placeholder {
  2043. color: #6c757d;
  2044. opacity: 1;
  2045. }
  2046. .form-control:disabled,
  2047. .form-control[readonly] {
  2048. background-color: #e9ecef;
  2049. opacity: 1;
  2050. }
  2051. input[type=date].form-control,
  2052. input[type=time].form-control,
  2053. input[type=datetime-local].form-control,
  2054. input[type=month].form-control {
  2055. -webkit-appearance: none;
  2056. -moz-appearance: none;
  2057. appearance: none;
  2058. }
  2059. select.form-control:focus::-ms-value {
  2060. color: #495057;
  2061. background-color: #fff;
  2062. }
  2063. .form-control-file,
  2064. .form-control-range {
  2065. display: block;
  2066. width: 100%;
  2067. }
  2068. .col-form-label {
  2069. padding-top: calc(0.375rem + 1px);
  2070. padding-bottom: calc(0.375rem + 1px);
  2071. margin-bottom: 0;
  2072. font-size: inherit;
  2073. line-height: 1.6;
  2074. }
  2075. .col-form-label-lg {
  2076. padding-top: calc(0.5rem + 1px);
  2077. padding-bottom: calc(0.5rem + 1px);
  2078. font-size: 1.125rem;
  2079. line-height: 1.5;
  2080. }
  2081. .col-form-label-sm {
  2082. padding-top: calc(0.25rem + 1px);
  2083. padding-bottom: calc(0.25rem + 1px);
  2084. font-size: 0.7875rem;
  2085. line-height: 1.5;
  2086. }
  2087. .form-control-plaintext {
  2088. display: block;
  2089. width: 100%;
  2090. padding: 0.375rem 0;
  2091. margin-bottom: 0;
  2092. font-size: 0.9rem;
  2093. line-height: 1.6;
  2094. color: #212529;
  2095. background-color: transparent;
  2096. border: solid transparent;
  2097. border-width: 1px 0;
  2098. }
  2099. .form-control-plaintext.form-control-sm,
  2100. .form-control-plaintext.form-control-lg {
  2101. padding-right: 0;
  2102. padding-left: 0;
  2103. }
  2104. .form-control-sm {
  2105. height: calc(1.5em + 0.5rem + 2px);
  2106. padding: 0.25rem 0.5rem;
  2107. font-size: 0.7875rem;
  2108. line-height: 1.5;
  2109. border-radius: 0.2rem;
  2110. }
  2111. .form-control-lg {
  2112. height: calc(1.5em + 1rem + 2px);
  2113. padding: 0.5rem 1rem;
  2114. font-size: 1.125rem;
  2115. line-height: 1.5;
  2116. border-radius: 0.3rem;
  2117. }
  2118. select.form-control[size],
  2119. select.form-control[multiple] {
  2120. height: auto;
  2121. }
  2122. textarea.form-control {
  2123. height: auto;
  2124. }
  2125. .form-group {
  2126. margin-bottom: 1rem;
  2127. }
  2128. .form-text {
  2129. display: block;
  2130. margin-top: 0.25rem;
  2131. }
  2132. .form-row {
  2133. display: flex;
  2134. flex-wrap: wrap;
  2135. margin-right: -5px;
  2136. margin-left: -5px;
  2137. }
  2138. .form-row > .col,
  2139. .form-row > [class*=col-] {
  2140. padding-right: 5px;
  2141. padding-left: 5px;
  2142. }
  2143. .form-check {
  2144. position: relative;
  2145. display: block;
  2146. padding-left: 1.25rem;
  2147. }
  2148. .form-check-input {
  2149. position: absolute;
  2150. margin-top: 0.3rem;
  2151. margin-left: -1.25rem;
  2152. }
  2153. .form-check-input[disabled] ~ .form-check-label,
  2154. .form-check-input:disabled ~ .form-check-label {
  2155. color: #6c757d;
  2156. }
  2157. .form-check-label {
  2158. margin-bottom: 0;
  2159. }
  2160. .form-check-inline {
  2161. display: inline-flex;
  2162. align-items: center;
  2163. padding-left: 0;
  2164. margin-right: 0.75rem;
  2165. }
  2166. .form-check-inline .form-check-input {
  2167. position: static;
  2168. margin-top: 0;
  2169. margin-right: 0.3125rem;
  2170. margin-left: 0;
  2171. }
  2172. .valid-feedback {
  2173. display: none;
  2174. width: 100%;
  2175. margin-top: 0.25rem;
  2176. font-size: 80%;
  2177. color: #38c172;
  2178. }
  2179. .valid-tooltip {
  2180. position: absolute;
  2181. top: 100%;
  2182. z-index: 5;
  2183. display: none;
  2184. max-width: 100%;
  2185. padding: 0.25rem 0.5rem;
  2186. margin-top: 0.1rem;
  2187. font-size: 0.7875rem;
  2188. line-height: 1.6;
  2189. color: #fff;
  2190. background-color: rgba(56, 193, 114, 0.9);
  2191. border-radius: 0.25rem;
  2192. }
  2193. .was-validated :valid ~ .valid-feedback,
  2194. .was-validated :valid ~ .valid-tooltip,
  2195. .is-valid ~ .valid-feedback,
  2196. .is-valid ~ .valid-tooltip {
  2197. display: block;
  2198. }
  2199. .was-validated .form-control:valid,
  2200. .form-control.is-valid {
  2201. border-color: #38c172;
  2202. padding-right: calc(1.6em + 0.75rem);
  2203. 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='%2338c172' 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");
  2204. background-repeat: no-repeat;
  2205. background-position: right calc(0.4em + 0.1875rem) center;
  2206. background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  2207. }
  2208. .was-validated .form-control:valid:focus,
  2209. .form-control.is-valid:focus {
  2210. border-color: #38c172;
  2211. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  2212. }
  2213. .was-validated textarea.form-control:valid,
  2214. textarea.form-control.is-valid {
  2215. padding-right: calc(1.6em + 0.75rem);
  2216. background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
  2217. }
  2218. .was-validated .custom-select:valid,
  2219. .custom-select.is-valid {
  2220. border-color: #38c172;
  2221. padding-right: calc(0.75em + 2.3125rem);
  2222. 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='%2338c172' 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.8em + 0.375rem) calc(0.8em + 0.375rem);
  2223. }
  2224. .was-validated .custom-select:valid:focus,
  2225. .custom-select.is-valid:focus {
  2226. border-color: #38c172;
  2227. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  2228. }
  2229. .was-validated .form-check-input:valid ~ .form-check-label,
  2230. .form-check-input.is-valid ~ .form-check-label {
  2231. color: #38c172;
  2232. }
  2233. .was-validated .form-check-input:valid ~ .valid-feedback,
  2234. .was-validated .form-check-input:valid ~ .valid-tooltip,
  2235. .form-check-input.is-valid ~ .valid-feedback,
  2236. .form-check-input.is-valid ~ .valid-tooltip {
  2237. display: block;
  2238. }
  2239. .was-validated .custom-control-input:valid ~ .custom-control-label,
  2240. .custom-control-input.is-valid ~ .custom-control-label {
  2241. color: #38c172;
  2242. }
  2243. .was-validated .custom-control-input:valid ~ .custom-control-label::before,
  2244. .custom-control-input.is-valid ~ .custom-control-label::before {
  2245. border-color: #38c172;
  2246. }
  2247. .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
  2248. .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  2249. border-color: #5cd08d;
  2250. background-color: #5cd08d;
  2251. }
  2252. .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
  2253. .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  2254. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  2255. }
  2256. .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
  2257. .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  2258. border-color: #38c172;
  2259. }
  2260. .was-validated .custom-file-input:valid ~ .custom-file-label,
  2261. .custom-file-input.is-valid ~ .custom-file-label {
  2262. border-color: #38c172;
  2263. }
  2264. .was-validated .custom-file-input:valid:focus ~ .custom-file-label,
  2265. .custom-file-input.is-valid:focus ~ .custom-file-label {
  2266. border-color: #38c172;
  2267. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  2268. }
  2269. .invalid-feedback {
  2270. display: none;
  2271. width: 100%;
  2272. margin-top: 0.25rem;
  2273. font-size: 80%;
  2274. color: #e3342f;
  2275. }
  2276. .invalid-tooltip {
  2277. position: absolute;
  2278. top: 100%;
  2279. z-index: 5;
  2280. display: none;
  2281. max-width: 100%;
  2282. padding: 0.25rem 0.5rem;
  2283. margin-top: 0.1rem;
  2284. font-size: 0.7875rem;
  2285. line-height: 1.6;
  2286. color: #fff;
  2287. background-color: rgba(227, 52, 47, 0.9);
  2288. border-radius: 0.25rem;
  2289. }
  2290. .was-validated :invalid ~ .invalid-feedback,
  2291. .was-validated :invalid ~ .invalid-tooltip,
  2292. .is-invalid ~ .invalid-feedback,
  2293. .is-invalid ~ .invalid-tooltip {
  2294. display: block;
  2295. }
  2296. .was-validated .form-control:invalid,
  2297. .form-control.is-invalid {
  2298. border-color: #e3342f;
  2299. padding-right: calc(1.6em + 0.75rem);
  2300. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' 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='%23e3342f' stroke='none'/%3e%3c/svg%3e");
  2301. background-repeat: no-repeat;
  2302. background-position: right calc(0.4em + 0.1875rem) center;
  2303. background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  2304. }
  2305. .was-validated .form-control:invalid:focus,
  2306. .form-control.is-invalid:focus {
  2307. border-color: #e3342f;
  2308. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2309. }
  2310. .was-validated textarea.form-control:invalid,
  2311. textarea.form-control.is-invalid {
  2312. padding-right: calc(1.6em + 0.75rem);
  2313. background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
  2314. }
  2315. .was-validated .custom-select:invalid,
  2316. .custom-select.is-invalid {
  2317. border-color: #e3342f;
  2318. padding-right: calc(0.75em + 2.3125rem);
  2319. 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='%23e3342f' 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='%23e3342f' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  2320. }
  2321. .was-validated .custom-select:invalid:focus,
  2322. .custom-select.is-invalid:focus {
  2323. border-color: #e3342f;
  2324. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2325. }
  2326. .was-validated .form-check-input:invalid ~ .form-check-label,
  2327. .form-check-input.is-invalid ~ .form-check-label {
  2328. color: #e3342f;
  2329. }
  2330. .was-validated .form-check-input:invalid ~ .invalid-feedback,
  2331. .was-validated .form-check-input:invalid ~ .invalid-tooltip,
  2332. .form-check-input.is-invalid ~ .invalid-feedback,
  2333. .form-check-input.is-invalid ~ .invalid-tooltip {
  2334. display: block;
  2335. }
  2336. .was-validated .custom-control-input:invalid ~ .custom-control-label,
  2337. .custom-control-input.is-invalid ~ .custom-control-label {
  2338. color: #e3342f;
  2339. }
  2340. .was-validated .custom-control-input:invalid ~ .custom-control-label::before,
  2341. .custom-control-input.is-invalid ~ .custom-control-label::before {
  2342. border-color: #e3342f;
  2343. }
  2344. .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
  2345. .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  2346. border-color: #e9605c;
  2347. background-color: #e9605c;
  2348. }
  2349. .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
  2350. .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  2351. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2352. }
  2353. .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
  2354. .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  2355. border-color: #e3342f;
  2356. }
  2357. .was-validated .custom-file-input:invalid ~ .custom-file-label,
  2358. .custom-file-input.is-invalid ~ .custom-file-label {
  2359. border-color: #e3342f;
  2360. }
  2361. .was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
  2362. .custom-file-input.is-invalid:focus ~ .custom-file-label {
  2363. border-color: #e3342f;
  2364. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2365. }
  2366. .form-inline {
  2367. display: flex;
  2368. flex-flow: row wrap;
  2369. align-items: center;
  2370. }
  2371. .form-inline .form-check {
  2372. width: 100%;
  2373. }
  2374. @media (min-width: 576px) {
  2375. .form-inline label {
  2376. display: flex;
  2377. align-items: center;
  2378. justify-content: center;
  2379. margin-bottom: 0;
  2380. }
  2381. .form-inline .form-group {
  2382. display: flex;
  2383. flex: 0 0 auto;
  2384. flex-flow: row wrap;
  2385. align-items: center;
  2386. margin-bottom: 0;
  2387. }
  2388. .form-inline .form-control {
  2389. display: inline-block;
  2390. width: auto;
  2391. vertical-align: middle;
  2392. }
  2393. .form-inline .form-control-plaintext {
  2394. display: inline-block;
  2395. }
  2396. .form-inline .input-group,
  2397. .form-inline .custom-select {
  2398. width: auto;
  2399. }
  2400. .form-inline .form-check {
  2401. display: flex;
  2402. align-items: center;
  2403. justify-content: center;
  2404. width: auto;
  2405. padding-left: 0;
  2406. }
  2407. .form-inline .form-check-input {
  2408. position: relative;
  2409. flex-shrink: 0;
  2410. margin-top: 0;
  2411. margin-right: 0.25rem;
  2412. margin-left: 0;
  2413. }
  2414. .form-inline .custom-control {
  2415. align-items: center;
  2416. justify-content: center;
  2417. }
  2418. .form-inline .custom-control-label {
  2419. margin-bottom: 0;
  2420. }
  2421. }
  2422. .btn {
  2423. display: inline-block;
  2424. font-weight: 400;
  2425. color: #212529;
  2426. text-align: center;
  2427. vertical-align: middle;
  2428. -webkit-user-select: none;
  2429. -moz-user-select: none;
  2430. -ms-user-select: none;
  2431. user-select: none;
  2432. background-color: transparent;
  2433. border: 1px solid transparent;
  2434. padding: 0.375rem 0.75rem;
  2435. font-size: 0.9rem;
  2436. line-height: 1.6;
  2437. border-radius: 0.25rem;
  2438. 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;
  2439. }
  2440. @media (prefers-reduced-motion: reduce) {
  2441. .btn {
  2442. transition: none;
  2443. }
  2444. }
  2445. .btn:hover {
  2446. color: #212529;
  2447. text-decoration: none;
  2448. }
  2449. .btn:focus,
  2450. .btn.focus {
  2451. outline: 0;
  2452. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  2453. }
  2454. .btn.disabled,
  2455. .btn:disabled {
  2456. opacity: 0.65;
  2457. }
  2458. .btn:not(:disabled):not(.disabled) {
  2459. cursor: pointer;
  2460. }
  2461. a.btn.disabled,
  2462. fieldset:disabled a.btn {
  2463. pointer-events: none;
  2464. }
  2465. .btn-primary {
  2466. color: #fff;
  2467. background-color: #3490dc;
  2468. border-color: #3490dc;
  2469. }
  2470. .btn-primary:hover {
  2471. color: #fff;
  2472. background-color: #227dc7;
  2473. border-color: #2176bd;
  2474. }
  2475. .btn-primary:focus,
  2476. .btn-primary.focus {
  2477. color: #fff;
  2478. background-color: #227dc7;
  2479. border-color: #2176bd;
  2480. box-shadow: 0 0 0 0.2rem rgba(82, 161, 225, 0.5);
  2481. }
  2482. .btn-primary.disabled,
  2483. .btn-primary:disabled {
  2484. color: #fff;
  2485. background-color: #3490dc;
  2486. border-color: #3490dc;
  2487. }
  2488. .btn-primary:not(:disabled):not(.disabled):active,
  2489. .btn-primary:not(:disabled):not(.disabled).active,
  2490. .show > .btn-primary.dropdown-toggle {
  2491. color: #fff;
  2492. background-color: #2176bd;
  2493. border-color: #1f6fb2;
  2494. }
  2495. .btn-primary:not(:disabled):not(.disabled):active:focus,
  2496. .btn-primary:not(:disabled):not(.disabled).active:focus,
  2497. .show > .btn-primary.dropdown-toggle:focus {
  2498. box-shadow: 0 0 0 0.2rem rgba(82, 161, 225, 0.5);
  2499. }
  2500. .btn-secondary {
  2501. color: #fff;
  2502. background-color: #6c757d;
  2503. border-color: #6c757d;
  2504. }
  2505. .btn-secondary:hover {
  2506. color: #fff;
  2507. background-color: #5a6268;
  2508. border-color: #545b62;
  2509. }
  2510. .btn-secondary:focus,
  2511. .btn-secondary.focus {
  2512. color: #fff;
  2513. background-color: #5a6268;
  2514. border-color: #545b62;
  2515. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  2516. }
  2517. .btn-secondary.disabled,
  2518. .btn-secondary:disabled {
  2519. color: #fff;
  2520. background-color: #6c757d;
  2521. border-color: #6c757d;
  2522. }
  2523. .btn-secondary:not(:disabled):not(.disabled):active,
  2524. .btn-secondary:not(:disabled):not(.disabled).active,
  2525. .show > .btn-secondary.dropdown-toggle {
  2526. color: #fff;
  2527. background-color: #545b62;
  2528. border-color: #4e555b;
  2529. }
  2530. .btn-secondary:not(:disabled):not(.disabled):active:focus,
  2531. .btn-secondary:not(:disabled):not(.disabled).active:focus,
  2532. .show > .btn-secondary.dropdown-toggle:focus {
  2533. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  2534. }
  2535. .btn-success {
  2536. color: #fff;
  2537. background-color: #38c172;
  2538. border-color: #38c172;
  2539. }
  2540. .btn-success:hover {
  2541. color: #fff;
  2542. background-color: #2fa360;
  2543. border-color: #2d995b;
  2544. }
  2545. .btn-success:focus,
  2546. .btn-success.focus {
  2547. color: #fff;
  2548. background-color: #2fa360;
  2549. border-color: #2d995b;
  2550. box-shadow: 0 0 0 0.2rem rgba(86, 202, 135, 0.5);
  2551. }
  2552. .btn-success.disabled,
  2553. .btn-success:disabled {
  2554. color: #fff;
  2555. background-color: #38c172;
  2556. border-color: #38c172;
  2557. }
  2558. .btn-success:not(:disabled):not(.disabled):active,
  2559. .btn-success:not(:disabled):not(.disabled).active,
  2560. .show > .btn-success.dropdown-toggle {
  2561. color: #fff;
  2562. background-color: #2d995b;
  2563. border-color: #2a9055;
  2564. }
  2565. .btn-success:not(:disabled):not(.disabled):active:focus,
  2566. .btn-success:not(:disabled):not(.disabled).active:focus,
  2567. .show > .btn-success.dropdown-toggle:focus {
  2568. box-shadow: 0 0 0 0.2rem rgba(86, 202, 135, 0.5);
  2569. }
  2570. .btn-info {
  2571. color: #212529;
  2572. background-color: #6cb2eb;
  2573. border-color: #6cb2eb;
  2574. }
  2575. .btn-info:hover {
  2576. color: #fff;
  2577. background-color: #4aa0e6;
  2578. border-color: #3f9ae5;
  2579. }
  2580. .btn-info:focus,
  2581. .btn-info.focus {
  2582. color: #fff;
  2583. background-color: #4aa0e6;
  2584. border-color: #3f9ae5;
  2585. box-shadow: 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
  2586. }
  2587. .btn-info.disabled,
  2588. .btn-info:disabled {
  2589. color: #212529;
  2590. background-color: #6cb2eb;
  2591. border-color: #6cb2eb;
  2592. }
  2593. .btn-info:not(:disabled):not(.disabled):active,
  2594. .btn-info:not(:disabled):not(.disabled).active,
  2595. .show > .btn-info.dropdown-toggle {
  2596. color: #fff;
  2597. background-color: #3f9ae5;
  2598. border-color: #3495e3;
  2599. }
  2600. .btn-info:not(:disabled):not(.disabled):active:focus,
  2601. .btn-info:not(:disabled):not(.disabled).active:focus,
  2602. .show > .btn-info.dropdown-toggle:focus {
  2603. box-shadow: 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
  2604. }
  2605. .btn-warning {
  2606. color: #212529;
  2607. background-color: #ffed4a;
  2608. border-color: #ffed4a;
  2609. }
  2610. .btn-warning:hover {
  2611. color: #212529;
  2612. background-color: #ffe924;
  2613. border-color: #ffe817;
  2614. }
  2615. .btn-warning:focus,
  2616. .btn-warning.focus {
  2617. color: #212529;
  2618. background-color: #ffe924;
  2619. border-color: #ffe817;
  2620. box-shadow: 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
  2621. }
  2622. .btn-warning.disabled,
  2623. .btn-warning:disabled {
  2624. color: #212529;
  2625. background-color: #ffed4a;
  2626. border-color: #ffed4a;
  2627. }
  2628. .btn-warning:not(:disabled):not(.disabled):active,
  2629. .btn-warning:not(:disabled):not(.disabled).active,
  2630. .show > .btn-warning.dropdown-toggle {
  2631. color: #212529;
  2632. background-color: #ffe817;
  2633. border-color: #ffe70a;
  2634. }
  2635. .btn-warning:not(:disabled):not(.disabled):active:focus,
  2636. .btn-warning:not(:disabled):not(.disabled).active:focus,
  2637. .show > .btn-warning.dropdown-toggle:focus {
  2638. box-shadow: 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
  2639. }
  2640. .btn-danger {
  2641. color: #fff;
  2642. background-color: #e3342f;
  2643. border-color: #e3342f;
  2644. }
  2645. .btn-danger:hover {
  2646. color: #fff;
  2647. background-color: #d0211c;
  2648. border-color: #c51f1a;
  2649. }
  2650. .btn-danger:focus,
  2651. .btn-danger.focus {
  2652. color: #fff;
  2653. background-color: #d0211c;
  2654. border-color: #c51f1a;
  2655. box-shadow: 0 0 0 0.2rem rgba(231, 82, 78, 0.5);
  2656. }
  2657. .btn-danger.disabled,
  2658. .btn-danger:disabled {
  2659. color: #fff;
  2660. background-color: #e3342f;
  2661. border-color: #e3342f;
  2662. }
  2663. .btn-danger:not(:disabled):not(.disabled):active,
  2664. .btn-danger:not(:disabled):not(.disabled).active,
  2665. .show > .btn-danger.dropdown-toggle {
  2666. color: #fff;
  2667. background-color: #c51f1a;
  2668. border-color: #b91d19;
  2669. }
  2670. .btn-danger:not(:disabled):not(.disabled):active:focus,
  2671. .btn-danger:not(:disabled):not(.disabled).active:focus,
  2672. .show > .btn-danger.dropdown-toggle:focus {
  2673. box-shadow: 0 0 0 0.2rem rgba(231, 82, 78, 0.5);
  2674. }
  2675. .btn-light {
  2676. color: #212529;
  2677. background-color: #f8f9fa;
  2678. border-color: #f8f9fa;
  2679. }
  2680. .btn-light:hover {
  2681. color: #212529;
  2682. background-color: #e2e6ea;
  2683. border-color: #dae0e5;
  2684. }
  2685. .btn-light:focus,
  2686. .btn-light.focus {
  2687. color: #212529;
  2688. background-color: #e2e6ea;
  2689. border-color: #dae0e5;
  2690. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  2691. }
  2692. .btn-light.disabled,
  2693. .btn-light:disabled {
  2694. color: #212529;
  2695. background-color: #f8f9fa;
  2696. border-color: #f8f9fa;
  2697. }
  2698. .btn-light:not(:disabled):not(.disabled):active,
  2699. .btn-light:not(:disabled):not(.disabled).active,
  2700. .show > .btn-light.dropdown-toggle {
  2701. color: #212529;
  2702. background-color: #dae0e5;
  2703. border-color: #d3d9df;
  2704. }
  2705. .btn-light:not(:disabled):not(.disabled):active:focus,
  2706. .btn-light:not(:disabled):not(.disabled).active:focus,
  2707. .show > .btn-light.dropdown-toggle:focus {
  2708. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  2709. }
  2710. .btn-dark {
  2711. color: #fff;
  2712. background-color: #343a40;
  2713. border-color: #343a40;
  2714. }
  2715. .btn-dark:hover {
  2716. color: #fff;
  2717. background-color: #23272b;
  2718. border-color: #1d2124;
  2719. }
  2720. .btn-dark:focus,
  2721. .btn-dark.focus {
  2722. color: #fff;
  2723. background-color: #23272b;
  2724. border-color: #1d2124;
  2725. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  2726. }
  2727. .btn-dark.disabled,
  2728. .btn-dark:disabled {
  2729. color: #fff;
  2730. background-color: #343a40;
  2731. border-color: #343a40;
  2732. }
  2733. .btn-dark:not(:disabled):not(.disabled):active,
  2734. .btn-dark:not(:disabled):not(.disabled).active,
  2735. .show > .btn-dark.dropdown-toggle {
  2736. color: #fff;
  2737. background-color: #1d2124;
  2738. border-color: #171a1d;
  2739. }
  2740. .btn-dark:not(:disabled):not(.disabled):active:focus,
  2741. .btn-dark:not(:disabled):not(.disabled).active:focus,
  2742. .show > .btn-dark.dropdown-toggle:focus {
  2743. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  2744. }
  2745. .btn-outline-primary {
  2746. color: #3490dc;
  2747. border-color: #3490dc;
  2748. }
  2749. .btn-outline-primary:hover {
  2750. color: #fff;
  2751. background-color: #3490dc;
  2752. border-color: #3490dc;
  2753. }
  2754. .btn-outline-primary:focus,
  2755. .btn-outline-primary.focus {
  2756. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  2757. }
  2758. .btn-outline-primary.disabled,
  2759. .btn-outline-primary:disabled {
  2760. color: #3490dc;
  2761. background-color: transparent;
  2762. }
  2763. .btn-outline-primary:not(:disabled):not(.disabled):active,
  2764. .btn-outline-primary:not(:disabled):not(.disabled).active,
  2765. .show > .btn-outline-primary.dropdown-toggle {
  2766. color: #fff;
  2767. background-color: #3490dc;
  2768. border-color: #3490dc;
  2769. }
  2770. .btn-outline-primary:not(:disabled):not(.disabled):active:focus,
  2771. .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
  2772. .show > .btn-outline-primary.dropdown-toggle:focus {
  2773. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  2774. }
  2775. .btn-outline-secondary {
  2776. color: #6c757d;
  2777. border-color: #6c757d;
  2778. }
  2779. .btn-outline-secondary:hover {
  2780. color: #fff;
  2781. background-color: #6c757d;
  2782. border-color: #6c757d;
  2783. }
  2784. .btn-outline-secondary:focus,
  2785. .btn-outline-secondary.focus {
  2786. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2787. }
  2788. .btn-outline-secondary.disabled,
  2789. .btn-outline-secondary:disabled {
  2790. color: #6c757d;
  2791. background-color: transparent;
  2792. }
  2793. .btn-outline-secondary:not(:disabled):not(.disabled):active,
  2794. .btn-outline-secondary:not(:disabled):not(.disabled).active,
  2795. .show > .btn-outline-secondary.dropdown-toggle {
  2796. color: #fff;
  2797. background-color: #6c757d;
  2798. border-color: #6c757d;
  2799. }
  2800. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
  2801. .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
  2802. .show > .btn-outline-secondary.dropdown-toggle:focus {
  2803. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2804. }
  2805. .btn-outline-success {
  2806. color: #38c172;
  2807. border-color: #38c172;
  2808. }
  2809. .btn-outline-success:hover {
  2810. color: #fff;
  2811. background-color: #38c172;
  2812. border-color: #38c172;
  2813. }
  2814. .btn-outline-success:focus,
  2815. .btn-outline-success.focus {
  2816. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  2817. }
  2818. .btn-outline-success.disabled,
  2819. .btn-outline-success:disabled {
  2820. color: #38c172;
  2821. background-color: transparent;
  2822. }
  2823. .btn-outline-success:not(:disabled):not(.disabled):active,
  2824. .btn-outline-success:not(:disabled):not(.disabled).active,
  2825. .show > .btn-outline-success.dropdown-toggle {
  2826. color: #fff;
  2827. background-color: #38c172;
  2828. border-color: #38c172;
  2829. }
  2830. .btn-outline-success:not(:disabled):not(.disabled):active:focus,
  2831. .btn-outline-success:not(:disabled):not(.disabled).active:focus,
  2832. .show > .btn-outline-success.dropdown-toggle:focus {
  2833. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  2834. }
  2835. .btn-outline-info {
  2836. color: #6cb2eb;
  2837. border-color: #6cb2eb;
  2838. }
  2839. .btn-outline-info:hover {
  2840. color: #212529;
  2841. background-color: #6cb2eb;
  2842. border-color: #6cb2eb;
  2843. }
  2844. .btn-outline-info:focus,
  2845. .btn-outline-info.focus {
  2846. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  2847. }
  2848. .btn-outline-info.disabled,
  2849. .btn-outline-info:disabled {
  2850. color: #6cb2eb;
  2851. background-color: transparent;
  2852. }
  2853. .btn-outline-info:not(:disabled):not(.disabled):active,
  2854. .btn-outline-info:not(:disabled):not(.disabled).active,
  2855. .show > .btn-outline-info.dropdown-toggle {
  2856. color: #212529;
  2857. background-color: #6cb2eb;
  2858. border-color: #6cb2eb;
  2859. }
  2860. .btn-outline-info:not(:disabled):not(.disabled):active:focus,
  2861. .btn-outline-info:not(:disabled):not(.disabled).active:focus,
  2862. .show > .btn-outline-info.dropdown-toggle:focus {
  2863. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  2864. }
  2865. .btn-outline-warning {
  2866. color: #ffed4a;
  2867. border-color: #ffed4a;
  2868. }
  2869. .btn-outline-warning:hover {
  2870. color: #212529;
  2871. background-color: #ffed4a;
  2872. border-color: #ffed4a;
  2873. }
  2874. .btn-outline-warning:focus,
  2875. .btn-outline-warning.focus {
  2876. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  2877. }
  2878. .btn-outline-warning.disabled,
  2879. .btn-outline-warning:disabled {
  2880. color: #ffed4a;
  2881. background-color: transparent;
  2882. }
  2883. .btn-outline-warning:not(:disabled):not(.disabled):active,
  2884. .btn-outline-warning:not(:disabled):not(.disabled).active,
  2885. .show > .btn-outline-warning.dropdown-toggle {
  2886. color: #212529;
  2887. background-color: #ffed4a;
  2888. border-color: #ffed4a;
  2889. }
  2890. .btn-outline-warning:not(:disabled):not(.disabled):active:focus,
  2891. .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
  2892. .show > .btn-outline-warning.dropdown-toggle:focus {
  2893. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  2894. }
  2895. .btn-outline-danger {
  2896. color: #e3342f;
  2897. border-color: #e3342f;
  2898. }
  2899. .btn-outline-danger:hover {
  2900. color: #fff;
  2901. background-color: #e3342f;
  2902. border-color: #e3342f;
  2903. }
  2904. .btn-outline-danger:focus,
  2905. .btn-outline-danger.focus {
  2906. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  2907. }
  2908. .btn-outline-danger.disabled,
  2909. .btn-outline-danger:disabled {
  2910. color: #e3342f;
  2911. background-color: transparent;
  2912. }
  2913. .btn-outline-danger:not(:disabled):not(.disabled):active,
  2914. .btn-outline-danger:not(:disabled):not(.disabled).active,
  2915. .show > .btn-outline-danger.dropdown-toggle {
  2916. color: #fff;
  2917. background-color: #e3342f;
  2918. border-color: #e3342f;
  2919. }
  2920. .btn-outline-danger:not(:disabled):not(.disabled):active:focus,
  2921. .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
  2922. .show > .btn-outline-danger.dropdown-toggle:focus {
  2923. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  2924. }
  2925. .btn-outline-light {
  2926. color: #f8f9fa;
  2927. border-color: #f8f9fa;
  2928. }
  2929. .btn-outline-light:hover {
  2930. color: #212529;
  2931. background-color: #f8f9fa;
  2932. border-color: #f8f9fa;
  2933. }
  2934. .btn-outline-light:focus,
  2935. .btn-outline-light.focus {
  2936. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2937. }
  2938. .btn-outline-light.disabled,
  2939. .btn-outline-light:disabled {
  2940. color: #f8f9fa;
  2941. background-color: transparent;
  2942. }
  2943. .btn-outline-light:not(:disabled):not(.disabled):active,
  2944. .btn-outline-light:not(:disabled):not(.disabled).active,
  2945. .show > .btn-outline-light.dropdown-toggle {
  2946. color: #212529;
  2947. background-color: #f8f9fa;
  2948. border-color: #f8f9fa;
  2949. }
  2950. .btn-outline-light:not(:disabled):not(.disabled):active:focus,
  2951. .btn-outline-light:not(:disabled):not(.disabled).active:focus,
  2952. .show > .btn-outline-light.dropdown-toggle:focus {
  2953. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2954. }
  2955. .btn-outline-dark {
  2956. color: #343a40;
  2957. border-color: #343a40;
  2958. }
  2959. .btn-outline-dark:hover {
  2960. color: #fff;
  2961. background-color: #343a40;
  2962. border-color: #343a40;
  2963. }
  2964. .btn-outline-dark:focus,
  2965. .btn-outline-dark.focus {
  2966. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2967. }
  2968. .btn-outline-dark.disabled,
  2969. .btn-outline-dark:disabled {
  2970. color: #343a40;
  2971. background-color: transparent;
  2972. }
  2973. .btn-outline-dark:not(:disabled):not(.disabled):active,
  2974. .btn-outline-dark:not(:disabled):not(.disabled).active,
  2975. .show > .btn-outline-dark.dropdown-toggle {
  2976. color: #fff;
  2977. background-color: #343a40;
  2978. border-color: #343a40;
  2979. }
  2980. .btn-outline-dark:not(:disabled):not(.disabled):active:focus,
  2981. .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
  2982. .show > .btn-outline-dark.dropdown-toggle:focus {
  2983. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2984. }
  2985. .btn-link {
  2986. font-weight: 400;
  2987. color: #3490dc;
  2988. text-decoration: none;
  2989. }
  2990. .btn-link:hover {
  2991. color: #1d68a7;
  2992. text-decoration: underline;
  2993. }
  2994. .btn-link:focus,
  2995. .btn-link.focus {
  2996. text-decoration: underline;
  2997. }
  2998. .btn-link:disabled,
  2999. .btn-link.disabled {
  3000. color: #6c757d;
  3001. pointer-events: none;
  3002. }
  3003. .btn-lg,
  3004. .btn-group-lg > .btn {
  3005. padding: 0.5rem 1rem;
  3006. font-size: 1.125rem;
  3007. line-height: 1.5;
  3008. border-radius: 0.3rem;
  3009. }
  3010. .btn-sm,
  3011. .btn-group-sm > .btn {
  3012. padding: 0.25rem 0.5rem;
  3013. font-size: 0.7875rem;
  3014. line-height: 1.5;
  3015. border-radius: 0.2rem;
  3016. }
  3017. .btn-block {
  3018. display: block;
  3019. width: 100%;
  3020. }
  3021. .btn-block + .btn-block {
  3022. margin-top: 0.5rem;
  3023. }
  3024. input[type=submit].btn-block,
  3025. input[type=reset].btn-block,
  3026. input[type=button].btn-block {
  3027. width: 100%;
  3028. }
  3029. .fade {
  3030. transition: opacity 0.15s linear;
  3031. }
  3032. @media (prefers-reduced-motion: reduce) {
  3033. .fade {
  3034. transition: none;
  3035. }
  3036. }
  3037. .fade:not(.show) {
  3038. opacity: 0;
  3039. }
  3040. .collapse:not(.show) {
  3041. display: none;
  3042. }
  3043. .collapsing {
  3044. position: relative;
  3045. height: 0;
  3046. overflow: hidden;
  3047. transition: height 0.35s ease;
  3048. }
  3049. @media (prefers-reduced-motion: reduce) {
  3050. .collapsing {
  3051. transition: none;
  3052. }
  3053. }
  3054. .dropup,
  3055. .dropright,
  3056. .dropdown,
  3057. .dropleft {
  3058. position: relative;
  3059. }
  3060. .dropdown-toggle {
  3061. white-space: nowrap;
  3062. }
  3063. .dropdown-toggle::after {
  3064. display: inline-block;
  3065. margin-left: 0.255em;
  3066. vertical-align: 0.255em;
  3067. content: "";
  3068. border-top: 0.3em solid;
  3069. border-right: 0.3em solid transparent;
  3070. border-bottom: 0;
  3071. border-left: 0.3em solid transparent;
  3072. }
  3073. .dropdown-toggle:empty::after {
  3074. margin-left: 0;
  3075. }
  3076. .dropdown-menu {
  3077. position: absolute;
  3078. top: 100%;
  3079. left: 0;
  3080. z-index: 1000;
  3081. display: none;
  3082. float: left;
  3083. min-width: 10rem;
  3084. padding: 0.5rem 0;
  3085. margin: 0.125rem 0 0;
  3086. font-size: 0.9rem;
  3087. color: #212529;
  3088. text-align: left;
  3089. list-style: none;
  3090. background-color: #fff;
  3091. background-clip: padding-box;
  3092. border: 1px solid rgba(0, 0, 0, 0.15);
  3093. border-radius: 0.25rem;
  3094. }
  3095. .dropdown-menu-left {
  3096. right: auto;
  3097. left: 0;
  3098. }
  3099. .dropdown-menu-right {
  3100. right: 0;
  3101. left: auto;
  3102. }
  3103. @media (min-width: 576px) {
  3104. .dropdown-menu-sm-left {
  3105. right: auto;
  3106. left: 0;
  3107. }
  3108. .dropdown-menu-sm-right {
  3109. right: 0;
  3110. left: auto;
  3111. }
  3112. }
  3113. @media (min-width: 768px) {
  3114. .dropdown-menu-md-left {
  3115. right: auto;
  3116. left: 0;
  3117. }
  3118. .dropdown-menu-md-right {
  3119. right: 0;
  3120. left: auto;
  3121. }
  3122. }
  3123. @media (min-width: 992px) {
  3124. .dropdown-menu-lg-left {
  3125. right: auto;
  3126. left: 0;
  3127. }
  3128. .dropdown-menu-lg-right {
  3129. right: 0;
  3130. left: auto;
  3131. }
  3132. }
  3133. @media (min-width: 1200px) {
  3134. .dropdown-menu-xl-left {
  3135. right: auto;
  3136. left: 0;
  3137. }
  3138. .dropdown-menu-xl-right {
  3139. right: 0;
  3140. left: auto;
  3141. }
  3142. }
  3143. .dropup .dropdown-menu {
  3144. top: auto;
  3145. bottom: 100%;
  3146. margin-top: 0;
  3147. margin-bottom: 0.125rem;
  3148. }
  3149. .dropup .dropdown-toggle::after {
  3150. display: inline-block;
  3151. margin-left: 0.255em;
  3152. vertical-align: 0.255em;
  3153. content: "";
  3154. border-top: 0;
  3155. border-right: 0.3em solid transparent;
  3156. border-bottom: 0.3em solid;
  3157. border-left: 0.3em solid transparent;
  3158. }
  3159. .dropup .dropdown-toggle:empty::after {
  3160. margin-left: 0;
  3161. }
  3162. .dropright .dropdown-menu {
  3163. top: 0;
  3164. right: auto;
  3165. left: 100%;
  3166. margin-top: 0;
  3167. margin-left: 0.125rem;
  3168. }
  3169. .dropright .dropdown-toggle::after {
  3170. display: inline-block;
  3171. margin-left: 0.255em;
  3172. vertical-align: 0.255em;
  3173. content: "";
  3174. border-top: 0.3em solid transparent;
  3175. border-right: 0;
  3176. border-bottom: 0.3em solid transparent;
  3177. border-left: 0.3em solid;
  3178. }
  3179. .dropright .dropdown-toggle:empty::after {
  3180. margin-left: 0;
  3181. }
  3182. .dropright .dropdown-toggle::after {
  3183. vertical-align: 0;
  3184. }
  3185. .dropleft .dropdown-menu {
  3186. top: 0;
  3187. right: 100%;
  3188. left: auto;
  3189. margin-top: 0;
  3190. margin-right: 0.125rem;
  3191. }
  3192. .dropleft .dropdown-toggle::after {
  3193. display: inline-block;
  3194. margin-left: 0.255em;
  3195. vertical-align: 0.255em;
  3196. content: "";
  3197. }
  3198. .dropleft .dropdown-toggle::after {
  3199. display: none;
  3200. }
  3201. .dropleft .dropdown-toggle::before {
  3202. display: inline-block;
  3203. margin-right: 0.255em;
  3204. vertical-align: 0.255em;
  3205. content: "";
  3206. border-top: 0.3em solid transparent;
  3207. border-right: 0.3em solid;
  3208. border-bottom: 0.3em solid transparent;
  3209. }
  3210. .dropleft .dropdown-toggle:empty::after {
  3211. margin-left: 0;
  3212. }
  3213. .dropleft .dropdown-toggle::before {
  3214. vertical-align: 0;
  3215. }
  3216. .dropdown-menu[x-placement^=top],
  3217. .dropdown-menu[x-placement^=right],
  3218. .dropdown-menu[x-placement^=bottom],
  3219. .dropdown-menu[x-placement^=left] {
  3220. right: auto;
  3221. bottom: auto;
  3222. }
  3223. .dropdown-divider {
  3224. height: 0;
  3225. margin: 0.5rem 0;
  3226. overflow: hidden;
  3227. border-top: 1px solid #e9ecef;
  3228. }
  3229. .dropdown-item {
  3230. display: block;
  3231. width: 100%;
  3232. padding: 0.25rem 1.5rem;
  3233. clear: both;
  3234. font-weight: 400;
  3235. color: #212529;
  3236. text-align: inherit;
  3237. white-space: nowrap;
  3238. background-color: transparent;
  3239. border: 0;
  3240. }
  3241. .dropdown-item:hover,
  3242. .dropdown-item:focus {
  3243. color: #16181b;
  3244. text-decoration: none;
  3245. background-color: #f8f9fa;
  3246. }
  3247. .dropdown-item.active,
  3248. .dropdown-item:active {
  3249. color: #fff;
  3250. text-decoration: none;
  3251. background-color: #3490dc;
  3252. }
  3253. .dropdown-item.disabled,
  3254. .dropdown-item:disabled {
  3255. color: #6c757d;
  3256. pointer-events: none;
  3257. background-color: transparent;
  3258. }
  3259. .dropdown-menu.show {
  3260. display: block;
  3261. }
  3262. .dropdown-header {
  3263. display: block;
  3264. padding: 0.5rem 1.5rem;
  3265. margin-bottom: 0;
  3266. font-size: 0.7875rem;
  3267. color: #6c757d;
  3268. white-space: nowrap;
  3269. }
  3270. .dropdown-item-text {
  3271. display: block;
  3272. padding: 0.25rem 1.5rem;
  3273. color: #212529;
  3274. }
  3275. .btn-group,
  3276. .btn-group-vertical {
  3277. position: relative;
  3278. display: inline-flex;
  3279. vertical-align: middle;
  3280. }
  3281. .btn-group > .btn,
  3282. .btn-group-vertical > .btn {
  3283. position: relative;
  3284. flex: 1 1 auto;
  3285. }
  3286. .btn-group > .btn:hover,
  3287. .btn-group-vertical > .btn:hover {
  3288. z-index: 1;
  3289. }
  3290. .btn-group > .btn:focus,
  3291. .btn-group > .btn:active,
  3292. .btn-group > .btn.active,
  3293. .btn-group-vertical > .btn:focus,
  3294. .btn-group-vertical > .btn:active,
  3295. .btn-group-vertical > .btn.active {
  3296. z-index: 1;
  3297. }
  3298. .btn-toolbar {
  3299. display: flex;
  3300. flex-wrap: wrap;
  3301. justify-content: flex-start;
  3302. }
  3303. .btn-toolbar .input-group {
  3304. width: auto;
  3305. }
  3306. .btn-group > .btn:not(:first-child),
  3307. .btn-group > .btn-group:not(:first-child) {
  3308. margin-left: -1px;
  3309. }
  3310. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  3311. .btn-group > .btn-group:not(:last-child) > .btn {
  3312. border-top-right-radius: 0;
  3313. border-bottom-right-radius: 0;
  3314. }
  3315. .btn-group > .btn:not(:first-child),
  3316. .btn-group > .btn-group:not(:first-child) > .btn {
  3317. border-top-left-radius: 0;
  3318. border-bottom-left-radius: 0;
  3319. }
  3320. .dropdown-toggle-split {
  3321. padding-right: 0.5625rem;
  3322. padding-left: 0.5625rem;
  3323. }
  3324. .dropdown-toggle-split::after,
  3325. .dropup .dropdown-toggle-split::after,
  3326. .dropright .dropdown-toggle-split::after {
  3327. margin-left: 0;
  3328. }
  3329. .dropleft .dropdown-toggle-split::before {
  3330. margin-right: 0;
  3331. }
  3332. .btn-sm + .dropdown-toggle-split,
  3333. .btn-group-sm > .btn + .dropdown-toggle-split {
  3334. padding-right: 0.375rem;
  3335. padding-left: 0.375rem;
  3336. }
  3337. .btn-lg + .dropdown-toggle-split,
  3338. .btn-group-lg > .btn + .dropdown-toggle-split {
  3339. padding-right: 0.75rem;
  3340. padding-left: 0.75rem;
  3341. }
  3342. .btn-group-vertical {
  3343. flex-direction: column;
  3344. align-items: flex-start;
  3345. justify-content: center;
  3346. }
  3347. .btn-group-vertical > .btn,
  3348. .btn-group-vertical > .btn-group {
  3349. width: 100%;
  3350. }
  3351. .btn-group-vertical > .btn:not(:first-child),
  3352. .btn-group-vertical > .btn-group:not(:first-child) {
  3353. margin-top: -1px;
  3354. }
  3355. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  3356. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  3357. border-bottom-right-radius: 0;
  3358. border-bottom-left-radius: 0;
  3359. }
  3360. .btn-group-vertical > .btn:not(:first-child),
  3361. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  3362. border-top-left-radius: 0;
  3363. border-top-right-radius: 0;
  3364. }
  3365. .btn-group-toggle > .btn,
  3366. .btn-group-toggle > .btn-group > .btn {
  3367. margin-bottom: 0;
  3368. }
  3369. .btn-group-toggle > .btn input[type=radio],
  3370. .btn-group-toggle > .btn input[type=checkbox],
  3371. .btn-group-toggle > .btn-group > .btn input[type=radio],
  3372. .btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  3373. position: absolute;
  3374. clip: rect(0, 0, 0, 0);
  3375. pointer-events: none;
  3376. }
  3377. .input-group {
  3378. position: relative;
  3379. display: flex;
  3380. flex-wrap: wrap;
  3381. align-items: stretch;
  3382. width: 100%;
  3383. }
  3384. .input-group > .form-control,
  3385. .input-group > .form-control-plaintext,
  3386. .input-group > .custom-select,
  3387. .input-group > .custom-file {
  3388. position: relative;
  3389. flex: 1 1 auto;
  3390. width: 1%;
  3391. min-width: 0;
  3392. margin-bottom: 0;
  3393. }
  3394. .input-group > .form-control + .form-control,
  3395. .input-group > .form-control + .custom-select,
  3396. .input-group > .form-control + .custom-file,
  3397. .input-group > .form-control-plaintext + .form-control,
  3398. .input-group > .form-control-plaintext + .custom-select,
  3399. .input-group > .form-control-plaintext + .custom-file,
  3400. .input-group > .custom-select + .form-control,
  3401. .input-group > .custom-select + .custom-select,
  3402. .input-group > .custom-select + .custom-file,
  3403. .input-group > .custom-file + .form-control,
  3404. .input-group > .custom-file + .custom-select,
  3405. .input-group > .custom-file + .custom-file {
  3406. margin-left: -1px;
  3407. }
  3408. .input-group > .form-control:focus,
  3409. .input-group > .custom-select:focus,
  3410. .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  3411. z-index: 3;
  3412. }
  3413. .input-group > .custom-file .custom-file-input:focus {
  3414. z-index: 4;
  3415. }
  3416. .input-group > .form-control:not(:last-child),
  3417. .input-group > .custom-select:not(:last-child) {
  3418. border-top-right-radius: 0;
  3419. border-bottom-right-radius: 0;
  3420. }
  3421. .input-group > .form-control:not(:first-child),
  3422. .input-group > .custom-select:not(:first-child) {
  3423. border-top-left-radius: 0;
  3424. border-bottom-left-radius: 0;
  3425. }
  3426. .input-group > .custom-file {
  3427. display: flex;
  3428. align-items: center;
  3429. }
  3430. .input-group > .custom-file:not(:last-child) .custom-file-label,
  3431. .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  3432. border-top-right-radius: 0;
  3433. border-bottom-right-radius: 0;
  3434. }
  3435. .input-group > .custom-file:not(:first-child) .custom-file-label {
  3436. border-top-left-radius: 0;
  3437. border-bottom-left-radius: 0;
  3438. }
  3439. .input-group-prepend,
  3440. .input-group-append {
  3441. display: flex;
  3442. }
  3443. .input-group-prepend .btn,
  3444. .input-group-append .btn {
  3445. position: relative;
  3446. z-index: 2;
  3447. }
  3448. .input-group-prepend .btn:focus,
  3449. .input-group-append .btn:focus {
  3450. z-index: 3;
  3451. }
  3452. .input-group-prepend .btn + .btn,
  3453. .input-group-prepend .btn + .input-group-text,
  3454. .input-group-prepend .input-group-text + .input-group-text,
  3455. .input-group-prepend .input-group-text + .btn,
  3456. .input-group-append .btn + .btn,
  3457. .input-group-append .btn + .input-group-text,
  3458. .input-group-append .input-group-text + .input-group-text,
  3459. .input-group-append .input-group-text + .btn {
  3460. margin-left: -1px;
  3461. }
  3462. .input-group-prepend {
  3463. margin-right: -1px;
  3464. }
  3465. .input-group-append {
  3466. margin-left: -1px;
  3467. }
  3468. .input-group-text {
  3469. display: flex;
  3470. align-items: center;
  3471. padding: 0.375rem 0.75rem;
  3472. margin-bottom: 0;
  3473. font-size: 0.9rem;
  3474. font-weight: 400;
  3475. line-height: 1.6;
  3476. color: #495057;
  3477. text-align: center;
  3478. white-space: nowrap;
  3479. background-color: #e9ecef;
  3480. border: 1px solid #ced4da;
  3481. border-radius: 0.25rem;
  3482. }
  3483. .input-group-text input[type=radio],
  3484. .input-group-text input[type=checkbox] {
  3485. margin-top: 0;
  3486. }
  3487. .input-group-lg > .form-control:not(textarea),
  3488. .input-group-lg > .custom-select {
  3489. height: calc(1.5em + 1rem + 2px);
  3490. }
  3491. .input-group-lg > .form-control,
  3492. .input-group-lg > .custom-select,
  3493. .input-group-lg > .input-group-prepend > .input-group-text,
  3494. .input-group-lg > .input-group-append > .input-group-text,
  3495. .input-group-lg > .input-group-prepend > .btn,
  3496. .input-group-lg > .input-group-append > .btn {
  3497. padding: 0.5rem 1rem;
  3498. font-size: 1.125rem;
  3499. line-height: 1.5;
  3500. border-radius: 0.3rem;
  3501. }
  3502. .input-group-sm > .form-control:not(textarea),
  3503. .input-group-sm > .custom-select {
  3504. height: calc(1.5em + 0.5rem + 2px);
  3505. }
  3506. .input-group-sm > .form-control,
  3507. .input-group-sm > .custom-select,
  3508. .input-group-sm > .input-group-prepend > .input-group-text,
  3509. .input-group-sm > .input-group-append > .input-group-text,
  3510. .input-group-sm > .input-group-prepend > .btn,
  3511. .input-group-sm > .input-group-append > .btn {
  3512. padding: 0.25rem 0.5rem;
  3513. font-size: 0.7875rem;
  3514. line-height: 1.5;
  3515. border-radius: 0.2rem;
  3516. }
  3517. .input-group-lg > .custom-select,
  3518. .input-group-sm > .custom-select {
  3519. padding-right: 1.75rem;
  3520. }
  3521. .input-group > .input-group-prepend > .btn,
  3522. .input-group > .input-group-prepend > .input-group-text,
  3523. .input-group > .input-group-append:not(:last-child) > .btn,
  3524. .input-group > .input-group-append:not(:last-child) > .input-group-text,
  3525. .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3526. .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  3527. border-top-right-radius: 0;
  3528. border-bottom-right-radius: 0;
  3529. }
  3530. .input-group > .input-group-append > .btn,
  3531. .input-group > .input-group-append > .input-group-text,
  3532. .input-group > .input-group-prepend:not(:first-child) > .btn,
  3533. .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
  3534. .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
  3535. .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  3536. border-top-left-radius: 0;
  3537. border-bottom-left-radius: 0;
  3538. }
  3539. .custom-control {
  3540. position: relative;
  3541. display: block;
  3542. min-height: 1.44rem;
  3543. padding-left: 1.5rem;
  3544. }
  3545. .custom-control-inline {
  3546. display: inline-flex;
  3547. margin-right: 1rem;
  3548. }
  3549. .custom-control-input {
  3550. position: absolute;
  3551. left: 0;
  3552. z-index: -1;
  3553. width: 1rem;
  3554. height: 1.22rem;
  3555. opacity: 0;
  3556. }
  3557. .custom-control-input:checked ~ .custom-control-label::before {
  3558. color: #fff;
  3559. border-color: #3490dc;
  3560. background-color: #3490dc;
  3561. }
  3562. .custom-control-input:focus ~ .custom-control-label::before {
  3563. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3564. }
  3565. .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  3566. border-color: #a1cbef;
  3567. }
  3568. .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  3569. color: #fff;
  3570. background-color: #cce3f6;
  3571. border-color: #cce3f6;
  3572. }
  3573. .custom-control-input[disabled] ~ .custom-control-label,
  3574. .custom-control-input:disabled ~ .custom-control-label {
  3575. color: #6c757d;
  3576. }
  3577. .custom-control-input[disabled] ~ .custom-control-label::before,
  3578. .custom-control-input:disabled ~ .custom-control-label::before {
  3579. background-color: #e9ecef;
  3580. }
  3581. .custom-control-label {
  3582. position: relative;
  3583. margin-bottom: 0;
  3584. vertical-align: top;
  3585. }
  3586. .custom-control-label::before {
  3587. position: absolute;
  3588. top: 0.22rem;
  3589. left: -1.5rem;
  3590. display: block;
  3591. width: 1rem;
  3592. height: 1rem;
  3593. pointer-events: none;
  3594. content: "";
  3595. background-color: #fff;
  3596. border: #adb5bd solid 1px;
  3597. }
  3598. .custom-control-label::after {
  3599. position: absolute;
  3600. top: 0.22rem;
  3601. left: -1.5rem;
  3602. display: block;
  3603. width: 1rem;
  3604. height: 1rem;
  3605. content: "";
  3606. background: no-repeat 50%/50% 50%;
  3607. }
  3608. .custom-checkbox .custom-control-label::before {
  3609. border-radius: 0.25rem;
  3610. }
  3611. .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  3612. 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");
  3613. }
  3614. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  3615. border-color: #3490dc;
  3616. background-color: #3490dc;
  3617. }
  3618. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  3619. 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");
  3620. }
  3621. .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3622. background-color: rgba(52, 144, 220, 0.5);
  3623. }
  3624. .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  3625. background-color: rgba(52, 144, 220, 0.5);
  3626. }
  3627. .custom-radio .custom-control-label::before {
  3628. border-radius: 50%;
  3629. }
  3630. .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  3631. 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");
  3632. }
  3633. .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3634. background-color: rgba(52, 144, 220, 0.5);
  3635. }
  3636. .custom-switch {
  3637. padding-left: 2.25rem;
  3638. }
  3639. .custom-switch .custom-control-label::before {
  3640. left: -2.25rem;
  3641. width: 1.75rem;
  3642. pointer-events: all;
  3643. border-radius: 0.5rem;
  3644. }
  3645. .custom-switch .custom-control-label::after {
  3646. top: calc(0.22rem + 2px);
  3647. left: calc(-2.25rem + 2px);
  3648. width: calc(1rem - 4px);
  3649. height: calc(1rem - 4px);
  3650. background-color: #adb5bd;
  3651. border-radius: 0.5rem;
  3652. 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;
  3653. }
  3654. @media (prefers-reduced-motion: reduce) {
  3655. .custom-switch .custom-control-label::after {
  3656. transition: none;
  3657. }
  3658. }
  3659. .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  3660. background-color: #fff;
  3661. transform: translateX(0.75rem);
  3662. }
  3663. .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3664. background-color: rgba(52, 144, 220, 0.5);
  3665. }
  3666. .custom-select {
  3667. display: inline-block;
  3668. width: 100%;
  3669. height: calc(1.6em + 0.75rem + 2px);
  3670. padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  3671. font-size: 0.9rem;
  3672. font-weight: 400;
  3673. line-height: 1.6;
  3674. color: #495057;
  3675. vertical-align: middle;
  3676. 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;
  3677. border: 1px solid #ced4da;
  3678. border-radius: 0.25rem;
  3679. -webkit-appearance: none;
  3680. -moz-appearance: none;
  3681. appearance: none;
  3682. }
  3683. .custom-select:focus {
  3684. border-color: #a1cbef;
  3685. outline: 0;
  3686. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3687. }
  3688. .custom-select:focus::-ms-value {
  3689. color: #495057;
  3690. background-color: #fff;
  3691. }
  3692. .custom-select[multiple],
  3693. .custom-select[size]:not([size="1"]) {
  3694. height: auto;
  3695. padding-right: 0.75rem;
  3696. background-image: none;
  3697. }
  3698. .custom-select:disabled {
  3699. color: #6c757d;
  3700. background-color: #e9ecef;
  3701. }
  3702. .custom-select::-ms-expand {
  3703. display: none;
  3704. }
  3705. .custom-select:-moz-focusring {
  3706. color: transparent;
  3707. text-shadow: 0 0 0 #495057;
  3708. }
  3709. .custom-select-sm {
  3710. height: calc(1.5em + 0.5rem + 2px);
  3711. padding-top: 0.25rem;
  3712. padding-bottom: 0.25rem;
  3713. padding-left: 0.5rem;
  3714. font-size: 0.7875rem;
  3715. }
  3716. .custom-select-lg {
  3717. height: calc(1.5em + 1rem + 2px);
  3718. padding-top: 0.5rem;
  3719. padding-bottom: 0.5rem;
  3720. padding-left: 1rem;
  3721. font-size: 1.125rem;
  3722. }
  3723. .custom-file {
  3724. position: relative;
  3725. display: inline-block;
  3726. width: 100%;
  3727. height: calc(1.6em + 0.75rem + 2px);
  3728. margin-bottom: 0;
  3729. }
  3730. .custom-file-input {
  3731. position: relative;
  3732. z-index: 2;
  3733. width: 100%;
  3734. height: calc(1.6em + 0.75rem + 2px);
  3735. margin: 0;
  3736. opacity: 0;
  3737. }
  3738. .custom-file-input:focus ~ .custom-file-label {
  3739. border-color: #a1cbef;
  3740. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3741. }
  3742. .custom-file-input[disabled] ~ .custom-file-label,
  3743. .custom-file-input:disabled ~ .custom-file-label {
  3744. background-color: #e9ecef;
  3745. }
  3746. .custom-file-input:lang(en) ~ .custom-file-label::after {
  3747. content: "Browse";
  3748. }
  3749. .custom-file-input ~ .custom-file-label[data-browse]::after {
  3750. content: attr(data-browse);
  3751. }
  3752. .custom-file-label {
  3753. position: absolute;
  3754. top: 0;
  3755. right: 0;
  3756. left: 0;
  3757. z-index: 1;
  3758. height: calc(1.6em + 0.75rem + 2px);
  3759. padding: 0.375rem 0.75rem;
  3760. font-weight: 400;
  3761. line-height: 1.6;
  3762. color: #495057;
  3763. background-color: #fff;
  3764. border: 1px solid #ced4da;
  3765. border-radius: 0.25rem;
  3766. }
  3767. .custom-file-label::after {
  3768. position: absolute;
  3769. top: 0;
  3770. right: 0;
  3771. bottom: 0;
  3772. z-index: 3;
  3773. display: block;
  3774. height: calc(1.6em + 0.75rem);
  3775. padding: 0.375rem 0.75rem;
  3776. line-height: 1.6;
  3777. color: #495057;
  3778. content: "Browse";
  3779. background-color: #e9ecef;
  3780. border-left: inherit;
  3781. border-radius: 0 0.25rem 0.25rem 0;
  3782. }
  3783. .custom-range {
  3784. width: 100%;
  3785. height: 1.4rem;
  3786. padding: 0;
  3787. background-color: transparent;
  3788. -webkit-appearance: none;
  3789. -moz-appearance: none;
  3790. appearance: none;
  3791. }
  3792. .custom-range:focus {
  3793. outline: none;
  3794. }
  3795. .custom-range:focus::-webkit-slider-thumb {
  3796. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3797. }
  3798. .custom-range:focus::-moz-range-thumb {
  3799. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3800. }
  3801. .custom-range:focus::-ms-thumb {
  3802. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3803. }
  3804. .custom-range::-moz-focus-outer {
  3805. border: 0;
  3806. }
  3807. .custom-range::-webkit-slider-thumb {
  3808. width: 1rem;
  3809. height: 1rem;
  3810. margin-top: -0.25rem;
  3811. background-color: #3490dc;
  3812. border: 0;
  3813. border-radius: 1rem;
  3814. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3815. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3816. -webkit-appearance: none;
  3817. appearance: none;
  3818. }
  3819. @media (prefers-reduced-motion: reduce) {
  3820. .custom-range::-webkit-slider-thumb {
  3821. -webkit-transition: none;
  3822. transition: none;
  3823. }
  3824. }
  3825. .custom-range::-webkit-slider-thumb:active {
  3826. background-color: #cce3f6;
  3827. }
  3828. .custom-range::-webkit-slider-runnable-track {
  3829. width: 100%;
  3830. height: 0.5rem;
  3831. color: transparent;
  3832. cursor: pointer;
  3833. background-color: #dee2e6;
  3834. border-color: transparent;
  3835. border-radius: 1rem;
  3836. }
  3837. .custom-range::-moz-range-thumb {
  3838. width: 1rem;
  3839. height: 1rem;
  3840. background-color: #3490dc;
  3841. border: 0;
  3842. border-radius: 1rem;
  3843. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3844. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3845. -moz-appearance: none;
  3846. appearance: none;
  3847. }
  3848. @media (prefers-reduced-motion: reduce) {
  3849. .custom-range::-moz-range-thumb {
  3850. -moz-transition: none;
  3851. transition: none;
  3852. }
  3853. }
  3854. .custom-range::-moz-range-thumb:active {
  3855. background-color: #cce3f6;
  3856. }
  3857. .custom-range::-moz-range-track {
  3858. width: 100%;
  3859. height: 0.5rem;
  3860. color: transparent;
  3861. cursor: pointer;
  3862. background-color: #dee2e6;
  3863. border-color: transparent;
  3864. border-radius: 1rem;
  3865. }
  3866. .custom-range::-ms-thumb {
  3867. width: 1rem;
  3868. height: 1rem;
  3869. margin-top: 0;
  3870. margin-right: 0.2rem;
  3871. margin-left: 0.2rem;
  3872. background-color: #3490dc;
  3873. border: 0;
  3874. border-radius: 1rem;
  3875. -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3876. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3877. appearance: none;
  3878. }
  3879. @media (prefers-reduced-motion: reduce) {
  3880. .custom-range::-ms-thumb {
  3881. -ms-transition: none;
  3882. transition: none;
  3883. }
  3884. }
  3885. .custom-range::-ms-thumb:active {
  3886. background-color: #cce3f6;
  3887. }
  3888. .custom-range::-ms-track {
  3889. width: 100%;
  3890. height: 0.5rem;
  3891. color: transparent;
  3892. cursor: pointer;
  3893. background-color: transparent;
  3894. border-color: transparent;
  3895. border-width: 0.5rem;
  3896. }
  3897. .custom-range::-ms-fill-lower {
  3898. background-color: #dee2e6;
  3899. border-radius: 1rem;
  3900. }
  3901. .custom-range::-ms-fill-upper {
  3902. margin-right: 15px;
  3903. background-color: #dee2e6;
  3904. border-radius: 1rem;
  3905. }
  3906. .custom-range:disabled::-webkit-slider-thumb {
  3907. background-color: #adb5bd;
  3908. }
  3909. .custom-range:disabled::-webkit-slider-runnable-track {
  3910. cursor: default;
  3911. }
  3912. .custom-range:disabled::-moz-range-thumb {
  3913. background-color: #adb5bd;
  3914. }
  3915. .custom-range:disabled::-moz-range-track {
  3916. cursor: default;
  3917. }
  3918. .custom-range:disabled::-ms-thumb {
  3919. background-color: #adb5bd;
  3920. }
  3921. .custom-control-label::before,
  3922. .custom-file-label,
  3923. .custom-select {
  3924. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3925. }
  3926. @media (prefers-reduced-motion: reduce) {
  3927. .custom-control-label::before,
  3928. .custom-file-label,
  3929. .custom-select {
  3930. transition: none;
  3931. }
  3932. }
  3933. .nav {
  3934. display: flex;
  3935. flex-wrap: wrap;
  3936. padding-left: 0;
  3937. margin-bottom: 0;
  3938. list-style: none;
  3939. }
  3940. .nav-link {
  3941. display: block;
  3942. padding: 0.5rem 1rem;
  3943. }
  3944. .nav-link:hover,
  3945. .nav-link:focus {
  3946. text-decoration: none;
  3947. }
  3948. .nav-link.disabled {
  3949. color: #6c757d;
  3950. pointer-events: none;
  3951. cursor: default;
  3952. }
  3953. .nav-tabs {
  3954. border-bottom: 1px solid #dee2e6;
  3955. }
  3956. .nav-tabs .nav-item {
  3957. margin-bottom: -1px;
  3958. }
  3959. .nav-tabs .nav-link {
  3960. border: 1px solid transparent;
  3961. border-top-left-radius: 0.25rem;
  3962. border-top-right-radius: 0.25rem;
  3963. }
  3964. .nav-tabs .nav-link:hover,
  3965. .nav-tabs .nav-link:focus {
  3966. border-color: #e9ecef #e9ecef #dee2e6;
  3967. }
  3968. .nav-tabs .nav-link.disabled {
  3969. color: #6c757d;
  3970. background-color: transparent;
  3971. border-color: transparent;
  3972. }
  3973. .nav-tabs .nav-link.active,
  3974. .nav-tabs .nav-item.show .nav-link {
  3975. color: #495057;
  3976. background-color: #f8fafc;
  3977. border-color: #dee2e6 #dee2e6 #f8fafc;
  3978. }
  3979. .nav-tabs .dropdown-menu {
  3980. margin-top: -1px;
  3981. border-top-left-radius: 0;
  3982. border-top-right-radius: 0;
  3983. }
  3984. .nav-pills .nav-link {
  3985. border-radius: 0.25rem;
  3986. }
  3987. .nav-pills .nav-link.active,
  3988. .nav-pills .show > .nav-link {
  3989. color: #fff;
  3990. background-color: #3490dc;
  3991. }
  3992. .nav-fill .nav-item {
  3993. flex: 1 1 auto;
  3994. text-align: center;
  3995. }
  3996. .nav-justified .nav-item {
  3997. flex-basis: 0;
  3998. flex-grow: 1;
  3999. text-align: center;
  4000. }
  4001. .tab-content > .tab-pane {
  4002. display: none;
  4003. }
  4004. .tab-content > .active {
  4005. display: block;
  4006. }
  4007. .navbar {
  4008. position: relative;
  4009. display: flex;
  4010. flex-wrap: wrap;
  4011. align-items: center;
  4012. justify-content: space-between;
  4013. padding: 0.5rem 1rem;
  4014. }
  4015. .navbar .container,
  4016. .navbar .container-fluid,
  4017. .navbar .container-sm,
  4018. .navbar .container-md,
  4019. .navbar .container-lg,
  4020. .navbar .container-xl {
  4021. display: flex;
  4022. flex-wrap: wrap;
  4023. align-items: center;
  4024. justify-content: space-between;
  4025. }
  4026. .navbar-brand {
  4027. display: inline-block;
  4028. padding-top: 0.32rem;
  4029. padding-bottom: 0.32rem;
  4030. margin-right: 1rem;
  4031. font-size: 1.125rem;
  4032. line-height: inherit;
  4033. white-space: nowrap;
  4034. }
  4035. .navbar-brand:hover,
  4036. .navbar-brand:focus {
  4037. text-decoration: none;
  4038. }
  4039. .navbar-nav {
  4040. display: flex;
  4041. flex-direction: column;
  4042. padding-left: 0;
  4043. margin-bottom: 0;
  4044. list-style: none;
  4045. }
  4046. .navbar-nav .nav-link {
  4047. padding-right: 0;
  4048. padding-left: 0;
  4049. }
  4050. .navbar-nav .dropdown-menu {
  4051. position: static;
  4052. float: none;
  4053. }
  4054. .navbar-text {
  4055. display: inline-block;
  4056. padding-top: 0.5rem;
  4057. padding-bottom: 0.5rem;
  4058. }
  4059. .navbar-collapse {
  4060. flex-basis: 100%;
  4061. flex-grow: 1;
  4062. align-items: center;
  4063. }
  4064. .navbar-toggler {
  4065. padding: 0.25rem 0.75rem;
  4066. font-size: 1.125rem;
  4067. line-height: 1;
  4068. background-color: transparent;
  4069. border: 1px solid transparent;
  4070. border-radius: 0.25rem;
  4071. }
  4072. .navbar-toggler:hover,
  4073. .navbar-toggler:focus {
  4074. text-decoration: none;
  4075. }
  4076. .navbar-toggler-icon {
  4077. display: inline-block;
  4078. width: 1.5em;
  4079. height: 1.5em;
  4080. vertical-align: middle;
  4081. content: "";
  4082. background: no-repeat center center;
  4083. background-size: 100% 100%;
  4084. }
  4085. @media (max-width: 575.98px) {
  4086. .navbar-expand-sm > .container,
  4087. .navbar-expand-sm > .container-fluid,
  4088. .navbar-expand-sm > .container-sm,
  4089. .navbar-expand-sm > .container-md,
  4090. .navbar-expand-sm > .container-lg,
  4091. .navbar-expand-sm > .container-xl {
  4092. padding-right: 0;
  4093. padding-left: 0;
  4094. }
  4095. }
  4096. @media (min-width: 576px) {
  4097. .navbar-expand-sm {
  4098. flex-flow: row nowrap;
  4099. justify-content: flex-start;
  4100. }
  4101. .navbar-expand-sm .navbar-nav {
  4102. flex-direction: row;
  4103. }
  4104. .navbar-expand-sm .navbar-nav .dropdown-menu {
  4105. position: absolute;
  4106. }
  4107. .navbar-expand-sm .navbar-nav .nav-link {
  4108. padding-right: 0.5rem;
  4109. padding-left: 0.5rem;
  4110. }
  4111. .navbar-expand-sm > .container,
  4112. .navbar-expand-sm > .container-fluid,
  4113. .navbar-expand-sm > .container-sm,
  4114. .navbar-expand-sm > .container-md,
  4115. .navbar-expand-sm > .container-lg,
  4116. .navbar-expand-sm > .container-xl {
  4117. flex-wrap: nowrap;
  4118. }
  4119. .navbar-expand-sm .navbar-collapse {
  4120. display: flex !important;
  4121. flex-basis: auto;
  4122. }
  4123. .navbar-expand-sm .navbar-toggler {
  4124. display: none;
  4125. }
  4126. }
  4127. @media (max-width: 767.98px) {
  4128. .navbar-expand-md > .container,
  4129. .navbar-expand-md > .container-fluid,
  4130. .navbar-expand-md > .container-sm,
  4131. .navbar-expand-md > .container-md,
  4132. .navbar-expand-md > .container-lg,
  4133. .navbar-expand-md > .container-xl {
  4134. padding-right: 0;
  4135. padding-left: 0;
  4136. }
  4137. }
  4138. @media (min-width: 768px) {
  4139. .navbar-expand-md {
  4140. flex-flow: row nowrap;
  4141. justify-content: flex-start;
  4142. }
  4143. .navbar-expand-md .navbar-nav {
  4144. flex-direction: row;
  4145. }
  4146. .navbar-expand-md .navbar-nav .dropdown-menu {
  4147. position: absolute;
  4148. }
  4149. .navbar-expand-md .navbar-nav .nav-link {
  4150. padding-right: 0.5rem;
  4151. padding-left: 0.5rem;
  4152. }
  4153. .navbar-expand-md > .container,
  4154. .navbar-expand-md > .container-fluid,
  4155. .navbar-expand-md > .container-sm,
  4156. .navbar-expand-md > .container-md,
  4157. .navbar-expand-md > .container-lg,
  4158. .navbar-expand-md > .container-xl {
  4159. flex-wrap: nowrap;
  4160. }
  4161. .navbar-expand-md .navbar-collapse {
  4162. display: flex !important;
  4163. flex-basis: auto;
  4164. }
  4165. .navbar-expand-md .navbar-toggler {
  4166. display: none;
  4167. }
  4168. }
  4169. @media (max-width: 991.98px) {
  4170. .navbar-expand-lg > .container,
  4171. .navbar-expand-lg > .container-fluid,
  4172. .navbar-expand-lg > .container-sm,
  4173. .navbar-expand-lg > .container-md,
  4174. .navbar-expand-lg > .container-lg,
  4175. .navbar-expand-lg > .container-xl {
  4176. padding-right: 0;
  4177. padding-left: 0;
  4178. }
  4179. }
  4180. @media (min-width: 992px) {
  4181. .navbar-expand-lg {
  4182. flex-flow: row nowrap;
  4183. justify-content: flex-start;
  4184. }
  4185. .navbar-expand-lg .navbar-nav {
  4186. flex-direction: row;
  4187. }
  4188. .navbar-expand-lg .navbar-nav .dropdown-menu {
  4189. position: absolute;
  4190. }
  4191. .navbar-expand-lg .navbar-nav .nav-link {
  4192. padding-right: 0.5rem;
  4193. padding-left: 0.5rem;
  4194. }
  4195. .navbar-expand-lg > .container,
  4196. .navbar-expand-lg > .container-fluid,
  4197. .navbar-expand-lg > .container-sm,
  4198. .navbar-expand-lg > .container-md,
  4199. .navbar-expand-lg > .container-lg,
  4200. .navbar-expand-lg > .container-xl {
  4201. flex-wrap: nowrap;
  4202. }
  4203. .navbar-expand-lg .navbar-collapse {
  4204. display: flex !important;
  4205. flex-basis: auto;
  4206. }
  4207. .navbar-expand-lg .navbar-toggler {
  4208. display: none;
  4209. }
  4210. }
  4211. @media (max-width: 1199.98px) {
  4212. .navbar-expand-xl > .container,
  4213. .navbar-expand-xl > .container-fluid,
  4214. .navbar-expand-xl > .container-sm,
  4215. .navbar-expand-xl > .container-md,
  4216. .navbar-expand-xl > .container-lg,
  4217. .navbar-expand-xl > .container-xl {
  4218. padding-right: 0;
  4219. padding-left: 0;
  4220. }
  4221. }
  4222. @media (min-width: 1200px) {
  4223. .navbar-expand-xl {
  4224. flex-flow: row nowrap;
  4225. justify-content: flex-start;
  4226. }
  4227. .navbar-expand-xl .navbar-nav {
  4228. flex-direction: row;
  4229. }
  4230. .navbar-expand-xl .navbar-nav .dropdown-menu {
  4231. position: absolute;
  4232. }
  4233. .navbar-expand-xl .navbar-nav .nav-link {
  4234. padding-right: 0.5rem;
  4235. padding-left: 0.5rem;
  4236. }
  4237. .navbar-expand-xl > .container,
  4238. .navbar-expand-xl > .container-fluid,
  4239. .navbar-expand-xl > .container-sm,
  4240. .navbar-expand-xl > .container-md,
  4241. .navbar-expand-xl > .container-lg,
  4242. .navbar-expand-xl > .container-xl {
  4243. flex-wrap: nowrap;
  4244. }
  4245. .navbar-expand-xl .navbar-collapse {
  4246. display: flex !important;
  4247. flex-basis: auto;
  4248. }
  4249. .navbar-expand-xl .navbar-toggler {
  4250. display: none;
  4251. }
  4252. }
  4253. .navbar-expand {
  4254. flex-flow: row nowrap;
  4255. justify-content: flex-start;
  4256. }
  4257. .navbar-expand > .container,
  4258. .navbar-expand > .container-fluid,
  4259. .navbar-expand > .container-sm,
  4260. .navbar-expand > .container-md,
  4261. .navbar-expand > .container-lg,
  4262. .navbar-expand > .container-xl {
  4263. padding-right: 0;
  4264. padding-left: 0;
  4265. }
  4266. .navbar-expand .navbar-nav {
  4267. flex-direction: row;
  4268. }
  4269. .navbar-expand .navbar-nav .dropdown-menu {
  4270. position: absolute;
  4271. }
  4272. .navbar-expand .navbar-nav .nav-link {
  4273. padding-right: 0.5rem;
  4274. padding-left: 0.5rem;
  4275. }
  4276. .navbar-expand > .container,
  4277. .navbar-expand > .container-fluid,
  4278. .navbar-expand > .container-sm,
  4279. .navbar-expand > .container-md,
  4280. .navbar-expand > .container-lg,
  4281. .navbar-expand > .container-xl {
  4282. flex-wrap: nowrap;
  4283. }
  4284. .navbar-expand .navbar-collapse {
  4285. display: flex !important;
  4286. flex-basis: auto;
  4287. }
  4288. .navbar-expand .navbar-toggler {
  4289. display: none;
  4290. }
  4291. .navbar-light .navbar-brand {
  4292. color: rgba(0, 0, 0, 0.9);
  4293. }
  4294. .navbar-light .navbar-brand:hover,
  4295. .navbar-light .navbar-brand:focus {
  4296. color: rgba(0, 0, 0, 0.9);
  4297. }
  4298. .navbar-light .navbar-nav .nav-link {
  4299. color: rgba(0, 0, 0, 0.5);
  4300. }
  4301. .navbar-light .navbar-nav .nav-link:hover,
  4302. .navbar-light .navbar-nav .nav-link:focus {
  4303. color: rgba(0, 0, 0, 0.7);
  4304. }
  4305. .navbar-light .navbar-nav .nav-link.disabled {
  4306. color: rgba(0, 0, 0, 0.3);
  4307. }
  4308. .navbar-light .navbar-nav .show > .nav-link,
  4309. .navbar-light .navbar-nav .active > .nav-link,
  4310. .navbar-light .navbar-nav .nav-link.show,
  4311. .navbar-light .navbar-nav .nav-link.active {
  4312. color: rgba(0, 0, 0, 0.9);
  4313. }
  4314. .navbar-light .navbar-toggler {
  4315. color: rgba(0, 0, 0, 0.5);
  4316. border-color: rgba(0, 0, 0, 0.1);
  4317. }
  4318. .navbar-light .navbar-toggler-icon {
  4319. 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%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  4320. }
  4321. .navbar-light .navbar-text {
  4322. color: rgba(0, 0, 0, 0.5);
  4323. }
  4324. .navbar-light .navbar-text a {
  4325. color: rgba(0, 0, 0, 0.9);
  4326. }
  4327. .navbar-light .navbar-text a:hover,
  4328. .navbar-light .navbar-text a:focus {
  4329. color: rgba(0, 0, 0, 0.9);
  4330. }
  4331. .navbar-dark .navbar-brand {
  4332. color: #fff;
  4333. }
  4334. .navbar-dark .navbar-brand:hover,
  4335. .navbar-dark .navbar-brand:focus {
  4336. color: #fff;
  4337. }
  4338. .navbar-dark .navbar-nav .nav-link {
  4339. color: rgba(255, 255, 255, 0.5);
  4340. }
  4341. .navbar-dark .navbar-nav .nav-link:hover,
  4342. .navbar-dark .navbar-nav .nav-link:focus {
  4343. color: rgba(255, 255, 255, 0.75);
  4344. }
  4345. .navbar-dark .navbar-nav .nav-link.disabled {
  4346. color: rgba(255, 255, 255, 0.25);
  4347. }
  4348. .navbar-dark .navbar-nav .show > .nav-link,
  4349. .navbar-dark .navbar-nav .active > .nav-link,
  4350. .navbar-dark .navbar-nav .nav-link.show,
  4351. .navbar-dark .navbar-nav .nav-link.active {
  4352. color: #fff;
  4353. }
  4354. .navbar-dark .navbar-toggler {
  4355. color: rgba(255, 255, 255, 0.5);
  4356. border-color: rgba(255, 255, 255, 0.1);
  4357. }
  4358. .navbar-dark .navbar-toggler-icon {
  4359. 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%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  4360. }
  4361. .navbar-dark .navbar-text {
  4362. color: rgba(255, 255, 255, 0.5);
  4363. }
  4364. .navbar-dark .navbar-text a {
  4365. color: #fff;
  4366. }
  4367. .navbar-dark .navbar-text a:hover,
  4368. .navbar-dark .navbar-text a:focus {
  4369. color: #fff;
  4370. }
  4371. .card {
  4372. position: relative;
  4373. display: flex;
  4374. flex-direction: column;
  4375. min-width: 0;
  4376. word-wrap: break-word;
  4377. background-color: #fff;
  4378. background-clip: border-box;
  4379. border: 1px solid rgba(0, 0, 0, 0.125);
  4380. border-radius: 0.25rem;
  4381. }
  4382. .card > hr {
  4383. margin-right: 0;
  4384. margin-left: 0;
  4385. }
  4386. .card > .list-group {
  4387. border-top: inherit;
  4388. border-bottom: inherit;
  4389. }
  4390. .card > .list-group:first-child {
  4391. border-top-width: 0;
  4392. border-top-left-radius: calc(0.25rem - 1px);
  4393. border-top-right-radius: calc(0.25rem - 1px);
  4394. }
  4395. .card > .list-group:last-child {
  4396. border-bottom-width: 0;
  4397. border-bottom-right-radius: calc(0.25rem - 1px);
  4398. border-bottom-left-radius: calc(0.25rem - 1px);
  4399. }
  4400. .card-body {
  4401. flex: 1 1 auto;
  4402. min-height: 1px;
  4403. padding: 1.25rem;
  4404. }
  4405. .card-title {
  4406. margin-bottom: 0.75rem;
  4407. }
  4408. .card-subtitle {
  4409. margin-top: -0.375rem;
  4410. margin-bottom: 0;
  4411. }
  4412. .card-text:last-child {
  4413. margin-bottom: 0;
  4414. }
  4415. .card-link:hover {
  4416. text-decoration: none;
  4417. }
  4418. .card-link + .card-link {
  4419. margin-left: 1.25rem;
  4420. }
  4421. .card-header {
  4422. padding: 0.75rem 1.25rem;
  4423. margin-bottom: 0;
  4424. background-color: rgba(0, 0, 0, 0.03);
  4425. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  4426. }
  4427. .card-header:first-child {
  4428. border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
  4429. }
  4430. .card-header + .list-group .list-group-item:first-child {
  4431. border-top: 0;
  4432. }
  4433. .card-footer {
  4434. padding: 0.75rem 1.25rem;
  4435. background-color: rgba(0, 0, 0, 0.03);
  4436. border-top: 1px solid rgba(0, 0, 0, 0.125);
  4437. }
  4438. .card-footer:last-child {
  4439. border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
  4440. }
  4441. .card-header-tabs {
  4442. margin-right: -0.625rem;
  4443. margin-bottom: -0.75rem;
  4444. margin-left: -0.625rem;
  4445. border-bottom: 0;
  4446. }
  4447. .card-header-pills {
  4448. margin-right: -0.625rem;
  4449. margin-left: -0.625rem;
  4450. }
  4451. .card-img-overlay {
  4452. position: absolute;
  4453. top: 0;
  4454. right: 0;
  4455. bottom: 0;
  4456. left: 0;
  4457. padding: 1.25rem;
  4458. }
  4459. .card-img,
  4460. .card-img-top,
  4461. .card-img-bottom {
  4462. flex-shrink: 0;
  4463. width: 100%;
  4464. }
  4465. .card-img,
  4466. .card-img-top {
  4467. border-top-left-radius: calc(0.25rem - 1px);
  4468. border-top-right-radius: calc(0.25rem - 1px);
  4469. }
  4470. .card-img,
  4471. .card-img-bottom {
  4472. border-bottom-right-radius: calc(0.25rem - 1px);
  4473. border-bottom-left-radius: calc(0.25rem - 1px);
  4474. }
  4475. .card-deck .card {
  4476. margin-bottom: 15px;
  4477. }
  4478. @media (min-width: 576px) {
  4479. .card-deck {
  4480. display: flex;
  4481. flex-flow: row wrap;
  4482. margin-right: -15px;
  4483. margin-left: -15px;
  4484. }
  4485. .card-deck .card {
  4486. flex: 1 0 0%;
  4487. margin-right: 15px;
  4488. margin-bottom: 0;
  4489. margin-left: 15px;
  4490. }
  4491. }
  4492. .card-group > .card {
  4493. margin-bottom: 15px;
  4494. }
  4495. @media (min-width: 576px) {
  4496. .card-group {
  4497. display: flex;
  4498. flex-flow: row wrap;
  4499. }
  4500. .card-group > .card {
  4501. flex: 1 0 0%;
  4502. margin-bottom: 0;
  4503. }
  4504. .card-group > .card + .card {
  4505. margin-left: 0;
  4506. border-left: 0;
  4507. }
  4508. .card-group > .card:not(:last-child) {
  4509. border-top-right-radius: 0;
  4510. border-bottom-right-radius: 0;
  4511. }
  4512. .card-group > .card:not(:last-child) .card-img-top,
  4513. .card-group > .card:not(:last-child) .card-header {
  4514. border-top-right-radius: 0;
  4515. }
  4516. .card-group > .card:not(:last-child) .card-img-bottom,
  4517. .card-group > .card:not(:last-child) .card-footer {
  4518. border-bottom-right-radius: 0;
  4519. }
  4520. .card-group > .card:not(:first-child) {
  4521. border-top-left-radius: 0;
  4522. border-bottom-left-radius: 0;
  4523. }
  4524. .card-group > .card:not(:first-child) .card-img-top,
  4525. .card-group > .card:not(:first-child) .card-header {
  4526. border-top-left-radius: 0;
  4527. }
  4528. .card-group > .card:not(:first-child) .card-img-bottom,
  4529. .card-group > .card:not(:first-child) .card-footer {
  4530. border-bottom-left-radius: 0;
  4531. }
  4532. }
  4533. .card-columns .card {
  4534. margin-bottom: 0.75rem;
  4535. }
  4536. @media (min-width: 576px) {
  4537. .card-columns {
  4538. -moz-column-count: 3;
  4539. column-count: 3;
  4540. -moz-column-gap: 1.25rem;
  4541. column-gap: 1.25rem;
  4542. orphans: 1;
  4543. widows: 1;
  4544. }
  4545. .card-columns .card {
  4546. display: inline-block;
  4547. width: 100%;
  4548. }
  4549. }
  4550. .accordion > .card {
  4551. overflow: hidden;
  4552. }
  4553. .accordion > .card:not(:last-of-type) {
  4554. border-bottom: 0;
  4555. border-bottom-right-radius: 0;
  4556. border-bottom-left-radius: 0;
  4557. }
  4558. .accordion > .card:not(:first-of-type) {
  4559. border-top-left-radius: 0;
  4560. border-top-right-radius: 0;
  4561. }
  4562. .accordion > .card > .card-header {
  4563. border-radius: 0;
  4564. margin-bottom: -1px;
  4565. }
  4566. .breadcrumb {
  4567. display: flex;
  4568. flex-wrap: wrap;
  4569. padding: 0.75rem 1rem;
  4570. margin-bottom: 1rem;
  4571. list-style: none;
  4572. background-color: #e9ecef;
  4573. border-radius: 0.25rem;
  4574. }
  4575. .breadcrumb-item {
  4576. display: flex;
  4577. }
  4578. .breadcrumb-item + .breadcrumb-item {
  4579. padding-left: 0.5rem;
  4580. }
  4581. .breadcrumb-item + .breadcrumb-item::before {
  4582. display: inline-block;
  4583. padding-right: 0.5rem;
  4584. color: #6c757d;
  4585. content: "/";
  4586. }
  4587. .breadcrumb-item + .breadcrumb-item:hover::before {
  4588. text-decoration: underline;
  4589. }
  4590. .breadcrumb-item + .breadcrumb-item:hover::before {
  4591. text-decoration: none;
  4592. }
  4593. .breadcrumb-item.active {
  4594. color: #6c757d;
  4595. }
  4596. .pagination {
  4597. display: flex;
  4598. padding-left: 0;
  4599. list-style: none;
  4600. border-radius: 0.25rem;
  4601. }
  4602. .page-link {
  4603. position: relative;
  4604. display: block;
  4605. padding: 0.5rem 0.75rem;
  4606. margin-left: -1px;
  4607. line-height: 1.25;
  4608. color: #3490dc;
  4609. background-color: #fff;
  4610. border: 1px solid #dee2e6;
  4611. }
  4612. .page-link:hover {
  4613. z-index: 2;
  4614. color: #1d68a7;
  4615. text-decoration: none;
  4616. background-color: #e9ecef;
  4617. border-color: #dee2e6;
  4618. }
  4619. .page-link:focus {
  4620. z-index: 3;
  4621. outline: 0;
  4622. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  4623. }
  4624. .page-item:first-child .page-link {
  4625. margin-left: 0;
  4626. border-top-left-radius: 0.25rem;
  4627. border-bottom-left-radius: 0.25rem;
  4628. }
  4629. .page-item:last-child .page-link {
  4630. border-top-right-radius: 0.25rem;
  4631. border-bottom-right-radius: 0.25rem;
  4632. }
  4633. .page-item.active .page-link {
  4634. z-index: 3;
  4635. color: #fff;
  4636. background-color: #3490dc;
  4637. border-color: #3490dc;
  4638. }
  4639. .page-item.disabled .page-link {
  4640. color: #6c757d;
  4641. pointer-events: none;
  4642. cursor: auto;
  4643. background-color: #fff;
  4644. border-color: #dee2e6;
  4645. }
  4646. .pagination-lg .page-link {
  4647. padding: 0.75rem 1.5rem;
  4648. font-size: 1.125rem;
  4649. line-height: 1.5;
  4650. }
  4651. .pagination-lg .page-item:first-child .page-link {
  4652. border-top-left-radius: 0.3rem;
  4653. border-bottom-left-radius: 0.3rem;
  4654. }
  4655. .pagination-lg .page-item:last-child .page-link {
  4656. border-top-right-radius: 0.3rem;
  4657. border-bottom-right-radius: 0.3rem;
  4658. }
  4659. .pagination-sm .page-link {
  4660. padding: 0.25rem 0.5rem;
  4661. font-size: 0.7875rem;
  4662. line-height: 1.5;
  4663. }
  4664. .pagination-sm .page-item:first-child .page-link {
  4665. border-top-left-radius: 0.2rem;
  4666. border-bottom-left-radius: 0.2rem;
  4667. }
  4668. .pagination-sm .page-item:last-child .page-link {
  4669. border-top-right-radius: 0.2rem;
  4670. border-bottom-right-radius: 0.2rem;
  4671. }
  4672. .badge {
  4673. display: inline-block;
  4674. padding: 0.25em 0.4em;
  4675. font-size: 75%;
  4676. font-weight: 700;
  4677. line-height: 1;
  4678. text-align: center;
  4679. white-space: nowrap;
  4680. vertical-align: baseline;
  4681. border-radius: 0.25rem;
  4682. 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;
  4683. }
  4684. @media (prefers-reduced-motion: reduce) {
  4685. .badge {
  4686. transition: none;
  4687. }
  4688. }
  4689. a.badge:hover,
  4690. a.badge:focus {
  4691. text-decoration: none;
  4692. }
  4693. .badge:empty {
  4694. display: none;
  4695. }
  4696. .btn .badge {
  4697. position: relative;
  4698. top: -1px;
  4699. }
  4700. .badge-pill {
  4701. padding-right: 0.6em;
  4702. padding-left: 0.6em;
  4703. border-radius: 10rem;
  4704. }
  4705. .badge-primary {
  4706. color: #fff;
  4707. background-color: #3490dc;
  4708. }
  4709. a.badge-primary:hover,
  4710. a.badge-primary:focus {
  4711. color: #fff;
  4712. background-color: #2176bd;
  4713. }
  4714. a.badge-primary:focus,
  4715. a.badge-primary.focus {
  4716. outline: 0;
  4717. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  4718. }
  4719. .badge-secondary {
  4720. color: #fff;
  4721. background-color: #6c757d;
  4722. }
  4723. a.badge-secondary:hover,
  4724. a.badge-secondary:focus {
  4725. color: #fff;
  4726. background-color: #545b62;
  4727. }
  4728. a.badge-secondary:focus,
  4729. a.badge-secondary.focus {
  4730. outline: 0;
  4731. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  4732. }
  4733. .badge-success {
  4734. color: #fff;
  4735. background-color: #38c172;
  4736. }
  4737. a.badge-success:hover,
  4738. a.badge-success:focus {
  4739. color: #fff;
  4740. background-color: #2d995b;
  4741. }
  4742. a.badge-success:focus,
  4743. a.badge-success.focus {
  4744. outline: 0;
  4745. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  4746. }
  4747. .badge-info {
  4748. color: #212529;
  4749. background-color: #6cb2eb;
  4750. }
  4751. a.badge-info:hover,
  4752. a.badge-info:focus {
  4753. color: #212529;
  4754. background-color: #3f9ae5;
  4755. }
  4756. a.badge-info:focus,
  4757. a.badge-info.focus {
  4758. outline: 0;
  4759. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  4760. }
  4761. .badge-warning {
  4762. color: #212529;
  4763. background-color: #ffed4a;
  4764. }
  4765. a.badge-warning:hover,
  4766. a.badge-warning:focus {
  4767. color: #212529;
  4768. background-color: #ffe817;
  4769. }
  4770. a.badge-warning:focus,
  4771. a.badge-warning.focus {
  4772. outline: 0;
  4773. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  4774. }
  4775. .badge-danger {
  4776. color: #fff;
  4777. background-color: #e3342f;
  4778. }
  4779. a.badge-danger:hover,
  4780. a.badge-danger:focus {
  4781. color: #fff;
  4782. background-color: #c51f1a;
  4783. }
  4784. a.badge-danger:focus,
  4785. a.badge-danger.focus {
  4786. outline: 0;
  4787. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  4788. }
  4789. .badge-light {
  4790. color: #212529;
  4791. background-color: #f8f9fa;
  4792. }
  4793. a.badge-light:hover,
  4794. a.badge-light:focus {
  4795. color: #212529;
  4796. background-color: #dae0e5;
  4797. }
  4798. a.badge-light:focus,
  4799. a.badge-light.focus {
  4800. outline: 0;
  4801. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  4802. }
  4803. .badge-dark {
  4804. color: #fff;
  4805. background-color: #343a40;
  4806. }
  4807. a.badge-dark:hover,
  4808. a.badge-dark:focus {
  4809. color: #fff;
  4810. background-color: #1d2124;
  4811. }
  4812. a.badge-dark:focus,
  4813. a.badge-dark.focus {
  4814. outline: 0;
  4815. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  4816. }
  4817. .jumbotron {
  4818. padding: 2rem 1rem;
  4819. margin-bottom: 2rem;
  4820. background-color: #e9ecef;
  4821. border-radius: 0.3rem;
  4822. }
  4823. @media (min-width: 576px) {
  4824. .jumbotron {
  4825. padding: 4rem 2rem;
  4826. }
  4827. }
  4828. .jumbotron-fluid {
  4829. padding-right: 0;
  4830. padding-left: 0;
  4831. border-radius: 0;
  4832. }
  4833. .alert {
  4834. position: relative;
  4835. padding: 0.75rem 1.25rem;
  4836. margin-bottom: 1rem;
  4837. border: 1px solid transparent;
  4838. border-radius: 0.25rem;
  4839. }
  4840. .alert-heading {
  4841. color: inherit;
  4842. }
  4843. .alert-link {
  4844. font-weight: 700;
  4845. }
  4846. .alert-dismissible {
  4847. padding-right: 3.85rem;
  4848. }
  4849. .alert-dismissible .close {
  4850. position: absolute;
  4851. top: 0;
  4852. right: 0;
  4853. padding: 0.75rem 1.25rem;
  4854. color: inherit;
  4855. }
  4856. .alert-primary {
  4857. color: #1b4b72;
  4858. background-color: #d6e9f8;
  4859. border-color: #c6e0f5;
  4860. }
  4861. .alert-primary hr {
  4862. border-top-color: #b0d4f1;
  4863. }
  4864. .alert-primary .alert-link {
  4865. color: #113049;
  4866. }
  4867. .alert-secondary {
  4868. color: #383d41;
  4869. background-color: #e2e3e5;
  4870. border-color: #d6d8db;
  4871. }
  4872. .alert-secondary hr {
  4873. border-top-color: #c8cbcf;
  4874. }
  4875. .alert-secondary .alert-link {
  4876. color: #202326;
  4877. }
  4878. .alert-success {
  4879. color: #1d643b;
  4880. background-color: #d7f3e3;
  4881. border-color: #c7eed8;
  4882. }
  4883. .alert-success hr {
  4884. border-top-color: #b3e8ca;
  4885. }
  4886. .alert-success .alert-link {
  4887. color: #123c24;
  4888. }
  4889. .alert-info {
  4890. color: #385d7a;
  4891. background-color: #e2f0fb;
  4892. border-color: #d6e9f9;
  4893. }
  4894. .alert-info hr {
  4895. border-top-color: #c0ddf6;
  4896. }
  4897. .alert-info .alert-link {
  4898. color: #284257;
  4899. }
  4900. .alert-warning {
  4901. color: #857b26;
  4902. background-color: #fffbdb;
  4903. border-color: #fffacc;
  4904. }
  4905. .alert-warning hr {
  4906. border-top-color: #fff8b3;
  4907. }
  4908. .alert-warning .alert-link {
  4909. color: #5d561b;
  4910. }
  4911. .alert-danger {
  4912. color: #761b18;
  4913. background-color: #f9d6d5;
  4914. border-color: #f7c6c5;
  4915. }
  4916. .alert-danger hr {
  4917. border-top-color: #f4b0af;
  4918. }
  4919. .alert-danger .alert-link {
  4920. color: #4c110f;
  4921. }
  4922. .alert-light {
  4923. color: #818182;
  4924. background-color: #fefefe;
  4925. border-color: #fdfdfe;
  4926. }
  4927. .alert-light hr {
  4928. border-top-color: #ececf6;
  4929. }
  4930. .alert-light .alert-link {
  4931. color: #686868;
  4932. }
  4933. .alert-dark {
  4934. color: #1b1e21;
  4935. background-color: #d6d8d9;
  4936. border-color: #c6c8ca;
  4937. }
  4938. .alert-dark hr {
  4939. border-top-color: #b9bbbe;
  4940. }
  4941. .alert-dark .alert-link {
  4942. color: #040505;
  4943. }
  4944. @-webkit-keyframes progress-bar-stripes {
  4945. from {
  4946. background-position: 1rem 0;
  4947. }
  4948. to {
  4949. background-position: 0 0;
  4950. }
  4951. }
  4952. @keyframes progress-bar-stripes {
  4953. from {
  4954. background-position: 1rem 0;
  4955. }
  4956. to {
  4957. background-position: 0 0;
  4958. }
  4959. }
  4960. .progress {
  4961. display: flex;
  4962. height: 1rem;
  4963. overflow: hidden;
  4964. line-height: 0;
  4965. font-size: 0.675rem;
  4966. background-color: #e9ecef;
  4967. border-radius: 0.25rem;
  4968. }
  4969. .progress-bar {
  4970. display: flex;
  4971. flex-direction: column;
  4972. justify-content: center;
  4973. overflow: hidden;
  4974. color: #fff;
  4975. text-align: center;
  4976. white-space: nowrap;
  4977. background-color: #3490dc;
  4978. transition: width 0.6s ease;
  4979. }
  4980. @media (prefers-reduced-motion: reduce) {
  4981. .progress-bar {
  4982. transition: none;
  4983. }
  4984. }
  4985. .progress-bar-striped {
  4986. 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);
  4987. background-size: 1rem 1rem;
  4988. }
  4989. .progress-bar-animated {
  4990. -webkit-animation: progress-bar-stripes 1s linear infinite;
  4991. animation: progress-bar-stripes 1s linear infinite;
  4992. }
  4993. @media (prefers-reduced-motion: reduce) {
  4994. .progress-bar-animated {
  4995. -webkit-animation: none;
  4996. animation: none;
  4997. }
  4998. }
  4999. .media {
  5000. display: flex;
  5001. align-items: flex-start;
  5002. }
  5003. .media-body {
  5004. flex: 1;
  5005. }
  5006. .list-group {
  5007. display: flex;
  5008. flex-direction: column;
  5009. padding-left: 0;
  5010. margin-bottom: 0;
  5011. border-radius: 0.25rem;
  5012. }
  5013. .list-group-item-action {
  5014. width: 100%;
  5015. color: #495057;
  5016. text-align: inherit;
  5017. }
  5018. .list-group-item-action:hover,
  5019. .list-group-item-action:focus {
  5020. z-index: 1;
  5021. color: #495057;
  5022. text-decoration: none;
  5023. background-color: #f8f9fa;
  5024. }
  5025. .list-group-item-action:active {
  5026. color: #212529;
  5027. background-color: #e9ecef;
  5028. }
  5029. .list-group-item {
  5030. position: relative;
  5031. display: block;
  5032. padding: 0.75rem 1.25rem;
  5033. background-color: #fff;
  5034. border: 1px solid rgba(0, 0, 0, 0.125);
  5035. }
  5036. .list-group-item:first-child {
  5037. border-top-left-radius: inherit;
  5038. border-top-right-radius: inherit;
  5039. }
  5040. .list-group-item:last-child {
  5041. border-bottom-right-radius: inherit;
  5042. border-bottom-left-radius: inherit;
  5043. }
  5044. .list-group-item.disabled,
  5045. .list-group-item:disabled {
  5046. color: #6c757d;
  5047. pointer-events: none;
  5048. background-color: #fff;
  5049. }
  5050. .list-group-item.active {
  5051. z-index: 2;
  5052. color: #fff;
  5053. background-color: #3490dc;
  5054. border-color: #3490dc;
  5055. }
  5056. .list-group-item + .list-group-item {
  5057. border-top-width: 0;
  5058. }
  5059. .list-group-item + .list-group-item.active {
  5060. margin-top: -1px;
  5061. border-top-width: 1px;
  5062. }
  5063. .list-group-horizontal {
  5064. flex-direction: row;
  5065. }
  5066. .list-group-horizontal > .list-group-item:first-child {
  5067. border-bottom-left-radius: 0.25rem;
  5068. border-top-right-radius: 0;
  5069. }
  5070. .list-group-horizontal > .list-group-item:last-child {
  5071. border-top-right-radius: 0.25rem;
  5072. border-bottom-left-radius: 0;
  5073. }
  5074. .list-group-horizontal > .list-group-item.active {
  5075. margin-top: 0;
  5076. }
  5077. .list-group-horizontal > .list-group-item + .list-group-item {
  5078. border-top-width: 1px;
  5079. border-left-width: 0;
  5080. }
  5081. .list-group-horizontal > .list-group-item + .list-group-item.active {
  5082. margin-left: -1px;
  5083. border-left-width: 1px;
  5084. }
  5085. @media (min-width: 576px) {
  5086. .list-group-horizontal-sm {
  5087. flex-direction: row;
  5088. }
  5089. .list-group-horizontal-sm > .list-group-item:first-child {
  5090. border-bottom-left-radius: 0.25rem;
  5091. border-top-right-radius: 0;
  5092. }
  5093. .list-group-horizontal-sm > .list-group-item:last-child {
  5094. border-top-right-radius: 0.25rem;
  5095. border-bottom-left-radius: 0;
  5096. }
  5097. .list-group-horizontal-sm > .list-group-item.active {
  5098. margin-top: 0;
  5099. }
  5100. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  5101. border-top-width: 1px;
  5102. border-left-width: 0;
  5103. }
  5104. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  5105. margin-left: -1px;
  5106. border-left-width: 1px;
  5107. }
  5108. }
  5109. @media (min-width: 768px) {
  5110. .list-group-horizontal-md {
  5111. flex-direction: row;
  5112. }
  5113. .list-group-horizontal-md > .list-group-item:first-child {
  5114. border-bottom-left-radius: 0.25rem;
  5115. border-top-right-radius: 0;
  5116. }
  5117. .list-group-horizontal-md > .list-group-item:last-child {
  5118. border-top-right-radius: 0.25rem;
  5119. border-bottom-left-radius: 0;
  5120. }
  5121. .list-group-horizontal-md > .list-group-item.active {
  5122. margin-top: 0;
  5123. }
  5124. .list-group-horizontal-md > .list-group-item + .list-group-item {
  5125. border-top-width: 1px;
  5126. border-left-width: 0;
  5127. }
  5128. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  5129. margin-left: -1px;
  5130. border-left-width: 1px;
  5131. }
  5132. }
  5133. @media (min-width: 992px) {
  5134. .list-group-horizontal-lg {
  5135. flex-direction: row;
  5136. }
  5137. .list-group-horizontal-lg > .list-group-item:first-child {
  5138. border-bottom-left-radius: 0.25rem;
  5139. border-top-right-radius: 0;
  5140. }
  5141. .list-group-horizontal-lg > .list-group-item:last-child {
  5142. border-top-right-radius: 0.25rem;
  5143. border-bottom-left-radius: 0;
  5144. }
  5145. .list-group-horizontal-lg > .list-group-item.active {
  5146. margin-top: 0;
  5147. }
  5148. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  5149. border-top-width: 1px;
  5150. border-left-width: 0;
  5151. }
  5152. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  5153. margin-left: -1px;
  5154. border-left-width: 1px;
  5155. }
  5156. }
  5157. @media (min-width: 1200px) {
  5158. .list-group-horizontal-xl {
  5159. flex-direction: row;
  5160. }
  5161. .list-group-horizontal-xl > .list-group-item:first-child {
  5162. border-bottom-left-radius: 0.25rem;
  5163. border-top-right-radius: 0;
  5164. }
  5165. .list-group-horizontal-xl > .list-group-item:last-child {
  5166. border-top-right-radius: 0.25rem;
  5167. border-bottom-left-radius: 0;
  5168. }
  5169. .list-group-horizontal-xl > .list-group-item.active {
  5170. margin-top: 0;
  5171. }
  5172. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  5173. border-top-width: 1px;
  5174. border-left-width: 0;
  5175. }
  5176. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  5177. margin-left: -1px;
  5178. border-left-width: 1px;
  5179. }
  5180. }
  5181. .list-group-flush {
  5182. border-radius: 0;
  5183. }
  5184. .list-group-flush > .list-group-item {
  5185. border-width: 0 0 1px;
  5186. }
  5187. .list-group-flush > .list-group-item:last-child {
  5188. border-bottom-width: 0;
  5189. }
  5190. .list-group-item-primary {
  5191. color: #1b4b72;
  5192. background-color: #c6e0f5;
  5193. }
  5194. .list-group-item-primary.list-group-item-action:hover,
  5195. .list-group-item-primary.list-group-item-action:focus {
  5196. color: #1b4b72;
  5197. background-color: #b0d4f1;
  5198. }
  5199. .list-group-item-primary.list-group-item-action.active {
  5200. color: #fff;
  5201. background-color: #1b4b72;
  5202. border-color: #1b4b72;
  5203. }
  5204. .list-group-item-secondary {
  5205. color: #383d41;
  5206. background-color: #d6d8db;
  5207. }
  5208. .list-group-item-secondary.list-group-item-action:hover,
  5209. .list-group-item-secondary.list-group-item-action:focus {
  5210. color: #383d41;
  5211. background-color: #c8cbcf;
  5212. }
  5213. .list-group-item-secondary.list-group-item-action.active {
  5214. color: #fff;
  5215. background-color: #383d41;
  5216. border-color: #383d41;
  5217. }
  5218. .list-group-item-success {
  5219. color: #1d643b;
  5220. background-color: #c7eed8;
  5221. }
  5222. .list-group-item-success.list-group-item-action:hover,
  5223. .list-group-item-success.list-group-item-action:focus {
  5224. color: #1d643b;
  5225. background-color: #b3e8ca;
  5226. }
  5227. .list-group-item-success.list-group-item-action.active {
  5228. color: #fff;
  5229. background-color: #1d643b;
  5230. border-color: #1d643b;
  5231. }
  5232. .list-group-item-info {
  5233. color: #385d7a;
  5234. background-color: #d6e9f9;
  5235. }
  5236. .list-group-item-info.list-group-item-action:hover,
  5237. .list-group-item-info.list-group-item-action:focus {
  5238. color: #385d7a;
  5239. background-color: #c0ddf6;
  5240. }
  5241. .list-group-item-info.list-group-item-action.active {
  5242. color: #fff;
  5243. background-color: #385d7a;
  5244. border-color: #385d7a;
  5245. }
  5246. .list-group-item-warning {
  5247. color: #857b26;
  5248. background-color: #fffacc;
  5249. }
  5250. .list-group-item-warning.list-group-item-action:hover,
  5251. .list-group-item-warning.list-group-item-action:focus {
  5252. color: #857b26;
  5253. background-color: #fff8b3;
  5254. }
  5255. .list-group-item-warning.list-group-item-action.active {
  5256. color: #fff;
  5257. background-color: #857b26;
  5258. border-color: #857b26;
  5259. }
  5260. .list-group-item-danger {
  5261. color: #761b18;
  5262. background-color: #f7c6c5;
  5263. }
  5264. .list-group-item-danger.list-group-item-action:hover,
  5265. .list-group-item-danger.list-group-item-action:focus {
  5266. color: #761b18;
  5267. background-color: #f4b0af;
  5268. }
  5269. .list-group-item-danger.list-group-item-action.active {
  5270. color: #fff;
  5271. background-color: #761b18;
  5272. border-color: #761b18;
  5273. }
  5274. .list-group-item-light {
  5275. color: #818182;
  5276. background-color: #fdfdfe;
  5277. }
  5278. .list-group-item-light.list-group-item-action:hover,
  5279. .list-group-item-light.list-group-item-action:focus {
  5280. color: #818182;
  5281. background-color: #ececf6;
  5282. }
  5283. .list-group-item-light.list-group-item-action.active {
  5284. color: #fff;
  5285. background-color: #818182;
  5286. border-color: #818182;
  5287. }
  5288. .list-group-item-dark {
  5289. color: #1b1e21;
  5290. background-color: #c6c8ca;
  5291. }
  5292. .list-group-item-dark.list-group-item-action:hover,
  5293. .list-group-item-dark.list-group-item-action:focus {
  5294. color: #1b1e21;
  5295. background-color: #b9bbbe;
  5296. }
  5297. .list-group-item-dark.list-group-item-action.active {
  5298. color: #fff;
  5299. background-color: #1b1e21;
  5300. border-color: #1b1e21;
  5301. }
  5302. .close {
  5303. float: right;
  5304. font-size: 1.35rem;
  5305. font-weight: 700;
  5306. line-height: 1;
  5307. color: #000;
  5308. text-shadow: 0 1px 0 #fff;
  5309. opacity: 0.5;
  5310. }
  5311. .close:hover {
  5312. color: #000;
  5313. text-decoration: none;
  5314. }
  5315. .close:not(:disabled):not(.disabled):hover,
  5316. .close:not(:disabled):not(.disabled):focus {
  5317. opacity: 0.75;
  5318. }
  5319. button.close {
  5320. padding: 0;
  5321. background-color: transparent;
  5322. border: 0;
  5323. }
  5324. a.close.disabled {
  5325. pointer-events: none;
  5326. }
  5327. .toast {
  5328. max-width: 350px;
  5329. overflow: hidden;
  5330. font-size: 0.875rem;
  5331. background-color: rgba(255, 255, 255, 0.85);
  5332. background-clip: padding-box;
  5333. border: 1px solid rgba(0, 0, 0, 0.1);
  5334. box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  5335. -webkit-backdrop-filter: blur(10px);
  5336. backdrop-filter: blur(10px);
  5337. opacity: 0;
  5338. border-radius: 0.25rem;
  5339. }
  5340. .toast:not(:last-child) {
  5341. margin-bottom: 0.75rem;
  5342. }
  5343. .toast.showing {
  5344. opacity: 1;
  5345. }
  5346. .toast.show {
  5347. display: block;
  5348. opacity: 1;
  5349. }
  5350. .toast.hide {
  5351. display: none;
  5352. }
  5353. .toast-header {
  5354. display: flex;
  5355. align-items: center;
  5356. padding: 0.25rem 0.75rem;
  5357. color: #6c757d;
  5358. background-color: rgba(255, 255, 255, 0.85);
  5359. background-clip: padding-box;
  5360. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  5361. }
  5362. .toast-body {
  5363. padding: 0.75rem;
  5364. }
  5365. .modal-open {
  5366. overflow: hidden;
  5367. }
  5368. .modal-open .modal {
  5369. overflow-x: hidden;
  5370. overflow-y: auto;
  5371. }
  5372. .modal {
  5373. position: fixed;
  5374. top: 0;
  5375. left: 0;
  5376. z-index: 1050;
  5377. display: none;
  5378. width: 100%;
  5379. height: 100%;
  5380. overflow: hidden;
  5381. outline: 0;
  5382. }
  5383. .modal-dialog {
  5384. position: relative;
  5385. width: auto;
  5386. margin: 0.5rem;
  5387. pointer-events: none;
  5388. }
  5389. .modal.fade .modal-dialog {
  5390. transition: transform 0.3s ease-out;
  5391. transform: translate(0, -50px);
  5392. }
  5393. @media (prefers-reduced-motion: reduce) {
  5394. .modal.fade .modal-dialog {
  5395. transition: none;
  5396. }
  5397. }
  5398. .modal.show .modal-dialog {
  5399. transform: none;
  5400. }
  5401. .modal.modal-static .modal-dialog {
  5402. transform: scale(1.02);
  5403. }
  5404. .modal-dialog-scrollable {
  5405. display: flex;
  5406. max-height: calc(100% - 1rem);
  5407. }
  5408. .modal-dialog-scrollable .modal-content {
  5409. max-height: calc(100vh - 1rem);
  5410. overflow: hidden;
  5411. }
  5412. .modal-dialog-scrollable .modal-header,
  5413. .modal-dialog-scrollable .modal-footer {
  5414. flex-shrink: 0;
  5415. }
  5416. .modal-dialog-scrollable .modal-body {
  5417. overflow-y: auto;
  5418. }
  5419. .modal-dialog-centered {
  5420. display: flex;
  5421. align-items: center;
  5422. min-height: calc(100% - 1rem);
  5423. }
  5424. .modal-dialog-centered::before {
  5425. display: block;
  5426. height: calc(100vh - 1rem);
  5427. height: -webkit-min-content;
  5428. height: -moz-min-content;
  5429. height: min-content;
  5430. content: "";
  5431. }
  5432. .modal-dialog-centered.modal-dialog-scrollable {
  5433. flex-direction: column;
  5434. justify-content: center;
  5435. height: 100%;
  5436. }
  5437. .modal-dialog-centered.modal-dialog-scrollable .modal-content {
  5438. max-height: none;
  5439. }
  5440. .modal-dialog-centered.modal-dialog-scrollable::before {
  5441. content: none;
  5442. }
  5443. .modal-content {
  5444. position: relative;
  5445. display: flex;
  5446. flex-direction: column;
  5447. width: 100%;
  5448. pointer-events: auto;
  5449. background-color: #fff;
  5450. background-clip: padding-box;
  5451. border: 1px solid rgba(0, 0, 0, 0.2);
  5452. border-radius: 0.3rem;
  5453. outline: 0;
  5454. }
  5455. .modal-backdrop {
  5456. position: fixed;
  5457. top: 0;
  5458. left: 0;
  5459. z-index: 1040;
  5460. width: 100vw;
  5461. height: 100vh;
  5462. background-color: #000;
  5463. }
  5464. .modal-backdrop.fade {
  5465. opacity: 0;
  5466. }
  5467. .modal-backdrop.show {
  5468. opacity: 0.5;
  5469. }
  5470. .modal-header {
  5471. display: flex;
  5472. align-items: flex-start;
  5473. justify-content: space-between;
  5474. padding: 1rem 1rem;
  5475. border-bottom: 1px solid #dee2e6;
  5476. border-top-left-radius: calc(0.3rem - 1px);
  5477. border-top-right-radius: calc(0.3rem - 1px);
  5478. }
  5479. .modal-header .close {
  5480. padding: 1rem 1rem;
  5481. margin: -1rem -1rem -1rem auto;
  5482. }
  5483. .modal-title {
  5484. margin-bottom: 0;
  5485. line-height: 1.6;
  5486. }
  5487. .modal-body {
  5488. position: relative;
  5489. flex: 1 1 auto;
  5490. padding: 1rem;
  5491. }
  5492. .modal-footer {
  5493. display: flex;
  5494. flex-wrap: wrap;
  5495. align-items: center;
  5496. justify-content: flex-end;
  5497. padding: 0.75rem;
  5498. border-top: 1px solid #dee2e6;
  5499. border-bottom-right-radius: calc(0.3rem - 1px);
  5500. border-bottom-left-radius: calc(0.3rem - 1px);
  5501. }
  5502. .modal-footer > * {
  5503. margin: 0.25rem;
  5504. }
  5505. .modal-scrollbar-measure {
  5506. position: absolute;
  5507. top: -9999px;
  5508. width: 50px;
  5509. height: 50px;
  5510. overflow: scroll;
  5511. }
  5512. @media (min-width: 576px) {
  5513. .modal-dialog {
  5514. max-width: 500px;
  5515. margin: 1.75rem auto;
  5516. }
  5517. .modal-dialog-scrollable {
  5518. max-height: calc(100% - 3.5rem);
  5519. }
  5520. .modal-dialog-scrollable .modal-content {
  5521. max-height: calc(100vh - 3.5rem);
  5522. }
  5523. .modal-dialog-centered {
  5524. min-height: calc(100% - 3.5rem);
  5525. }
  5526. .modal-dialog-centered::before {
  5527. height: calc(100vh - 3.5rem);
  5528. height: -webkit-min-content;
  5529. height: -moz-min-content;
  5530. height: min-content;
  5531. }
  5532. .modal-sm {
  5533. max-width: 300px;
  5534. }
  5535. }
  5536. @media (min-width: 992px) {
  5537. .modal-lg,
  5538. .modal-xl {
  5539. max-width: 800px;
  5540. }
  5541. }
  5542. @media (min-width: 1200px) {
  5543. .modal-xl {
  5544. max-width: 1140px;
  5545. }
  5546. }
  5547. .tooltip {
  5548. position: absolute;
  5549. z-index: 1070;
  5550. display: block;
  5551. margin: 0;
  5552. font-family: "Nunito", sans-serif;
  5553. font-style: normal;
  5554. font-weight: 400;
  5555. line-height: 1.6;
  5556. text-align: left;
  5557. text-align: start;
  5558. text-decoration: none;
  5559. text-shadow: none;
  5560. text-transform: none;
  5561. letter-spacing: normal;
  5562. word-break: normal;
  5563. word-spacing: normal;
  5564. white-space: normal;
  5565. line-break: auto;
  5566. font-size: 0.7875rem;
  5567. word-wrap: break-word;
  5568. opacity: 0;
  5569. }
  5570. .tooltip.show {
  5571. opacity: 0.9;
  5572. }
  5573. .tooltip .arrow {
  5574. position: absolute;
  5575. display: block;
  5576. width: 0.8rem;
  5577. height: 0.4rem;
  5578. }
  5579. .tooltip .arrow::before {
  5580. position: absolute;
  5581. content: "";
  5582. border-color: transparent;
  5583. border-style: solid;
  5584. }
  5585. .bs-tooltip-top,
  5586. .bs-tooltip-auto[x-placement^=top] {
  5587. padding: 0.4rem 0;
  5588. }
  5589. .bs-tooltip-top .arrow,
  5590. .bs-tooltip-auto[x-placement^=top] .arrow {
  5591. bottom: 0;
  5592. }
  5593. .bs-tooltip-top .arrow::before,
  5594. .bs-tooltip-auto[x-placement^=top] .arrow::before {
  5595. top: 0;
  5596. border-width: 0.4rem 0.4rem 0;
  5597. border-top-color: #000;
  5598. }
  5599. .bs-tooltip-right,
  5600. .bs-tooltip-auto[x-placement^=right] {
  5601. padding: 0 0.4rem;
  5602. }
  5603. .bs-tooltip-right .arrow,
  5604. .bs-tooltip-auto[x-placement^=right] .arrow {
  5605. left: 0;
  5606. width: 0.4rem;
  5607. height: 0.8rem;
  5608. }
  5609. .bs-tooltip-right .arrow::before,
  5610. .bs-tooltip-auto[x-placement^=right] .arrow::before {
  5611. right: 0;
  5612. border-width: 0.4rem 0.4rem 0.4rem 0;
  5613. border-right-color: #000;
  5614. }
  5615. .bs-tooltip-bottom,
  5616. .bs-tooltip-auto[x-placement^=bottom] {
  5617. padding: 0.4rem 0;
  5618. }
  5619. .bs-tooltip-bottom .arrow,
  5620. .bs-tooltip-auto[x-placement^=bottom] .arrow {
  5621. top: 0;
  5622. }
  5623. .bs-tooltip-bottom .arrow::before,
  5624. .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  5625. bottom: 0;
  5626. border-width: 0 0.4rem 0.4rem;
  5627. border-bottom-color: #000;
  5628. }
  5629. .bs-tooltip-left,
  5630. .bs-tooltip-auto[x-placement^=left] {
  5631. padding: 0 0.4rem;
  5632. }
  5633. .bs-tooltip-left .arrow,
  5634. .bs-tooltip-auto[x-placement^=left] .arrow {
  5635. right: 0;
  5636. width: 0.4rem;
  5637. height: 0.8rem;
  5638. }
  5639. .bs-tooltip-left .arrow::before,
  5640. .bs-tooltip-auto[x-placement^=left] .arrow::before {
  5641. left: 0;
  5642. border-width: 0.4rem 0 0.4rem 0.4rem;
  5643. border-left-color: #000;
  5644. }
  5645. .tooltip-inner {
  5646. max-width: 200px;
  5647. padding: 0.25rem 0.5rem;
  5648. color: #fff;
  5649. text-align: center;
  5650. background-color: #000;
  5651. border-radius: 0.25rem;
  5652. }
  5653. .popover {
  5654. position: absolute;
  5655. top: 0;
  5656. left: 0;
  5657. z-index: 1060;
  5658. display: block;
  5659. max-width: 276px;
  5660. font-family: "Nunito", sans-serif;
  5661. font-style: normal;
  5662. font-weight: 400;
  5663. line-height: 1.6;
  5664. text-align: left;
  5665. text-align: start;
  5666. text-decoration: none;
  5667. text-shadow: none;
  5668. text-transform: none;
  5669. letter-spacing: normal;
  5670. word-break: normal;
  5671. word-spacing: normal;
  5672. white-space: normal;
  5673. line-break: auto;
  5674. font-size: 0.7875rem;
  5675. word-wrap: break-word;
  5676. background-color: #fff;
  5677. background-clip: padding-box;
  5678. border: 1px solid rgba(0, 0, 0, 0.2);
  5679. border-radius: 0.3rem;
  5680. }
  5681. .popover .arrow {
  5682. position: absolute;
  5683. display: block;
  5684. width: 1rem;
  5685. height: 0.5rem;
  5686. margin: 0 0.3rem;
  5687. }
  5688. .popover .arrow::before,
  5689. .popover .arrow::after {
  5690. position: absolute;
  5691. display: block;
  5692. content: "";
  5693. border-color: transparent;
  5694. border-style: solid;
  5695. }
  5696. .bs-popover-top,
  5697. .bs-popover-auto[x-placement^=top] {
  5698. margin-bottom: 0.5rem;
  5699. }
  5700. .bs-popover-top > .arrow,
  5701. .bs-popover-auto[x-placement^=top] > .arrow {
  5702. bottom: calc(-0.5rem - 1px);
  5703. }
  5704. .bs-popover-top > .arrow::before,
  5705. .bs-popover-auto[x-placement^=top] > .arrow::before {
  5706. bottom: 0;
  5707. border-width: 0.5rem 0.5rem 0;
  5708. border-top-color: rgba(0, 0, 0, 0.25);
  5709. }
  5710. .bs-popover-top > .arrow::after,
  5711. .bs-popover-auto[x-placement^=top] > .arrow::after {
  5712. bottom: 1px;
  5713. border-width: 0.5rem 0.5rem 0;
  5714. border-top-color: #fff;
  5715. }
  5716. .bs-popover-right,
  5717. .bs-popover-auto[x-placement^=right] {
  5718. margin-left: 0.5rem;
  5719. }
  5720. .bs-popover-right > .arrow,
  5721. .bs-popover-auto[x-placement^=right] > .arrow {
  5722. left: calc(-0.5rem - 1px);
  5723. width: 0.5rem;
  5724. height: 1rem;
  5725. margin: 0.3rem 0;
  5726. }
  5727. .bs-popover-right > .arrow::before,
  5728. .bs-popover-auto[x-placement^=right] > .arrow::before {
  5729. left: 0;
  5730. border-width: 0.5rem 0.5rem 0.5rem 0;
  5731. border-right-color: rgba(0, 0, 0, 0.25);
  5732. }
  5733. .bs-popover-right > .arrow::after,
  5734. .bs-popover-auto[x-placement^=right] > .arrow::after {
  5735. left: 1px;
  5736. border-width: 0.5rem 0.5rem 0.5rem 0;
  5737. border-right-color: #fff;
  5738. }
  5739. .bs-popover-bottom,
  5740. .bs-popover-auto[x-placement^=bottom] {
  5741. margin-top: 0.5rem;
  5742. }
  5743. .bs-popover-bottom > .arrow,
  5744. .bs-popover-auto[x-placement^=bottom] > .arrow {
  5745. top: calc(-0.5rem - 1px);
  5746. }
  5747. .bs-popover-bottom > .arrow::before,
  5748. .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  5749. top: 0;
  5750. border-width: 0 0.5rem 0.5rem 0.5rem;
  5751. border-bottom-color: rgba(0, 0, 0, 0.25);
  5752. }
  5753. .bs-popover-bottom > .arrow::after,
  5754. .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  5755. top: 1px;
  5756. border-width: 0 0.5rem 0.5rem 0.5rem;
  5757. border-bottom-color: #fff;
  5758. }
  5759. .bs-popover-bottom .popover-header::before,
  5760. .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  5761. position: absolute;
  5762. top: 0;
  5763. left: 50%;
  5764. display: block;
  5765. width: 1rem;
  5766. margin-left: -0.5rem;
  5767. content: "";
  5768. border-bottom: 1px solid #f7f7f7;
  5769. }
  5770. .bs-popover-left,
  5771. .bs-popover-auto[x-placement^=left] {
  5772. margin-right: 0.5rem;
  5773. }
  5774. .bs-popover-left > .arrow,
  5775. .bs-popover-auto[x-placement^=left] > .arrow {
  5776. right: calc(-0.5rem - 1px);
  5777. width: 0.5rem;
  5778. height: 1rem;
  5779. margin: 0.3rem 0;
  5780. }
  5781. .bs-popover-left > .arrow::before,
  5782. .bs-popover-auto[x-placement^=left] > .arrow::before {
  5783. right: 0;
  5784. border-width: 0.5rem 0 0.5rem 0.5rem;
  5785. border-left-color: rgba(0, 0, 0, 0.25);
  5786. }
  5787. .bs-popover-left > .arrow::after,
  5788. .bs-popover-auto[x-placement^=left] > .arrow::after {
  5789. right: 1px;
  5790. border-width: 0.5rem 0 0.5rem 0.5rem;
  5791. border-left-color: #fff;
  5792. }
  5793. .popover-header {
  5794. padding: 0.5rem 0.75rem;
  5795. margin-bottom: 0;
  5796. font-size: 0.9rem;
  5797. background-color: #f7f7f7;
  5798. border-bottom: 1px solid #ebebeb;
  5799. border-top-left-radius: calc(0.3rem - 1px);
  5800. border-top-right-radius: calc(0.3rem - 1px);
  5801. }
  5802. .popover-header:empty {
  5803. display: none;
  5804. }
  5805. .popover-body {
  5806. padding: 0.5rem 0.75rem;
  5807. color: #212529;
  5808. }
  5809. .carousel {
  5810. position: relative;
  5811. }
  5812. .carousel.pointer-event {
  5813. touch-action: pan-y;
  5814. }
  5815. .carousel-inner {
  5816. position: relative;
  5817. width: 100%;
  5818. overflow: hidden;
  5819. }
  5820. .carousel-inner::after {
  5821. display: block;
  5822. clear: both;
  5823. content: "";
  5824. }
  5825. .carousel-item {
  5826. position: relative;
  5827. display: none;
  5828. float: left;
  5829. width: 100%;
  5830. margin-right: -100%;
  5831. -webkit-backface-visibility: hidden;
  5832. backface-visibility: hidden;
  5833. transition: transform 0.6s ease-in-out;
  5834. }
  5835. @media (prefers-reduced-motion: reduce) {
  5836. .carousel-item {
  5837. transition: none;
  5838. }
  5839. }
  5840. .carousel-item.active,
  5841. .carousel-item-next,
  5842. .carousel-item-prev {
  5843. display: block;
  5844. }
  5845. .carousel-item-next:not(.carousel-item-left),
  5846. .active.carousel-item-right {
  5847. transform: translateX(100%);
  5848. }
  5849. .carousel-item-prev:not(.carousel-item-right),
  5850. .active.carousel-item-left {
  5851. transform: translateX(-100%);
  5852. }
  5853. .carousel-fade .carousel-item {
  5854. opacity: 0;
  5855. transition-property: opacity;
  5856. transform: none;
  5857. }
  5858. .carousel-fade .carousel-item.active,
  5859. .carousel-fade .carousel-item-next.carousel-item-left,
  5860. .carousel-fade .carousel-item-prev.carousel-item-right {
  5861. z-index: 1;
  5862. opacity: 1;
  5863. }
  5864. .carousel-fade .active.carousel-item-left,
  5865. .carousel-fade .active.carousel-item-right {
  5866. z-index: 0;
  5867. opacity: 0;
  5868. transition: opacity 0s 0.6s;
  5869. }
  5870. @media (prefers-reduced-motion: reduce) {
  5871. .carousel-fade .active.carousel-item-left,
  5872. .carousel-fade .active.carousel-item-right {
  5873. transition: none;
  5874. }
  5875. }
  5876. .carousel-control-prev,
  5877. .carousel-control-next {
  5878. position: absolute;
  5879. top: 0;
  5880. bottom: 0;
  5881. z-index: 1;
  5882. display: flex;
  5883. align-items: center;
  5884. justify-content: center;
  5885. width: 15%;
  5886. color: #fff;
  5887. text-align: center;
  5888. opacity: 0.5;
  5889. transition: opacity 0.15s ease;
  5890. }
  5891. @media (prefers-reduced-motion: reduce) {
  5892. .carousel-control-prev,
  5893. .carousel-control-next {
  5894. transition: none;
  5895. }
  5896. }
  5897. .carousel-control-prev:hover,
  5898. .carousel-control-prev:focus,
  5899. .carousel-control-next:hover,
  5900. .carousel-control-next:focus {
  5901. color: #fff;
  5902. text-decoration: none;
  5903. outline: 0;
  5904. opacity: 0.9;
  5905. }
  5906. .carousel-control-prev {
  5907. left: 0;
  5908. }
  5909. .carousel-control-next {
  5910. right: 0;
  5911. }
  5912. .carousel-control-prev-icon,
  5913. .carousel-control-next-icon {
  5914. display: inline-block;
  5915. width: 20px;
  5916. height: 20px;
  5917. background: no-repeat 50%/100% 100%;
  5918. }
  5919. .carousel-control-prev-icon {
  5920. 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");
  5921. }
  5922. .carousel-control-next-icon {
  5923. 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");
  5924. }
  5925. .carousel-indicators {
  5926. position: absolute;
  5927. right: 0;
  5928. bottom: 0;
  5929. left: 0;
  5930. z-index: 15;
  5931. display: flex;
  5932. justify-content: center;
  5933. padding-left: 0;
  5934. margin-right: 15%;
  5935. margin-left: 15%;
  5936. list-style: none;
  5937. }
  5938. .carousel-indicators li {
  5939. box-sizing: content-box;
  5940. flex: 0 1 auto;
  5941. width: 30px;
  5942. height: 3px;
  5943. margin-right: 3px;
  5944. margin-left: 3px;
  5945. text-indent: -999px;
  5946. cursor: pointer;
  5947. background-color: #fff;
  5948. background-clip: padding-box;
  5949. border-top: 10px solid transparent;
  5950. border-bottom: 10px solid transparent;
  5951. opacity: 0.5;
  5952. transition: opacity 0.6s ease;
  5953. }
  5954. @media (prefers-reduced-motion: reduce) {
  5955. .carousel-indicators li {
  5956. transition: none;
  5957. }
  5958. }
  5959. .carousel-indicators .active {
  5960. opacity: 1;
  5961. }
  5962. .carousel-caption {
  5963. position: absolute;
  5964. right: 15%;
  5965. bottom: 20px;
  5966. left: 15%;
  5967. z-index: 10;
  5968. padding-top: 20px;
  5969. padding-bottom: 20px;
  5970. color: #fff;
  5971. text-align: center;
  5972. }
  5973. @-webkit-keyframes spinner-border {
  5974. to {
  5975. transform: rotate(360deg);
  5976. }
  5977. }
  5978. @keyframes spinner-border {
  5979. to {
  5980. transform: rotate(360deg);
  5981. }
  5982. }
  5983. .spinner-border {
  5984. display: inline-block;
  5985. width: 2rem;
  5986. height: 2rem;
  5987. vertical-align: text-bottom;
  5988. border: 0.25em solid currentColor;
  5989. border-right-color: transparent;
  5990. border-radius: 50%;
  5991. -webkit-animation: spinner-border 0.75s linear infinite;
  5992. animation: spinner-border 0.75s linear infinite;
  5993. }
  5994. .spinner-border-sm {
  5995. width: 1rem;
  5996. height: 1rem;
  5997. border-width: 0.2em;
  5998. }
  5999. @-webkit-keyframes spinner-grow {
  6000. 0% {
  6001. transform: scale(0);
  6002. }
  6003. 50% {
  6004. opacity: 1;
  6005. transform: none;
  6006. }
  6007. }
  6008. @keyframes spinner-grow {
  6009. 0% {
  6010. transform: scale(0);
  6011. }
  6012. 50% {
  6013. opacity: 1;
  6014. transform: none;
  6015. }
  6016. }
  6017. .spinner-grow {
  6018. display: inline-block;
  6019. width: 2rem;
  6020. height: 2rem;
  6021. vertical-align: text-bottom;
  6022. background-color: currentColor;
  6023. border-radius: 50%;
  6024. opacity: 0;
  6025. -webkit-animation: spinner-grow 0.75s linear infinite;
  6026. animation: spinner-grow 0.75s linear infinite;
  6027. }
  6028. .spinner-grow-sm {
  6029. width: 1rem;
  6030. height: 1rem;
  6031. }
  6032. .align-baseline {
  6033. vertical-align: baseline !important;
  6034. }
  6035. .align-top {
  6036. vertical-align: top !important;
  6037. }
  6038. .align-middle {
  6039. vertical-align: middle !important;
  6040. }
  6041. .align-bottom {
  6042. vertical-align: bottom !important;
  6043. }
  6044. .align-text-bottom {
  6045. vertical-align: text-bottom !important;
  6046. }
  6047. .align-text-top {
  6048. vertical-align: text-top !important;
  6049. }
  6050. .bg-primary {
  6051. background-color: #3490dc !important;
  6052. }
  6053. a.bg-primary:hover,
  6054. a.bg-primary:focus,
  6055. button.bg-primary:hover,
  6056. button.bg-primary:focus {
  6057. background-color: #2176bd !important;
  6058. }
  6059. .bg-secondary {
  6060. background-color: #6c757d !important;
  6061. }
  6062. a.bg-secondary:hover,
  6063. a.bg-secondary:focus,
  6064. button.bg-secondary:hover,
  6065. button.bg-secondary:focus {
  6066. background-color: #545b62 !important;
  6067. }
  6068. .bg-success {
  6069. background-color: #38c172 !important;
  6070. }
  6071. a.bg-success:hover,
  6072. a.bg-success:focus,
  6073. button.bg-success:hover,
  6074. button.bg-success:focus {
  6075. background-color: #2d995b !important;
  6076. }
  6077. .bg-info {
  6078. background-color: #6cb2eb !important;
  6079. }
  6080. a.bg-info:hover,
  6081. a.bg-info:focus,
  6082. button.bg-info:hover,
  6083. button.bg-info:focus {
  6084. background-color: #3f9ae5 !important;
  6085. }
  6086. .bg-warning {
  6087. background-color: #ffed4a !important;
  6088. }
  6089. a.bg-warning:hover,
  6090. a.bg-warning:focus,
  6091. button.bg-warning:hover,
  6092. button.bg-warning:focus {
  6093. background-color: #ffe817 !important;
  6094. }
  6095. .bg-danger {
  6096. background-color: #e3342f !important;
  6097. }
  6098. a.bg-danger:hover,
  6099. a.bg-danger:focus,
  6100. button.bg-danger:hover,
  6101. button.bg-danger:focus {
  6102. background-color: #c51f1a !important;
  6103. }
  6104. .bg-light {
  6105. background-color: #f8f9fa !important;
  6106. }
  6107. a.bg-light:hover,
  6108. a.bg-light:focus,
  6109. button.bg-light:hover,
  6110. button.bg-light:focus {
  6111. background-color: #dae0e5 !important;
  6112. }
  6113. .bg-dark {
  6114. background-color: #343a40 !important;
  6115. }
  6116. a.bg-dark:hover,
  6117. a.bg-dark:focus,
  6118. button.bg-dark:hover,
  6119. button.bg-dark:focus {
  6120. background-color: #1d2124 !important;
  6121. }
  6122. .bg-white {
  6123. background-color: #fff !important;
  6124. }
  6125. .bg-transparent {
  6126. background-color: transparent !important;
  6127. }
  6128. .border {
  6129. border: 1px solid #dee2e6 !important;
  6130. }
  6131. .border-top {
  6132. border-top: 1px solid #dee2e6 !important;
  6133. }
  6134. .border-right {
  6135. border-right: 1px solid #dee2e6 !important;
  6136. }
  6137. .border-bottom {
  6138. border-bottom: 1px solid #dee2e6 !important;
  6139. }
  6140. .border-left {
  6141. border-left: 1px solid #dee2e6 !important;
  6142. }
  6143. .border-0 {
  6144. border: 0 !important;
  6145. }
  6146. .border-top-0 {
  6147. border-top: 0 !important;
  6148. }
  6149. .border-right-0 {
  6150. border-right: 0 !important;
  6151. }
  6152. .border-bottom-0 {
  6153. border-bottom: 0 !important;
  6154. }
  6155. .border-left-0 {
  6156. border-left: 0 !important;
  6157. }
  6158. .border-primary {
  6159. border-color: #3490dc !important;
  6160. }
  6161. .border-secondary {
  6162. border-color: #6c757d !important;
  6163. }
  6164. .border-success {
  6165. border-color: #38c172 !important;
  6166. }
  6167. .border-info {
  6168. border-color: #6cb2eb !important;
  6169. }
  6170. .border-warning {
  6171. border-color: #ffed4a !important;
  6172. }
  6173. .border-danger {
  6174. border-color: #e3342f !important;
  6175. }
  6176. .border-light {
  6177. border-color: #f8f9fa !important;
  6178. }
  6179. .border-dark {
  6180. border-color: #343a40 !important;
  6181. }
  6182. .border-white {
  6183. border-color: #fff !important;
  6184. }
  6185. .rounded-sm {
  6186. border-radius: 0.2rem !important;
  6187. }
  6188. .rounded {
  6189. border-radius: 0.25rem !important;
  6190. }
  6191. .rounded-top {
  6192. border-top-left-radius: 0.25rem !important;
  6193. border-top-right-radius: 0.25rem !important;
  6194. }
  6195. .rounded-right {
  6196. border-top-right-radius: 0.25rem !important;
  6197. border-bottom-right-radius: 0.25rem !important;
  6198. }
  6199. .rounded-bottom {
  6200. border-bottom-right-radius: 0.25rem !important;
  6201. border-bottom-left-radius: 0.25rem !important;
  6202. }
  6203. .rounded-left {
  6204. border-top-left-radius: 0.25rem !important;
  6205. border-bottom-left-radius: 0.25rem !important;
  6206. }
  6207. .rounded-lg {
  6208. border-radius: 0.3rem !important;
  6209. }
  6210. .rounded-circle {
  6211. border-radius: 50% !important;
  6212. }
  6213. .rounded-pill {
  6214. border-radius: 50rem !important;
  6215. }
  6216. .rounded-0 {
  6217. border-radius: 0 !important;
  6218. }
  6219. .clearfix::after {
  6220. display: block;
  6221. clear: both;
  6222. content: "";
  6223. }
  6224. .d-none {
  6225. display: none !important;
  6226. }
  6227. .d-inline {
  6228. display: inline !important;
  6229. }
  6230. .d-inline-block {
  6231. display: inline-block !important;
  6232. }
  6233. .d-block {
  6234. display: block !important;
  6235. }
  6236. .d-table {
  6237. display: table !important;
  6238. }
  6239. .d-table-row {
  6240. display: table-row !important;
  6241. }
  6242. .d-table-cell {
  6243. display: table-cell !important;
  6244. }
  6245. .d-flex {
  6246. display: flex !important;
  6247. }
  6248. .d-inline-flex {
  6249. display: inline-flex !important;
  6250. }
  6251. @media (min-width: 576px) {
  6252. .d-sm-none {
  6253. display: none !important;
  6254. }
  6255. .d-sm-inline {
  6256. display: inline !important;
  6257. }
  6258. .d-sm-inline-block {
  6259. display: inline-block !important;
  6260. }
  6261. .d-sm-block {
  6262. display: block !important;
  6263. }
  6264. .d-sm-table {
  6265. display: table !important;
  6266. }
  6267. .d-sm-table-row {
  6268. display: table-row !important;
  6269. }
  6270. .d-sm-table-cell {
  6271. display: table-cell !important;
  6272. }
  6273. .d-sm-flex {
  6274. display: flex !important;
  6275. }
  6276. .d-sm-inline-flex {
  6277. display: inline-flex !important;
  6278. }
  6279. }
  6280. @media (min-width: 768px) {
  6281. .d-md-none {
  6282. display: none !important;
  6283. }
  6284. .d-md-inline {
  6285. display: inline !important;
  6286. }
  6287. .d-md-inline-block {
  6288. display: inline-block !important;
  6289. }
  6290. .d-md-block {
  6291. display: block !important;
  6292. }
  6293. .d-md-table {
  6294. display: table !important;
  6295. }
  6296. .d-md-table-row {
  6297. display: table-row !important;
  6298. }
  6299. .d-md-table-cell {
  6300. display: table-cell !important;
  6301. }
  6302. .d-md-flex {
  6303. display: flex !important;
  6304. }
  6305. .d-md-inline-flex {
  6306. display: inline-flex !important;
  6307. }
  6308. }
  6309. @media (min-width: 992px) {
  6310. .d-lg-none {
  6311. display: none !important;
  6312. }
  6313. .d-lg-inline {
  6314. display: inline !important;
  6315. }
  6316. .d-lg-inline-block {
  6317. display: inline-block !important;
  6318. }
  6319. .d-lg-block {
  6320. display: block !important;
  6321. }
  6322. .d-lg-table {
  6323. display: table !important;
  6324. }
  6325. .d-lg-table-row {
  6326. display: table-row !important;
  6327. }
  6328. .d-lg-table-cell {
  6329. display: table-cell !important;
  6330. }
  6331. .d-lg-flex {
  6332. display: flex !important;
  6333. }
  6334. .d-lg-inline-flex {
  6335. display: inline-flex !important;
  6336. }
  6337. }
  6338. @media (min-width: 1200px) {
  6339. .d-xl-none {
  6340. display: none !important;
  6341. }
  6342. .d-xl-inline {
  6343. display: inline !important;
  6344. }
  6345. .d-xl-inline-block {
  6346. display: inline-block !important;
  6347. }
  6348. .d-xl-block {
  6349. display: block !important;
  6350. }
  6351. .d-xl-table {
  6352. display: table !important;
  6353. }
  6354. .d-xl-table-row {
  6355. display: table-row !important;
  6356. }
  6357. .d-xl-table-cell {
  6358. display: table-cell !important;
  6359. }
  6360. .d-xl-flex {
  6361. display: flex !important;
  6362. }
  6363. .d-xl-inline-flex {
  6364. display: inline-flex !important;
  6365. }
  6366. }
  6367. @media print {
  6368. .d-print-none {
  6369. display: none !important;
  6370. }
  6371. .d-print-inline {
  6372. display: inline !important;
  6373. }
  6374. .d-print-inline-block {
  6375. display: inline-block !important;
  6376. }
  6377. .d-print-block {
  6378. display: block !important;
  6379. }
  6380. .d-print-table {
  6381. display: table !important;
  6382. }
  6383. .d-print-table-row {
  6384. display: table-row !important;
  6385. }
  6386. .d-print-table-cell {
  6387. display: table-cell !important;
  6388. }
  6389. .d-print-flex {
  6390. display: flex !important;
  6391. }
  6392. .d-print-inline-flex {
  6393. display: inline-flex !important;
  6394. }
  6395. }
  6396. .embed-responsive {
  6397. position: relative;
  6398. display: block;
  6399. width: 100%;
  6400. padding: 0;
  6401. overflow: hidden;
  6402. }
  6403. .embed-responsive::before {
  6404. display: block;
  6405. content: "";
  6406. }
  6407. .embed-responsive .embed-responsive-item,
  6408. .embed-responsive iframe,
  6409. .embed-responsive embed,
  6410. .embed-responsive object,
  6411. .embed-responsive video {
  6412. position: absolute;
  6413. top: 0;
  6414. bottom: 0;
  6415. left: 0;
  6416. width: 100%;
  6417. height: 100%;
  6418. border: 0;
  6419. }
  6420. .embed-responsive-21by9::before {
  6421. padding-top: 42.8571428571%;
  6422. }
  6423. .embed-responsive-16by9::before {
  6424. padding-top: 56.25%;
  6425. }
  6426. .embed-responsive-4by3::before {
  6427. padding-top: 75%;
  6428. }
  6429. .embed-responsive-1by1::before {
  6430. padding-top: 100%;
  6431. }
  6432. .flex-row {
  6433. flex-direction: row !important;
  6434. }
  6435. .flex-column {
  6436. flex-direction: column !important;
  6437. }
  6438. .flex-row-reverse {
  6439. flex-direction: row-reverse !important;
  6440. }
  6441. .flex-column-reverse {
  6442. flex-direction: column-reverse !important;
  6443. }
  6444. .flex-wrap {
  6445. flex-wrap: wrap !important;
  6446. }
  6447. .flex-nowrap {
  6448. flex-wrap: nowrap !important;
  6449. }
  6450. .flex-wrap-reverse {
  6451. flex-wrap: wrap-reverse !important;
  6452. }
  6453. .flex-fill {
  6454. flex: 1 1 auto !important;
  6455. }
  6456. .flex-grow-0 {
  6457. flex-grow: 0 !important;
  6458. }
  6459. .flex-grow-1 {
  6460. flex-grow: 1 !important;
  6461. }
  6462. .flex-shrink-0 {
  6463. flex-shrink: 0 !important;
  6464. }
  6465. .flex-shrink-1 {
  6466. flex-shrink: 1 !important;
  6467. }
  6468. .justify-content-start {
  6469. justify-content: flex-start !important;
  6470. }
  6471. .justify-content-end {
  6472. justify-content: flex-end !important;
  6473. }
  6474. .justify-content-center {
  6475. justify-content: center !important;
  6476. }
  6477. .justify-content-between {
  6478. justify-content: space-between !important;
  6479. }
  6480. .justify-content-around {
  6481. justify-content: space-around !important;
  6482. }
  6483. .align-items-start {
  6484. align-items: flex-start !important;
  6485. }
  6486. .align-items-end {
  6487. align-items: flex-end !important;
  6488. }
  6489. .align-items-center {
  6490. align-items: center !important;
  6491. }
  6492. .align-items-baseline {
  6493. align-items: baseline !important;
  6494. }
  6495. .align-items-stretch {
  6496. align-items: stretch !important;
  6497. }
  6498. .align-content-start {
  6499. align-content: flex-start !important;
  6500. }
  6501. .align-content-end {
  6502. align-content: flex-end !important;
  6503. }
  6504. .align-content-center {
  6505. align-content: center !important;
  6506. }
  6507. .align-content-between {
  6508. align-content: space-between !important;
  6509. }
  6510. .align-content-around {
  6511. align-content: space-around !important;
  6512. }
  6513. .align-content-stretch {
  6514. align-content: stretch !important;
  6515. }
  6516. .align-self-auto {
  6517. align-self: auto !important;
  6518. }
  6519. .align-self-start {
  6520. align-self: flex-start !important;
  6521. }
  6522. .align-self-end {
  6523. align-self: flex-end !important;
  6524. }
  6525. .align-self-center {
  6526. align-self: center !important;
  6527. }
  6528. .align-self-baseline {
  6529. align-self: baseline !important;
  6530. }
  6531. .align-self-stretch {
  6532. align-self: stretch !important;
  6533. }
  6534. @media (min-width: 576px) {
  6535. .flex-sm-row {
  6536. flex-direction: row !important;
  6537. }
  6538. .flex-sm-column {
  6539. flex-direction: column !important;
  6540. }
  6541. .flex-sm-row-reverse {
  6542. flex-direction: row-reverse !important;
  6543. }
  6544. .flex-sm-column-reverse {
  6545. flex-direction: column-reverse !important;
  6546. }
  6547. .flex-sm-wrap {
  6548. flex-wrap: wrap !important;
  6549. }
  6550. .flex-sm-nowrap {
  6551. flex-wrap: nowrap !important;
  6552. }
  6553. .flex-sm-wrap-reverse {
  6554. flex-wrap: wrap-reverse !important;
  6555. }
  6556. .flex-sm-fill {
  6557. flex: 1 1 auto !important;
  6558. }
  6559. .flex-sm-grow-0 {
  6560. flex-grow: 0 !important;
  6561. }
  6562. .flex-sm-grow-1 {
  6563. flex-grow: 1 !important;
  6564. }
  6565. .flex-sm-shrink-0 {
  6566. flex-shrink: 0 !important;
  6567. }
  6568. .flex-sm-shrink-1 {
  6569. flex-shrink: 1 !important;
  6570. }
  6571. .justify-content-sm-start {
  6572. justify-content: flex-start !important;
  6573. }
  6574. .justify-content-sm-end {
  6575. justify-content: flex-end !important;
  6576. }
  6577. .justify-content-sm-center {
  6578. justify-content: center !important;
  6579. }
  6580. .justify-content-sm-between {
  6581. justify-content: space-between !important;
  6582. }
  6583. .justify-content-sm-around {
  6584. justify-content: space-around !important;
  6585. }
  6586. .align-items-sm-start {
  6587. align-items: flex-start !important;
  6588. }
  6589. .align-items-sm-end {
  6590. align-items: flex-end !important;
  6591. }
  6592. .align-items-sm-center {
  6593. align-items: center !important;
  6594. }
  6595. .align-items-sm-baseline {
  6596. align-items: baseline !important;
  6597. }
  6598. .align-items-sm-stretch {
  6599. align-items: stretch !important;
  6600. }
  6601. .align-content-sm-start {
  6602. align-content: flex-start !important;
  6603. }
  6604. .align-content-sm-end {
  6605. align-content: flex-end !important;
  6606. }
  6607. .align-content-sm-center {
  6608. align-content: center !important;
  6609. }
  6610. .align-content-sm-between {
  6611. align-content: space-between !important;
  6612. }
  6613. .align-content-sm-around {
  6614. align-content: space-around !important;
  6615. }
  6616. .align-content-sm-stretch {
  6617. align-content: stretch !important;
  6618. }
  6619. .align-self-sm-auto {
  6620. align-self: auto !important;
  6621. }
  6622. .align-self-sm-start {
  6623. align-self: flex-start !important;
  6624. }
  6625. .align-self-sm-end {
  6626. align-self: flex-end !important;
  6627. }
  6628. .align-self-sm-center {
  6629. align-self: center !important;
  6630. }
  6631. .align-self-sm-baseline {
  6632. align-self: baseline !important;
  6633. }
  6634. .align-self-sm-stretch {
  6635. align-self: stretch !important;
  6636. }
  6637. }
  6638. @media (min-width: 768px) {
  6639. .flex-md-row {
  6640. flex-direction: row !important;
  6641. }
  6642. .flex-md-column {
  6643. flex-direction: column !important;
  6644. }
  6645. .flex-md-row-reverse {
  6646. flex-direction: row-reverse !important;
  6647. }
  6648. .flex-md-column-reverse {
  6649. flex-direction: column-reverse !important;
  6650. }
  6651. .flex-md-wrap {
  6652. flex-wrap: wrap !important;
  6653. }
  6654. .flex-md-nowrap {
  6655. flex-wrap: nowrap !important;
  6656. }
  6657. .flex-md-wrap-reverse {
  6658. flex-wrap: wrap-reverse !important;
  6659. }
  6660. .flex-md-fill {
  6661. flex: 1 1 auto !important;
  6662. }
  6663. .flex-md-grow-0 {
  6664. flex-grow: 0 !important;
  6665. }
  6666. .flex-md-grow-1 {
  6667. flex-grow: 1 !important;
  6668. }
  6669. .flex-md-shrink-0 {
  6670. flex-shrink: 0 !important;
  6671. }
  6672. .flex-md-shrink-1 {
  6673. flex-shrink: 1 !important;
  6674. }
  6675. .justify-content-md-start {
  6676. justify-content: flex-start !important;
  6677. }
  6678. .justify-content-md-end {
  6679. justify-content: flex-end !important;
  6680. }
  6681. .justify-content-md-center {
  6682. justify-content: center !important;
  6683. }
  6684. .justify-content-md-between {
  6685. justify-content: space-between !important;
  6686. }
  6687. .justify-content-md-around {
  6688. justify-content: space-around !important;
  6689. }
  6690. .align-items-md-start {
  6691. align-items: flex-start !important;
  6692. }
  6693. .align-items-md-end {
  6694. align-items: flex-end !important;
  6695. }
  6696. .align-items-md-center {
  6697. align-items: center !important;
  6698. }
  6699. .align-items-md-baseline {
  6700. align-items: baseline !important;
  6701. }
  6702. .align-items-md-stretch {
  6703. align-items: stretch !important;
  6704. }
  6705. .align-content-md-start {
  6706. align-content: flex-start !important;
  6707. }
  6708. .align-content-md-end {
  6709. align-content: flex-end !important;
  6710. }
  6711. .align-content-md-center {
  6712. align-content: center !important;
  6713. }
  6714. .align-content-md-between {
  6715. align-content: space-between !important;
  6716. }
  6717. .align-content-md-around {
  6718. align-content: space-around !important;
  6719. }
  6720. .align-content-md-stretch {
  6721. align-content: stretch !important;
  6722. }
  6723. .align-self-md-auto {
  6724. align-self: auto !important;
  6725. }
  6726. .align-self-md-start {
  6727. align-self: flex-start !important;
  6728. }
  6729. .align-self-md-end {
  6730. align-self: flex-end !important;
  6731. }
  6732. .align-self-md-center {
  6733. align-self: center !important;
  6734. }
  6735. .align-self-md-baseline {
  6736. align-self: baseline !important;
  6737. }
  6738. .align-self-md-stretch {
  6739. align-self: stretch !important;
  6740. }
  6741. }
  6742. @media (min-width: 992px) {
  6743. .flex-lg-row {
  6744. flex-direction: row !important;
  6745. }
  6746. .flex-lg-column {
  6747. flex-direction: column !important;
  6748. }
  6749. .flex-lg-row-reverse {
  6750. flex-direction: row-reverse !important;
  6751. }
  6752. .flex-lg-column-reverse {
  6753. flex-direction: column-reverse !important;
  6754. }
  6755. .flex-lg-wrap {
  6756. flex-wrap: wrap !important;
  6757. }
  6758. .flex-lg-nowrap {
  6759. flex-wrap: nowrap !important;
  6760. }
  6761. .flex-lg-wrap-reverse {
  6762. flex-wrap: wrap-reverse !important;
  6763. }
  6764. .flex-lg-fill {
  6765. flex: 1 1 auto !important;
  6766. }
  6767. .flex-lg-grow-0 {
  6768. flex-grow: 0 !important;
  6769. }
  6770. .flex-lg-grow-1 {
  6771. flex-grow: 1 !important;
  6772. }
  6773. .flex-lg-shrink-0 {
  6774. flex-shrink: 0 !important;
  6775. }
  6776. .flex-lg-shrink-1 {
  6777. flex-shrink: 1 !important;
  6778. }
  6779. .justify-content-lg-start {
  6780. justify-content: flex-start !important;
  6781. }
  6782. .justify-content-lg-end {
  6783. justify-content: flex-end !important;
  6784. }
  6785. .justify-content-lg-center {
  6786. justify-content: center !important;
  6787. }
  6788. .justify-content-lg-between {
  6789. justify-content: space-between !important;
  6790. }
  6791. .justify-content-lg-around {
  6792. justify-content: space-around !important;
  6793. }
  6794. .align-items-lg-start {
  6795. align-items: flex-start !important;
  6796. }
  6797. .align-items-lg-end {
  6798. align-items: flex-end !important;
  6799. }
  6800. .align-items-lg-center {
  6801. align-items: center !important;
  6802. }
  6803. .align-items-lg-baseline {
  6804. align-items: baseline !important;
  6805. }
  6806. .align-items-lg-stretch {
  6807. align-items: stretch !important;
  6808. }
  6809. .align-content-lg-start {
  6810. align-content: flex-start !important;
  6811. }
  6812. .align-content-lg-end {
  6813. align-content: flex-end !important;
  6814. }
  6815. .align-content-lg-center {
  6816. align-content: center !important;
  6817. }
  6818. .align-content-lg-between {
  6819. align-content: space-between !important;
  6820. }
  6821. .align-content-lg-around {
  6822. align-content: space-around !important;
  6823. }
  6824. .align-content-lg-stretch {
  6825. align-content: stretch !important;
  6826. }
  6827. .align-self-lg-auto {
  6828. align-self: auto !important;
  6829. }
  6830. .align-self-lg-start {
  6831. align-self: flex-start !important;
  6832. }
  6833. .align-self-lg-end {
  6834. align-self: flex-end !important;
  6835. }
  6836. .align-self-lg-center {
  6837. align-self: center !important;
  6838. }
  6839. .align-self-lg-baseline {
  6840. align-self: baseline !important;
  6841. }
  6842. .align-self-lg-stretch {
  6843. align-self: stretch !important;
  6844. }
  6845. }
  6846. @media (min-width: 1200px) {
  6847. .flex-xl-row {
  6848. flex-direction: row !important;
  6849. }
  6850. .flex-xl-column {
  6851. flex-direction: column !important;
  6852. }
  6853. .flex-xl-row-reverse {
  6854. flex-direction: row-reverse !important;
  6855. }
  6856. .flex-xl-column-reverse {
  6857. flex-direction: column-reverse !important;
  6858. }
  6859. .flex-xl-wrap {
  6860. flex-wrap: wrap !important;
  6861. }
  6862. .flex-xl-nowrap {
  6863. flex-wrap: nowrap !important;
  6864. }
  6865. .flex-xl-wrap-reverse {
  6866. flex-wrap: wrap-reverse !important;
  6867. }
  6868. .flex-xl-fill {
  6869. flex: 1 1 auto !important;
  6870. }
  6871. .flex-xl-grow-0 {
  6872. flex-grow: 0 !important;
  6873. }
  6874. .flex-xl-grow-1 {
  6875. flex-grow: 1 !important;
  6876. }
  6877. .flex-xl-shrink-0 {
  6878. flex-shrink: 0 !important;
  6879. }
  6880. .flex-xl-shrink-1 {
  6881. flex-shrink: 1 !important;
  6882. }
  6883. .justify-content-xl-start {
  6884. justify-content: flex-start !important;
  6885. }
  6886. .justify-content-xl-end {
  6887. justify-content: flex-end !important;
  6888. }
  6889. .justify-content-xl-center {
  6890. justify-content: center !important;
  6891. }
  6892. .justify-content-xl-between {
  6893. justify-content: space-between !important;
  6894. }
  6895. .justify-content-xl-around {
  6896. justify-content: space-around !important;
  6897. }
  6898. .align-items-xl-start {
  6899. align-items: flex-start !important;
  6900. }
  6901. .align-items-xl-end {
  6902. align-items: flex-end !important;
  6903. }
  6904. .align-items-xl-center {
  6905. align-items: center !important;
  6906. }
  6907. .align-items-xl-baseline {
  6908. align-items: baseline !important;
  6909. }
  6910. .align-items-xl-stretch {
  6911. align-items: stretch !important;
  6912. }
  6913. .align-content-xl-start {
  6914. align-content: flex-start !important;
  6915. }
  6916. .align-content-xl-end {
  6917. align-content: flex-end !important;
  6918. }
  6919. .align-content-xl-center {
  6920. align-content: center !important;
  6921. }
  6922. .align-content-xl-between {
  6923. align-content: space-between !important;
  6924. }
  6925. .align-content-xl-around {
  6926. align-content: space-around !important;
  6927. }
  6928. .align-content-xl-stretch {
  6929. align-content: stretch !important;
  6930. }
  6931. .align-self-xl-auto {
  6932. align-self: auto !important;
  6933. }
  6934. .align-self-xl-start {
  6935. align-self: flex-start !important;
  6936. }
  6937. .align-self-xl-end {
  6938. align-self: flex-end !important;
  6939. }
  6940. .align-self-xl-center {
  6941. align-self: center !important;
  6942. }
  6943. .align-self-xl-baseline {
  6944. align-self: baseline !important;
  6945. }
  6946. .align-self-xl-stretch {
  6947. align-self: stretch !important;
  6948. }
  6949. }
  6950. .float-left {
  6951. float: left !important;
  6952. }
  6953. .float-right {
  6954. float: right !important;
  6955. }
  6956. .float-none {
  6957. float: none !important;
  6958. }
  6959. @media (min-width: 576px) {
  6960. .float-sm-left {
  6961. float: left !important;
  6962. }
  6963. .float-sm-right {
  6964. float: right !important;
  6965. }
  6966. .float-sm-none {
  6967. float: none !important;
  6968. }
  6969. }
  6970. @media (min-width: 768px) {
  6971. .float-md-left {
  6972. float: left !important;
  6973. }
  6974. .float-md-right {
  6975. float: right !important;
  6976. }
  6977. .float-md-none {
  6978. float: none !important;
  6979. }
  6980. }
  6981. @media (min-width: 992px) {
  6982. .float-lg-left {
  6983. float: left !important;
  6984. }
  6985. .float-lg-right {
  6986. float: right !important;
  6987. }
  6988. .float-lg-none {
  6989. float: none !important;
  6990. }
  6991. }
  6992. @media (min-width: 1200px) {
  6993. .float-xl-left {
  6994. float: left !important;
  6995. }
  6996. .float-xl-right {
  6997. float: right !important;
  6998. }
  6999. .float-xl-none {
  7000. float: none !important;
  7001. }
  7002. }
  7003. .user-select-all {
  7004. -webkit-user-select: all !important;
  7005. -moz-user-select: all !important;
  7006. -ms-user-select: all !important;
  7007. user-select: all !important;
  7008. }
  7009. .user-select-auto {
  7010. -webkit-user-select: auto !important;
  7011. -moz-user-select: auto !important;
  7012. -ms-user-select: auto !important;
  7013. user-select: auto !important;
  7014. }
  7015. .user-select-none {
  7016. -webkit-user-select: none !important;
  7017. -moz-user-select: none !important;
  7018. -ms-user-select: none !important;
  7019. user-select: none !important;
  7020. }
  7021. .overflow-auto {
  7022. overflow: auto !important;
  7023. }
  7024. .overflow-hidden {
  7025. overflow: hidden !important;
  7026. }
  7027. .position-static {
  7028. position: static !important;
  7029. }
  7030. .position-relative {
  7031. position: relative !important;
  7032. }
  7033. .position-absolute {
  7034. position: absolute !important;
  7035. }
  7036. .position-fixed {
  7037. position: fixed !important;
  7038. }
  7039. .position-sticky {
  7040. position: -webkit-sticky !important;
  7041. position: sticky !important;
  7042. }
  7043. .fixed-top {
  7044. position: fixed;
  7045. top: 0;
  7046. right: 0;
  7047. left: 0;
  7048. z-index: 1030;
  7049. }
  7050. .fixed-bottom {
  7051. position: fixed;
  7052. right: 0;
  7053. bottom: 0;
  7054. left: 0;
  7055. z-index: 1030;
  7056. }
  7057. @supports ((position: -webkit-sticky) or (position: sticky)) {
  7058. .sticky-top {
  7059. position: -webkit-sticky;
  7060. position: sticky;
  7061. top: 0;
  7062. z-index: 1020;
  7063. }
  7064. }
  7065. .sr-only {
  7066. position: absolute;
  7067. width: 1px;
  7068. height: 1px;
  7069. padding: 0;
  7070. margin: -1px;
  7071. overflow: hidden;
  7072. clip: rect(0, 0, 0, 0);
  7073. white-space: nowrap;
  7074. border: 0;
  7075. }
  7076. .sr-only-focusable:active,
  7077. .sr-only-focusable:focus {
  7078. position: static;
  7079. width: auto;
  7080. height: auto;
  7081. overflow: visible;
  7082. clip: auto;
  7083. white-space: normal;
  7084. }
  7085. .shadow-sm {
  7086. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  7087. }
  7088. .shadow {
  7089. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  7090. }
  7091. .shadow-lg {
  7092. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  7093. }
  7094. .shadow-none {
  7095. box-shadow: none !important;
  7096. }
  7097. .w-25 {
  7098. width: 25% !important;
  7099. }
  7100. .w-50 {
  7101. width: 50% !important;
  7102. }
  7103. .w-75 {
  7104. width: 75% !important;
  7105. }
  7106. .w-100 {
  7107. width: 100% !important;
  7108. }
  7109. .w-auto {
  7110. width: auto !important;
  7111. }
  7112. .h-25 {
  7113. height: 25% !important;
  7114. }
  7115. .h-50 {
  7116. height: 50% !important;
  7117. }
  7118. .h-75 {
  7119. height: 75% !important;
  7120. }
  7121. .h-100 {
  7122. height: 100% !important;
  7123. }
  7124. .h-auto {
  7125. height: auto !important;
  7126. }
  7127. .mw-100 {
  7128. max-width: 100% !important;
  7129. }
  7130. .mh-100 {
  7131. max-height: 100% !important;
  7132. }
  7133. .min-vw-100 {
  7134. min-width: 100vw !important;
  7135. }
  7136. .min-vh-100 {
  7137. min-height: 100vh !important;
  7138. }
  7139. .vw-100 {
  7140. width: 100vw !important;
  7141. }
  7142. .vh-100 {
  7143. height: 100vh !important;
  7144. }
  7145. .m-0 {
  7146. margin: 0 !important;
  7147. }
  7148. .mt-0,
  7149. .my-0 {
  7150. margin-top: 0 !important;
  7151. }
  7152. .mr-0,
  7153. .mx-0 {
  7154. margin-right: 0 !important;
  7155. }
  7156. .mb-0,
  7157. .my-0 {
  7158. margin-bottom: 0 !important;
  7159. }
  7160. .ml-0,
  7161. .mx-0 {
  7162. margin-left: 0 !important;
  7163. }
  7164. .m-1 {
  7165. margin: 0.25rem !important;
  7166. }
  7167. .mt-1,
  7168. .my-1 {
  7169. margin-top: 0.25rem !important;
  7170. }
  7171. .mr-1,
  7172. .mx-1 {
  7173. margin-right: 0.25rem !important;
  7174. }
  7175. .mb-1,
  7176. .my-1 {
  7177. margin-bottom: 0.25rem !important;
  7178. }
  7179. .ml-1,
  7180. .mx-1 {
  7181. margin-left: 0.25rem !important;
  7182. }
  7183. .m-2 {
  7184. margin: 0.5rem !important;
  7185. }
  7186. .mt-2,
  7187. .my-2 {
  7188. margin-top: 0.5rem !important;
  7189. }
  7190. .mr-2,
  7191. .mx-2 {
  7192. margin-right: 0.5rem !important;
  7193. }
  7194. .mb-2,
  7195. .my-2 {
  7196. margin-bottom: 0.5rem !important;
  7197. }
  7198. .ml-2,
  7199. .mx-2 {
  7200. margin-left: 0.5rem !important;
  7201. }
  7202. .m-3 {
  7203. margin: 1rem !important;
  7204. }
  7205. .mt-3,
  7206. .my-3 {
  7207. margin-top: 1rem !important;
  7208. }
  7209. .mr-3,
  7210. .mx-3 {
  7211. margin-right: 1rem !important;
  7212. }
  7213. .mb-3,
  7214. .my-3 {
  7215. margin-bottom: 1rem !important;
  7216. }
  7217. .ml-3,
  7218. .mx-3 {
  7219. margin-left: 1rem !important;
  7220. }
  7221. .m-4 {
  7222. margin: 1.5rem !important;
  7223. }
  7224. .mt-4,
  7225. .my-4 {
  7226. margin-top: 1.5rem !important;
  7227. }
  7228. .mr-4,
  7229. .mx-4 {
  7230. margin-right: 1.5rem !important;
  7231. }
  7232. .mb-4,
  7233. .my-4 {
  7234. margin-bottom: 1.5rem !important;
  7235. }
  7236. .ml-4,
  7237. .mx-4 {
  7238. margin-left: 1.5rem !important;
  7239. }
  7240. .m-5 {
  7241. margin: 3rem !important;
  7242. }
  7243. .mt-5,
  7244. .my-5 {
  7245. margin-top: 3rem !important;
  7246. }
  7247. .mr-5,
  7248. .mx-5 {
  7249. margin-right: 3rem !important;
  7250. }
  7251. .mb-5,
  7252. .my-5 {
  7253. margin-bottom: 3rem !important;
  7254. }
  7255. .ml-5,
  7256. .mx-5 {
  7257. margin-left: 3rem !important;
  7258. }
  7259. .p-0 {
  7260. padding: 0 !important;
  7261. }
  7262. .pt-0,
  7263. .py-0 {
  7264. padding-top: 0 !important;
  7265. }
  7266. .pr-0,
  7267. .px-0 {
  7268. padding-right: 0 !important;
  7269. }
  7270. .pb-0,
  7271. .py-0 {
  7272. padding-bottom: 0 !important;
  7273. }
  7274. .pl-0,
  7275. .px-0 {
  7276. padding-left: 0 !important;
  7277. }
  7278. .p-1 {
  7279. padding: 0.25rem !important;
  7280. }
  7281. .pt-1,
  7282. .py-1 {
  7283. padding-top: 0.25rem !important;
  7284. }
  7285. .pr-1,
  7286. .px-1 {
  7287. padding-right: 0.25rem !important;
  7288. }
  7289. .pb-1,
  7290. .py-1 {
  7291. padding-bottom: 0.25rem !important;
  7292. }
  7293. .pl-1,
  7294. .px-1 {
  7295. padding-left: 0.25rem !important;
  7296. }
  7297. .p-2 {
  7298. padding: 0.5rem !important;
  7299. }
  7300. .pt-2,
  7301. .py-2 {
  7302. padding-top: 0.5rem !important;
  7303. }
  7304. .pr-2,
  7305. .px-2 {
  7306. padding-right: 0.5rem !important;
  7307. }
  7308. .pb-2,
  7309. .py-2 {
  7310. padding-bottom: 0.5rem !important;
  7311. }
  7312. .pl-2,
  7313. .px-2 {
  7314. padding-left: 0.5rem !important;
  7315. }
  7316. .p-3 {
  7317. padding: 1rem !important;
  7318. }
  7319. .pt-3,
  7320. .py-3 {
  7321. padding-top: 1rem !important;
  7322. }
  7323. .pr-3,
  7324. .px-3 {
  7325. padding-right: 1rem !important;
  7326. }
  7327. .pb-3,
  7328. .py-3 {
  7329. padding-bottom: 1rem !important;
  7330. }
  7331. .pl-3,
  7332. .px-3 {
  7333. padding-left: 1rem !important;
  7334. }
  7335. .p-4 {
  7336. padding: 1.5rem !important;
  7337. }
  7338. .pt-4,
  7339. .py-4 {
  7340. padding-top: 1.5rem !important;
  7341. }
  7342. .pr-4,
  7343. .px-4 {
  7344. padding-right: 1.5rem !important;
  7345. }
  7346. .pb-4,
  7347. .py-4 {
  7348. padding-bottom: 1.5rem !important;
  7349. }
  7350. .pl-4,
  7351. .px-4 {
  7352. padding-left: 1.5rem !important;
  7353. }
  7354. .p-5 {
  7355. padding: 3rem !important;
  7356. }
  7357. .pt-5,
  7358. .py-5 {
  7359. padding-top: 3rem !important;
  7360. }
  7361. .pr-5,
  7362. .px-5 {
  7363. padding-right: 3rem !important;
  7364. }
  7365. .pb-5,
  7366. .py-5 {
  7367. padding-bottom: 3rem !important;
  7368. }
  7369. .pl-5,
  7370. .px-5 {
  7371. padding-left: 3rem !important;
  7372. }
  7373. .m-n1 {
  7374. margin: -0.25rem !important;
  7375. }
  7376. .mt-n1,
  7377. .my-n1 {
  7378. margin-top: -0.25rem !important;
  7379. }
  7380. .mr-n1,
  7381. .mx-n1 {
  7382. margin-right: -0.25rem !important;
  7383. }
  7384. .mb-n1,
  7385. .my-n1 {
  7386. margin-bottom: -0.25rem !important;
  7387. }
  7388. .ml-n1,
  7389. .mx-n1 {
  7390. margin-left: -0.25rem !important;
  7391. }
  7392. .m-n2 {
  7393. margin: -0.5rem !important;
  7394. }
  7395. .mt-n2,
  7396. .my-n2 {
  7397. margin-top: -0.5rem !important;
  7398. }
  7399. .mr-n2,
  7400. .mx-n2 {
  7401. margin-right: -0.5rem !important;
  7402. }
  7403. .mb-n2,
  7404. .my-n2 {
  7405. margin-bottom: -0.5rem !important;
  7406. }
  7407. .ml-n2,
  7408. .mx-n2 {
  7409. margin-left: -0.5rem !important;
  7410. }
  7411. .m-n3 {
  7412. margin: -1rem !important;
  7413. }
  7414. .mt-n3,
  7415. .my-n3 {
  7416. margin-top: -1rem !important;
  7417. }
  7418. .mr-n3,
  7419. .mx-n3 {
  7420. margin-right: -1rem !important;
  7421. }
  7422. .mb-n3,
  7423. .my-n3 {
  7424. margin-bottom: -1rem !important;
  7425. }
  7426. .ml-n3,
  7427. .mx-n3 {
  7428. margin-left: -1rem !important;
  7429. }
  7430. .m-n4 {
  7431. margin: -1.5rem !important;
  7432. }
  7433. .mt-n4,
  7434. .my-n4 {
  7435. margin-top: -1.5rem !important;
  7436. }
  7437. .mr-n4,
  7438. .mx-n4 {
  7439. margin-right: -1.5rem !important;
  7440. }
  7441. .mb-n4,
  7442. .my-n4 {
  7443. margin-bottom: -1.5rem !important;
  7444. }
  7445. .ml-n4,
  7446. .mx-n4 {
  7447. margin-left: -1.5rem !important;
  7448. }
  7449. .m-n5 {
  7450. margin: -3rem !important;
  7451. }
  7452. .mt-n5,
  7453. .my-n5 {
  7454. margin-top: -3rem !important;
  7455. }
  7456. .mr-n5,
  7457. .mx-n5 {
  7458. margin-right: -3rem !important;
  7459. }
  7460. .mb-n5,
  7461. .my-n5 {
  7462. margin-bottom: -3rem !important;
  7463. }
  7464. .ml-n5,
  7465. .mx-n5 {
  7466. margin-left: -3rem !important;
  7467. }
  7468. .m-auto {
  7469. margin: auto !important;
  7470. }
  7471. .mt-auto,
  7472. .my-auto {
  7473. margin-top: auto !important;
  7474. }
  7475. .mr-auto,
  7476. .mx-auto {
  7477. margin-right: auto !important;
  7478. }
  7479. .mb-auto,
  7480. .my-auto {
  7481. margin-bottom: auto !important;
  7482. }
  7483. .ml-auto,
  7484. .mx-auto {
  7485. margin-left: auto !important;
  7486. }
  7487. @media (min-width: 576px) {
  7488. .m-sm-0 {
  7489. margin: 0 !important;
  7490. }
  7491. .mt-sm-0,
  7492. .my-sm-0 {
  7493. margin-top: 0 !important;
  7494. }
  7495. .mr-sm-0,
  7496. .mx-sm-0 {
  7497. margin-right: 0 !important;
  7498. }
  7499. .mb-sm-0,
  7500. .my-sm-0 {
  7501. margin-bottom: 0 !important;
  7502. }
  7503. .ml-sm-0,
  7504. .mx-sm-0 {
  7505. margin-left: 0 !important;
  7506. }
  7507. .m-sm-1 {
  7508. margin: 0.25rem !important;
  7509. }
  7510. .mt-sm-1,
  7511. .my-sm-1 {
  7512. margin-top: 0.25rem !important;
  7513. }
  7514. .mr-sm-1,
  7515. .mx-sm-1 {
  7516. margin-right: 0.25rem !important;
  7517. }
  7518. .mb-sm-1,
  7519. .my-sm-1 {
  7520. margin-bottom: 0.25rem !important;
  7521. }
  7522. .ml-sm-1,
  7523. .mx-sm-1 {
  7524. margin-left: 0.25rem !important;
  7525. }
  7526. .m-sm-2 {
  7527. margin: 0.5rem !important;
  7528. }
  7529. .mt-sm-2,
  7530. .my-sm-2 {
  7531. margin-top: 0.5rem !important;
  7532. }
  7533. .mr-sm-2,
  7534. .mx-sm-2 {
  7535. margin-right: 0.5rem !important;
  7536. }
  7537. .mb-sm-2,
  7538. .my-sm-2 {
  7539. margin-bottom: 0.5rem !important;
  7540. }
  7541. .ml-sm-2,
  7542. .mx-sm-2 {
  7543. margin-left: 0.5rem !important;
  7544. }
  7545. .m-sm-3 {
  7546. margin: 1rem !important;
  7547. }
  7548. .mt-sm-3,
  7549. .my-sm-3 {
  7550. margin-top: 1rem !important;
  7551. }
  7552. .mr-sm-3,
  7553. .mx-sm-3 {
  7554. margin-right: 1rem !important;
  7555. }
  7556. .mb-sm-3,
  7557. .my-sm-3 {
  7558. margin-bottom: 1rem !important;
  7559. }
  7560. .ml-sm-3,
  7561. .mx-sm-3 {
  7562. margin-left: 1rem !important;
  7563. }
  7564. .m-sm-4 {
  7565. margin: 1.5rem !important;
  7566. }
  7567. .mt-sm-4,
  7568. .my-sm-4 {
  7569. margin-top: 1.5rem !important;
  7570. }
  7571. .mr-sm-4,
  7572. .mx-sm-4 {
  7573. margin-right: 1.5rem !important;
  7574. }
  7575. .mb-sm-4,
  7576. .my-sm-4 {
  7577. margin-bottom: 1.5rem !important;
  7578. }
  7579. .ml-sm-4,
  7580. .mx-sm-4 {
  7581. margin-left: 1.5rem !important;
  7582. }
  7583. .m-sm-5 {
  7584. margin: 3rem !important;
  7585. }
  7586. .mt-sm-5,
  7587. .my-sm-5 {
  7588. margin-top: 3rem !important;
  7589. }
  7590. .mr-sm-5,
  7591. .mx-sm-5 {
  7592. margin-right: 3rem !important;
  7593. }
  7594. .mb-sm-5,
  7595. .my-sm-5 {
  7596. margin-bottom: 3rem !important;
  7597. }
  7598. .ml-sm-5,
  7599. .mx-sm-5 {
  7600. margin-left: 3rem !important;
  7601. }
  7602. .p-sm-0 {
  7603. padding: 0 !important;
  7604. }
  7605. .pt-sm-0,
  7606. .py-sm-0 {
  7607. padding-top: 0 !important;
  7608. }
  7609. .pr-sm-0,
  7610. .px-sm-0 {
  7611. padding-right: 0 !important;
  7612. }
  7613. .pb-sm-0,
  7614. .py-sm-0 {
  7615. padding-bottom: 0 !important;
  7616. }
  7617. .pl-sm-0,
  7618. .px-sm-0 {
  7619. padding-left: 0 !important;
  7620. }
  7621. .p-sm-1 {
  7622. padding: 0.25rem !important;
  7623. }
  7624. .pt-sm-1,
  7625. .py-sm-1 {
  7626. padding-top: 0.25rem !important;
  7627. }
  7628. .pr-sm-1,
  7629. .px-sm-1 {
  7630. padding-right: 0.25rem !important;
  7631. }
  7632. .pb-sm-1,
  7633. .py-sm-1 {
  7634. padding-bottom: 0.25rem !important;
  7635. }
  7636. .pl-sm-1,
  7637. .px-sm-1 {
  7638. padding-left: 0.25rem !important;
  7639. }
  7640. .p-sm-2 {
  7641. padding: 0.5rem !important;
  7642. }
  7643. .pt-sm-2,
  7644. .py-sm-2 {
  7645. padding-top: 0.5rem !important;
  7646. }
  7647. .pr-sm-2,
  7648. .px-sm-2 {
  7649. padding-right: 0.5rem !important;
  7650. }
  7651. .pb-sm-2,
  7652. .py-sm-2 {
  7653. padding-bottom: 0.5rem !important;
  7654. }
  7655. .pl-sm-2,
  7656. .px-sm-2 {
  7657. padding-left: 0.5rem !important;
  7658. }
  7659. .p-sm-3 {
  7660. padding: 1rem !important;
  7661. }
  7662. .pt-sm-3,
  7663. .py-sm-3 {
  7664. padding-top: 1rem !important;
  7665. }
  7666. .pr-sm-3,
  7667. .px-sm-3 {
  7668. padding-right: 1rem !important;
  7669. }
  7670. .pb-sm-3,
  7671. .py-sm-3 {
  7672. padding-bottom: 1rem !important;
  7673. }
  7674. .pl-sm-3,
  7675. .px-sm-3 {
  7676. padding-left: 1rem !important;
  7677. }
  7678. .p-sm-4 {
  7679. padding: 1.5rem !important;
  7680. }
  7681. .pt-sm-4,
  7682. .py-sm-4 {
  7683. padding-top: 1.5rem !important;
  7684. }
  7685. .pr-sm-4,
  7686. .px-sm-4 {
  7687. padding-right: 1.5rem !important;
  7688. }
  7689. .pb-sm-4,
  7690. .py-sm-4 {
  7691. padding-bottom: 1.5rem !important;
  7692. }
  7693. .pl-sm-4,
  7694. .px-sm-4 {
  7695. padding-left: 1.5rem !important;
  7696. }
  7697. .p-sm-5 {
  7698. padding: 3rem !important;
  7699. }
  7700. .pt-sm-5,
  7701. .py-sm-5 {
  7702. padding-top: 3rem !important;
  7703. }
  7704. .pr-sm-5,
  7705. .px-sm-5 {
  7706. padding-right: 3rem !important;
  7707. }
  7708. .pb-sm-5,
  7709. .py-sm-5 {
  7710. padding-bottom: 3rem !important;
  7711. }
  7712. .pl-sm-5,
  7713. .px-sm-5 {
  7714. padding-left: 3rem !important;
  7715. }
  7716. .m-sm-n1 {
  7717. margin: -0.25rem !important;
  7718. }
  7719. .mt-sm-n1,
  7720. .my-sm-n1 {
  7721. margin-top: -0.25rem !important;
  7722. }
  7723. .mr-sm-n1,
  7724. .mx-sm-n1 {
  7725. margin-right: -0.25rem !important;
  7726. }
  7727. .mb-sm-n1,
  7728. .my-sm-n1 {
  7729. margin-bottom: -0.25rem !important;
  7730. }
  7731. .ml-sm-n1,
  7732. .mx-sm-n1 {
  7733. margin-left: -0.25rem !important;
  7734. }
  7735. .m-sm-n2 {
  7736. margin: -0.5rem !important;
  7737. }
  7738. .mt-sm-n2,
  7739. .my-sm-n2 {
  7740. margin-top: -0.5rem !important;
  7741. }
  7742. .mr-sm-n2,
  7743. .mx-sm-n2 {
  7744. margin-right: -0.5rem !important;
  7745. }
  7746. .mb-sm-n2,
  7747. .my-sm-n2 {
  7748. margin-bottom: -0.5rem !important;
  7749. }
  7750. .ml-sm-n2,
  7751. .mx-sm-n2 {
  7752. margin-left: -0.5rem !important;
  7753. }
  7754. .m-sm-n3 {
  7755. margin: -1rem !important;
  7756. }
  7757. .mt-sm-n3,
  7758. .my-sm-n3 {
  7759. margin-top: -1rem !important;
  7760. }
  7761. .mr-sm-n3,
  7762. .mx-sm-n3 {
  7763. margin-right: -1rem !important;
  7764. }
  7765. .mb-sm-n3,
  7766. .my-sm-n3 {
  7767. margin-bottom: -1rem !important;
  7768. }
  7769. .ml-sm-n3,
  7770. .mx-sm-n3 {
  7771. margin-left: -1rem !important;
  7772. }
  7773. .m-sm-n4 {
  7774. margin: -1.5rem !important;
  7775. }
  7776. .mt-sm-n4,
  7777. .my-sm-n4 {
  7778. margin-top: -1.5rem !important;
  7779. }
  7780. .mr-sm-n4,
  7781. .mx-sm-n4 {
  7782. margin-right: -1.5rem !important;
  7783. }
  7784. .mb-sm-n4,
  7785. .my-sm-n4 {
  7786. margin-bottom: -1.5rem !important;
  7787. }
  7788. .ml-sm-n4,
  7789. .mx-sm-n4 {
  7790. margin-left: -1.5rem !important;
  7791. }
  7792. .m-sm-n5 {
  7793. margin: -3rem !important;
  7794. }
  7795. .mt-sm-n5,
  7796. .my-sm-n5 {
  7797. margin-top: -3rem !important;
  7798. }
  7799. .mr-sm-n5,
  7800. .mx-sm-n5 {
  7801. margin-right: -3rem !important;
  7802. }
  7803. .mb-sm-n5,
  7804. .my-sm-n5 {
  7805. margin-bottom: -3rem !important;
  7806. }
  7807. .ml-sm-n5,
  7808. .mx-sm-n5 {
  7809. margin-left: -3rem !important;
  7810. }
  7811. .m-sm-auto {
  7812. margin: auto !important;
  7813. }
  7814. .mt-sm-auto,
  7815. .my-sm-auto {
  7816. margin-top: auto !important;
  7817. }
  7818. .mr-sm-auto,
  7819. .mx-sm-auto {
  7820. margin-right: auto !important;
  7821. }
  7822. .mb-sm-auto,
  7823. .my-sm-auto {
  7824. margin-bottom: auto !important;
  7825. }
  7826. .ml-sm-auto,
  7827. .mx-sm-auto {
  7828. margin-left: auto !important;
  7829. }
  7830. }
  7831. @media (min-width: 768px) {
  7832. .m-md-0 {
  7833. margin: 0 !important;
  7834. }
  7835. .mt-md-0,
  7836. .my-md-0 {
  7837. margin-top: 0 !important;
  7838. }
  7839. .mr-md-0,
  7840. .mx-md-0 {
  7841. margin-right: 0 !important;
  7842. }
  7843. .mb-md-0,
  7844. .my-md-0 {
  7845. margin-bottom: 0 !important;
  7846. }
  7847. .ml-md-0,
  7848. .mx-md-0 {
  7849. margin-left: 0 !important;
  7850. }
  7851. .m-md-1 {
  7852. margin: 0.25rem !important;
  7853. }
  7854. .mt-md-1,
  7855. .my-md-1 {
  7856. margin-top: 0.25rem !important;
  7857. }
  7858. .mr-md-1,
  7859. .mx-md-1 {
  7860. margin-right: 0.25rem !important;
  7861. }
  7862. .mb-md-1,
  7863. .my-md-1 {
  7864. margin-bottom: 0.25rem !important;
  7865. }
  7866. .ml-md-1,
  7867. .mx-md-1 {
  7868. margin-left: 0.25rem !important;
  7869. }
  7870. .m-md-2 {
  7871. margin: 0.5rem !important;
  7872. }
  7873. .mt-md-2,
  7874. .my-md-2 {
  7875. margin-top: 0.5rem !important;
  7876. }
  7877. .mr-md-2,
  7878. .mx-md-2 {
  7879. margin-right: 0.5rem !important;
  7880. }
  7881. .mb-md-2,
  7882. .my-md-2 {
  7883. margin-bottom: 0.5rem !important;
  7884. }
  7885. .ml-md-2,
  7886. .mx-md-2 {
  7887. margin-left: 0.5rem !important;
  7888. }
  7889. .m-md-3 {
  7890. margin: 1rem !important;
  7891. }
  7892. .mt-md-3,
  7893. .my-md-3 {
  7894. margin-top: 1rem !important;
  7895. }
  7896. .mr-md-3,
  7897. .mx-md-3 {
  7898. margin-right: 1rem !important;
  7899. }
  7900. .mb-md-3,
  7901. .my-md-3 {
  7902. margin-bottom: 1rem !important;
  7903. }
  7904. .ml-md-3,
  7905. .mx-md-3 {
  7906. margin-left: 1rem !important;
  7907. }
  7908. .m-md-4 {
  7909. margin: 1.5rem !important;
  7910. }
  7911. .mt-md-4,
  7912. .my-md-4 {
  7913. margin-top: 1.5rem !important;
  7914. }
  7915. .mr-md-4,
  7916. .mx-md-4 {
  7917. margin-right: 1.5rem !important;
  7918. }
  7919. .mb-md-4,
  7920. .my-md-4 {
  7921. margin-bottom: 1.5rem !important;
  7922. }
  7923. .ml-md-4,
  7924. .mx-md-4 {
  7925. margin-left: 1.5rem !important;
  7926. }
  7927. .m-md-5 {
  7928. margin: 3rem !important;
  7929. }
  7930. .mt-md-5,
  7931. .my-md-5 {
  7932. margin-top: 3rem !important;
  7933. }
  7934. .mr-md-5,
  7935. .mx-md-5 {
  7936. margin-right: 3rem !important;
  7937. }
  7938. .mb-md-5,
  7939. .my-md-5 {
  7940. margin-bottom: 3rem !important;
  7941. }
  7942. .ml-md-5,
  7943. .mx-md-5 {
  7944. margin-left: 3rem !important;
  7945. }
  7946. .p-md-0 {
  7947. padding: 0 !important;
  7948. }
  7949. .pt-md-0,
  7950. .py-md-0 {
  7951. padding-top: 0 !important;
  7952. }
  7953. .pr-md-0,
  7954. .px-md-0 {
  7955. padding-right: 0 !important;
  7956. }
  7957. .pb-md-0,
  7958. .py-md-0 {
  7959. padding-bottom: 0 !important;
  7960. }
  7961. .pl-md-0,
  7962. .px-md-0 {
  7963. padding-left: 0 !important;
  7964. }
  7965. .p-md-1 {
  7966. padding: 0.25rem !important;
  7967. }
  7968. .pt-md-1,
  7969. .py-md-1 {
  7970. padding-top: 0.25rem !important;
  7971. }
  7972. .pr-md-1,
  7973. .px-md-1 {
  7974. padding-right: 0.25rem !important;
  7975. }
  7976. .pb-md-1,
  7977. .py-md-1 {
  7978. padding-bottom: 0.25rem !important;
  7979. }
  7980. .pl-md-1,
  7981. .px-md-1 {
  7982. padding-left: 0.25rem !important;
  7983. }
  7984. .p-md-2 {
  7985. padding: 0.5rem !important;
  7986. }
  7987. .pt-md-2,
  7988. .py-md-2 {
  7989. padding-top: 0.5rem !important;
  7990. }
  7991. .pr-md-2,
  7992. .px-md-2 {
  7993. padding-right: 0.5rem !important;
  7994. }
  7995. .pb-md-2,
  7996. .py-md-2 {
  7997. padding-bottom: 0.5rem !important;
  7998. }
  7999. .pl-md-2,
  8000. .px-md-2 {
  8001. padding-left: 0.5rem !important;
  8002. }
  8003. .p-md-3 {
  8004. padding: 1rem !important;
  8005. }
  8006. .pt-md-3,
  8007. .py-md-3 {
  8008. padding-top: 1rem !important;
  8009. }
  8010. .pr-md-3,
  8011. .px-md-3 {
  8012. padding-right: 1rem !important;
  8013. }
  8014. .pb-md-3,
  8015. .py-md-3 {
  8016. padding-bottom: 1rem !important;
  8017. }
  8018. .pl-md-3,
  8019. .px-md-3 {
  8020. padding-left: 1rem !important;
  8021. }
  8022. .p-md-4 {
  8023. padding: 1.5rem !important;
  8024. }
  8025. .pt-md-4,
  8026. .py-md-4 {
  8027. padding-top: 1.5rem !important;
  8028. }
  8029. .pr-md-4,
  8030. .px-md-4 {
  8031. padding-right: 1.5rem !important;
  8032. }
  8033. .pb-md-4,
  8034. .py-md-4 {
  8035. padding-bottom: 1.5rem !important;
  8036. }
  8037. .pl-md-4,
  8038. .px-md-4 {
  8039. padding-left: 1.5rem !important;
  8040. }
  8041. .p-md-5 {
  8042. padding: 3rem !important;
  8043. }
  8044. .pt-md-5,
  8045. .py-md-5 {
  8046. padding-top: 3rem !important;
  8047. }
  8048. .pr-md-5,
  8049. .px-md-5 {
  8050. padding-right: 3rem !important;
  8051. }
  8052. .pb-md-5,
  8053. .py-md-5 {
  8054. padding-bottom: 3rem !important;
  8055. }
  8056. .pl-md-5,
  8057. .px-md-5 {
  8058. padding-left: 3rem !important;
  8059. }
  8060. .m-md-n1 {
  8061. margin: -0.25rem !important;
  8062. }
  8063. .mt-md-n1,
  8064. .my-md-n1 {
  8065. margin-top: -0.25rem !important;
  8066. }
  8067. .mr-md-n1,
  8068. .mx-md-n1 {
  8069. margin-right: -0.25rem !important;
  8070. }
  8071. .mb-md-n1,
  8072. .my-md-n1 {
  8073. margin-bottom: -0.25rem !important;
  8074. }
  8075. .ml-md-n1,
  8076. .mx-md-n1 {
  8077. margin-left: -0.25rem !important;
  8078. }
  8079. .m-md-n2 {
  8080. margin: -0.5rem !important;
  8081. }
  8082. .mt-md-n2,
  8083. .my-md-n2 {
  8084. margin-top: -0.5rem !important;
  8085. }
  8086. .mr-md-n2,
  8087. .mx-md-n2 {
  8088. margin-right: -0.5rem !important;
  8089. }
  8090. .mb-md-n2,
  8091. .my-md-n2 {
  8092. margin-bottom: -0.5rem !important;
  8093. }
  8094. .ml-md-n2,
  8095. .mx-md-n2 {
  8096. margin-left: -0.5rem !important;
  8097. }
  8098. .m-md-n3 {
  8099. margin: -1rem !important;
  8100. }
  8101. .mt-md-n3,
  8102. .my-md-n3 {
  8103. margin-top: -1rem !important;
  8104. }
  8105. .mr-md-n3,
  8106. .mx-md-n3 {
  8107. margin-right: -1rem !important;
  8108. }
  8109. .mb-md-n3,
  8110. .my-md-n3 {
  8111. margin-bottom: -1rem !important;
  8112. }
  8113. .ml-md-n3,
  8114. .mx-md-n3 {
  8115. margin-left: -1rem !important;
  8116. }
  8117. .m-md-n4 {
  8118. margin: -1.5rem !important;
  8119. }
  8120. .mt-md-n4,
  8121. .my-md-n4 {
  8122. margin-top: -1.5rem !important;
  8123. }
  8124. .mr-md-n4,
  8125. .mx-md-n4 {
  8126. margin-right: -1.5rem !important;
  8127. }
  8128. .mb-md-n4,
  8129. .my-md-n4 {
  8130. margin-bottom: -1.5rem !important;
  8131. }
  8132. .ml-md-n4,
  8133. .mx-md-n4 {
  8134. margin-left: -1.5rem !important;
  8135. }
  8136. .m-md-n5 {
  8137. margin: -3rem !important;
  8138. }
  8139. .mt-md-n5,
  8140. .my-md-n5 {
  8141. margin-top: -3rem !important;
  8142. }
  8143. .mr-md-n5,
  8144. .mx-md-n5 {
  8145. margin-right: -3rem !important;
  8146. }
  8147. .mb-md-n5,
  8148. .my-md-n5 {
  8149. margin-bottom: -3rem !important;
  8150. }
  8151. .ml-md-n5,
  8152. .mx-md-n5 {
  8153. margin-left: -3rem !important;
  8154. }
  8155. .m-md-auto {
  8156. margin: auto !important;
  8157. }
  8158. .mt-md-auto,
  8159. .my-md-auto {
  8160. margin-top: auto !important;
  8161. }
  8162. .mr-md-auto,
  8163. .mx-md-auto {
  8164. margin-right: auto !important;
  8165. }
  8166. .mb-md-auto,
  8167. .my-md-auto {
  8168. margin-bottom: auto !important;
  8169. }
  8170. .ml-md-auto,
  8171. .mx-md-auto {
  8172. margin-left: auto !important;
  8173. }
  8174. }
  8175. @media (min-width: 992px) {
  8176. .m-lg-0 {
  8177. margin: 0 !important;
  8178. }
  8179. .mt-lg-0,
  8180. .my-lg-0 {
  8181. margin-top: 0 !important;
  8182. }
  8183. .mr-lg-0,
  8184. .mx-lg-0 {
  8185. margin-right: 0 !important;
  8186. }
  8187. .mb-lg-0,
  8188. .my-lg-0 {
  8189. margin-bottom: 0 !important;
  8190. }
  8191. .ml-lg-0,
  8192. .mx-lg-0 {
  8193. margin-left: 0 !important;
  8194. }
  8195. .m-lg-1 {
  8196. margin: 0.25rem !important;
  8197. }
  8198. .mt-lg-1,
  8199. .my-lg-1 {
  8200. margin-top: 0.25rem !important;
  8201. }
  8202. .mr-lg-1,
  8203. .mx-lg-1 {
  8204. margin-right: 0.25rem !important;
  8205. }
  8206. .mb-lg-1,
  8207. .my-lg-1 {
  8208. margin-bottom: 0.25rem !important;
  8209. }
  8210. .ml-lg-1,
  8211. .mx-lg-1 {
  8212. margin-left: 0.25rem !important;
  8213. }
  8214. .m-lg-2 {
  8215. margin: 0.5rem !important;
  8216. }
  8217. .mt-lg-2,
  8218. .my-lg-2 {
  8219. margin-top: 0.5rem !important;
  8220. }
  8221. .mr-lg-2,
  8222. .mx-lg-2 {
  8223. margin-right: 0.5rem !important;
  8224. }
  8225. .mb-lg-2,
  8226. .my-lg-2 {
  8227. margin-bottom: 0.5rem !important;
  8228. }
  8229. .ml-lg-2,
  8230. .mx-lg-2 {
  8231. margin-left: 0.5rem !important;
  8232. }
  8233. .m-lg-3 {
  8234. margin: 1rem !important;
  8235. }
  8236. .mt-lg-3,
  8237. .my-lg-3 {
  8238. margin-top: 1rem !important;
  8239. }
  8240. .mr-lg-3,
  8241. .mx-lg-3 {
  8242. margin-right: 1rem !important;
  8243. }
  8244. .mb-lg-3,
  8245. .my-lg-3 {
  8246. margin-bottom: 1rem !important;
  8247. }
  8248. .ml-lg-3,
  8249. .mx-lg-3 {
  8250. margin-left: 1rem !important;
  8251. }
  8252. .m-lg-4 {
  8253. margin: 1.5rem !important;
  8254. }
  8255. .mt-lg-4,
  8256. .my-lg-4 {
  8257. margin-top: 1.5rem !important;
  8258. }
  8259. .mr-lg-4,
  8260. .mx-lg-4 {
  8261. margin-right: 1.5rem !important;
  8262. }
  8263. .mb-lg-4,
  8264. .my-lg-4 {
  8265. margin-bottom: 1.5rem !important;
  8266. }
  8267. .ml-lg-4,
  8268. .mx-lg-4 {
  8269. margin-left: 1.5rem !important;
  8270. }
  8271. .m-lg-5 {
  8272. margin: 3rem !important;
  8273. }
  8274. .mt-lg-5,
  8275. .my-lg-5 {
  8276. margin-top: 3rem !important;
  8277. }
  8278. .mr-lg-5,
  8279. .mx-lg-5 {
  8280. margin-right: 3rem !important;
  8281. }
  8282. .mb-lg-5,
  8283. .my-lg-5 {
  8284. margin-bottom: 3rem !important;
  8285. }
  8286. .ml-lg-5,
  8287. .mx-lg-5 {
  8288. margin-left: 3rem !important;
  8289. }
  8290. .p-lg-0 {
  8291. padding: 0 !important;
  8292. }
  8293. .pt-lg-0,
  8294. .py-lg-0 {
  8295. padding-top: 0 !important;
  8296. }
  8297. .pr-lg-0,
  8298. .px-lg-0 {
  8299. padding-right: 0 !important;
  8300. }
  8301. .pb-lg-0,
  8302. .py-lg-0 {
  8303. padding-bottom: 0 !important;
  8304. }
  8305. .pl-lg-0,
  8306. .px-lg-0 {
  8307. padding-left: 0 !important;
  8308. }
  8309. .p-lg-1 {
  8310. padding: 0.25rem !important;
  8311. }
  8312. .pt-lg-1,
  8313. .py-lg-1 {
  8314. padding-top: 0.25rem !important;
  8315. }
  8316. .pr-lg-1,
  8317. .px-lg-1 {
  8318. padding-right: 0.25rem !important;
  8319. }
  8320. .pb-lg-1,
  8321. .py-lg-1 {
  8322. padding-bottom: 0.25rem !important;
  8323. }
  8324. .pl-lg-1,
  8325. .px-lg-1 {
  8326. padding-left: 0.25rem !important;
  8327. }
  8328. .p-lg-2 {
  8329. padding: 0.5rem !important;
  8330. }
  8331. .pt-lg-2,
  8332. .py-lg-2 {
  8333. padding-top: 0.5rem !important;
  8334. }
  8335. .pr-lg-2,
  8336. .px-lg-2 {
  8337. padding-right: 0.5rem !important;
  8338. }
  8339. .pb-lg-2,
  8340. .py-lg-2 {
  8341. padding-bottom: 0.5rem !important;
  8342. }
  8343. .pl-lg-2,
  8344. .px-lg-2 {
  8345. padding-left: 0.5rem !important;
  8346. }
  8347. .p-lg-3 {
  8348. padding: 1rem !important;
  8349. }
  8350. .pt-lg-3,
  8351. .py-lg-3 {
  8352. padding-top: 1rem !important;
  8353. }
  8354. .pr-lg-3,
  8355. .px-lg-3 {
  8356. padding-right: 1rem !important;
  8357. }
  8358. .pb-lg-3,
  8359. .py-lg-3 {
  8360. padding-bottom: 1rem !important;
  8361. }
  8362. .pl-lg-3,
  8363. .px-lg-3 {
  8364. padding-left: 1rem !important;
  8365. }
  8366. .p-lg-4 {
  8367. padding: 1.5rem !important;
  8368. }
  8369. .pt-lg-4,
  8370. .py-lg-4 {
  8371. padding-top: 1.5rem !important;
  8372. }
  8373. .pr-lg-4,
  8374. .px-lg-4 {
  8375. padding-right: 1.5rem !important;
  8376. }
  8377. .pb-lg-4,
  8378. .py-lg-4 {
  8379. padding-bottom: 1.5rem !important;
  8380. }
  8381. .pl-lg-4,
  8382. .px-lg-4 {
  8383. padding-left: 1.5rem !important;
  8384. }
  8385. .p-lg-5 {
  8386. padding: 3rem !important;
  8387. }
  8388. .pt-lg-5,
  8389. .py-lg-5 {
  8390. padding-top: 3rem !important;
  8391. }
  8392. .pr-lg-5,
  8393. .px-lg-5 {
  8394. padding-right: 3rem !important;
  8395. }
  8396. .pb-lg-5,
  8397. .py-lg-5 {
  8398. padding-bottom: 3rem !important;
  8399. }
  8400. .pl-lg-5,
  8401. .px-lg-5 {
  8402. padding-left: 3rem !important;
  8403. }
  8404. .m-lg-n1 {
  8405. margin: -0.25rem !important;
  8406. }
  8407. .mt-lg-n1,
  8408. .my-lg-n1 {
  8409. margin-top: -0.25rem !important;
  8410. }
  8411. .mr-lg-n1,
  8412. .mx-lg-n1 {
  8413. margin-right: -0.25rem !important;
  8414. }
  8415. .mb-lg-n1,
  8416. .my-lg-n1 {
  8417. margin-bottom: -0.25rem !important;
  8418. }
  8419. .ml-lg-n1,
  8420. .mx-lg-n1 {
  8421. margin-left: -0.25rem !important;
  8422. }
  8423. .m-lg-n2 {
  8424. margin: -0.5rem !important;
  8425. }
  8426. .mt-lg-n2,
  8427. .my-lg-n2 {
  8428. margin-top: -0.5rem !important;
  8429. }
  8430. .mr-lg-n2,
  8431. .mx-lg-n2 {
  8432. margin-right: -0.5rem !important;
  8433. }
  8434. .mb-lg-n2,
  8435. .my-lg-n2 {
  8436. margin-bottom: -0.5rem !important;
  8437. }
  8438. .ml-lg-n2,
  8439. .mx-lg-n2 {
  8440. margin-left: -0.5rem !important;
  8441. }
  8442. .m-lg-n3 {
  8443. margin: -1rem !important;
  8444. }
  8445. .mt-lg-n3,
  8446. .my-lg-n3 {
  8447. margin-top: -1rem !important;
  8448. }
  8449. .mr-lg-n3,
  8450. .mx-lg-n3 {
  8451. margin-right: -1rem !important;
  8452. }
  8453. .mb-lg-n3,
  8454. .my-lg-n3 {
  8455. margin-bottom: -1rem !important;
  8456. }
  8457. .ml-lg-n3,
  8458. .mx-lg-n3 {
  8459. margin-left: -1rem !important;
  8460. }
  8461. .m-lg-n4 {
  8462. margin: -1.5rem !important;
  8463. }
  8464. .mt-lg-n4,
  8465. .my-lg-n4 {
  8466. margin-top: -1.5rem !important;
  8467. }
  8468. .mr-lg-n4,
  8469. .mx-lg-n4 {
  8470. margin-right: -1.5rem !important;
  8471. }
  8472. .mb-lg-n4,
  8473. .my-lg-n4 {
  8474. margin-bottom: -1.5rem !important;
  8475. }
  8476. .ml-lg-n4,
  8477. .mx-lg-n4 {
  8478. margin-left: -1.5rem !important;
  8479. }
  8480. .m-lg-n5 {
  8481. margin: -3rem !important;
  8482. }
  8483. .mt-lg-n5,
  8484. .my-lg-n5 {
  8485. margin-top: -3rem !important;
  8486. }
  8487. .mr-lg-n5,
  8488. .mx-lg-n5 {
  8489. margin-right: -3rem !important;
  8490. }
  8491. .mb-lg-n5,
  8492. .my-lg-n5 {
  8493. margin-bottom: -3rem !important;
  8494. }
  8495. .ml-lg-n5,
  8496. .mx-lg-n5 {
  8497. margin-left: -3rem !important;
  8498. }
  8499. .m-lg-auto {
  8500. margin: auto !important;
  8501. }
  8502. .mt-lg-auto,
  8503. .my-lg-auto {
  8504. margin-top: auto !important;
  8505. }
  8506. .mr-lg-auto,
  8507. .mx-lg-auto {
  8508. margin-right: auto !important;
  8509. }
  8510. .mb-lg-auto,
  8511. .my-lg-auto {
  8512. margin-bottom: auto !important;
  8513. }
  8514. .ml-lg-auto,
  8515. .mx-lg-auto {
  8516. margin-left: auto !important;
  8517. }
  8518. }
  8519. @media (min-width: 1200px) {
  8520. .m-xl-0 {
  8521. margin: 0 !important;
  8522. }
  8523. .mt-xl-0,
  8524. .my-xl-0 {
  8525. margin-top: 0 !important;
  8526. }
  8527. .mr-xl-0,
  8528. .mx-xl-0 {
  8529. margin-right: 0 !important;
  8530. }
  8531. .mb-xl-0,
  8532. .my-xl-0 {
  8533. margin-bottom: 0 !important;
  8534. }
  8535. .ml-xl-0,
  8536. .mx-xl-0 {
  8537. margin-left: 0 !important;
  8538. }
  8539. .m-xl-1 {
  8540. margin: 0.25rem !important;
  8541. }
  8542. .mt-xl-1,
  8543. .my-xl-1 {
  8544. margin-top: 0.25rem !important;
  8545. }
  8546. .mr-xl-1,
  8547. .mx-xl-1 {
  8548. margin-right: 0.25rem !important;
  8549. }
  8550. .mb-xl-1,
  8551. .my-xl-1 {
  8552. margin-bottom: 0.25rem !important;
  8553. }
  8554. .ml-xl-1,
  8555. .mx-xl-1 {
  8556. margin-left: 0.25rem !important;
  8557. }
  8558. .m-xl-2 {
  8559. margin: 0.5rem !important;
  8560. }
  8561. .mt-xl-2,
  8562. .my-xl-2 {
  8563. margin-top: 0.5rem !important;
  8564. }
  8565. .mr-xl-2,
  8566. .mx-xl-2 {
  8567. margin-right: 0.5rem !important;
  8568. }
  8569. .mb-xl-2,
  8570. .my-xl-2 {
  8571. margin-bottom: 0.5rem !important;
  8572. }
  8573. .ml-xl-2,
  8574. .mx-xl-2 {
  8575. margin-left: 0.5rem !important;
  8576. }
  8577. .m-xl-3 {
  8578. margin: 1rem !important;
  8579. }
  8580. .mt-xl-3,
  8581. .my-xl-3 {
  8582. margin-top: 1rem !important;
  8583. }
  8584. .mr-xl-3,
  8585. .mx-xl-3 {
  8586. margin-right: 1rem !important;
  8587. }
  8588. .mb-xl-3,
  8589. .my-xl-3 {
  8590. margin-bottom: 1rem !important;
  8591. }
  8592. .ml-xl-3,
  8593. .mx-xl-3 {
  8594. margin-left: 1rem !important;
  8595. }
  8596. .m-xl-4 {
  8597. margin: 1.5rem !important;
  8598. }
  8599. .mt-xl-4,
  8600. .my-xl-4 {
  8601. margin-top: 1.5rem !important;
  8602. }
  8603. .mr-xl-4,
  8604. .mx-xl-4 {
  8605. margin-right: 1.5rem !important;
  8606. }
  8607. .mb-xl-4,
  8608. .my-xl-4 {
  8609. margin-bottom: 1.5rem !important;
  8610. }
  8611. .ml-xl-4,
  8612. .mx-xl-4 {
  8613. margin-left: 1.5rem !important;
  8614. }
  8615. .m-xl-5 {
  8616. margin: 3rem !important;
  8617. }
  8618. .mt-xl-5,
  8619. .my-xl-5 {
  8620. margin-top: 3rem !important;
  8621. }
  8622. .mr-xl-5,
  8623. .mx-xl-5 {
  8624. margin-right: 3rem !important;
  8625. }
  8626. .mb-xl-5,
  8627. .my-xl-5 {
  8628. margin-bottom: 3rem !important;
  8629. }
  8630. .ml-xl-5,
  8631. .mx-xl-5 {
  8632. margin-left: 3rem !important;
  8633. }
  8634. .p-xl-0 {
  8635. padding: 0 !important;
  8636. }
  8637. .pt-xl-0,
  8638. .py-xl-0 {
  8639. padding-top: 0 !important;
  8640. }
  8641. .pr-xl-0,
  8642. .px-xl-0 {
  8643. padding-right: 0 !important;
  8644. }
  8645. .pb-xl-0,
  8646. .py-xl-0 {
  8647. padding-bottom: 0 !important;
  8648. }
  8649. .pl-xl-0,
  8650. .px-xl-0 {
  8651. padding-left: 0 !important;
  8652. }
  8653. .p-xl-1 {
  8654. padding: 0.25rem !important;
  8655. }
  8656. .pt-xl-1,
  8657. .py-xl-1 {
  8658. padding-top: 0.25rem !important;
  8659. }
  8660. .pr-xl-1,
  8661. .px-xl-1 {
  8662. padding-right: 0.25rem !important;
  8663. }
  8664. .pb-xl-1,
  8665. .py-xl-1 {
  8666. padding-bottom: 0.25rem !important;
  8667. }
  8668. .pl-xl-1,
  8669. .px-xl-1 {
  8670. padding-left: 0.25rem !important;
  8671. }
  8672. .p-xl-2 {
  8673. padding: 0.5rem !important;
  8674. }
  8675. .pt-xl-2,
  8676. .py-xl-2 {
  8677. padding-top: 0.5rem !important;
  8678. }
  8679. .pr-xl-2,
  8680. .px-xl-2 {
  8681. padding-right: 0.5rem !important;
  8682. }
  8683. .pb-xl-2,
  8684. .py-xl-2 {
  8685. padding-bottom: 0.5rem !important;
  8686. }
  8687. .pl-xl-2,
  8688. .px-xl-2 {
  8689. padding-left: 0.5rem !important;
  8690. }
  8691. .p-xl-3 {
  8692. padding: 1rem !important;
  8693. }
  8694. .pt-xl-3,
  8695. .py-xl-3 {
  8696. padding-top: 1rem !important;
  8697. }
  8698. .pr-xl-3,
  8699. .px-xl-3 {
  8700. padding-right: 1rem !important;
  8701. }
  8702. .pb-xl-3,
  8703. .py-xl-3 {
  8704. padding-bottom: 1rem !important;
  8705. }
  8706. .pl-xl-3,
  8707. .px-xl-3 {
  8708. padding-left: 1rem !important;
  8709. }
  8710. .p-xl-4 {
  8711. padding: 1.5rem !important;
  8712. }
  8713. .pt-xl-4,
  8714. .py-xl-4 {
  8715. padding-top: 1.5rem !important;
  8716. }
  8717. .pr-xl-4,
  8718. .px-xl-4 {
  8719. padding-right: 1.5rem !important;
  8720. }
  8721. .pb-xl-4,
  8722. .py-xl-4 {
  8723. padding-bottom: 1.5rem !important;
  8724. }
  8725. .pl-xl-4,
  8726. .px-xl-4 {
  8727. padding-left: 1.5rem !important;
  8728. }
  8729. .p-xl-5 {
  8730. padding: 3rem !important;
  8731. }
  8732. .pt-xl-5,
  8733. .py-xl-5 {
  8734. padding-top: 3rem !important;
  8735. }
  8736. .pr-xl-5,
  8737. .px-xl-5 {
  8738. padding-right: 3rem !important;
  8739. }
  8740. .pb-xl-5,
  8741. .py-xl-5 {
  8742. padding-bottom: 3rem !important;
  8743. }
  8744. .pl-xl-5,
  8745. .px-xl-5 {
  8746. padding-left: 3rem !important;
  8747. }
  8748. .m-xl-n1 {
  8749. margin: -0.25rem !important;
  8750. }
  8751. .mt-xl-n1,
  8752. .my-xl-n1 {
  8753. margin-top: -0.25rem !important;
  8754. }
  8755. .mr-xl-n1,
  8756. .mx-xl-n1 {
  8757. margin-right: -0.25rem !important;
  8758. }
  8759. .mb-xl-n1,
  8760. .my-xl-n1 {
  8761. margin-bottom: -0.25rem !important;
  8762. }
  8763. .ml-xl-n1,
  8764. .mx-xl-n1 {
  8765. margin-left: -0.25rem !important;
  8766. }
  8767. .m-xl-n2 {
  8768. margin: -0.5rem !important;
  8769. }
  8770. .mt-xl-n2,
  8771. .my-xl-n2 {
  8772. margin-top: -0.5rem !important;
  8773. }
  8774. .mr-xl-n2,
  8775. .mx-xl-n2 {
  8776. margin-right: -0.5rem !important;
  8777. }
  8778. .mb-xl-n2,
  8779. .my-xl-n2 {
  8780. margin-bottom: -0.5rem !important;
  8781. }
  8782. .ml-xl-n2,
  8783. .mx-xl-n2 {
  8784. margin-left: -0.5rem !important;
  8785. }
  8786. .m-xl-n3 {
  8787. margin: -1rem !important;
  8788. }
  8789. .mt-xl-n3,
  8790. .my-xl-n3 {
  8791. margin-top: -1rem !important;
  8792. }
  8793. .mr-xl-n3,
  8794. .mx-xl-n3 {
  8795. margin-right: -1rem !important;
  8796. }
  8797. .mb-xl-n3,
  8798. .my-xl-n3 {
  8799. margin-bottom: -1rem !important;
  8800. }
  8801. .ml-xl-n3,
  8802. .mx-xl-n3 {
  8803. margin-left: -1rem !important;
  8804. }
  8805. .m-xl-n4 {
  8806. margin: -1.5rem !important;
  8807. }
  8808. .mt-xl-n4,
  8809. .my-xl-n4 {
  8810. margin-top: -1.5rem !important;
  8811. }
  8812. .mr-xl-n4,
  8813. .mx-xl-n4 {
  8814. margin-right: -1.5rem !important;
  8815. }
  8816. .mb-xl-n4,
  8817. .my-xl-n4 {
  8818. margin-bottom: -1.5rem !important;
  8819. }
  8820. .ml-xl-n4,
  8821. .mx-xl-n4 {
  8822. margin-left: -1.5rem !important;
  8823. }
  8824. .m-xl-n5 {
  8825. margin: -3rem !important;
  8826. }
  8827. .mt-xl-n5,
  8828. .my-xl-n5 {
  8829. margin-top: -3rem !important;
  8830. }
  8831. .mr-xl-n5,
  8832. .mx-xl-n5 {
  8833. margin-right: -3rem !important;
  8834. }
  8835. .mb-xl-n5,
  8836. .my-xl-n5 {
  8837. margin-bottom: -3rem !important;
  8838. }
  8839. .ml-xl-n5,
  8840. .mx-xl-n5 {
  8841. margin-left: -3rem !important;
  8842. }
  8843. .m-xl-auto {
  8844. margin: auto !important;
  8845. }
  8846. .mt-xl-auto,
  8847. .my-xl-auto {
  8848. margin-top: auto !important;
  8849. }
  8850. .mr-xl-auto,
  8851. .mx-xl-auto {
  8852. margin-right: auto !important;
  8853. }
  8854. .mb-xl-auto,
  8855. .my-xl-auto {
  8856. margin-bottom: auto !important;
  8857. }
  8858. .ml-xl-auto,
  8859. .mx-xl-auto {
  8860. margin-left: auto !important;
  8861. }
  8862. }
  8863. .stretched-link::after {
  8864. position: absolute;
  8865. top: 0;
  8866. right: 0;
  8867. bottom: 0;
  8868. left: 0;
  8869. z-index: 1;
  8870. pointer-events: auto;
  8871. content: "";
  8872. background-color: rgba(0, 0, 0, 0);
  8873. }
  8874. .text-monospace {
  8875. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  8876. }
  8877. .text-justify {
  8878. text-align: justify !important;
  8879. }
  8880. .text-wrap {
  8881. white-space: normal !important;
  8882. }
  8883. .text-nowrap {
  8884. white-space: nowrap !important;
  8885. }
  8886. .text-truncate {
  8887. overflow: hidden;
  8888. text-overflow: ellipsis;
  8889. white-space: nowrap;
  8890. }
  8891. .text-left {
  8892. text-align: left !important;
  8893. }
  8894. .text-right {
  8895. text-align: right !important;
  8896. }
  8897. .text-center {
  8898. text-align: center !important;
  8899. }
  8900. @media (min-width: 576px) {
  8901. .text-sm-left {
  8902. text-align: left !important;
  8903. }
  8904. .text-sm-right {
  8905. text-align: right !important;
  8906. }
  8907. .text-sm-center {
  8908. text-align: center !important;
  8909. }
  8910. }
  8911. @media (min-width: 768px) {
  8912. .text-md-left {
  8913. text-align: left !important;
  8914. }
  8915. .text-md-right {
  8916. text-align: right !important;
  8917. }
  8918. .text-md-center {
  8919. text-align: center !important;
  8920. }
  8921. }
  8922. @media (min-width: 992px) {
  8923. .text-lg-left {
  8924. text-align: left !important;
  8925. }
  8926. .text-lg-right {
  8927. text-align: right !important;
  8928. }
  8929. .text-lg-center {
  8930. text-align: center !important;
  8931. }
  8932. }
  8933. @media (min-width: 1200px) {
  8934. .text-xl-left {
  8935. text-align: left !important;
  8936. }
  8937. .text-xl-right {
  8938. text-align: right !important;
  8939. }
  8940. .text-xl-center {
  8941. text-align: center !important;
  8942. }
  8943. }
  8944. .text-lowercase {
  8945. text-transform: lowercase !important;
  8946. }
  8947. .text-uppercase {
  8948. text-transform: uppercase !important;
  8949. }
  8950. .text-capitalize {
  8951. text-transform: capitalize !important;
  8952. }
  8953. .font-weight-light {
  8954. font-weight: 300 !important;
  8955. }
  8956. .font-weight-lighter {
  8957. font-weight: lighter !important;
  8958. }
  8959. .font-weight-normal {
  8960. font-weight: 400 !important;
  8961. }
  8962. .font-weight-bold {
  8963. font-weight: 700 !important;
  8964. }
  8965. .font-weight-bolder {
  8966. font-weight: bolder !important;
  8967. }
  8968. .font-italic {
  8969. font-style: italic !important;
  8970. }
  8971. .text-white {
  8972. color: #fff !important;
  8973. }
  8974. .text-primary {
  8975. color: #3490dc !important;
  8976. }
  8977. a.text-primary:hover,
  8978. a.text-primary:focus {
  8979. color: #1d68a7 !important;
  8980. }
  8981. .text-secondary {
  8982. color: #6c757d !important;
  8983. }
  8984. a.text-secondary:hover,
  8985. a.text-secondary:focus {
  8986. color: #494f54 !important;
  8987. }
  8988. .text-success {
  8989. color: #38c172 !important;
  8990. }
  8991. a.text-success:hover,
  8992. a.text-success:focus {
  8993. color: #27864f !important;
  8994. }
  8995. .text-info {
  8996. color: #6cb2eb !important;
  8997. }
  8998. a.text-info:hover,
  8999. a.text-info:focus {
  9000. color: #298fe2 !important;
  9001. }
  9002. .text-warning {
  9003. color: #ffed4a !important;
  9004. }
  9005. a.text-warning:hover,
  9006. a.text-warning:focus {
  9007. color: #fde300 !important;
  9008. }
  9009. .text-danger {
  9010. color: #e3342f !important;
  9011. }
  9012. a.text-danger:hover,
  9013. a.text-danger:focus {
  9014. color: #ae1c17 !important;
  9015. }
  9016. .text-light {
  9017. color: #f8f9fa !important;
  9018. }
  9019. a.text-light:hover,
  9020. a.text-light:focus {
  9021. color: #cbd3da !important;
  9022. }
  9023. .text-dark {
  9024. color: #343a40 !important;
  9025. }
  9026. a.text-dark:hover,
  9027. a.text-dark:focus {
  9028. color: #121416 !important;
  9029. }
  9030. .text-body {
  9031. color: #212529 !important;
  9032. }
  9033. .text-muted {
  9034. color: #6c757d !important;
  9035. }
  9036. .text-black-50 {
  9037. color: rgba(0, 0, 0, 0.5) !important;
  9038. }
  9039. .text-white-50 {
  9040. color: rgba(255, 255, 255, 0.5) !important;
  9041. }
  9042. .text-hide {
  9043. font: 0/0 a;
  9044. color: transparent;
  9045. text-shadow: none;
  9046. background-color: transparent;
  9047. border: 0;
  9048. }
  9049. .text-decoration-none {
  9050. text-decoration: none !important;
  9051. }
  9052. .text-break {
  9053. word-wrap: break-word !important;
  9054. }
  9055. .text-reset {
  9056. color: inherit !important;
  9057. }
  9058. .visible {
  9059. visibility: visible !important;
  9060. }
  9061. .invisible {
  9062. visibility: hidden !important;
  9063. }
  9064. @media print {
  9065. *,
  9066. *::before,
  9067. *::after {
  9068. text-shadow: none !important;
  9069. box-shadow: none !important;
  9070. }
  9071. a:not(.btn) {
  9072. text-decoration: underline;
  9073. }
  9074. abbr[title]::after {
  9075. content: " (" attr(title) ")";
  9076. }
  9077. pre {
  9078. white-space: pre-wrap !important;
  9079. }
  9080. pre,
  9081. blockquote {
  9082. border: 1px solid #adb5bd;
  9083. page-break-inside: avoid;
  9084. }
  9085. thead {
  9086. display: table-header-group;
  9087. }
  9088. tr,
  9089. img {
  9090. page-break-inside: avoid;
  9091. }
  9092. p,
  9093. h2,
  9094. h3 {
  9095. orphans: 3;
  9096. widows: 3;
  9097. }
  9098. h2,
  9099. h3 {
  9100. page-break-after: avoid;
  9101. }
  9102. @page {
  9103. size: a3;
  9104. }
  9105. body {
  9106. min-width: 992px !important;
  9107. }
  9108. .container {
  9109. min-width: 992px !important;
  9110. }
  9111. .navbar {
  9112. display: none;
  9113. }
  9114. .badge {
  9115. border: 1px solid #000;
  9116. }
  9117. .table {
  9118. border-collapse: collapse !important;
  9119. }
  9120. .table td,
  9121. .table th {
  9122. background-color: #fff !important;
  9123. }
  9124. .table-bordered th,
  9125. .table-bordered td {
  9126. border: 1px solid #dee2e6 !important;
  9127. }
  9128. .table-dark {
  9129. color: inherit;
  9130. }
  9131. .table-dark th,
  9132. .table-dark td,
  9133. .table-dark thead th,
  9134. .table-dark tbody + tbody {
  9135. border-color: #dee2e6;
  9136. }
  9137. .table .thead-dark th {
  9138. color: inherit;
  9139. border-color: #dee2e6;
  9140. }
  9141. }
  9142. /*!
  9143. * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
  9144. * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  9145. */
  9146. /* FONT PATH
  9147. * -------------------------- */
  9148. @font-face {
  9149. font-family: "FontAwesome";
  9150. src: url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);
  9151. src: url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713) format("embedded-opentype"), url(/fonts/vendor/font-awesome/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format("woff2"), url(/fonts/vendor/font-awesome/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format("woff"), url(/fonts/vendor/font-awesome/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format("truetype"), url(/fonts/vendor/font-awesome/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde) format("svg");
  9152. font-weight: normal;
  9153. font-style: normal;
  9154. }
  9155. .fa {
  9156. display: inline-block;
  9157. font: normal normal normal 14px/1 FontAwesome;
  9158. font-size: inherit;
  9159. text-rendering: auto;
  9160. -webkit-font-smoothing: antialiased;
  9161. -moz-osx-font-smoothing: grayscale;
  9162. }
  9163. /* makes the font 33% larger relative to the icon container */
  9164. .fa-lg {
  9165. font-size: 1.3333333333em;
  9166. line-height: 0.75em;
  9167. vertical-align: -15%;
  9168. }
  9169. .fa-2x {
  9170. font-size: 2em;
  9171. }
  9172. .fa-3x {
  9173. font-size: 3em;
  9174. }
  9175. .fa-4x {
  9176. font-size: 4em;
  9177. }
  9178. .fa-5x {
  9179. font-size: 5em;
  9180. }
  9181. .fa-fw {
  9182. width: 1.2857142857em;
  9183. text-align: center;
  9184. }
  9185. .fa-ul {
  9186. padding-left: 0;
  9187. margin-left: 2.1428571429em;
  9188. list-style-type: none;
  9189. }
  9190. .fa-ul > li {
  9191. position: relative;
  9192. }
  9193. .fa-li {
  9194. position: absolute;
  9195. left: -2.1428571429em;
  9196. width: 2.1428571429em;
  9197. top: 0.1428571429em;
  9198. text-align: center;
  9199. }
  9200. .fa-li.fa-lg {
  9201. left: -1.8571428571em;
  9202. }
  9203. .fa-border {
  9204. padding: 0.2em 0.25em 0.15em;
  9205. border: solid 0.08em #eee;
  9206. border-radius: 0.1em;
  9207. }
  9208. .fa-pull-left {
  9209. float: left;
  9210. }
  9211. .fa-pull-right {
  9212. float: right;
  9213. }
  9214. .fa.fa-pull-left {
  9215. margin-right: 0.3em;
  9216. }
  9217. .fa.fa-pull-right {
  9218. margin-left: 0.3em;
  9219. }
  9220. /* Deprecated as of 4.4.0 */
  9221. .pull-right {
  9222. float: right;
  9223. }
  9224. .pull-left {
  9225. float: left;
  9226. }
  9227. .fa.pull-left {
  9228. margin-right: 0.3em;
  9229. }
  9230. .fa.pull-right {
  9231. margin-left: 0.3em;
  9232. }
  9233. .fa-spin {
  9234. -webkit-animation: fa-spin 2s infinite linear;
  9235. animation: fa-spin 2s infinite linear;
  9236. }
  9237. .fa-pulse {
  9238. -webkit-animation: fa-spin 1s infinite steps(8);
  9239. animation: fa-spin 1s infinite steps(8);
  9240. }
  9241. @-webkit-keyframes fa-spin {
  9242. 0% {
  9243. transform: rotate(0deg);
  9244. }
  9245. 100% {
  9246. transform: rotate(359deg);
  9247. }
  9248. }
  9249. @keyframes fa-spin {
  9250. 0% {
  9251. transform: rotate(0deg);
  9252. }
  9253. 100% {
  9254. transform: rotate(359deg);
  9255. }
  9256. }
  9257. .fa-rotate-90 {
  9258. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  9259. transform: rotate(90deg);
  9260. }
  9261. .fa-rotate-180 {
  9262. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  9263. transform: rotate(180deg);
  9264. }
  9265. .fa-rotate-270 {
  9266. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  9267. transform: rotate(270deg);
  9268. }
  9269. .fa-flip-horizontal {
  9270. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  9271. transform: scale(-1, 1);
  9272. }
  9273. .fa-flip-vertical {
  9274. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  9275. transform: scale(1, -1);
  9276. }
  9277. :root .fa-rotate-90,
  9278. :root .fa-rotate-180,
  9279. :root .fa-rotate-270,
  9280. :root .fa-flip-horizontal,
  9281. :root .fa-flip-vertical {
  9282. -webkit-filter: none;
  9283. filter: none;
  9284. }
  9285. .fa-stack {
  9286. position: relative;
  9287. display: inline-block;
  9288. width: 2em;
  9289. height: 2em;
  9290. line-height: 2em;
  9291. vertical-align: middle;
  9292. }
  9293. .fa-stack-1x,
  9294. .fa-stack-2x {
  9295. position: absolute;
  9296. left: 0;
  9297. width: 100%;
  9298. text-align: center;
  9299. }
  9300. .fa-stack-1x {
  9301. line-height: inherit;
  9302. }
  9303. .fa-stack-2x {
  9304. font-size: 2em;
  9305. }
  9306. .fa-inverse {
  9307. color: #fff;
  9308. }
  9309. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  9310. readers do not read off random characters that represent icons */
  9311. .fa-glass:before {
  9312. content: "\F000";
  9313. }
  9314. .fa-music:before {
  9315. content: "\F001";
  9316. }
  9317. .fa-search:before {
  9318. content: "\F002";
  9319. }
  9320. .fa-envelope-o:before {
  9321. content: "\F003";
  9322. }
  9323. .fa-heart:before {
  9324. content: "\F004";
  9325. }
  9326. .fa-star:before {
  9327. content: "\F005";
  9328. }
  9329. .fa-star-o:before {
  9330. content: "\F006";
  9331. }
  9332. .fa-user:before {
  9333. content: "\F007";
  9334. }
  9335. .fa-film:before {
  9336. content: "\F008";
  9337. }
  9338. .fa-th-large:before {
  9339. content: "\F009";
  9340. }
  9341. .fa-th:before {
  9342. content: "\F00A";
  9343. }
  9344. .fa-th-list:before {
  9345. content: "\F00B";
  9346. }
  9347. .fa-check:before {
  9348. content: "\F00C";
  9349. }
  9350. .fa-remove:before,
  9351. .fa-close:before,
  9352. .fa-times:before {
  9353. content: "\F00D";
  9354. }
  9355. .fa-search-plus:before {
  9356. content: "\F00E";
  9357. }
  9358. .fa-search-minus:before {
  9359. content: "\F010";
  9360. }
  9361. .fa-power-off:before {
  9362. content: "\F011";
  9363. }
  9364. .fa-signal:before {
  9365. content: "\F012";
  9366. }
  9367. .fa-gear:before,
  9368. .fa-cog:before {
  9369. content: "\F013";
  9370. }
  9371. .fa-trash-o:before {
  9372. content: "\F014";
  9373. }
  9374. .fa-home:before {
  9375. content: "\F015";
  9376. }
  9377. .fa-file-o:before {
  9378. content: "\F016";
  9379. }
  9380. .fa-clock-o:before {
  9381. content: "\F017";
  9382. }
  9383. .fa-road:before {
  9384. content: "\F018";
  9385. }
  9386. .fa-download:before {
  9387. content: "\F019";
  9388. }
  9389. .fa-arrow-circle-o-down:before {
  9390. content: "\F01A";
  9391. }
  9392. .fa-arrow-circle-o-up:before {
  9393. content: "\F01B";
  9394. }
  9395. .fa-inbox:before {
  9396. content: "\F01C";
  9397. }
  9398. .fa-play-circle-o:before {
  9399. content: "\F01D";
  9400. }
  9401. .fa-rotate-right:before,
  9402. .fa-repeat:before {
  9403. content: "\F01E";
  9404. }
  9405. .fa-refresh:before {
  9406. content: "\F021";
  9407. }
  9408. .fa-list-alt:before {
  9409. content: "\F022";
  9410. }
  9411. .fa-lock:before {
  9412. content: "\F023";
  9413. }
  9414. .fa-flag:before {
  9415. content: "\F024";
  9416. }
  9417. .fa-headphones:before {
  9418. content: "\F025";
  9419. }
  9420. .fa-volume-off:before {
  9421. content: "\F026";
  9422. }
  9423. .fa-volume-down:before {
  9424. content: "\F027";
  9425. }
  9426. .fa-volume-up:before {
  9427. content: "\F028";
  9428. }
  9429. .fa-qrcode:before {
  9430. content: "\F029";
  9431. }
  9432. .fa-barcode:before {
  9433. content: "\F02A";
  9434. }
  9435. .fa-tag:before {
  9436. content: "\F02B";
  9437. }
  9438. .fa-tags:before {
  9439. content: "\F02C";
  9440. }
  9441. .fa-book:before {
  9442. content: "\F02D";
  9443. }
  9444. .fa-bookmark:before {
  9445. content: "\F02E";
  9446. }
  9447. .fa-print:before {
  9448. content: "\F02F";
  9449. }
  9450. .fa-camera:before {
  9451. content: "\F030";
  9452. }
  9453. .fa-font:before {
  9454. content: "\F031";
  9455. }
  9456. .fa-bold:before {
  9457. content: "\F032";
  9458. }
  9459. .fa-italic:before {
  9460. content: "\F033";
  9461. }
  9462. .fa-text-height:before {
  9463. content: "\F034";
  9464. }
  9465. .fa-text-width:before {
  9466. content: "\F035";
  9467. }
  9468. .fa-align-left:before {
  9469. content: "\F036";
  9470. }
  9471. .fa-align-center:before {
  9472. content: "\F037";
  9473. }
  9474. .fa-align-right:before {
  9475. content: "\F038";
  9476. }
  9477. .fa-align-justify:before {
  9478. content: "\F039";
  9479. }
  9480. .fa-list:before {
  9481. content: "\F03A";
  9482. }
  9483. .fa-dedent:before,
  9484. .fa-outdent:before {
  9485. content: "\F03B";
  9486. }
  9487. .fa-indent:before {
  9488. content: "\F03C";
  9489. }
  9490. .fa-video-camera:before {
  9491. content: "\F03D";
  9492. }
  9493. .fa-photo:before,
  9494. .fa-image:before,
  9495. .fa-picture-o:before {
  9496. content: "\F03E";
  9497. }
  9498. .fa-pencil:before {
  9499. content: "\F040";
  9500. }
  9501. .fa-map-marker:before {
  9502. content: "\F041";
  9503. }
  9504. .fa-adjust:before {
  9505. content: "\F042";
  9506. }
  9507. .fa-tint:before {
  9508. content: "\F043";
  9509. }
  9510. .fa-edit:before,
  9511. .fa-pencil-square-o:before {
  9512. content: "\F044";
  9513. }
  9514. .fa-share-square-o:before {
  9515. content: "\F045";
  9516. }
  9517. .fa-check-square-o:before {
  9518. content: "\F046";
  9519. }
  9520. .fa-arrows:before {
  9521. content: "\F047";
  9522. }
  9523. .fa-step-backward:before {
  9524. content: "\F048";
  9525. }
  9526. .fa-fast-backward:before {
  9527. content: "\F049";
  9528. }
  9529. .fa-backward:before {
  9530. content: "\F04A";
  9531. }
  9532. .fa-play:before {
  9533. content: "\F04B";
  9534. }
  9535. .fa-pause:before {
  9536. content: "\F04C";
  9537. }
  9538. .fa-stop:before {
  9539. content: "\F04D";
  9540. }
  9541. .fa-forward:before {
  9542. content: "\F04E";
  9543. }
  9544. .fa-fast-forward:before {
  9545. content: "\F050";
  9546. }
  9547. .fa-step-forward:before {
  9548. content: "\F051";
  9549. }
  9550. .fa-eject:before {
  9551. content: "\F052";
  9552. }
  9553. .fa-chevron-left:before {
  9554. content: "\F053";
  9555. }
  9556. .fa-chevron-right:before {
  9557. content: "\F054";
  9558. }
  9559. .fa-plus-circle:before {
  9560. content: "\F055";
  9561. }
  9562. .fa-minus-circle:before {
  9563. content: "\F056";
  9564. }
  9565. .fa-times-circle:before {
  9566. content: "\F057";
  9567. }
  9568. .fa-check-circle:before {
  9569. content: "\F058";
  9570. }
  9571. .fa-question-circle:before {
  9572. content: "\F059";
  9573. }
  9574. .fa-info-circle:before {
  9575. content: "\F05A";
  9576. }
  9577. .fa-crosshairs:before {
  9578. content: "\F05B";
  9579. }
  9580. .fa-times-circle-o:before {
  9581. content: "\F05C";
  9582. }
  9583. .fa-check-circle-o:before {
  9584. content: "\F05D";
  9585. }
  9586. .fa-ban:before {
  9587. content: "\F05E";
  9588. }
  9589. .fa-arrow-left:before {
  9590. content: "\F060";
  9591. }
  9592. .fa-arrow-right:before {
  9593. content: "\F061";
  9594. }
  9595. .fa-arrow-up:before {
  9596. content: "\F062";
  9597. }
  9598. .fa-arrow-down:before {
  9599. content: "\F063";
  9600. }
  9601. .fa-mail-forward:before,
  9602. .fa-share:before {
  9603. content: "\F064";
  9604. }
  9605. .fa-expand:before {
  9606. content: "\F065";
  9607. }
  9608. .fa-compress:before {
  9609. content: "\F066";
  9610. }
  9611. .fa-plus:before {
  9612. content: "\F067";
  9613. }
  9614. .fa-minus:before {
  9615. content: "\F068";
  9616. }
  9617. .fa-asterisk:before {
  9618. content: "\F069";
  9619. }
  9620. .fa-exclamation-circle:before {
  9621. content: "\F06A";
  9622. }
  9623. .fa-gift:before {
  9624. content: "\F06B";
  9625. }
  9626. .fa-leaf:before {
  9627. content: "\F06C";
  9628. }
  9629. .fa-fire:before {
  9630. content: "\F06D";
  9631. }
  9632. .fa-eye:before {
  9633. content: "\F06E";
  9634. }
  9635. .fa-eye-slash:before {
  9636. content: "\F070";
  9637. }
  9638. .fa-warning:before,
  9639. .fa-exclamation-triangle:before {
  9640. content: "\F071";
  9641. }
  9642. .fa-plane:before {
  9643. content: "\F072";
  9644. }
  9645. .fa-calendar:before {
  9646. content: "\F073";
  9647. }
  9648. .fa-random:before {
  9649. content: "\F074";
  9650. }
  9651. .fa-comment:before {
  9652. content: "\F075";
  9653. }
  9654. .fa-magnet:before {
  9655. content: "\F076";
  9656. }
  9657. .fa-chevron-up:before {
  9658. content: "\F077";
  9659. }
  9660. .fa-chevron-down:before {
  9661. content: "\F078";
  9662. }
  9663. .fa-retweet:before {
  9664. content: "\F079";
  9665. }
  9666. .fa-shopping-cart:before {
  9667. content: "\F07A";
  9668. }
  9669. .fa-folder:before {
  9670. content: "\F07B";
  9671. }
  9672. .fa-folder-open:before {
  9673. content: "\F07C";
  9674. }
  9675. .fa-arrows-v:before {
  9676. content: "\F07D";
  9677. }
  9678. .fa-arrows-h:before {
  9679. content: "\F07E";
  9680. }
  9681. .fa-bar-chart-o:before,
  9682. .fa-bar-chart:before {
  9683. content: "\F080";
  9684. }
  9685. .fa-twitter-square:before {
  9686. content: "\F081";
  9687. }
  9688. .fa-facebook-square:before {
  9689. content: "\F082";
  9690. }
  9691. .fa-camera-retro:before {
  9692. content: "\F083";
  9693. }
  9694. .fa-key:before {
  9695. content: "\F084";
  9696. }
  9697. .fa-gears:before,
  9698. .fa-cogs:before {
  9699. content: "\F085";
  9700. }
  9701. .fa-comments:before {
  9702. content: "\F086";
  9703. }
  9704. .fa-thumbs-o-up:before {
  9705. content: "\F087";
  9706. }
  9707. .fa-thumbs-o-down:before {
  9708. content: "\F088";
  9709. }
  9710. .fa-star-half:before {
  9711. content: "\F089";
  9712. }
  9713. .fa-heart-o:before {
  9714. content: "\F08A";
  9715. }
  9716. .fa-sign-out:before {
  9717. content: "\F08B";
  9718. }
  9719. .fa-linkedin-square:before {
  9720. content: "\F08C";
  9721. }
  9722. .fa-thumb-tack:before {
  9723. content: "\F08D";
  9724. }
  9725. .fa-external-link:before {
  9726. content: "\F08E";
  9727. }
  9728. .fa-sign-in:before {
  9729. content: "\F090";
  9730. }
  9731. .fa-trophy:before {
  9732. content: "\F091";
  9733. }
  9734. .fa-github-square:before {
  9735. content: "\F092";
  9736. }
  9737. .fa-upload:before {
  9738. content: "\F093";
  9739. }
  9740. .fa-lemon-o:before {
  9741. content: "\F094";
  9742. }
  9743. .fa-phone:before {
  9744. content: "\F095";
  9745. }
  9746. .fa-square-o:before {
  9747. content: "\F096";
  9748. }
  9749. .fa-bookmark-o:before {
  9750. content: "\F097";
  9751. }
  9752. .fa-phone-square:before {
  9753. content: "\F098";
  9754. }
  9755. .fa-twitter:before {
  9756. content: "\F099";
  9757. }
  9758. .fa-facebook-f:before,
  9759. .fa-facebook:before {
  9760. content: "\F09A";
  9761. }
  9762. .fa-github:before {
  9763. content: "\F09B";
  9764. }
  9765. .fa-unlock:before {
  9766. content: "\F09C";
  9767. }
  9768. .fa-credit-card:before {
  9769. content: "\F09D";
  9770. }
  9771. .fa-feed:before,
  9772. .fa-rss:before {
  9773. content: "\F09E";
  9774. }
  9775. .fa-hdd-o:before {
  9776. content: "\F0A0";
  9777. }
  9778. .fa-bullhorn:before {
  9779. content: "\F0A1";
  9780. }
  9781. .fa-bell:before {
  9782. content: "\F0F3";
  9783. }
  9784. .fa-certificate:before {
  9785. content: "\F0A3";
  9786. }
  9787. .fa-hand-o-right:before {
  9788. content: "\F0A4";
  9789. }
  9790. .fa-hand-o-left:before {
  9791. content: "\F0A5";
  9792. }
  9793. .fa-hand-o-up:before {
  9794. content: "\F0A6";
  9795. }
  9796. .fa-hand-o-down:before {
  9797. content: "\F0A7";
  9798. }
  9799. .fa-arrow-circle-left:before {
  9800. content: "\F0A8";
  9801. }
  9802. .fa-arrow-circle-right:before {
  9803. content: "\F0A9";
  9804. }
  9805. .fa-arrow-circle-up:before {
  9806. content: "\F0AA";
  9807. }
  9808. .fa-arrow-circle-down:before {
  9809. content: "\F0AB";
  9810. }
  9811. .fa-globe:before {
  9812. content: "\F0AC";
  9813. }
  9814. .fa-wrench:before {
  9815. content: "\F0AD";
  9816. }
  9817. .fa-tasks:before {
  9818. content: "\F0AE";
  9819. }
  9820. .fa-filter:before {
  9821. content: "\F0B0";
  9822. }
  9823. .fa-briefcase:before {
  9824. content: "\F0B1";
  9825. }
  9826. .fa-arrows-alt:before {
  9827. content: "\F0B2";
  9828. }
  9829. .fa-group:before,
  9830. .fa-users:before {
  9831. content: "\F0C0";
  9832. }
  9833. .fa-chain:before,
  9834. .fa-link:before {
  9835. content: "\F0C1";
  9836. }
  9837. .fa-cloud:before {
  9838. content: "\F0C2";
  9839. }
  9840. .fa-flask:before {
  9841. content: "\F0C3";
  9842. }
  9843. .fa-cut:before,
  9844. .fa-scissors:before {
  9845. content: "\F0C4";
  9846. }
  9847. .fa-copy:before,
  9848. .fa-files-o:before {
  9849. content: "\F0C5";
  9850. }
  9851. .fa-paperclip:before {
  9852. content: "\F0C6";
  9853. }
  9854. .fa-save:before,
  9855. .fa-floppy-o:before {
  9856. content: "\F0C7";
  9857. }
  9858. .fa-square:before {
  9859. content: "\F0C8";
  9860. }
  9861. .fa-navicon:before,
  9862. .fa-reorder:before,
  9863. .fa-bars:before {
  9864. content: "\F0C9";
  9865. }
  9866. .fa-list-ul:before {
  9867. content: "\F0CA";
  9868. }
  9869. .fa-list-ol:before {
  9870. content: "\F0CB";
  9871. }
  9872. .fa-strikethrough:before {
  9873. content: "\F0CC";
  9874. }
  9875. .fa-underline:before {
  9876. content: "\F0CD";
  9877. }
  9878. .fa-table:before {
  9879. content: "\F0CE";
  9880. }
  9881. .fa-magic:before {
  9882. content: "\F0D0";
  9883. }
  9884. .fa-truck:before {
  9885. content: "\F0D1";
  9886. }
  9887. .fa-pinterest:before {
  9888. content: "\F0D2";
  9889. }
  9890. .fa-pinterest-square:before {
  9891. content: "\F0D3";
  9892. }
  9893. .fa-google-plus-square:before {
  9894. content: "\F0D4";
  9895. }
  9896. .fa-google-plus:before {
  9897. content: "\F0D5";
  9898. }
  9899. .fa-money:before {
  9900. content: "\F0D6";
  9901. }
  9902. .fa-caret-down:before {
  9903. content: "\F0D7";
  9904. }
  9905. .fa-caret-up:before {
  9906. content: "\F0D8";
  9907. }
  9908. .fa-caret-left:before {
  9909. content: "\F0D9";
  9910. }
  9911. .fa-caret-right:before {
  9912. content: "\F0DA";
  9913. }
  9914. .fa-columns:before {
  9915. content: "\F0DB";
  9916. }
  9917. .fa-unsorted:before,
  9918. .fa-sort:before {
  9919. content: "\F0DC";
  9920. }
  9921. .fa-sort-down:before,
  9922. .fa-sort-desc:before {
  9923. content: "\F0DD";
  9924. }
  9925. .fa-sort-up:before,
  9926. .fa-sort-asc:before {
  9927. content: "\F0DE";
  9928. }
  9929. .fa-envelope:before {
  9930. content: "\F0E0";
  9931. }
  9932. .fa-linkedin:before {
  9933. content: "\F0E1";
  9934. }
  9935. .fa-rotate-left:before,
  9936. .fa-undo:before {
  9937. content: "\F0E2";
  9938. }
  9939. .fa-legal:before,
  9940. .fa-gavel:before {
  9941. content: "\F0E3";
  9942. }
  9943. .fa-dashboard:before,
  9944. .fa-tachometer:before {
  9945. content: "\F0E4";
  9946. }
  9947. .fa-comment-o:before {
  9948. content: "\F0E5";
  9949. }
  9950. .fa-comments-o:before {
  9951. content: "\F0E6";
  9952. }
  9953. .fa-flash:before,
  9954. .fa-bolt:before {
  9955. content: "\F0E7";
  9956. }
  9957. .fa-sitemap:before {
  9958. content: "\F0E8";
  9959. }
  9960. .fa-umbrella:before {
  9961. content: "\F0E9";
  9962. }
  9963. .fa-paste:before,
  9964. .fa-clipboard:before {
  9965. content: "\F0EA";
  9966. }
  9967. .fa-lightbulb-o:before {
  9968. content: "\F0EB";
  9969. }
  9970. .fa-exchange:before {
  9971. content: "\F0EC";
  9972. }
  9973. .fa-cloud-download:before {
  9974. content: "\F0ED";
  9975. }
  9976. .fa-cloud-upload:before {
  9977. content: "\F0EE";
  9978. }
  9979. .fa-user-md:before {
  9980. content: "\F0F0";
  9981. }
  9982. .fa-stethoscope:before {
  9983. content: "\F0F1";
  9984. }
  9985. .fa-suitcase:before {
  9986. content: "\F0F2";
  9987. }
  9988. .fa-bell-o:before {
  9989. content: "\F0A2";
  9990. }
  9991. .fa-coffee:before {
  9992. content: "\F0F4";
  9993. }
  9994. .fa-cutlery:before {
  9995. content: "\F0F5";
  9996. }
  9997. .fa-file-text-o:before {
  9998. content: "\F0F6";
  9999. }
  10000. .fa-building-o:before {
  10001. content: "\F0F7";
  10002. }
  10003. .fa-hospital-o:before {
  10004. content: "\F0F8";
  10005. }
  10006. .fa-ambulance:before {
  10007. content: "\F0F9";
  10008. }
  10009. .fa-medkit:before {
  10010. content: "\F0FA";
  10011. }
  10012. .fa-fighter-jet:before {
  10013. content: "\F0FB";
  10014. }
  10015. .fa-beer:before {
  10016. content: "\F0FC";
  10017. }
  10018. .fa-h-square:before {
  10019. content: "\F0FD";
  10020. }
  10021. .fa-plus-square:before {
  10022. content: "\F0FE";
  10023. }
  10024. .fa-angle-double-left:before {
  10025. content: "\F100";
  10026. }
  10027. .fa-angle-double-right:before {
  10028. content: "\F101";
  10029. }
  10030. .fa-angle-double-up:before {
  10031. content: "\F102";
  10032. }
  10033. .fa-angle-double-down:before {
  10034. content: "\F103";
  10035. }
  10036. .fa-angle-left:before {
  10037. content: "\F104";
  10038. }
  10039. .fa-angle-right:before {
  10040. content: "\F105";
  10041. }
  10042. .fa-angle-up:before {
  10043. content: "\F106";
  10044. }
  10045. .fa-angle-down:before {
  10046. content: "\F107";
  10047. }
  10048. .fa-desktop:before {
  10049. content: "\F108";
  10050. }
  10051. .fa-laptop:before {
  10052. content: "\F109";
  10053. }
  10054. .fa-tablet:before {
  10055. content: "\F10A";
  10056. }
  10057. .fa-mobile-phone:before,
  10058. .fa-mobile:before {
  10059. content: "\F10B";
  10060. }
  10061. .fa-circle-o:before {
  10062. content: "\F10C";
  10063. }
  10064. .fa-quote-left:before {
  10065. content: "\F10D";
  10066. }
  10067. .fa-quote-right:before {
  10068. content: "\F10E";
  10069. }
  10070. .fa-spinner:before {
  10071. content: "\F110";
  10072. }
  10073. .fa-circle:before {
  10074. content: "\F111";
  10075. }
  10076. .fa-mail-reply:before,
  10077. .fa-reply:before {
  10078. content: "\F112";
  10079. }
  10080. .fa-github-alt:before {
  10081. content: "\F113";
  10082. }
  10083. .fa-folder-o:before {
  10084. content: "\F114";
  10085. }
  10086. .fa-folder-open-o:before {
  10087. content: "\F115";
  10088. }
  10089. .fa-smile-o:before {
  10090. content: "\F118";
  10091. }
  10092. .fa-frown-o:before {
  10093. content: "\F119";
  10094. }
  10095. .fa-meh-o:before {
  10096. content: "\F11A";
  10097. }
  10098. .fa-gamepad:before {
  10099. content: "\F11B";
  10100. }
  10101. .fa-keyboard-o:before {
  10102. content: "\F11C";
  10103. }
  10104. .fa-flag-o:before {
  10105. content: "\F11D";
  10106. }
  10107. .fa-flag-checkered:before {
  10108. content: "\F11E";
  10109. }
  10110. .fa-terminal:before {
  10111. content: "\F120";
  10112. }
  10113. .fa-code:before {
  10114. content: "\F121";
  10115. }
  10116. .fa-mail-reply-all:before,
  10117. .fa-reply-all:before {
  10118. content: "\F122";
  10119. }
  10120. .fa-star-half-empty:before,
  10121. .fa-star-half-full:before,
  10122. .fa-star-half-o:before {
  10123. content: "\F123";
  10124. }
  10125. .fa-location-arrow:before {
  10126. content: "\F124";
  10127. }
  10128. .fa-crop:before {
  10129. content: "\F125";
  10130. }
  10131. .fa-code-fork:before {
  10132. content: "\F126";
  10133. }
  10134. .fa-unlink:before,
  10135. .fa-chain-broken:before {
  10136. content: "\F127";
  10137. }
  10138. .fa-question:before {
  10139. content: "\F128";
  10140. }
  10141. .fa-info:before {
  10142. content: "\F129";
  10143. }
  10144. .fa-exclamation:before {
  10145. content: "\F12A";
  10146. }
  10147. .fa-superscript:before {
  10148. content: "\F12B";
  10149. }
  10150. .fa-subscript:before {
  10151. content: "\F12C";
  10152. }
  10153. .fa-eraser:before {
  10154. content: "\F12D";
  10155. }
  10156. .fa-puzzle-piece:before {
  10157. content: "\F12E";
  10158. }
  10159. .fa-microphone:before {
  10160. content: "\F130";
  10161. }
  10162. .fa-microphone-slash:before {
  10163. content: "\F131";
  10164. }
  10165. .fa-shield:before {
  10166. content: "\F132";
  10167. }
  10168. .fa-calendar-o:before {
  10169. content: "\F133";
  10170. }
  10171. .fa-fire-extinguisher:before {
  10172. content: "\F134";
  10173. }
  10174. .fa-rocket:before {
  10175. content: "\F135";
  10176. }
  10177. .fa-maxcdn:before {
  10178. content: "\F136";
  10179. }
  10180. .fa-chevron-circle-left:before {
  10181. content: "\F137";
  10182. }
  10183. .fa-chevron-circle-right:before {
  10184. content: "\F138";
  10185. }
  10186. .fa-chevron-circle-up:before {
  10187. content: "\F139";
  10188. }
  10189. .fa-chevron-circle-down:before {
  10190. content: "\F13A";
  10191. }
  10192. .fa-html5:before {
  10193. content: "\F13B";
  10194. }
  10195. .fa-css3:before {
  10196. content: "\F13C";
  10197. }
  10198. .fa-anchor:before {
  10199. content: "\F13D";
  10200. }
  10201. .fa-unlock-alt:before {
  10202. content: "\F13E";
  10203. }
  10204. .fa-bullseye:before {
  10205. content: "\F140";
  10206. }
  10207. .fa-ellipsis-h:before {
  10208. content: "\F141";
  10209. }
  10210. .fa-ellipsis-v:before {
  10211. content: "\F142";
  10212. }
  10213. .fa-rss-square:before {
  10214. content: "\F143";
  10215. }
  10216. .fa-play-circle:before {
  10217. content: "\F144";
  10218. }
  10219. .fa-ticket:before {
  10220. content: "\F145";
  10221. }
  10222. .fa-minus-square:before {
  10223. content: "\F146";
  10224. }
  10225. .fa-minus-square-o:before {
  10226. content: "\F147";
  10227. }
  10228. .fa-level-up:before {
  10229. content: "\F148";
  10230. }
  10231. .fa-level-down:before {
  10232. content: "\F149";
  10233. }
  10234. .fa-check-square:before {
  10235. content: "\F14A";
  10236. }
  10237. .fa-pencil-square:before {
  10238. content: "\F14B";
  10239. }
  10240. .fa-external-link-square:before {
  10241. content: "\F14C";
  10242. }
  10243. .fa-share-square:before {
  10244. content: "\F14D";
  10245. }
  10246. .fa-compass:before {
  10247. content: "\F14E";
  10248. }
  10249. .fa-toggle-down:before,
  10250. .fa-caret-square-o-down:before {
  10251. content: "\F150";
  10252. }
  10253. .fa-toggle-up:before,
  10254. .fa-caret-square-o-up:before {
  10255. content: "\F151";
  10256. }
  10257. .fa-toggle-right:before,
  10258. .fa-caret-square-o-right:before {
  10259. content: "\F152";
  10260. }
  10261. .fa-euro:before,
  10262. .fa-eur:before {
  10263. content: "\F153";
  10264. }
  10265. .fa-gbp:before {
  10266. content: "\F154";
  10267. }
  10268. .fa-dollar:before,
  10269. .fa-usd:before {
  10270. content: "\F155";
  10271. }
  10272. .fa-rupee:before,
  10273. .fa-inr:before {
  10274. content: "\F156";
  10275. }
  10276. .fa-cny:before,
  10277. .fa-rmb:before,
  10278. .fa-yen:before,
  10279. .fa-jpy:before {
  10280. content: "\F157";
  10281. }
  10282. .fa-ruble:before,
  10283. .fa-rouble:before,
  10284. .fa-rub:before {
  10285. content: "\F158";
  10286. }
  10287. .fa-won:before,
  10288. .fa-krw:before {
  10289. content: "\F159";
  10290. }
  10291. .fa-bitcoin:before,
  10292. .fa-btc:before {
  10293. content: "\F15A";
  10294. }
  10295. .fa-file:before {
  10296. content: "\F15B";
  10297. }
  10298. .fa-file-text:before {
  10299. content: "\F15C";
  10300. }
  10301. .fa-sort-alpha-asc:before {
  10302. content: "\F15D";
  10303. }
  10304. .fa-sort-alpha-desc:before {
  10305. content: "\F15E";
  10306. }
  10307. .fa-sort-amount-asc:before {
  10308. content: "\F160";
  10309. }
  10310. .fa-sort-amount-desc:before {
  10311. content: "\F161";
  10312. }
  10313. .fa-sort-numeric-asc:before {
  10314. content: "\F162";
  10315. }
  10316. .fa-sort-numeric-desc:before {
  10317. content: "\F163";
  10318. }
  10319. .fa-thumbs-up:before {
  10320. content: "\F164";
  10321. }
  10322. .fa-thumbs-down:before {
  10323. content: "\F165";
  10324. }
  10325. .fa-youtube-square:before {
  10326. content: "\F166";
  10327. }
  10328. .fa-youtube:before {
  10329. content: "\F167";
  10330. }
  10331. .fa-xing:before {
  10332. content: "\F168";
  10333. }
  10334. .fa-xing-square:before {
  10335. content: "\F169";
  10336. }
  10337. .fa-youtube-play:before {
  10338. content: "\F16A";
  10339. }
  10340. .fa-dropbox:before {
  10341. content: "\F16B";
  10342. }
  10343. .fa-stack-overflow:before {
  10344. content: "\F16C";
  10345. }
  10346. .fa-instagram:before {
  10347. content: "\F16D";
  10348. }
  10349. .fa-flickr:before {
  10350. content: "\F16E";
  10351. }
  10352. .fa-adn:before {
  10353. content: "\F170";
  10354. }
  10355. .fa-bitbucket:before {
  10356. content: "\F171";
  10357. }
  10358. .fa-bitbucket-square:before {
  10359. content: "\F172";
  10360. }
  10361. .fa-tumblr:before {
  10362. content: "\F173";
  10363. }
  10364. .fa-tumblr-square:before {
  10365. content: "\F174";
  10366. }
  10367. .fa-long-arrow-down:before {
  10368. content: "\F175";
  10369. }
  10370. .fa-long-arrow-up:before {
  10371. content: "\F176";
  10372. }
  10373. .fa-long-arrow-left:before {
  10374. content: "\F177";
  10375. }
  10376. .fa-long-arrow-right:before {
  10377. content: "\F178";
  10378. }
  10379. .fa-apple:before {
  10380. content: "\F179";
  10381. }
  10382. .fa-windows:before {
  10383. content: "\F17A";
  10384. }
  10385. .fa-android:before {
  10386. content: "\F17B";
  10387. }
  10388. .fa-linux:before {
  10389. content: "\F17C";
  10390. }
  10391. .fa-dribbble:before {
  10392. content: "\F17D";
  10393. }
  10394. .fa-skype:before {
  10395. content: "\F17E";
  10396. }
  10397. .fa-foursquare:before {
  10398. content: "\F180";
  10399. }
  10400. .fa-trello:before {
  10401. content: "\F181";
  10402. }
  10403. .fa-female:before {
  10404. content: "\F182";
  10405. }
  10406. .fa-male:before {
  10407. content: "\F183";
  10408. }
  10409. .fa-gittip:before,
  10410. .fa-gratipay:before {
  10411. content: "\F184";
  10412. }
  10413. .fa-sun-o:before {
  10414. content: "\F185";
  10415. }
  10416. .fa-moon-o:before {
  10417. content: "\F186";
  10418. }
  10419. .fa-archive:before {
  10420. content: "\F187";
  10421. }
  10422. .fa-bug:before {
  10423. content: "\F188";
  10424. }
  10425. .fa-vk:before {
  10426. content: "\F189";
  10427. }
  10428. .fa-weibo:before {
  10429. content: "\F18A";
  10430. }
  10431. .fa-renren:before {
  10432. content: "\F18B";
  10433. }
  10434. .fa-pagelines:before {
  10435. content: "\F18C";
  10436. }
  10437. .fa-stack-exchange:before {
  10438. content: "\F18D";
  10439. }
  10440. .fa-arrow-circle-o-right:before {
  10441. content: "\F18E";
  10442. }
  10443. .fa-arrow-circle-o-left:before {
  10444. content: "\F190";
  10445. }
  10446. .fa-toggle-left:before,
  10447. .fa-caret-square-o-left:before {
  10448. content: "\F191";
  10449. }
  10450. .fa-dot-circle-o:before {
  10451. content: "\F192";
  10452. }
  10453. .fa-wheelchair:before {
  10454. content: "\F193";
  10455. }
  10456. .fa-vimeo-square:before {
  10457. content: "\F194";
  10458. }
  10459. .fa-turkish-lira:before,
  10460. .fa-try:before {
  10461. content: "\F195";
  10462. }
  10463. .fa-plus-square-o:before {
  10464. content: "\F196";
  10465. }
  10466. .fa-space-shuttle:before {
  10467. content: "\F197";
  10468. }
  10469. .fa-slack:before {
  10470. content: "\F198";
  10471. }
  10472. .fa-envelope-square:before {
  10473. content: "\F199";
  10474. }
  10475. .fa-wordpress:before {
  10476. content: "\F19A";
  10477. }
  10478. .fa-openid:before {
  10479. content: "\F19B";
  10480. }
  10481. .fa-institution:before,
  10482. .fa-bank:before,
  10483. .fa-university:before {
  10484. content: "\F19C";
  10485. }
  10486. .fa-mortar-board:before,
  10487. .fa-graduation-cap:before {
  10488. content: "\F19D";
  10489. }
  10490. .fa-yahoo:before {
  10491. content: "\F19E";
  10492. }
  10493. .fa-google:before {
  10494. content: "\F1A0";
  10495. }
  10496. .fa-reddit:before {
  10497. content: "\F1A1";
  10498. }
  10499. .fa-reddit-square:before {
  10500. content: "\F1A2";
  10501. }
  10502. .fa-stumbleupon-circle:before {
  10503. content: "\F1A3";
  10504. }
  10505. .fa-stumbleupon:before {
  10506. content: "\F1A4";
  10507. }
  10508. .fa-delicious:before {
  10509. content: "\F1A5";
  10510. }
  10511. .fa-digg:before {
  10512. content: "\F1A6";
  10513. }
  10514. .fa-pied-piper-pp:before {
  10515. content: "\F1A7";
  10516. }
  10517. .fa-pied-piper-alt:before {
  10518. content: "\F1A8";
  10519. }
  10520. .fa-drupal:before {
  10521. content: "\F1A9";
  10522. }
  10523. .fa-joomla:before {
  10524. content: "\F1AA";
  10525. }
  10526. .fa-language:before {
  10527. content: "\F1AB";
  10528. }
  10529. .fa-fax:before {
  10530. content: "\F1AC";
  10531. }
  10532. .fa-building:before {
  10533. content: "\F1AD";
  10534. }
  10535. .fa-child:before {
  10536. content: "\F1AE";
  10537. }
  10538. .fa-paw:before {
  10539. content: "\F1B0";
  10540. }
  10541. .fa-spoon:before {
  10542. content: "\F1B1";
  10543. }
  10544. .fa-cube:before {
  10545. content: "\F1B2";
  10546. }
  10547. .fa-cubes:before {
  10548. content: "\F1B3";
  10549. }
  10550. .fa-behance:before {
  10551. content: "\F1B4";
  10552. }
  10553. .fa-behance-square:before {
  10554. content: "\F1B5";
  10555. }
  10556. .fa-steam:before {
  10557. content: "\F1B6";
  10558. }
  10559. .fa-steam-square:before {
  10560. content: "\F1B7";
  10561. }
  10562. .fa-recycle:before {
  10563. content: "\F1B8";
  10564. }
  10565. .fa-automobile:before,
  10566. .fa-car:before {
  10567. content: "\F1B9";
  10568. }
  10569. .fa-cab:before,
  10570. .fa-taxi:before {
  10571. content: "\F1BA";
  10572. }
  10573. .fa-tree:before {
  10574. content: "\F1BB";
  10575. }
  10576. .fa-spotify:before {
  10577. content: "\F1BC";
  10578. }
  10579. .fa-deviantart:before {
  10580. content: "\F1BD";
  10581. }
  10582. .fa-soundcloud:before {
  10583. content: "\F1BE";
  10584. }
  10585. .fa-database:before {
  10586. content: "\F1C0";
  10587. }
  10588. .fa-file-pdf-o:before {
  10589. content: "\F1C1";
  10590. }
  10591. .fa-file-word-o:before {
  10592. content: "\F1C2";
  10593. }
  10594. .fa-file-excel-o:before {
  10595. content: "\F1C3";
  10596. }
  10597. .fa-file-powerpoint-o:before {
  10598. content: "\F1C4";
  10599. }
  10600. .fa-file-photo-o:before,
  10601. .fa-file-picture-o:before,
  10602. .fa-file-image-o:before {
  10603. content: "\F1C5";
  10604. }
  10605. .fa-file-zip-o:before,
  10606. .fa-file-archive-o:before {
  10607. content: "\F1C6";
  10608. }
  10609. .fa-file-sound-o:before,
  10610. .fa-file-audio-o:before {
  10611. content: "\F1C7";
  10612. }
  10613. .fa-file-movie-o:before,
  10614. .fa-file-video-o:before {
  10615. content: "\F1C8";
  10616. }
  10617. .fa-file-code-o:before {
  10618. content: "\F1C9";
  10619. }
  10620. .fa-vine:before {
  10621. content: "\F1CA";
  10622. }
  10623. .fa-codepen:before {
  10624. content: "\F1CB";
  10625. }
  10626. .fa-jsfiddle:before {
  10627. content: "\F1CC";
  10628. }
  10629. .fa-life-bouy:before,
  10630. .fa-life-buoy:before,
  10631. .fa-life-saver:before,
  10632. .fa-support:before,
  10633. .fa-life-ring:before {
  10634. content: "\F1CD";
  10635. }
  10636. .fa-circle-o-notch:before {
  10637. content: "\F1CE";
  10638. }
  10639. .fa-ra:before,
  10640. .fa-resistance:before,
  10641. .fa-rebel:before {
  10642. content: "\F1D0";
  10643. }
  10644. .fa-ge:before,
  10645. .fa-empire:before {
  10646. content: "\F1D1";
  10647. }
  10648. .fa-git-square:before {
  10649. content: "\F1D2";
  10650. }
  10651. .fa-git:before {
  10652. content: "\F1D3";
  10653. }
  10654. .fa-y-combinator-square:before,
  10655. .fa-yc-square:before,
  10656. .fa-hacker-news:before {
  10657. content: "\F1D4";
  10658. }
  10659. .fa-tencent-weibo:before {
  10660. content: "\F1D5";
  10661. }
  10662. .fa-qq:before {
  10663. content: "\F1D6";
  10664. }
  10665. .fa-wechat:before,
  10666. .fa-weixin:before {
  10667. content: "\F1D7";
  10668. }
  10669. .fa-send:before,
  10670. .fa-paper-plane:before {
  10671. content: "\F1D8";
  10672. }
  10673. .fa-send-o:before,
  10674. .fa-paper-plane-o:before {
  10675. content: "\F1D9";
  10676. }
  10677. .fa-history:before {
  10678. content: "\F1DA";
  10679. }
  10680. .fa-circle-thin:before {
  10681. content: "\F1DB";
  10682. }
  10683. .fa-header:before {
  10684. content: "\F1DC";
  10685. }
  10686. .fa-paragraph:before {
  10687. content: "\F1DD";
  10688. }
  10689. .fa-sliders:before {
  10690. content: "\F1DE";
  10691. }
  10692. .fa-share-alt:before {
  10693. content: "\F1E0";
  10694. }
  10695. .fa-share-alt-square:before {
  10696. content: "\F1E1";
  10697. }
  10698. .fa-bomb:before {
  10699. content: "\F1E2";
  10700. }
  10701. .fa-soccer-ball-o:before,
  10702. .fa-futbol-o:before {
  10703. content: "\F1E3";
  10704. }
  10705. .fa-tty:before {
  10706. content: "\F1E4";
  10707. }
  10708. .fa-binoculars:before {
  10709. content: "\F1E5";
  10710. }
  10711. .fa-plug:before {
  10712. content: "\F1E6";
  10713. }
  10714. .fa-slideshare:before {
  10715. content: "\F1E7";
  10716. }
  10717. .fa-twitch:before {
  10718. content: "\F1E8";
  10719. }
  10720. .fa-yelp:before {
  10721. content: "\F1E9";
  10722. }
  10723. .fa-newspaper-o:before {
  10724. content: "\F1EA";
  10725. }
  10726. .fa-wifi:before {
  10727. content: "\F1EB";
  10728. }
  10729. .fa-calculator:before {
  10730. content: "\F1EC";
  10731. }
  10732. .fa-paypal:before {
  10733. content: "\F1ED";
  10734. }
  10735. .fa-google-wallet:before {
  10736. content: "\F1EE";
  10737. }
  10738. .fa-cc-visa:before {
  10739. content: "\F1F0";
  10740. }
  10741. .fa-cc-mastercard:before {
  10742. content: "\F1F1";
  10743. }
  10744. .fa-cc-discover:before {
  10745. content: "\F1F2";
  10746. }
  10747. .fa-cc-amex:before {
  10748. content: "\F1F3";
  10749. }
  10750. .fa-cc-paypal:before {
  10751. content: "\F1F4";
  10752. }
  10753. .fa-cc-stripe:before {
  10754. content: "\F1F5";
  10755. }
  10756. .fa-bell-slash:before {
  10757. content: "\F1F6";
  10758. }
  10759. .fa-bell-slash-o:before {
  10760. content: "\F1F7";
  10761. }
  10762. .fa-trash:before {
  10763. content: "\F1F8";
  10764. }
  10765. .fa-copyright:before {
  10766. content: "\F1F9";
  10767. }
  10768. .fa-at:before {
  10769. content: "\F1FA";
  10770. }
  10771. .fa-eyedropper:before {
  10772. content: "\F1FB";
  10773. }
  10774. .fa-paint-brush:before {
  10775. content: "\F1FC";
  10776. }
  10777. .fa-birthday-cake:before {
  10778. content: "\F1FD";
  10779. }
  10780. .fa-area-chart:before {
  10781. content: "\F1FE";
  10782. }
  10783. .fa-pie-chart:before {
  10784. content: "\F200";
  10785. }
  10786. .fa-line-chart:before {
  10787. content: "\F201";
  10788. }
  10789. .fa-lastfm:before {
  10790. content: "\F202";
  10791. }
  10792. .fa-lastfm-square:before {
  10793. content: "\F203";
  10794. }
  10795. .fa-toggle-off:before {
  10796. content: "\F204";
  10797. }
  10798. .fa-toggle-on:before {
  10799. content: "\F205";
  10800. }
  10801. .fa-bicycle:before {
  10802. content: "\F206";
  10803. }
  10804. .fa-bus:before {
  10805. content: "\F207";
  10806. }
  10807. .fa-ioxhost:before {
  10808. content: "\F208";
  10809. }
  10810. .fa-angellist:before {
  10811. content: "\F209";
  10812. }
  10813. .fa-cc:before {
  10814. content: "\F20A";
  10815. }
  10816. .fa-shekel:before,
  10817. .fa-sheqel:before,
  10818. .fa-ils:before {
  10819. content: "\F20B";
  10820. }
  10821. .fa-meanpath:before {
  10822. content: "\F20C";
  10823. }
  10824. .fa-buysellads:before {
  10825. content: "\F20D";
  10826. }
  10827. .fa-connectdevelop:before {
  10828. content: "\F20E";
  10829. }
  10830. .fa-dashcube:before {
  10831. content: "\F210";
  10832. }
  10833. .fa-forumbee:before {
  10834. content: "\F211";
  10835. }
  10836. .fa-leanpub:before {
  10837. content: "\F212";
  10838. }
  10839. .fa-sellsy:before {
  10840. content: "\F213";
  10841. }
  10842. .fa-shirtsinbulk:before {
  10843. content: "\F214";
  10844. }
  10845. .fa-simplybuilt:before {
  10846. content: "\F215";
  10847. }
  10848. .fa-skyatlas:before {
  10849. content: "\F216";
  10850. }
  10851. .fa-cart-plus:before {
  10852. content: "\F217";
  10853. }
  10854. .fa-cart-arrow-down:before {
  10855. content: "\F218";
  10856. }
  10857. .fa-diamond:before {
  10858. content: "\F219";
  10859. }
  10860. .fa-ship:before {
  10861. content: "\F21A";
  10862. }
  10863. .fa-user-secret:before {
  10864. content: "\F21B";
  10865. }
  10866. .fa-motorcycle:before {
  10867. content: "\F21C";
  10868. }
  10869. .fa-street-view:before {
  10870. content: "\F21D";
  10871. }
  10872. .fa-heartbeat:before {
  10873. content: "\F21E";
  10874. }
  10875. .fa-venus:before {
  10876. content: "\F221";
  10877. }
  10878. .fa-mars:before {
  10879. content: "\F222";
  10880. }
  10881. .fa-mercury:before {
  10882. content: "\F223";
  10883. }
  10884. .fa-intersex:before,
  10885. .fa-transgender:before {
  10886. content: "\F224";
  10887. }
  10888. .fa-transgender-alt:before {
  10889. content: "\F225";
  10890. }
  10891. .fa-venus-double:before {
  10892. content: "\F226";
  10893. }
  10894. .fa-mars-double:before {
  10895. content: "\F227";
  10896. }
  10897. .fa-venus-mars:before {
  10898. content: "\F228";
  10899. }
  10900. .fa-mars-stroke:before {
  10901. content: "\F229";
  10902. }
  10903. .fa-mars-stroke-v:before {
  10904. content: "\F22A";
  10905. }
  10906. .fa-mars-stroke-h:before {
  10907. content: "\F22B";
  10908. }
  10909. .fa-neuter:before {
  10910. content: "\F22C";
  10911. }
  10912. .fa-genderless:before {
  10913. content: "\F22D";
  10914. }
  10915. .fa-facebook-official:before {
  10916. content: "\F230";
  10917. }
  10918. .fa-pinterest-p:before {
  10919. content: "\F231";
  10920. }
  10921. .fa-whatsapp:before {
  10922. content: "\F232";
  10923. }
  10924. .fa-server:before {
  10925. content: "\F233";
  10926. }
  10927. .fa-user-plus:before {
  10928. content: "\F234";
  10929. }
  10930. .fa-user-times:before {
  10931. content: "\F235";
  10932. }
  10933. .fa-hotel:before,
  10934. .fa-bed:before {
  10935. content: "\F236";
  10936. }
  10937. .fa-viacoin:before {
  10938. content: "\F237";
  10939. }
  10940. .fa-train:before {
  10941. content: "\F238";
  10942. }
  10943. .fa-subway:before {
  10944. content: "\F239";
  10945. }
  10946. .fa-medium:before {
  10947. content: "\F23A";
  10948. }
  10949. .fa-yc:before,
  10950. .fa-y-combinator:before {
  10951. content: "\F23B";
  10952. }
  10953. .fa-optin-monster:before {
  10954. content: "\F23C";
  10955. }
  10956. .fa-opencart:before {
  10957. content: "\F23D";
  10958. }
  10959. .fa-expeditedssl:before {
  10960. content: "\F23E";
  10961. }
  10962. .fa-battery-4:before,
  10963. .fa-battery:before,
  10964. .fa-battery-full:before {
  10965. content: "\F240";
  10966. }
  10967. .fa-battery-3:before,
  10968. .fa-battery-three-quarters:before {
  10969. content: "\F241";
  10970. }
  10971. .fa-battery-2:before,
  10972. .fa-battery-half:before {
  10973. content: "\F242";
  10974. }
  10975. .fa-battery-1:before,
  10976. .fa-battery-quarter:before {
  10977. content: "\F243";
  10978. }
  10979. .fa-battery-0:before,
  10980. .fa-battery-empty:before {
  10981. content: "\F244";
  10982. }
  10983. .fa-mouse-pointer:before {
  10984. content: "\F245";
  10985. }
  10986. .fa-i-cursor:before {
  10987. content: "\F246";
  10988. }
  10989. .fa-object-group:before {
  10990. content: "\F247";
  10991. }
  10992. .fa-object-ungroup:before {
  10993. content: "\F248";
  10994. }
  10995. .fa-sticky-note:before {
  10996. content: "\F249";
  10997. }
  10998. .fa-sticky-note-o:before {
  10999. content: "\F24A";
  11000. }
  11001. .fa-cc-jcb:before {
  11002. content: "\F24B";
  11003. }
  11004. .fa-cc-diners-club:before {
  11005. content: "\F24C";
  11006. }
  11007. .fa-clone:before {
  11008. content: "\F24D";
  11009. }
  11010. .fa-balance-scale:before {
  11011. content: "\F24E";
  11012. }
  11013. .fa-hourglass-o:before {
  11014. content: "\F250";
  11015. }
  11016. .fa-hourglass-1:before,
  11017. .fa-hourglass-start:before {
  11018. content: "\F251";
  11019. }
  11020. .fa-hourglass-2:before,
  11021. .fa-hourglass-half:before {
  11022. content: "\F252";
  11023. }
  11024. .fa-hourglass-3:before,
  11025. .fa-hourglass-end:before {
  11026. content: "\F253";
  11027. }
  11028. .fa-hourglass:before {
  11029. content: "\F254";
  11030. }
  11031. .fa-hand-grab-o:before,
  11032. .fa-hand-rock-o:before {
  11033. content: "\F255";
  11034. }
  11035. .fa-hand-stop-o:before,
  11036. .fa-hand-paper-o:before {
  11037. content: "\F256";
  11038. }
  11039. .fa-hand-scissors-o:before {
  11040. content: "\F257";
  11041. }
  11042. .fa-hand-lizard-o:before {
  11043. content: "\F258";
  11044. }
  11045. .fa-hand-spock-o:before {
  11046. content: "\F259";
  11047. }
  11048. .fa-hand-pointer-o:before {
  11049. content: "\F25A";
  11050. }
  11051. .fa-hand-peace-o:before {
  11052. content: "\F25B";
  11053. }
  11054. .fa-trademark:before {
  11055. content: "\F25C";
  11056. }
  11057. .fa-registered:before {
  11058. content: "\F25D";
  11059. }
  11060. .fa-creative-commons:before {
  11061. content: "\F25E";
  11062. }
  11063. .fa-gg:before {
  11064. content: "\F260";
  11065. }
  11066. .fa-gg-circle:before {
  11067. content: "\F261";
  11068. }
  11069. .fa-tripadvisor:before {
  11070. content: "\F262";
  11071. }
  11072. .fa-odnoklassniki:before {
  11073. content: "\F263";
  11074. }
  11075. .fa-odnoklassniki-square:before {
  11076. content: "\F264";
  11077. }
  11078. .fa-get-pocket:before {
  11079. content: "\F265";
  11080. }
  11081. .fa-wikipedia-w:before {
  11082. content: "\F266";
  11083. }
  11084. .fa-safari:before {
  11085. content: "\F267";
  11086. }
  11087. .fa-chrome:before {
  11088. content: "\F268";
  11089. }
  11090. .fa-firefox:before {
  11091. content: "\F269";
  11092. }
  11093. .fa-opera:before {
  11094. content: "\F26A";
  11095. }
  11096. .fa-internet-explorer:before {
  11097. content: "\F26B";
  11098. }
  11099. .fa-tv:before,
  11100. .fa-television:before {
  11101. content: "\F26C";
  11102. }
  11103. .fa-contao:before {
  11104. content: "\F26D";
  11105. }
  11106. .fa-500px:before {
  11107. content: "\F26E";
  11108. }
  11109. .fa-amazon:before {
  11110. content: "\F270";
  11111. }
  11112. .fa-calendar-plus-o:before {
  11113. content: "\F271";
  11114. }
  11115. .fa-calendar-minus-o:before {
  11116. content: "\F272";
  11117. }
  11118. .fa-calendar-times-o:before {
  11119. content: "\F273";
  11120. }
  11121. .fa-calendar-check-o:before {
  11122. content: "\F274";
  11123. }
  11124. .fa-industry:before {
  11125. content: "\F275";
  11126. }
  11127. .fa-map-pin:before {
  11128. content: "\F276";
  11129. }
  11130. .fa-map-signs:before {
  11131. content: "\F277";
  11132. }
  11133. .fa-map-o:before {
  11134. content: "\F278";
  11135. }
  11136. .fa-map:before {
  11137. content: "\F279";
  11138. }
  11139. .fa-commenting:before {
  11140. content: "\F27A";
  11141. }
  11142. .fa-commenting-o:before {
  11143. content: "\F27B";
  11144. }
  11145. .fa-houzz:before {
  11146. content: "\F27C";
  11147. }
  11148. .fa-vimeo:before {
  11149. content: "\F27D";
  11150. }
  11151. .fa-black-tie:before {
  11152. content: "\F27E";
  11153. }
  11154. .fa-fonticons:before {
  11155. content: "\F280";
  11156. }
  11157. .fa-reddit-alien:before {
  11158. content: "\F281";
  11159. }
  11160. .fa-edge:before {
  11161. content: "\F282";
  11162. }
  11163. .fa-credit-card-alt:before {
  11164. content: "\F283";
  11165. }
  11166. .fa-codiepie:before {
  11167. content: "\F284";
  11168. }
  11169. .fa-modx:before {
  11170. content: "\F285";
  11171. }
  11172. .fa-fort-awesome:before {
  11173. content: "\F286";
  11174. }
  11175. .fa-usb:before {
  11176. content: "\F287";
  11177. }
  11178. .fa-product-hunt:before {
  11179. content: "\F288";
  11180. }
  11181. .fa-mixcloud:before {
  11182. content: "\F289";
  11183. }
  11184. .fa-scribd:before {
  11185. content: "\F28A";
  11186. }
  11187. .fa-pause-circle:before {
  11188. content: "\F28B";
  11189. }
  11190. .fa-pause-circle-o:before {
  11191. content: "\F28C";
  11192. }
  11193. .fa-stop-circle:before {
  11194. content: "\F28D";
  11195. }
  11196. .fa-stop-circle-o:before {
  11197. content: "\F28E";
  11198. }
  11199. .fa-shopping-bag:before {
  11200. content: "\F290";
  11201. }
  11202. .fa-shopping-basket:before {
  11203. content: "\F291";
  11204. }
  11205. .fa-hashtag:before {
  11206. content: "\F292";
  11207. }
  11208. .fa-bluetooth:before {
  11209. content: "\F293";
  11210. }
  11211. .fa-bluetooth-b:before {
  11212. content: "\F294";
  11213. }
  11214. .fa-percent:before {
  11215. content: "\F295";
  11216. }
  11217. .fa-gitlab:before {
  11218. content: "\F296";
  11219. }
  11220. .fa-wpbeginner:before {
  11221. content: "\F297";
  11222. }
  11223. .fa-wpforms:before {
  11224. content: "\F298";
  11225. }
  11226. .fa-envira:before {
  11227. content: "\F299";
  11228. }
  11229. .fa-universal-access:before {
  11230. content: "\F29A";
  11231. }
  11232. .fa-wheelchair-alt:before {
  11233. content: "\F29B";
  11234. }
  11235. .fa-question-circle-o:before {
  11236. content: "\F29C";
  11237. }
  11238. .fa-blind:before {
  11239. content: "\F29D";
  11240. }
  11241. .fa-audio-description:before {
  11242. content: "\F29E";
  11243. }
  11244. .fa-volume-control-phone:before {
  11245. content: "\F2A0";
  11246. }
  11247. .fa-braille:before {
  11248. content: "\F2A1";
  11249. }
  11250. .fa-assistive-listening-systems:before {
  11251. content: "\F2A2";
  11252. }
  11253. .fa-asl-interpreting:before,
  11254. .fa-american-sign-language-interpreting:before {
  11255. content: "\F2A3";
  11256. }
  11257. .fa-deafness:before,
  11258. .fa-hard-of-hearing:before,
  11259. .fa-deaf:before {
  11260. content: "\F2A4";
  11261. }
  11262. .fa-glide:before {
  11263. content: "\F2A5";
  11264. }
  11265. .fa-glide-g:before {
  11266. content: "\F2A6";
  11267. }
  11268. .fa-signing:before,
  11269. .fa-sign-language:before {
  11270. content: "\F2A7";
  11271. }
  11272. .fa-low-vision:before {
  11273. content: "\F2A8";
  11274. }
  11275. .fa-viadeo:before {
  11276. content: "\F2A9";
  11277. }
  11278. .fa-viadeo-square:before {
  11279. content: "\F2AA";
  11280. }
  11281. .fa-snapchat:before {
  11282. content: "\F2AB";
  11283. }
  11284. .fa-snapchat-ghost:before {
  11285. content: "\F2AC";
  11286. }
  11287. .fa-snapchat-square:before {
  11288. content: "\F2AD";
  11289. }
  11290. .fa-pied-piper:before {
  11291. content: "\F2AE";
  11292. }
  11293. .fa-first-order:before {
  11294. content: "\F2B0";
  11295. }
  11296. .fa-yoast:before {
  11297. content: "\F2B1";
  11298. }
  11299. .fa-themeisle:before {
  11300. content: "\F2B2";
  11301. }
  11302. .fa-google-plus-circle:before,
  11303. .fa-google-plus-official:before {
  11304. content: "\F2B3";
  11305. }
  11306. .fa-fa:before,
  11307. .fa-font-awesome:before {
  11308. content: "\F2B4";
  11309. }
  11310. .fa-handshake-o:before {
  11311. content: "\F2B5";
  11312. }
  11313. .fa-envelope-open:before {
  11314. content: "\F2B6";
  11315. }
  11316. .fa-envelope-open-o:before {
  11317. content: "\F2B7";
  11318. }
  11319. .fa-linode:before {
  11320. content: "\F2B8";
  11321. }
  11322. .fa-address-book:before {
  11323. content: "\F2B9";
  11324. }
  11325. .fa-address-book-o:before {
  11326. content: "\F2BA";
  11327. }
  11328. .fa-vcard:before,
  11329. .fa-address-card:before {
  11330. content: "\F2BB";
  11331. }
  11332. .fa-vcard-o:before,
  11333. .fa-address-card-o:before {
  11334. content: "\F2BC";
  11335. }
  11336. .fa-user-circle:before {
  11337. content: "\F2BD";
  11338. }
  11339. .fa-user-circle-o:before {
  11340. content: "\F2BE";
  11341. }
  11342. .fa-user-o:before {
  11343. content: "\F2C0";
  11344. }
  11345. .fa-id-badge:before {
  11346. content: "\F2C1";
  11347. }
  11348. .fa-drivers-license:before,
  11349. .fa-id-card:before {
  11350. content: "\F2C2";
  11351. }
  11352. .fa-drivers-license-o:before,
  11353. .fa-id-card-o:before {
  11354. content: "\F2C3";
  11355. }
  11356. .fa-quora:before {
  11357. content: "\F2C4";
  11358. }
  11359. .fa-free-code-camp:before {
  11360. content: "\F2C5";
  11361. }
  11362. .fa-telegram:before {
  11363. content: "\F2C6";
  11364. }
  11365. .fa-thermometer-4:before,
  11366. .fa-thermometer:before,
  11367. .fa-thermometer-full:before {
  11368. content: "\F2C7";
  11369. }
  11370. .fa-thermometer-3:before,
  11371. .fa-thermometer-three-quarters:before {
  11372. content: "\F2C8";
  11373. }
  11374. .fa-thermometer-2:before,
  11375. .fa-thermometer-half:before {
  11376. content: "\F2C9";
  11377. }
  11378. .fa-thermometer-1:before,
  11379. .fa-thermometer-quarter:before {
  11380. content: "\F2CA";
  11381. }
  11382. .fa-thermometer-0:before,
  11383. .fa-thermometer-empty:before {
  11384. content: "\F2CB";
  11385. }
  11386. .fa-shower:before {
  11387. content: "\F2CC";
  11388. }
  11389. .fa-bathtub:before,
  11390. .fa-s15:before,
  11391. .fa-bath:before {
  11392. content: "\F2CD";
  11393. }
  11394. .fa-podcast:before {
  11395. content: "\F2CE";
  11396. }
  11397. .fa-window-maximize:before {
  11398. content: "\F2D0";
  11399. }
  11400. .fa-window-minimize:before {
  11401. content: "\F2D1";
  11402. }
  11403. .fa-window-restore:before {
  11404. content: "\F2D2";
  11405. }
  11406. .fa-times-rectangle:before,
  11407. .fa-window-close:before {
  11408. content: "\F2D3";
  11409. }
  11410. .fa-times-rectangle-o:before,
  11411. .fa-window-close-o:before {
  11412. content: "\F2D4";
  11413. }
  11414. .fa-bandcamp:before {
  11415. content: "\F2D5";
  11416. }
  11417. .fa-grav:before {
  11418. content: "\F2D6";
  11419. }
  11420. .fa-etsy:before {
  11421. content: "\F2D7";
  11422. }
  11423. .fa-imdb:before {
  11424. content: "\F2D8";
  11425. }
  11426. .fa-ravelry:before {
  11427. content: "\F2D9";
  11428. }
  11429. .fa-eercast:before {
  11430. content: "\F2DA";
  11431. }
  11432. .fa-microchip:before {
  11433. content: "\F2DB";
  11434. }
  11435. .fa-snowflake-o:before {
  11436. content: "\F2DC";
  11437. }
  11438. .fa-superpowers:before {
  11439. content: "\F2DD";
  11440. }
  11441. .fa-wpexplorer:before {
  11442. content: "\F2DE";
  11443. }
  11444. .fa-meetup:before {
  11445. content: "\F2E0";
  11446. }
  11447. .sr-only {
  11448. position: absolute;
  11449. width: 1px;
  11450. height: 1px;
  11451. padding: 0;
  11452. margin: -1px;
  11453. overflow: hidden;
  11454. clip: rect(0, 0, 0, 0);
  11455. border: 0;
  11456. }
  11457. .sr-only-focusable:active,
  11458. .sr-only-focusable:focus {
  11459. position: static;
  11460. width: auto;
  11461. height: auto;
  11462. margin: 0;
  11463. overflow: visible;
  11464. clip: auto;
  11465. }