app.css 210 KB

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