app.css 234 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939139401394113942139431394413945139461394713948139491395013951139521395313954139551395613957139581395913960139611396213963139641396513966139671396813969139701397113972139731397413975139761397713978139791398013981139821398313984139851398613987139881398913990139911399213993139941399513996139971399813999140001400114002140031400414005140061400714008140091401014011140121401314014140151401614017140181401914020140211402214023140241402514026140271402814029140301403114032140331403414035140361403714038140391404014041140421404314044140451404614047140481404914050140511405214053140541405514056140571405814059140601406114062140631406414065140661406714068140691407014071140721407314074140751407614077140781407914080140811408214083140841408514086140871408814089140901409114092140931409414095140961409714098140991410014101141021410314104141051410614107141081410914110141111411214113141141411514116141171411814119141201412114122141231412414125141261412714128141291413014131141321413314134141351413614137141381413914140141411414214143141441414514146141471414814149141501415114152141531415414155141561415714158141591416014161141621416314164141651416614167141681416914170141711417214173141741417514176141771417814179141801418114182141831418414185141861418714188141891419014191141921419314194141951419614197141981419914200142011420214203142041420514206142071420814209142101421114212142131421414215142161421714218142191422014221142221422314224142251422614227142281422914230142311423214233142341423514236142371423814239142401424114242142431424414245142461424714248142491425014251142521425314254142551425614257142581425914260142611426214263142641426514266142671426814269142701427114272142731427414275142761427714278142791428014281142821428314284142851428614287142881428914290142911429214293142941429514296142971429814299143001430114302143031430414305143061430714308143091431014311143121431314314143151431614317143181431914320143211432214323143241432514326143271432814329143301433114332143331433414335143361433714338143391434014341143421434314344143451434614347143481434914350143511435214353143541435514356143571435814359143601436114362143631436414365143661436714368143691437014371143721437314374143751437614377143781437914380143811438214383143841438514386143871438814389143901439114392143931439414395143961439714398143991440014401144021440314404144051440614407144081440914410144111441214413144141441514416144171441814419144201442114422144231442414425144261442714428144291443014431144321443314434144351443614437144381443914440144411444214443144441444514446144471444814449144501445114452144531445414455144561445714458144591446014461144621446314464144651446614467144681446914470144711447214473144741447514476144771447814479144801448114482144831448414485144861448714488144891449014491144921449314494144951449614497144981449914500145011450214503145041450514506145071450814509145101451114512145131451414515145161451714518145191452014521145221452314524145251452614527145281452914530145311453214533145341453514536145371453814539145401454114542145431454414545145461454714548145491455014551145521455314554145551455614557145581455914560145611456214563145641456514566145671456814569145701457114572145731457414575145761457714578145791458014581145821458314584145851458614587145881458914590145911459214593145941459514596145971459814599146001460114602146031460414605146061460714608146091461014611146121461314614146151461614617146181461914620146211462214623146241462514626146271462814629146301463114632146331463414635146361463714638146391464014641146421464314644146451464614647146481464914650146511465214653146541465514656146571465814659146601466114662146631466414665146661466714668146691467014671146721467314674146751467614677146781467914680146811468214683146841468514686146871468814689146901469114692146931469414695146961469714698146991470014701147021470314704147051470614707147081470914710147111471214713147141471514716147171471814719147201472114722147231472414725147261472714728147291473014731147321473314734147351473614737147381473914740147411474214743147441474514746147471474814749147501475114752147531475414755147561475714758147591476014761147621476314764147651476614767147681476914770147711477214773147741477514776147771477814779147801478114782147831478414785147861478714788147891479014791147921479314794147951479614797147981479914800148011480214803148041480514806
  1. @charset "UTF-8";
  2. @font-face {
  3. font-family: "Arial Black";
  4. src: url(/fonts/arialblack.ttf?ec8b4d9c0e68604dfbeda73d0213c82e);
  5. }
  6. .del {
  7. -webkit-text-decoration-line: line-through;
  8. text-decoration-line: line-through;
  9. }
  10. .flicker {
  11. font-size: 1em;
  12. color: red;
  13. animation: changeshadow 2s ease-in infinite;
  14. -webkit-animation: changeshadow 2s linear infinite;
  15. -moz-animation: changeshadow 2s linear infinite;
  16. -ms-animation: changeshadow 2s linear infinite;
  17. -o-animation: changeshadow 2s linear infinite;
  18. }
  19. @keyframes changeshadow {
  20. 0% {
  21. text-shadow: 0 0 4px red;
  22. }
  23. 50% {
  24. text-shadow: 0 0 40px red;
  25. }
  26. 100% {
  27. text-shadow: 0 0 4px red;
  28. }
  29. }
  30. /* 添加兼容性前缀 */
  31. @-webkit-keyframes changeshadow {
  32. 0% {
  33. text-shadow: 0 0 4px red;
  34. }
  35. 50% {
  36. text-shadow: 0 0 40px red;
  37. }
  38. 100% {
  39. text-shadow: 0 0 4px red;
  40. }
  41. }
  42. .noselect {
  43. -webkit-touch-callout: none;
  44. /* iOS Safari */
  45. -webkit-user-select: none;
  46. /* Chrome/Safari/Opera */
  47. /* Konqueror */
  48. -moz-user-select: none;
  49. /* Firefox */
  50. -ms-user-select: none;
  51. /* Internet Explorer/Edge */
  52. user-select: none;
  53. }
  54. .fa-sort {
  55. opacity: 0.3;
  56. }
  57. .bg-light-khaki {
  58. background-color: #eac3aa;
  59. }
  60. .bg-khaki {
  61. background-color: #af7651;
  62. }
  63. .bg-light-info {
  64. background-color: RGB(170, 199, 230);
  65. }
  66. .bg-light-cyanogen {
  67. background-color: RGB(170, 234, 210);
  68. }
  69. .bg-cyanogen {
  70. background-color: RGB(170, 220, 205);
  71. }
  72. .del {
  73. -webkit-text-decoration-line: line-through;
  74. text-decoration-line: line-through;
  75. }
  76. .custom-rich-text-content img {
  77. width: 100%;
  78. height: auto;
  79. }
  80. .nav2 {
  81. margin-top: 0;
  82. }
  83. .nav3 .card {
  84. background: #f9f0f0;
  85. }
  86. .nav4 {
  87. transform: scaleX(0.98);
  88. }
  89. .nav4 .card {
  90. background: #eac3aa;
  91. }
  92. table th,
  93. table.table-striped tbody th {
  94. padding-bottom: 0;
  95. }
  96. table th.table-header-layer-1,
  97. table.table-striped tbody th.table-header-layer-1 {
  98. font-weight: normal;
  99. background: none;
  100. text-align: center;
  101. }
  102. table th.table-header-layer-1:nth-child(2),
  103. table.table-striped tbody th.table-header-layer-1:nth-child(2) {
  104. background: #eac3aa;
  105. }
  106. table th.table-header-layer-1:nth-child(3),
  107. table.table-striped tbody th.table-header-layer-1:nth-child(3) {
  108. background: #aac7ea;
  109. }
  110. table th.table-header-layer-1:nth-child(4),
  111. table.table-striped tbody th.table-header-layer-1:nth-child(4) {
  112. background: #aaeace;
  113. }
  114. table th.td-warm,
  115. table.table-striped tbody th.td-warm {
  116. background: #af7651;
  117. }
  118. table th.td-cool,
  119. table.table-striped tbody th.td-cool {
  120. background: #aac7ea;
  121. }
  122. table th.td-helpful,
  123. table.table-striped tbody th.td-helpful {
  124. background: #aaeace;
  125. }
  126. table th.td-yellow,
  127. table.table-striped tbody th.td-yellow {
  128. background: #f8eea0;
  129. }
  130. table th.td-calm,
  131. table.table-striped tbody th.td-calm {
  132. background: #c6d8e3;
  133. }
  134. table td.td-warm,
  135. table tr:nth-of-type(odd).td-warm,
  136. table.table-striped tbody td.td-warm,
  137. table.table-striped tbody tr:nth-of-type(odd).td-warm {
  138. background: #f6eee8;
  139. }
  140. table td.td-cool,
  141. table tr:nth-of-type(odd).td-cool,
  142. table.table-striped tbody td.td-cool,
  143. table.table-striped tbody tr:nth-of-type(odd).td-cool {
  144. background: #e8eef6;
  145. }
  146. table td.td-helpful,
  147. table tr:nth-of-type(odd).td-helpful,
  148. table.table-striped tbody td.td-helpful,
  149. table.table-striped tbody tr:nth-of-type(odd).td-helpful {
  150. background: #e7f5ee;
  151. }
  152. table td.td-yellow,
  153. table tr:nth-of-type(odd).td-yellow,
  154. table.table-striped tbody td.td-yellow,
  155. table.table-striped tbody tr:nth-of-type(odd).td-yellow {
  156. background: #fcfaec;
  157. }
  158. table td.td-calm,
  159. table tr:nth-of-type(odd).td-calm,
  160. table.table-striped tbody td.td-calm,
  161. table.table-striped tbody tr:nth-of-type(odd).td-calm {
  162. background: #ddeffa;
  163. }
  164. table tr:nth-child(even) td.td-warm,
  165. table tr:nth-child(even).td-warm,
  166. table.table-striped tbody tr:nth-child(even) td.td-warm,
  167. table.table-striped tbody tr:nth-child(even).td-warm {
  168. background: #f8f4f1;
  169. }
  170. table tr:nth-child(even) td.td-cool,
  171. table tr:nth-child(even).td-cool,
  172. table.table-striped tbody tr:nth-child(even) td.td-cool,
  173. table.table-striped tbody tr:nth-child(even).td-cool {
  174. background: #edf0f5;
  175. }
  176. table tr:nth-child(even) td.td-helpful,
  177. table tr:nth-child(even).td-helpful,
  178. table.table-striped tbody tr:nth-child(even) td.td-helpful,
  179. table.table-striped tbody tr:nth-child(even).td-helpful {
  180. background: #ecf3ef;
  181. }
  182. table tr:nth-child(even) td.td-yellow,
  183. table tr:nth-child(even).td-yellow,
  184. table.table-striped tbody tr:nth-child(even) td.td-yellow,
  185. table.table-striped tbody tr:nth-child(even).td-yellow {
  186. background: #f8f5e4;
  187. }
  188. table tr:hover td.td-warm,
  189. table tr:hover.td-warm,
  190. table.table-striped tbody tr:hover td.td-warm,
  191. table.table-striped tbody tr:hover.td-warm {
  192. background: #f6e9dc;
  193. }
  194. table tr:hover td.td-cool,
  195. table tr:hover.td-cool,
  196. table.table-striped tbody tr:hover td.td-cool,
  197. table.table-striped tbody tr:hover.td-cool {
  198. background: #d3e0f1;
  199. }
  200. table tr:hover td.td-helpful,
  201. table tr:hover.td-helpful,
  202. table.table-striped tbody tr:hover td.td-helpful,
  203. table.table-striped tbody tr:hover.td-helpful {
  204. background: #d7f3e5;
  205. }
  206. table tr:hover td.td-yellow,
  207. table tr:hover.td-yellow,
  208. table.table-striped tbody tr:hover td.td-yellow,
  209. table.table-striped tbody tr:hover.td-yellow {
  210. background: #fdf3db;
  211. }
  212. table .table-striped > tr.focusing,
  213. table tr.focusing > td,
  214. table.table-striped tbody .table-striped > tr.focusing,
  215. table.table-striped tbody tr.focusing > td {
  216. background: #d5aba1;
  217. }
  218. table .table-striped > tr.focusing.td-warm,
  219. table tr.focusing > td.td-warm,
  220. table.table-striped tbody .table-striped > tr.focusing.td-warm,
  221. table.table-striped tbody tr.focusing > td.td-warm {
  222. background: #e7ae80;
  223. }
  224. table .table-striped > tr.focusing.td-cool,
  225. table tr.focusing > td.td-cool,
  226. table.table-striped tbody .table-striped > tr.focusing.td-cool,
  227. table.table-striped tbody tr.focusing > td.td-cool {
  228. background: #5f8fcd;
  229. }
  230. table .table-striped > tr.focusing.td-helpful,
  231. table tr.focusing > td.td-helpful,
  232. table.table-striped tbody .table-striped > tr.focusing.td-helpful,
  233. table.table-striped tbody tr.focusing > td.td-helpful {
  234. background: #69cb9c;
  235. }
  236. table .table-striped > tr.focusing.td-yellow,
  237. table tr.focusing > td.td-yellow,
  238. table.table-striped tbody .table-striped > tr.focusing.td-yellow,
  239. table.table-striped tbody tr.focusing > td.td-yellow {
  240. background: #d9c290;
  241. }
  242. .row-even {
  243. background-color: rgba(0, 0, 0, 0.05);
  244. }
  245. @-webkit-keyframes blink {
  246. from {
  247. opacity: 0.25;
  248. }
  249. to {
  250. opacity: 1;
  251. }
  252. }
  253. @keyframes blink {
  254. from {
  255. opacity: 0.25;
  256. }
  257. to {
  258. opacity: 1;
  259. }
  260. }
  261. .blink {
  262. -webkit-animation: blink;
  263. animation: blink;
  264. -webkit-animation-duration: 2s;
  265. animation-duration: 2s;
  266. -webkit-animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
  267. animation-timing-function: cubic-bezier(0, 0, 0.58, 1);
  268. -webkit-animation-direction: alternate;
  269. animation-direction: alternate;
  270. -webkit-animation-play-state: running;
  271. animation-play-state: running;
  272. -webkit-animation-iteration-count: infinite;
  273. animation-iteration-count: infinite;
  274. }
  275. input[type=checkbox] {
  276. width: 17px;
  277. height: 17px;
  278. opacity: 0.85;
  279. }
  280. /*!
  281. * Bootstrap v4.5.0 (https://getbootstrap.com/)
  282. * Copyright 2011-2020 The Bootstrap Authors
  283. * Copyright 2011-2020 Twitter, Inc.
  284. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
  285. */
  286. :root {
  287. --blue: #3490dc;
  288. --indigo: #6574cd;
  289. --purple: #9561e2;
  290. --pink: #f66d9b;
  291. --red: #e3342f;
  292. --orange: #f6993f;
  293. --yellow: #ffed4a;
  294. --green: #38c172;
  295. --teal: #4dc0b5;
  296. --cyan: #6cb2eb;
  297. --white: #fff;
  298. --gray: #6c757d;
  299. --gray-dark: #343a40;
  300. --primary: #3490dc;
  301. --secondary: #6c757d;
  302. --success: #38c172;
  303. --info: #6cb2eb;
  304. --warning: #ffed4a;
  305. --danger: #e3342f;
  306. --light: #f8f9fa;
  307. --dark: #343a40;
  308. --breakpoint-xs: 0;
  309. --breakpoint-sm: 576px;
  310. --breakpoint-md: 768px;
  311. --breakpoint-lg: 992px;
  312. --breakpoint-xl: 1200px;
  313. --font-family-sans-serif: "Nunito", sans-serif;
  314. --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  315. }
  316. *,
  317. *::before,
  318. *::after {
  319. box-sizing: border-box;
  320. }
  321. html {
  322. font-family: sans-serif;
  323. line-height: 1.15;
  324. -webkit-text-size-adjust: 100%;
  325. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  326. }
  327. article,
  328. aside,
  329. figcaption,
  330. figure,
  331. footer,
  332. header,
  333. hgroup,
  334. main,
  335. nav,
  336. section {
  337. display: block;
  338. }
  339. body {
  340. margin: 0;
  341. font-family: "Nunito", sans-serif;
  342. font-size: 0.9rem;
  343. font-weight: 400;
  344. line-height: 1.6;
  345. color: #212529;
  346. text-align: left;
  347. background-color: #f8fafc;
  348. }
  349. [tabindex="-1"]:focus:not(:focus-visible) {
  350. outline: 0 !important;
  351. }
  352. hr {
  353. box-sizing: content-box;
  354. height: 0;
  355. overflow: visible;
  356. }
  357. h1,
  358. h2,
  359. h3,
  360. h4,
  361. h5,
  362. h6 {
  363. margin-top: 0;
  364. margin-bottom: 0.5rem;
  365. }
  366. p {
  367. margin-top: 0;
  368. margin-bottom: 1rem;
  369. }
  370. abbr[title],
  371. abbr[data-original-title] {
  372. text-decoration: underline;
  373. -webkit-text-decoration: underline dotted;
  374. text-decoration: underline dotted;
  375. cursor: help;
  376. border-bottom: 0;
  377. -webkit-text-decoration-skip-ink: none;
  378. text-decoration-skip-ink: none;
  379. }
  380. address {
  381. margin-bottom: 1rem;
  382. font-style: normal;
  383. line-height: inherit;
  384. }
  385. ol,
  386. ul,
  387. dl {
  388. margin-top: 0;
  389. margin-bottom: 1rem;
  390. }
  391. ol ol,
  392. ul ul,
  393. ol ul,
  394. ul ol {
  395. margin-bottom: 0;
  396. }
  397. dt {
  398. font-weight: 700;
  399. }
  400. dd {
  401. margin-bottom: 0.5rem;
  402. margin-left: 0;
  403. }
  404. blockquote {
  405. margin: 0 0 1rem;
  406. }
  407. b,
  408. strong {
  409. font-weight: bolder;
  410. }
  411. small {
  412. font-size: 80%;
  413. }
  414. sub,
  415. sup {
  416. position: relative;
  417. font-size: 75%;
  418. line-height: 0;
  419. vertical-align: baseline;
  420. }
  421. sub {
  422. bottom: -0.25em;
  423. }
  424. sup {
  425. top: -0.5em;
  426. }
  427. a {
  428. color: #3490dc;
  429. text-decoration: none;
  430. background-color: transparent;
  431. }
  432. a:hover {
  433. color: #1d68a7;
  434. text-decoration: underline;
  435. }
  436. a:not([href]) {
  437. color: inherit;
  438. text-decoration: none;
  439. }
  440. a:not([href]):hover {
  441. color: inherit;
  442. text-decoration: none;
  443. }
  444. pre,
  445. code,
  446. kbd,
  447. samp {
  448. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  449. font-size: 1em;
  450. }
  451. pre {
  452. margin-top: 0;
  453. margin-bottom: 1rem;
  454. overflow: auto;
  455. -ms-overflow-style: scrollbar;
  456. }
  457. figure {
  458. margin: 0 0 1rem;
  459. }
  460. img {
  461. vertical-align: middle;
  462. border-style: none;
  463. }
  464. svg {
  465. overflow: hidden;
  466. vertical-align: middle;
  467. }
  468. table {
  469. border-collapse: collapse;
  470. }
  471. caption {
  472. padding-top: 0.75rem;
  473. padding-bottom: 0.75rem;
  474. color: #6c757d;
  475. text-align: left;
  476. caption-side: bottom;
  477. }
  478. th {
  479. text-align: inherit;
  480. }
  481. label {
  482. display: inline-block;
  483. margin-bottom: 0.5rem;
  484. }
  485. button {
  486. border-radius: 0;
  487. }
  488. button:focus {
  489. outline: 1px dotted;
  490. outline: 5px auto -webkit-focus-ring-color;
  491. }
  492. input,
  493. button,
  494. select,
  495. optgroup,
  496. textarea {
  497. margin: 0;
  498. font-family: inherit;
  499. font-size: inherit;
  500. line-height: inherit;
  501. }
  502. button,
  503. input {
  504. overflow: visible;
  505. }
  506. button,
  507. select {
  508. text-transform: none;
  509. }
  510. [role=button] {
  511. cursor: pointer;
  512. }
  513. select {
  514. word-wrap: normal;
  515. }
  516. button,
  517. [type=button],
  518. [type=reset],
  519. [type=submit] {
  520. -webkit-appearance: button;
  521. }
  522. button:not(:disabled),
  523. [type=button]:not(:disabled),
  524. [type=reset]:not(:disabled),
  525. [type=submit]:not(:disabled) {
  526. cursor: pointer;
  527. }
  528. button::-moz-focus-inner,
  529. [type=button]::-moz-focus-inner,
  530. [type=reset]::-moz-focus-inner,
  531. [type=submit]::-moz-focus-inner {
  532. padding: 0;
  533. border-style: none;
  534. }
  535. input[type=radio],
  536. input[type=checkbox] {
  537. box-sizing: border-box;
  538. padding: 0;
  539. }
  540. textarea {
  541. overflow: auto;
  542. resize: vertical;
  543. }
  544. fieldset {
  545. min-width: 0;
  546. padding: 0;
  547. margin: 0;
  548. border: 0;
  549. }
  550. legend {
  551. display: block;
  552. width: 100%;
  553. max-width: 100%;
  554. padding: 0;
  555. margin-bottom: 0.5rem;
  556. font-size: 1.5rem;
  557. line-height: inherit;
  558. color: inherit;
  559. white-space: normal;
  560. }
  561. progress {
  562. vertical-align: baseline;
  563. }
  564. [type=number]::-webkit-inner-spin-button,
  565. [type=number]::-webkit-outer-spin-button {
  566. height: auto;
  567. }
  568. [type=search] {
  569. outline-offset: -2px;
  570. -webkit-appearance: none;
  571. }
  572. [type=search]::-webkit-search-decoration {
  573. -webkit-appearance: none;
  574. }
  575. ::-webkit-file-upload-button {
  576. font: inherit;
  577. -webkit-appearance: button;
  578. }
  579. output {
  580. display: inline-block;
  581. }
  582. summary {
  583. display: list-item;
  584. cursor: pointer;
  585. }
  586. template {
  587. display: none;
  588. }
  589. [hidden] {
  590. display: none !important;
  591. }
  592. h1,
  593. h2,
  594. h3,
  595. h4,
  596. h5,
  597. h6,
  598. .h1,
  599. .h2,
  600. .h3,
  601. .h4,
  602. .h5,
  603. .h6 {
  604. margin-bottom: 0.5rem;
  605. font-weight: 500;
  606. line-height: 1.2;
  607. }
  608. h1,
  609. .h1 {
  610. font-size: 2.25rem;
  611. }
  612. h2,
  613. .h2 {
  614. font-size: 1.8rem;
  615. }
  616. h3,
  617. .h3 {
  618. font-size: 1.575rem;
  619. }
  620. h4,
  621. .h4 {
  622. font-size: 1.35rem;
  623. }
  624. h5,
  625. .h5 {
  626. font-size: 1.125rem;
  627. }
  628. h6,
  629. .h6 {
  630. font-size: 0.9rem;
  631. }
  632. .lead {
  633. font-size: 1.125rem;
  634. font-weight: 300;
  635. }
  636. .display-1 {
  637. font-size: 6rem;
  638. font-weight: 300;
  639. line-height: 1.2;
  640. }
  641. .display-2 {
  642. font-size: 5.5rem;
  643. font-weight: 300;
  644. line-height: 1.2;
  645. }
  646. .display-3 {
  647. font-size: 4.5rem;
  648. font-weight: 300;
  649. line-height: 1.2;
  650. }
  651. .display-4 {
  652. font-size: 3.5rem;
  653. font-weight: 300;
  654. line-height: 1.2;
  655. }
  656. hr {
  657. margin-top: 1rem;
  658. margin-bottom: 1rem;
  659. border: 0;
  660. border-top: 1px solid rgba(0, 0, 0, 0.1);
  661. }
  662. small,
  663. .small {
  664. font-size: 80%;
  665. font-weight: 400;
  666. }
  667. mark,
  668. .mark {
  669. padding: 0.2em;
  670. background-color: #fcf8e3;
  671. }
  672. .list-unstyled {
  673. padding-left: 0;
  674. list-style: none;
  675. }
  676. .list-inline {
  677. padding-left: 0;
  678. list-style: none;
  679. }
  680. .list-inline-item {
  681. display: inline-block;
  682. }
  683. .list-inline-item:not(:last-child) {
  684. margin-right: 0.5rem;
  685. }
  686. .initialism {
  687. font-size: 90%;
  688. text-transform: uppercase;
  689. }
  690. .blockquote {
  691. margin-bottom: 1rem;
  692. font-size: 1.125rem;
  693. }
  694. .blockquote-footer {
  695. display: block;
  696. font-size: 80%;
  697. color: #6c757d;
  698. }
  699. .blockquote-footer::before {
  700. content: "\2014\A0";
  701. }
  702. .img-fluid {
  703. max-width: 100%;
  704. height: auto;
  705. }
  706. .img-thumbnail {
  707. padding: 0.25rem;
  708. background-color: #f8fafc;
  709. border: 1px solid #dee2e6;
  710. border-radius: 0.25rem;
  711. max-width: 100%;
  712. height: auto;
  713. }
  714. .figure {
  715. display: inline-block;
  716. }
  717. .figure-img {
  718. margin-bottom: 0.5rem;
  719. line-height: 1;
  720. }
  721. .figure-caption {
  722. font-size: 90%;
  723. color: #6c757d;
  724. }
  725. code {
  726. font-size: 87.5%;
  727. color: #f66d9b;
  728. word-wrap: break-word;
  729. }
  730. a > code {
  731. color: inherit;
  732. }
  733. kbd {
  734. padding: 0.2rem 0.4rem;
  735. font-size: 87.5%;
  736. color: #fff;
  737. background-color: #212529;
  738. border-radius: 0.2rem;
  739. }
  740. kbd kbd {
  741. padding: 0;
  742. font-size: 100%;
  743. font-weight: 700;
  744. }
  745. pre {
  746. display: block;
  747. font-size: 87.5%;
  748. color: #212529;
  749. }
  750. pre code {
  751. font-size: inherit;
  752. color: inherit;
  753. word-break: normal;
  754. }
  755. .pre-scrollable {
  756. max-height: 340px;
  757. overflow-y: scroll;
  758. }
  759. .container {
  760. width: 100%;
  761. padding-right: 15px;
  762. padding-left: 15px;
  763. margin-right: auto;
  764. margin-left: auto;
  765. }
  766. @media (min-width: 576px) {
  767. .container {
  768. max-width: 540px;
  769. }
  770. }
  771. @media (min-width: 768px) {
  772. .container {
  773. max-width: 720px;
  774. }
  775. }
  776. @media (min-width: 992px) {
  777. .container {
  778. max-width: 960px;
  779. }
  780. }
  781. @media (min-width: 1200px) {
  782. .container {
  783. max-width: 1140px;
  784. }
  785. }
  786. .container-fluid,
  787. .container-xl,
  788. .container-lg,
  789. .container-md,
  790. .container-sm {
  791. width: 100%;
  792. padding-right: 15px;
  793. padding-left: 15px;
  794. margin-right: auto;
  795. margin-left: auto;
  796. }
  797. @media (min-width: 576px) {
  798. .container-sm,
  799. .container {
  800. max-width: 540px;
  801. }
  802. }
  803. @media (min-width: 768px) {
  804. .container-md,
  805. .container-sm,
  806. .container {
  807. max-width: 720px;
  808. }
  809. }
  810. @media (min-width: 992px) {
  811. .container-lg,
  812. .container-md,
  813. .container-sm,
  814. .container {
  815. max-width: 960px;
  816. }
  817. }
  818. @media (min-width: 1200px) {
  819. .container-xl,
  820. .container-lg,
  821. .container-md,
  822. .container-sm,
  823. .container {
  824. max-width: 1140px;
  825. }
  826. }
  827. .row {
  828. display: flex;
  829. flex-wrap: wrap;
  830. margin-right: -15px;
  831. margin-left: -15px;
  832. }
  833. .no-gutters {
  834. margin-right: 0;
  835. margin-left: 0;
  836. }
  837. .no-gutters > .col,
  838. .no-gutters > [class*=col-] {
  839. padding-right: 0;
  840. padding-left: 0;
  841. }
  842. .col-xl,
  843. .col-xl-auto,
  844. .col-xl-12,
  845. .col-xl-11,
  846. .col-xl-10,
  847. .col-xl-9,
  848. .col-xl-8,
  849. .col-xl-7,
  850. .col-xl-6,
  851. .col-xl-5,
  852. .col-xl-4,
  853. .col-xl-3,
  854. .col-xl-2,
  855. .col-xl-1,
  856. .col-lg,
  857. .col-lg-auto,
  858. .col-lg-12,
  859. .col-lg-11,
  860. .col-lg-10,
  861. .col-lg-9,
  862. .col-lg-8,
  863. .col-lg-7,
  864. .col-lg-6,
  865. .col-lg-5,
  866. .col-lg-4,
  867. .col-lg-3,
  868. .col-lg-2,
  869. .col-lg-1,
  870. .col-md,
  871. .col-md-auto,
  872. .col-md-12,
  873. .col-md-11,
  874. .col-md-10,
  875. .col-md-9,
  876. .col-md-8,
  877. .col-md-7,
  878. .col-md-6,
  879. .col-md-5,
  880. .col-md-4,
  881. .col-md-3,
  882. .col-md-2,
  883. .col-md-1,
  884. .col-sm,
  885. .col-sm-auto,
  886. .col-sm-12,
  887. .col-sm-11,
  888. .col-sm-10,
  889. .col-sm-9,
  890. .col-sm-8,
  891. .col-sm-7,
  892. .col-sm-6,
  893. .col-sm-5,
  894. .col-sm-4,
  895. .col-sm-3,
  896. .col-sm-2,
  897. .col-sm-1,
  898. .col,
  899. .col-auto,
  900. .col-12,
  901. .col-11,
  902. .col-10,
  903. .col-9,
  904. .col-8,
  905. .col-7,
  906. .col-6,
  907. .col-5,
  908. .col-4,
  909. .col-3,
  910. .col-2,
  911. .col-1 {
  912. position: relative;
  913. width: 100%;
  914. padding-right: 15px;
  915. padding-left: 15px;
  916. }
  917. .col {
  918. flex-basis: 0;
  919. flex-grow: 1;
  920. min-width: 0;
  921. max-width: 100%;
  922. }
  923. .row-cols-1 > * {
  924. flex: 0 0 100%;
  925. max-width: 100%;
  926. }
  927. .row-cols-2 > * {
  928. flex: 0 0 50%;
  929. max-width: 50%;
  930. }
  931. .row-cols-3 > * {
  932. flex: 0 0 33.3333333333%;
  933. max-width: 33.3333333333%;
  934. }
  935. .row-cols-4 > * {
  936. flex: 0 0 25%;
  937. max-width: 25%;
  938. }
  939. .row-cols-5 > * {
  940. flex: 0 0 20%;
  941. max-width: 20%;
  942. }
  943. .row-cols-6 > * {
  944. flex: 0 0 16.6666666667%;
  945. max-width: 16.6666666667%;
  946. }
  947. .col-auto {
  948. flex: 0 0 auto;
  949. width: auto;
  950. max-width: 100%;
  951. }
  952. .col-1 {
  953. flex: 0 0 8.3333333333%;
  954. max-width: 8.3333333333%;
  955. }
  956. .col-2 {
  957. flex: 0 0 16.6666666667%;
  958. max-width: 16.6666666667%;
  959. }
  960. .col-3 {
  961. flex: 0 0 25%;
  962. max-width: 25%;
  963. }
  964. .col-4 {
  965. flex: 0 0 33.3333333333%;
  966. max-width: 33.3333333333%;
  967. }
  968. .col-5 {
  969. flex: 0 0 41.6666666667%;
  970. max-width: 41.6666666667%;
  971. }
  972. .col-6 {
  973. flex: 0 0 50%;
  974. max-width: 50%;
  975. }
  976. .col-7 {
  977. flex: 0 0 58.3333333333%;
  978. max-width: 58.3333333333%;
  979. }
  980. .col-8 {
  981. flex: 0 0 66.6666666667%;
  982. max-width: 66.6666666667%;
  983. }
  984. .col-9 {
  985. flex: 0 0 75%;
  986. max-width: 75%;
  987. }
  988. .col-10 {
  989. flex: 0 0 83.3333333333%;
  990. max-width: 83.3333333333%;
  991. }
  992. .col-11 {
  993. flex: 0 0 91.6666666667%;
  994. max-width: 91.6666666667%;
  995. }
  996. .col-12 {
  997. flex: 0 0 100%;
  998. max-width: 100%;
  999. }
  1000. .order-first {
  1001. order: -1;
  1002. }
  1003. .order-last {
  1004. order: 13;
  1005. }
  1006. .order-0 {
  1007. order: 0;
  1008. }
  1009. .order-1 {
  1010. order: 1;
  1011. }
  1012. .order-2 {
  1013. order: 2;
  1014. }
  1015. .order-3 {
  1016. order: 3;
  1017. }
  1018. .order-4 {
  1019. order: 4;
  1020. }
  1021. .order-5 {
  1022. order: 5;
  1023. }
  1024. .order-6 {
  1025. order: 6;
  1026. }
  1027. .order-7 {
  1028. order: 7;
  1029. }
  1030. .order-8 {
  1031. order: 8;
  1032. }
  1033. .order-9 {
  1034. order: 9;
  1035. }
  1036. .order-10 {
  1037. order: 10;
  1038. }
  1039. .order-11 {
  1040. order: 11;
  1041. }
  1042. .order-12 {
  1043. order: 12;
  1044. }
  1045. .offset-1 {
  1046. margin-left: 8.3333333333%;
  1047. }
  1048. .offset-2 {
  1049. margin-left: 16.6666666667%;
  1050. }
  1051. .offset-3 {
  1052. margin-left: 25%;
  1053. }
  1054. .offset-4 {
  1055. margin-left: 33.3333333333%;
  1056. }
  1057. .offset-5 {
  1058. margin-left: 41.6666666667%;
  1059. }
  1060. .offset-6 {
  1061. margin-left: 50%;
  1062. }
  1063. .offset-7 {
  1064. margin-left: 58.3333333333%;
  1065. }
  1066. .offset-8 {
  1067. margin-left: 66.6666666667%;
  1068. }
  1069. .offset-9 {
  1070. margin-left: 75%;
  1071. }
  1072. .offset-10 {
  1073. margin-left: 83.3333333333%;
  1074. }
  1075. .offset-11 {
  1076. margin-left: 91.6666666667%;
  1077. }
  1078. @media (min-width: 576px) {
  1079. .col-sm {
  1080. flex-basis: 0;
  1081. flex-grow: 1;
  1082. min-width: 0;
  1083. max-width: 100%;
  1084. }
  1085. .row-cols-sm-1 > * {
  1086. flex: 0 0 100%;
  1087. max-width: 100%;
  1088. }
  1089. .row-cols-sm-2 > * {
  1090. flex: 0 0 50%;
  1091. max-width: 50%;
  1092. }
  1093. .row-cols-sm-3 > * {
  1094. flex: 0 0 33.3333333333%;
  1095. max-width: 33.3333333333%;
  1096. }
  1097. .row-cols-sm-4 > * {
  1098. flex: 0 0 25%;
  1099. max-width: 25%;
  1100. }
  1101. .row-cols-sm-5 > * {
  1102. flex: 0 0 20%;
  1103. max-width: 20%;
  1104. }
  1105. .row-cols-sm-6 > * {
  1106. flex: 0 0 16.6666666667%;
  1107. max-width: 16.6666666667%;
  1108. }
  1109. .col-sm-auto {
  1110. flex: 0 0 auto;
  1111. width: auto;
  1112. max-width: 100%;
  1113. }
  1114. .col-sm-1 {
  1115. flex: 0 0 8.3333333333%;
  1116. max-width: 8.3333333333%;
  1117. }
  1118. .col-sm-2 {
  1119. flex: 0 0 16.6666666667%;
  1120. max-width: 16.6666666667%;
  1121. }
  1122. .col-sm-3 {
  1123. flex: 0 0 25%;
  1124. max-width: 25%;
  1125. }
  1126. .col-sm-4 {
  1127. flex: 0 0 33.3333333333%;
  1128. max-width: 33.3333333333%;
  1129. }
  1130. .col-sm-5 {
  1131. flex: 0 0 41.6666666667%;
  1132. max-width: 41.6666666667%;
  1133. }
  1134. .col-sm-6 {
  1135. flex: 0 0 50%;
  1136. max-width: 50%;
  1137. }
  1138. .col-sm-7 {
  1139. flex: 0 0 58.3333333333%;
  1140. max-width: 58.3333333333%;
  1141. }
  1142. .col-sm-8 {
  1143. flex: 0 0 66.6666666667%;
  1144. max-width: 66.6666666667%;
  1145. }
  1146. .col-sm-9 {
  1147. flex: 0 0 75%;
  1148. max-width: 75%;
  1149. }
  1150. .col-sm-10 {
  1151. flex: 0 0 83.3333333333%;
  1152. max-width: 83.3333333333%;
  1153. }
  1154. .col-sm-11 {
  1155. flex: 0 0 91.6666666667%;
  1156. max-width: 91.6666666667%;
  1157. }
  1158. .col-sm-12 {
  1159. flex: 0 0 100%;
  1160. max-width: 100%;
  1161. }
  1162. .order-sm-first {
  1163. order: -1;
  1164. }
  1165. .order-sm-last {
  1166. order: 13;
  1167. }
  1168. .order-sm-0 {
  1169. order: 0;
  1170. }
  1171. .order-sm-1 {
  1172. order: 1;
  1173. }
  1174. .order-sm-2 {
  1175. order: 2;
  1176. }
  1177. .order-sm-3 {
  1178. order: 3;
  1179. }
  1180. .order-sm-4 {
  1181. order: 4;
  1182. }
  1183. .order-sm-5 {
  1184. order: 5;
  1185. }
  1186. .order-sm-6 {
  1187. order: 6;
  1188. }
  1189. .order-sm-7 {
  1190. order: 7;
  1191. }
  1192. .order-sm-8 {
  1193. order: 8;
  1194. }
  1195. .order-sm-9 {
  1196. order: 9;
  1197. }
  1198. .order-sm-10 {
  1199. order: 10;
  1200. }
  1201. .order-sm-11 {
  1202. order: 11;
  1203. }
  1204. .order-sm-12 {
  1205. order: 12;
  1206. }
  1207. .offset-sm-0 {
  1208. margin-left: 0;
  1209. }
  1210. .offset-sm-1 {
  1211. margin-left: 8.3333333333%;
  1212. }
  1213. .offset-sm-2 {
  1214. margin-left: 16.6666666667%;
  1215. }
  1216. .offset-sm-3 {
  1217. margin-left: 25%;
  1218. }
  1219. .offset-sm-4 {
  1220. margin-left: 33.3333333333%;
  1221. }
  1222. .offset-sm-5 {
  1223. margin-left: 41.6666666667%;
  1224. }
  1225. .offset-sm-6 {
  1226. margin-left: 50%;
  1227. }
  1228. .offset-sm-7 {
  1229. margin-left: 58.3333333333%;
  1230. }
  1231. .offset-sm-8 {
  1232. margin-left: 66.6666666667%;
  1233. }
  1234. .offset-sm-9 {
  1235. margin-left: 75%;
  1236. }
  1237. .offset-sm-10 {
  1238. margin-left: 83.3333333333%;
  1239. }
  1240. .offset-sm-11 {
  1241. margin-left: 91.6666666667%;
  1242. }
  1243. }
  1244. @media (min-width: 768px) {
  1245. .col-md {
  1246. flex-basis: 0;
  1247. flex-grow: 1;
  1248. min-width: 0;
  1249. max-width: 100%;
  1250. }
  1251. .row-cols-md-1 > * {
  1252. flex: 0 0 100%;
  1253. max-width: 100%;
  1254. }
  1255. .row-cols-md-2 > * {
  1256. flex: 0 0 50%;
  1257. max-width: 50%;
  1258. }
  1259. .row-cols-md-3 > * {
  1260. flex: 0 0 33.3333333333%;
  1261. max-width: 33.3333333333%;
  1262. }
  1263. .row-cols-md-4 > * {
  1264. flex: 0 0 25%;
  1265. max-width: 25%;
  1266. }
  1267. .row-cols-md-5 > * {
  1268. flex: 0 0 20%;
  1269. max-width: 20%;
  1270. }
  1271. .row-cols-md-6 > * {
  1272. flex: 0 0 16.6666666667%;
  1273. max-width: 16.6666666667%;
  1274. }
  1275. .col-md-auto {
  1276. flex: 0 0 auto;
  1277. width: auto;
  1278. max-width: 100%;
  1279. }
  1280. .col-md-1 {
  1281. flex: 0 0 8.3333333333%;
  1282. max-width: 8.3333333333%;
  1283. }
  1284. .col-md-2 {
  1285. flex: 0 0 16.6666666667%;
  1286. max-width: 16.6666666667%;
  1287. }
  1288. .col-md-3 {
  1289. flex: 0 0 25%;
  1290. max-width: 25%;
  1291. }
  1292. .col-md-4 {
  1293. flex: 0 0 33.3333333333%;
  1294. max-width: 33.3333333333%;
  1295. }
  1296. .col-md-5 {
  1297. flex: 0 0 41.6666666667%;
  1298. max-width: 41.6666666667%;
  1299. }
  1300. .col-md-6 {
  1301. flex: 0 0 50%;
  1302. max-width: 50%;
  1303. }
  1304. .col-md-7 {
  1305. flex: 0 0 58.3333333333%;
  1306. max-width: 58.3333333333%;
  1307. }
  1308. .col-md-8 {
  1309. flex: 0 0 66.6666666667%;
  1310. max-width: 66.6666666667%;
  1311. }
  1312. .col-md-9 {
  1313. flex: 0 0 75%;
  1314. max-width: 75%;
  1315. }
  1316. .col-md-10 {
  1317. flex: 0 0 83.3333333333%;
  1318. max-width: 83.3333333333%;
  1319. }
  1320. .col-md-11 {
  1321. flex: 0 0 91.6666666667%;
  1322. max-width: 91.6666666667%;
  1323. }
  1324. .col-md-12 {
  1325. flex: 0 0 100%;
  1326. max-width: 100%;
  1327. }
  1328. .order-md-first {
  1329. order: -1;
  1330. }
  1331. .order-md-last {
  1332. order: 13;
  1333. }
  1334. .order-md-0 {
  1335. order: 0;
  1336. }
  1337. .order-md-1 {
  1338. order: 1;
  1339. }
  1340. .order-md-2 {
  1341. order: 2;
  1342. }
  1343. .order-md-3 {
  1344. order: 3;
  1345. }
  1346. .order-md-4 {
  1347. order: 4;
  1348. }
  1349. .order-md-5 {
  1350. order: 5;
  1351. }
  1352. .order-md-6 {
  1353. order: 6;
  1354. }
  1355. .order-md-7 {
  1356. order: 7;
  1357. }
  1358. .order-md-8 {
  1359. order: 8;
  1360. }
  1361. .order-md-9 {
  1362. order: 9;
  1363. }
  1364. .order-md-10 {
  1365. order: 10;
  1366. }
  1367. .order-md-11 {
  1368. order: 11;
  1369. }
  1370. .order-md-12 {
  1371. order: 12;
  1372. }
  1373. .offset-md-0 {
  1374. margin-left: 0;
  1375. }
  1376. .offset-md-1 {
  1377. margin-left: 8.3333333333%;
  1378. }
  1379. .offset-md-2 {
  1380. margin-left: 16.6666666667%;
  1381. }
  1382. .offset-md-3 {
  1383. margin-left: 25%;
  1384. }
  1385. .offset-md-4 {
  1386. margin-left: 33.3333333333%;
  1387. }
  1388. .offset-md-5 {
  1389. margin-left: 41.6666666667%;
  1390. }
  1391. .offset-md-6 {
  1392. margin-left: 50%;
  1393. }
  1394. .offset-md-7 {
  1395. margin-left: 58.3333333333%;
  1396. }
  1397. .offset-md-8 {
  1398. margin-left: 66.6666666667%;
  1399. }
  1400. .offset-md-9 {
  1401. margin-left: 75%;
  1402. }
  1403. .offset-md-10 {
  1404. margin-left: 83.3333333333%;
  1405. }
  1406. .offset-md-11 {
  1407. margin-left: 91.6666666667%;
  1408. }
  1409. }
  1410. @media (min-width: 992px) {
  1411. .col-lg {
  1412. flex-basis: 0;
  1413. flex-grow: 1;
  1414. min-width: 0;
  1415. max-width: 100%;
  1416. }
  1417. .row-cols-lg-1 > * {
  1418. flex: 0 0 100%;
  1419. max-width: 100%;
  1420. }
  1421. .row-cols-lg-2 > * {
  1422. flex: 0 0 50%;
  1423. max-width: 50%;
  1424. }
  1425. .row-cols-lg-3 > * {
  1426. flex: 0 0 33.3333333333%;
  1427. max-width: 33.3333333333%;
  1428. }
  1429. .row-cols-lg-4 > * {
  1430. flex: 0 0 25%;
  1431. max-width: 25%;
  1432. }
  1433. .row-cols-lg-5 > * {
  1434. flex: 0 0 20%;
  1435. max-width: 20%;
  1436. }
  1437. .row-cols-lg-6 > * {
  1438. flex: 0 0 16.6666666667%;
  1439. max-width: 16.6666666667%;
  1440. }
  1441. .col-lg-auto {
  1442. flex: 0 0 auto;
  1443. width: auto;
  1444. max-width: 100%;
  1445. }
  1446. .col-lg-1 {
  1447. flex: 0 0 8.3333333333%;
  1448. max-width: 8.3333333333%;
  1449. }
  1450. .col-lg-2 {
  1451. flex: 0 0 16.6666666667%;
  1452. max-width: 16.6666666667%;
  1453. }
  1454. .col-lg-3 {
  1455. flex: 0 0 25%;
  1456. max-width: 25%;
  1457. }
  1458. .col-lg-4 {
  1459. flex: 0 0 33.3333333333%;
  1460. max-width: 33.3333333333%;
  1461. }
  1462. .col-lg-5 {
  1463. flex: 0 0 41.6666666667%;
  1464. max-width: 41.6666666667%;
  1465. }
  1466. .col-lg-6 {
  1467. flex: 0 0 50%;
  1468. max-width: 50%;
  1469. }
  1470. .col-lg-7 {
  1471. flex: 0 0 58.3333333333%;
  1472. max-width: 58.3333333333%;
  1473. }
  1474. .col-lg-8 {
  1475. flex: 0 0 66.6666666667%;
  1476. max-width: 66.6666666667%;
  1477. }
  1478. .col-lg-9 {
  1479. flex: 0 0 75%;
  1480. max-width: 75%;
  1481. }
  1482. .col-lg-10 {
  1483. flex: 0 0 83.3333333333%;
  1484. max-width: 83.3333333333%;
  1485. }
  1486. .col-lg-11 {
  1487. flex: 0 0 91.6666666667%;
  1488. max-width: 91.6666666667%;
  1489. }
  1490. .col-lg-12 {
  1491. flex: 0 0 100%;
  1492. max-width: 100%;
  1493. }
  1494. .order-lg-first {
  1495. order: -1;
  1496. }
  1497. .order-lg-last {
  1498. order: 13;
  1499. }
  1500. .order-lg-0 {
  1501. order: 0;
  1502. }
  1503. .order-lg-1 {
  1504. order: 1;
  1505. }
  1506. .order-lg-2 {
  1507. order: 2;
  1508. }
  1509. .order-lg-3 {
  1510. order: 3;
  1511. }
  1512. .order-lg-4 {
  1513. order: 4;
  1514. }
  1515. .order-lg-5 {
  1516. order: 5;
  1517. }
  1518. .order-lg-6 {
  1519. order: 6;
  1520. }
  1521. .order-lg-7 {
  1522. order: 7;
  1523. }
  1524. .order-lg-8 {
  1525. order: 8;
  1526. }
  1527. .order-lg-9 {
  1528. order: 9;
  1529. }
  1530. .order-lg-10 {
  1531. order: 10;
  1532. }
  1533. .order-lg-11 {
  1534. order: 11;
  1535. }
  1536. .order-lg-12 {
  1537. order: 12;
  1538. }
  1539. .offset-lg-0 {
  1540. margin-left: 0;
  1541. }
  1542. .offset-lg-1 {
  1543. margin-left: 8.3333333333%;
  1544. }
  1545. .offset-lg-2 {
  1546. margin-left: 16.6666666667%;
  1547. }
  1548. .offset-lg-3 {
  1549. margin-left: 25%;
  1550. }
  1551. .offset-lg-4 {
  1552. margin-left: 33.3333333333%;
  1553. }
  1554. .offset-lg-5 {
  1555. margin-left: 41.6666666667%;
  1556. }
  1557. .offset-lg-6 {
  1558. margin-left: 50%;
  1559. }
  1560. .offset-lg-7 {
  1561. margin-left: 58.3333333333%;
  1562. }
  1563. .offset-lg-8 {
  1564. margin-left: 66.6666666667%;
  1565. }
  1566. .offset-lg-9 {
  1567. margin-left: 75%;
  1568. }
  1569. .offset-lg-10 {
  1570. margin-left: 83.3333333333%;
  1571. }
  1572. .offset-lg-11 {
  1573. margin-left: 91.6666666667%;
  1574. }
  1575. }
  1576. @media (min-width: 1200px) {
  1577. .col-xl {
  1578. flex-basis: 0;
  1579. flex-grow: 1;
  1580. min-width: 0;
  1581. max-width: 100%;
  1582. }
  1583. .row-cols-xl-1 > * {
  1584. flex: 0 0 100%;
  1585. max-width: 100%;
  1586. }
  1587. .row-cols-xl-2 > * {
  1588. flex: 0 0 50%;
  1589. max-width: 50%;
  1590. }
  1591. .row-cols-xl-3 > * {
  1592. flex: 0 0 33.3333333333%;
  1593. max-width: 33.3333333333%;
  1594. }
  1595. .row-cols-xl-4 > * {
  1596. flex: 0 0 25%;
  1597. max-width: 25%;
  1598. }
  1599. .row-cols-xl-5 > * {
  1600. flex: 0 0 20%;
  1601. max-width: 20%;
  1602. }
  1603. .row-cols-xl-6 > * {
  1604. flex: 0 0 16.6666666667%;
  1605. max-width: 16.6666666667%;
  1606. }
  1607. .col-xl-auto {
  1608. flex: 0 0 auto;
  1609. width: auto;
  1610. max-width: 100%;
  1611. }
  1612. .col-xl-1 {
  1613. flex: 0 0 8.3333333333%;
  1614. max-width: 8.3333333333%;
  1615. }
  1616. .col-xl-2 {
  1617. flex: 0 0 16.6666666667%;
  1618. max-width: 16.6666666667%;
  1619. }
  1620. .col-xl-3 {
  1621. flex: 0 0 25%;
  1622. max-width: 25%;
  1623. }
  1624. .col-xl-4 {
  1625. flex: 0 0 33.3333333333%;
  1626. max-width: 33.3333333333%;
  1627. }
  1628. .col-xl-5 {
  1629. flex: 0 0 41.6666666667%;
  1630. max-width: 41.6666666667%;
  1631. }
  1632. .col-xl-6 {
  1633. flex: 0 0 50%;
  1634. max-width: 50%;
  1635. }
  1636. .col-xl-7 {
  1637. flex: 0 0 58.3333333333%;
  1638. max-width: 58.3333333333%;
  1639. }
  1640. .col-xl-8 {
  1641. flex: 0 0 66.6666666667%;
  1642. max-width: 66.6666666667%;
  1643. }
  1644. .col-xl-9 {
  1645. flex: 0 0 75%;
  1646. max-width: 75%;
  1647. }
  1648. .col-xl-10 {
  1649. flex: 0 0 83.3333333333%;
  1650. max-width: 83.3333333333%;
  1651. }
  1652. .col-xl-11 {
  1653. flex: 0 0 91.6666666667%;
  1654. max-width: 91.6666666667%;
  1655. }
  1656. .col-xl-12 {
  1657. flex: 0 0 100%;
  1658. max-width: 100%;
  1659. }
  1660. .order-xl-first {
  1661. order: -1;
  1662. }
  1663. .order-xl-last {
  1664. order: 13;
  1665. }
  1666. .order-xl-0 {
  1667. order: 0;
  1668. }
  1669. .order-xl-1 {
  1670. order: 1;
  1671. }
  1672. .order-xl-2 {
  1673. order: 2;
  1674. }
  1675. .order-xl-3 {
  1676. order: 3;
  1677. }
  1678. .order-xl-4 {
  1679. order: 4;
  1680. }
  1681. .order-xl-5 {
  1682. order: 5;
  1683. }
  1684. .order-xl-6 {
  1685. order: 6;
  1686. }
  1687. .order-xl-7 {
  1688. order: 7;
  1689. }
  1690. .order-xl-8 {
  1691. order: 8;
  1692. }
  1693. .order-xl-9 {
  1694. order: 9;
  1695. }
  1696. .order-xl-10 {
  1697. order: 10;
  1698. }
  1699. .order-xl-11 {
  1700. order: 11;
  1701. }
  1702. .order-xl-12 {
  1703. order: 12;
  1704. }
  1705. .offset-xl-0 {
  1706. margin-left: 0;
  1707. }
  1708. .offset-xl-1 {
  1709. margin-left: 8.3333333333%;
  1710. }
  1711. .offset-xl-2 {
  1712. margin-left: 16.6666666667%;
  1713. }
  1714. .offset-xl-3 {
  1715. margin-left: 25%;
  1716. }
  1717. .offset-xl-4 {
  1718. margin-left: 33.3333333333%;
  1719. }
  1720. .offset-xl-5 {
  1721. margin-left: 41.6666666667%;
  1722. }
  1723. .offset-xl-6 {
  1724. margin-left: 50%;
  1725. }
  1726. .offset-xl-7 {
  1727. margin-left: 58.3333333333%;
  1728. }
  1729. .offset-xl-8 {
  1730. margin-left: 66.6666666667%;
  1731. }
  1732. .offset-xl-9 {
  1733. margin-left: 75%;
  1734. }
  1735. .offset-xl-10 {
  1736. margin-left: 83.3333333333%;
  1737. }
  1738. .offset-xl-11 {
  1739. margin-left: 91.6666666667%;
  1740. }
  1741. }
  1742. .table {
  1743. width: 100%;
  1744. margin-bottom: 1rem;
  1745. color: #212529;
  1746. }
  1747. .table th,
  1748. .table td {
  1749. padding: 0.75rem;
  1750. vertical-align: top;
  1751. border-top: 1px solid #dee2e6;
  1752. }
  1753. .table thead th {
  1754. vertical-align: bottom;
  1755. border-bottom: 2px solid #dee2e6;
  1756. }
  1757. .table tbody + tbody {
  1758. border-top: 2px solid #dee2e6;
  1759. }
  1760. .table-sm th,
  1761. .table-sm td {
  1762. padding: 0.3rem;
  1763. }
  1764. .table-bordered {
  1765. border: 1px solid #dee2e6;
  1766. }
  1767. .table-bordered th,
  1768. .table-bordered td {
  1769. border: 1px solid #dee2e6;
  1770. }
  1771. .table-bordered thead th,
  1772. .table-bordered thead td {
  1773. border-bottom-width: 2px;
  1774. }
  1775. .table-borderless th,
  1776. .table-borderless td,
  1777. .table-borderless thead th,
  1778. .table-borderless tbody + tbody {
  1779. border: 0;
  1780. }
  1781. .table-striped tbody tr:nth-of-type(odd) {
  1782. background-color: rgba(0, 0, 0, 0.05);
  1783. }
  1784. .table-hover tbody tr:hover {
  1785. color: #212529;
  1786. background-color: rgba(0, 0, 0, 0.075);
  1787. }
  1788. .table-primary,
  1789. .table-primary > th,
  1790. .table-primary > td {
  1791. background-color: #c6e0f5;
  1792. }
  1793. .table-primary th,
  1794. .table-primary td,
  1795. .table-primary thead th,
  1796. .table-primary tbody + tbody {
  1797. border-color: #95c5ed;
  1798. }
  1799. .table-hover .table-primary:hover {
  1800. background-color: #b0d4f1;
  1801. }
  1802. .table-hover .table-primary:hover > td,
  1803. .table-hover .table-primary:hover > th {
  1804. background-color: #b0d4f1;
  1805. }
  1806. .table-secondary,
  1807. .table-secondary > th,
  1808. .table-secondary > td {
  1809. background-color: #d6d8db;
  1810. }
  1811. .table-secondary th,
  1812. .table-secondary td,
  1813. .table-secondary thead th,
  1814. .table-secondary tbody + tbody {
  1815. border-color: #b3b7bb;
  1816. }
  1817. .table-hover .table-secondary:hover {
  1818. background-color: #c8cbcf;
  1819. }
  1820. .table-hover .table-secondary:hover > td,
  1821. .table-hover .table-secondary:hover > th {
  1822. background-color: #c8cbcf;
  1823. }
  1824. .table-success,
  1825. .table-success > th,
  1826. .table-success > td {
  1827. background-color: #c7eed8;
  1828. }
  1829. .table-success th,
  1830. .table-success td,
  1831. .table-success thead th,
  1832. .table-success tbody + tbody {
  1833. border-color: #98dfb6;
  1834. }
  1835. .table-hover .table-success:hover {
  1836. background-color: #b3e8ca;
  1837. }
  1838. .table-hover .table-success:hover > td,
  1839. .table-hover .table-success:hover > th {
  1840. background-color: #b3e8ca;
  1841. }
  1842. .table-info,
  1843. .table-info > th,
  1844. .table-info > td {
  1845. background-color: #d6e9f9;
  1846. }
  1847. .table-info th,
  1848. .table-info td,
  1849. .table-info thead th,
  1850. .table-info tbody + tbody {
  1851. border-color: #b3d7f5;
  1852. }
  1853. .table-hover .table-info:hover {
  1854. background-color: #c0ddf6;
  1855. }
  1856. .table-hover .table-info:hover > td,
  1857. .table-hover .table-info:hover > th {
  1858. background-color: #c0ddf6;
  1859. }
  1860. .table-warning,
  1861. .table-warning > th,
  1862. .table-warning > td {
  1863. background-color: #fffacc;
  1864. }
  1865. .table-warning th,
  1866. .table-warning td,
  1867. .table-warning thead th,
  1868. .table-warning tbody + tbody {
  1869. border-color: #fff6a1;
  1870. }
  1871. .table-hover .table-warning:hover {
  1872. background-color: #fff8b3;
  1873. }
  1874. .table-hover .table-warning:hover > td,
  1875. .table-hover .table-warning:hover > th {
  1876. background-color: #fff8b3;
  1877. }
  1878. .table-danger,
  1879. .table-danger > th,
  1880. .table-danger > td {
  1881. background-color: #f7c6c5;
  1882. }
  1883. .table-danger th,
  1884. .table-danger td,
  1885. .table-danger thead th,
  1886. .table-danger tbody + tbody {
  1887. border-color: #f09593;
  1888. }
  1889. .table-hover .table-danger:hover {
  1890. background-color: #f4b0af;
  1891. }
  1892. .table-hover .table-danger:hover > td,
  1893. .table-hover .table-danger:hover > th {
  1894. background-color: #f4b0af;
  1895. }
  1896. .table-light,
  1897. .table-light > th,
  1898. .table-light > td {
  1899. background-color: #fdfdfe;
  1900. }
  1901. .table-light th,
  1902. .table-light td,
  1903. .table-light thead th,
  1904. .table-light tbody + tbody {
  1905. border-color: #fbfcfc;
  1906. }
  1907. .table-hover .table-light:hover {
  1908. background-color: #ececf6;
  1909. }
  1910. .table-hover .table-light:hover > td,
  1911. .table-hover .table-light:hover > th {
  1912. background-color: #ececf6;
  1913. }
  1914. .table-dark,
  1915. .table-dark > th,
  1916. .table-dark > td {
  1917. background-color: #c6c8ca;
  1918. }
  1919. .table-dark th,
  1920. .table-dark td,
  1921. .table-dark thead th,
  1922. .table-dark tbody + tbody {
  1923. border-color: #95999c;
  1924. }
  1925. .table-hover .table-dark:hover {
  1926. background-color: #b9bbbe;
  1927. }
  1928. .table-hover .table-dark:hover > td,
  1929. .table-hover .table-dark:hover > th {
  1930. background-color: #b9bbbe;
  1931. }
  1932. .table-active,
  1933. .table-active > th,
  1934. .table-active > td {
  1935. background-color: rgba(0, 0, 0, 0.075);
  1936. }
  1937. .table-hover .table-active:hover {
  1938. background-color: rgba(0, 0, 0, 0.075);
  1939. }
  1940. .table-hover .table-active:hover > td,
  1941. .table-hover .table-active:hover > th {
  1942. background-color: rgba(0, 0, 0, 0.075);
  1943. }
  1944. .table .thead-dark th {
  1945. color: #fff;
  1946. background-color: #343a40;
  1947. border-color: #454d55;
  1948. }
  1949. .table .thead-light th {
  1950. color: #495057;
  1951. background-color: #e9ecef;
  1952. border-color: #dee2e6;
  1953. }
  1954. .table-dark {
  1955. color: #fff;
  1956. background-color: #343a40;
  1957. }
  1958. .table-dark th,
  1959. .table-dark td,
  1960. .table-dark thead th {
  1961. border-color: #454d55;
  1962. }
  1963. .table-dark.table-bordered {
  1964. border: 0;
  1965. }
  1966. .table-dark.table-striped tbody tr:nth-of-type(odd) {
  1967. background-color: rgba(255, 255, 255, 0.05);
  1968. }
  1969. .table-dark.table-hover tbody tr:hover {
  1970. color: #fff;
  1971. background-color: rgba(255, 255, 255, 0.075);
  1972. }
  1973. @media (max-width: 575.98px) {
  1974. .table-responsive-sm {
  1975. display: block;
  1976. width: 100%;
  1977. overflow-x: auto;
  1978. -webkit-overflow-scrolling: touch;
  1979. }
  1980. .table-responsive-sm > .table-bordered {
  1981. border: 0;
  1982. }
  1983. }
  1984. @media (max-width: 767.98px) {
  1985. .table-responsive-md {
  1986. display: block;
  1987. width: 100%;
  1988. overflow-x: auto;
  1989. -webkit-overflow-scrolling: touch;
  1990. }
  1991. .table-responsive-md > .table-bordered {
  1992. border: 0;
  1993. }
  1994. }
  1995. @media (max-width: 991.98px) {
  1996. .table-responsive-lg {
  1997. display: block;
  1998. width: 100%;
  1999. overflow-x: auto;
  2000. -webkit-overflow-scrolling: touch;
  2001. }
  2002. .table-responsive-lg > .table-bordered {
  2003. border: 0;
  2004. }
  2005. }
  2006. @media (max-width: 1199.98px) {
  2007. .table-responsive-xl {
  2008. display: block;
  2009. width: 100%;
  2010. overflow-x: auto;
  2011. -webkit-overflow-scrolling: touch;
  2012. }
  2013. .table-responsive-xl > .table-bordered {
  2014. border: 0;
  2015. }
  2016. }
  2017. .table-responsive {
  2018. display: block;
  2019. width: 100%;
  2020. overflow-x: auto;
  2021. -webkit-overflow-scrolling: touch;
  2022. }
  2023. .table-responsive > .table-bordered {
  2024. border: 0;
  2025. }
  2026. .form-control {
  2027. display: block;
  2028. width: 100%;
  2029. height: calc(1.6em + 0.75rem + 2px);
  2030. padding: 0.375rem 0.75rem;
  2031. font-size: 0.9rem;
  2032. font-weight: 400;
  2033. line-height: 1.6;
  2034. color: #495057;
  2035. background-color: #fff;
  2036. background-clip: padding-box;
  2037. border: 1px solid #ced4da;
  2038. border-radius: 0.25rem;
  2039. transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  2040. }
  2041. @media (prefers-reduced-motion: reduce) {
  2042. .form-control {
  2043. transition: none;
  2044. }
  2045. }
  2046. .form-control::-ms-expand {
  2047. background-color: transparent;
  2048. border: 0;
  2049. }
  2050. .form-control:-moz-focusring {
  2051. color: transparent;
  2052. text-shadow: 0 0 0 #495057;
  2053. }
  2054. .form-control:focus {
  2055. color: #495057;
  2056. background-color: #fff;
  2057. border-color: #a1cbef;
  2058. outline: 0;
  2059. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  2060. }
  2061. .form-control::-moz-placeholder {
  2062. color: #6c757d;
  2063. opacity: 1;
  2064. }
  2065. .form-control:-ms-input-placeholder {
  2066. color: #6c757d;
  2067. opacity: 1;
  2068. }
  2069. .form-control::-ms-input-placeholder {
  2070. color: #6c757d;
  2071. opacity: 1;
  2072. }
  2073. .form-control::placeholder {
  2074. color: #6c757d;
  2075. opacity: 1;
  2076. }
  2077. .form-control:disabled,
  2078. .form-control[readonly] {
  2079. background-color: #e9ecef;
  2080. opacity: 1;
  2081. }
  2082. input[type=date].form-control,
  2083. input[type=time].form-control,
  2084. input[type=datetime-local].form-control,
  2085. input[type=month].form-control {
  2086. -webkit-appearance: none;
  2087. -moz-appearance: none;
  2088. appearance: none;
  2089. }
  2090. select.form-control:focus::-ms-value {
  2091. color: #495057;
  2092. background-color: #fff;
  2093. }
  2094. .form-control-file,
  2095. .form-control-range {
  2096. display: block;
  2097. width: 100%;
  2098. }
  2099. .col-form-label {
  2100. padding-top: calc(0.375rem + 1px);
  2101. padding-bottom: calc(0.375rem + 1px);
  2102. margin-bottom: 0;
  2103. font-size: inherit;
  2104. line-height: 1.6;
  2105. }
  2106. .col-form-label-lg {
  2107. padding-top: calc(0.5rem + 1px);
  2108. padding-bottom: calc(0.5rem + 1px);
  2109. font-size: 1.125rem;
  2110. line-height: 1.5;
  2111. }
  2112. .col-form-label-sm {
  2113. padding-top: calc(0.25rem + 1px);
  2114. padding-bottom: calc(0.25rem + 1px);
  2115. font-size: 0.7875rem;
  2116. line-height: 1.5;
  2117. }
  2118. .form-control-plaintext {
  2119. display: block;
  2120. width: 100%;
  2121. padding: 0.375rem 0;
  2122. margin-bottom: 0;
  2123. font-size: 0.9rem;
  2124. line-height: 1.6;
  2125. color: #212529;
  2126. background-color: transparent;
  2127. border: solid transparent;
  2128. border-width: 1px 0;
  2129. }
  2130. .form-control-plaintext.form-control-sm,
  2131. .form-control-plaintext.form-control-lg {
  2132. padding-right: 0;
  2133. padding-left: 0;
  2134. }
  2135. .form-control-sm {
  2136. height: calc(1.5em + 0.5rem + 2px);
  2137. padding: 0.25rem 0.5rem;
  2138. font-size: 0.7875rem;
  2139. line-height: 1.5;
  2140. border-radius: 0.2rem;
  2141. }
  2142. .form-control-lg {
  2143. height: calc(1.5em + 1rem + 2px);
  2144. padding: 0.5rem 1rem;
  2145. font-size: 1.125rem;
  2146. line-height: 1.5;
  2147. border-radius: 0.3rem;
  2148. }
  2149. select.form-control[size],
  2150. select.form-control[multiple] {
  2151. height: auto;
  2152. }
  2153. textarea.form-control {
  2154. height: auto;
  2155. }
  2156. .form-group {
  2157. margin-bottom: 1rem;
  2158. }
  2159. .form-text {
  2160. display: block;
  2161. margin-top: 0.25rem;
  2162. }
  2163. .form-row {
  2164. display: flex;
  2165. flex-wrap: wrap;
  2166. margin-right: -5px;
  2167. margin-left: -5px;
  2168. }
  2169. .form-row > .col,
  2170. .form-row > [class*=col-] {
  2171. padding-right: 5px;
  2172. padding-left: 5px;
  2173. }
  2174. .form-check {
  2175. position: relative;
  2176. display: block;
  2177. padding-left: 1.25rem;
  2178. }
  2179. .form-check-input {
  2180. position: absolute;
  2181. margin-top: 0.3rem;
  2182. margin-left: -1.25rem;
  2183. }
  2184. .form-check-input[disabled] ~ .form-check-label,
  2185. .form-check-input:disabled ~ .form-check-label {
  2186. color: #6c757d;
  2187. }
  2188. .form-check-label {
  2189. margin-bottom: 0;
  2190. }
  2191. .form-check-inline {
  2192. display: inline-flex;
  2193. align-items: center;
  2194. padding-left: 0;
  2195. margin-right: 0.75rem;
  2196. }
  2197. .form-check-inline .form-check-input {
  2198. position: static;
  2199. margin-top: 0;
  2200. margin-right: 0.3125rem;
  2201. margin-left: 0;
  2202. }
  2203. .valid-feedback {
  2204. display: none;
  2205. width: 100%;
  2206. margin-top: 0.25rem;
  2207. font-size: 80%;
  2208. color: #38c172;
  2209. }
  2210. .valid-tooltip {
  2211. position: absolute;
  2212. top: 100%;
  2213. z-index: 5;
  2214. display: none;
  2215. max-width: 100%;
  2216. padding: 0.25rem 0.5rem;
  2217. margin-top: 0.1rem;
  2218. font-size: 0.7875rem;
  2219. line-height: 1.6;
  2220. color: #fff;
  2221. background-color: rgba(56, 193, 114, 0.9);
  2222. border-radius: 0.25rem;
  2223. }
  2224. .was-validated :valid ~ .valid-feedback,
  2225. .was-validated :valid ~ .valid-tooltip,
  2226. .is-valid ~ .valid-feedback,
  2227. .is-valid ~ .valid-tooltip {
  2228. display: block;
  2229. }
  2230. .was-validated .form-control:valid,
  2231. .form-control.is-valid {
  2232. border-color: #38c172;
  2233. padding-right: calc(1.6em + 0.75rem);
  2234. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2338c172' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  2235. background-repeat: no-repeat;
  2236. background-position: right calc(0.4em + 0.1875rem) center;
  2237. background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  2238. }
  2239. .was-validated .form-control:valid:focus,
  2240. .form-control.is-valid:focus {
  2241. border-color: #38c172;
  2242. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  2243. }
  2244. .was-validated textarea.form-control:valid,
  2245. textarea.form-control.is-valid {
  2246. padding-right: calc(1.6em + 0.75rem);
  2247. background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
  2248. }
  2249. .was-validated .custom-select:valid,
  2250. .custom-select.is-valid {
  2251. border-color: #38c172;
  2252. padding-right: calc(0.75em + 2.3125rem);
  2253. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2338c172' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  2254. }
  2255. .was-validated .custom-select:valid:focus,
  2256. .custom-select.is-valid:focus {
  2257. border-color: #38c172;
  2258. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  2259. }
  2260. .was-validated .form-check-input:valid ~ .form-check-label,
  2261. .form-check-input.is-valid ~ .form-check-label {
  2262. color: #38c172;
  2263. }
  2264. .was-validated .form-check-input:valid ~ .valid-feedback,
  2265. .was-validated .form-check-input:valid ~ .valid-tooltip,
  2266. .form-check-input.is-valid ~ .valid-feedback,
  2267. .form-check-input.is-valid ~ .valid-tooltip {
  2268. display: block;
  2269. }
  2270. .was-validated .custom-control-input:valid ~ .custom-control-label,
  2271. .custom-control-input.is-valid ~ .custom-control-label {
  2272. color: #38c172;
  2273. }
  2274. .was-validated .custom-control-input:valid ~ .custom-control-label::before,
  2275. .custom-control-input.is-valid ~ .custom-control-label::before {
  2276. border-color: #38c172;
  2277. }
  2278. .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before,
  2279. .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  2280. border-color: #5cd08d;
  2281. background-color: #5cd08d;
  2282. }
  2283. .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before,
  2284. .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  2285. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  2286. }
  2287. .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
  2288. .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  2289. border-color: #38c172;
  2290. }
  2291. .was-validated .custom-file-input:valid ~ .custom-file-label,
  2292. .custom-file-input.is-valid ~ .custom-file-label {
  2293. border-color: #38c172;
  2294. }
  2295. .was-validated .custom-file-input:valid:focus ~ .custom-file-label,
  2296. .custom-file-input.is-valid:focus ~ .custom-file-label {
  2297. border-color: #38c172;
  2298. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.25);
  2299. }
  2300. .invalid-feedback {
  2301. display: none;
  2302. width: 100%;
  2303. margin-top: 0.25rem;
  2304. font-size: 80%;
  2305. color: #e3342f;
  2306. }
  2307. .invalid-tooltip {
  2308. position: absolute;
  2309. top: 100%;
  2310. z-index: 5;
  2311. display: none;
  2312. max-width: 100%;
  2313. padding: 0.25rem 0.5rem;
  2314. margin-top: 0.1rem;
  2315. font-size: 0.7875rem;
  2316. line-height: 1.6;
  2317. color: #fff;
  2318. background-color: rgba(227, 52, 47, 0.9);
  2319. border-radius: 0.25rem;
  2320. }
  2321. .was-validated :invalid ~ .invalid-feedback,
  2322. .was-validated :invalid ~ .invalid-tooltip,
  2323. .is-invalid ~ .invalid-feedback,
  2324. .is-invalid ~ .invalid-tooltip {
  2325. display: block;
  2326. }
  2327. .was-validated .form-control:invalid,
  2328. .form-control.is-invalid {
  2329. border-color: #e3342f;
  2330. padding-right: calc(1.6em + 0.75rem);
  2331. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3e%3c/svg%3e");
  2332. background-repeat: no-repeat;
  2333. background-position: right calc(0.4em + 0.1875rem) center;
  2334. background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  2335. }
  2336. .was-validated .form-control:invalid:focus,
  2337. .form-control.is-invalid:focus {
  2338. border-color: #e3342f;
  2339. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2340. }
  2341. .was-validated textarea.form-control:invalid,
  2342. textarea.form-control.is-invalid {
  2343. padding-right: calc(1.6em + 0.75rem);
  2344. background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem);
  2345. }
  2346. .was-validated .custom-select:invalid,
  2347. .custom-select.is-invalid {
  2348. border-color: #e3342f;
  2349. padding-right: calc(0.75em + 2.3125rem);
  2350. background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e3342f' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e3342f' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.8em + 0.375rem) calc(0.8em + 0.375rem);
  2351. }
  2352. .was-validated .custom-select:invalid:focus,
  2353. .custom-select.is-invalid:focus {
  2354. border-color: #e3342f;
  2355. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2356. }
  2357. .was-validated .form-check-input:invalid ~ .form-check-label,
  2358. .form-check-input.is-invalid ~ .form-check-label {
  2359. color: #e3342f;
  2360. }
  2361. .was-validated .form-check-input:invalid ~ .invalid-feedback,
  2362. .was-validated .form-check-input:invalid ~ .invalid-tooltip,
  2363. .form-check-input.is-invalid ~ .invalid-feedback,
  2364. .form-check-input.is-invalid ~ .invalid-tooltip {
  2365. display: block;
  2366. }
  2367. .was-validated .custom-control-input:invalid ~ .custom-control-label,
  2368. .custom-control-input.is-invalid ~ .custom-control-label {
  2369. color: #e3342f;
  2370. }
  2371. .was-validated .custom-control-input:invalid ~ .custom-control-label::before,
  2372. .custom-control-input.is-invalid ~ .custom-control-label::before {
  2373. border-color: #e3342f;
  2374. }
  2375. .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before,
  2376. .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  2377. border-color: #e9605c;
  2378. background-color: #e9605c;
  2379. }
  2380. .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before,
  2381. .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  2382. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2383. }
  2384. .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
  2385. .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  2386. border-color: #e3342f;
  2387. }
  2388. .was-validated .custom-file-input:invalid ~ .custom-file-label,
  2389. .custom-file-input.is-invalid ~ .custom-file-label {
  2390. border-color: #e3342f;
  2391. }
  2392. .was-validated .custom-file-input:invalid:focus ~ .custom-file-label,
  2393. .custom-file-input.is-invalid:focus ~ .custom-file-label {
  2394. border-color: #e3342f;
  2395. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.25);
  2396. }
  2397. .form-inline {
  2398. display: flex;
  2399. flex-flow: row wrap;
  2400. align-items: center;
  2401. }
  2402. .form-inline .form-check {
  2403. width: 100%;
  2404. }
  2405. @media (min-width: 576px) {
  2406. .form-inline label {
  2407. display: flex;
  2408. align-items: center;
  2409. justify-content: center;
  2410. margin-bottom: 0;
  2411. }
  2412. .form-inline .form-group {
  2413. display: flex;
  2414. flex: 0 0 auto;
  2415. flex-flow: row wrap;
  2416. align-items: center;
  2417. margin-bottom: 0;
  2418. }
  2419. .form-inline .form-control {
  2420. display: inline-block;
  2421. width: auto;
  2422. vertical-align: middle;
  2423. }
  2424. .form-inline .form-control-plaintext {
  2425. display: inline-block;
  2426. }
  2427. .form-inline .input-group,
  2428. .form-inline .custom-select {
  2429. width: auto;
  2430. }
  2431. .form-inline .form-check {
  2432. display: flex;
  2433. align-items: center;
  2434. justify-content: center;
  2435. width: auto;
  2436. padding-left: 0;
  2437. }
  2438. .form-inline .form-check-input {
  2439. position: relative;
  2440. flex-shrink: 0;
  2441. margin-top: 0;
  2442. margin-right: 0.25rem;
  2443. margin-left: 0;
  2444. }
  2445. .form-inline .custom-control {
  2446. align-items: center;
  2447. justify-content: center;
  2448. }
  2449. .form-inline .custom-control-label {
  2450. margin-bottom: 0;
  2451. }
  2452. }
  2453. .btn {
  2454. display: inline-block;
  2455. font-weight: 400;
  2456. color: #212529;
  2457. text-align: center;
  2458. vertical-align: middle;
  2459. -webkit-user-select: none;
  2460. -moz-user-select: none;
  2461. -ms-user-select: none;
  2462. user-select: none;
  2463. background-color: transparent;
  2464. border: 1px solid transparent;
  2465. padding: 0.375rem 0.75rem;
  2466. font-size: 0.9rem;
  2467. line-height: 1.6;
  2468. border-radius: 0.25rem;
  2469. 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;
  2470. }
  2471. @media (prefers-reduced-motion: reduce) {
  2472. .btn {
  2473. transition: none;
  2474. }
  2475. }
  2476. .btn:hover {
  2477. color: #212529;
  2478. text-decoration: none;
  2479. }
  2480. .btn:focus,
  2481. .btn.focus {
  2482. outline: 0;
  2483. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  2484. }
  2485. .btn.disabled,
  2486. .btn:disabled {
  2487. opacity: 0.65;
  2488. }
  2489. .btn:not(:disabled):not(.disabled) {
  2490. cursor: pointer;
  2491. }
  2492. a.btn.disabled,
  2493. fieldset:disabled a.btn {
  2494. pointer-events: none;
  2495. }
  2496. .btn-primary {
  2497. color: #fff;
  2498. background-color: #3490dc;
  2499. border-color: #3490dc;
  2500. }
  2501. .btn-primary:hover {
  2502. color: #fff;
  2503. background-color: #227dc7;
  2504. border-color: #2176bd;
  2505. }
  2506. .btn-primary:focus,
  2507. .btn-primary.focus {
  2508. color: #fff;
  2509. background-color: #227dc7;
  2510. border-color: #2176bd;
  2511. box-shadow: 0 0 0 0.2rem rgba(82, 161, 225, 0.5);
  2512. }
  2513. .btn-primary.disabled,
  2514. .btn-primary:disabled {
  2515. color: #fff;
  2516. background-color: #3490dc;
  2517. border-color: #3490dc;
  2518. }
  2519. .btn-primary:not(:disabled):not(.disabled):active,
  2520. .btn-primary:not(:disabled):not(.disabled).active,
  2521. .show > .btn-primary.dropdown-toggle {
  2522. color: #fff;
  2523. background-color: #2176bd;
  2524. border-color: #1f6fb2;
  2525. }
  2526. .btn-primary:not(:disabled):not(.disabled):active:focus,
  2527. .btn-primary:not(:disabled):not(.disabled).active:focus,
  2528. .show > .btn-primary.dropdown-toggle:focus {
  2529. box-shadow: 0 0 0 0.2rem rgba(82, 161, 225, 0.5);
  2530. }
  2531. .btn-secondary {
  2532. color: #fff;
  2533. background-color: #6c757d;
  2534. border-color: #6c757d;
  2535. }
  2536. .btn-secondary:hover {
  2537. color: #fff;
  2538. background-color: #5a6268;
  2539. border-color: #545b62;
  2540. }
  2541. .btn-secondary:focus,
  2542. .btn-secondary.focus {
  2543. color: #fff;
  2544. background-color: #5a6268;
  2545. border-color: #545b62;
  2546. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  2547. }
  2548. .btn-secondary.disabled,
  2549. .btn-secondary:disabled {
  2550. color: #fff;
  2551. background-color: #6c757d;
  2552. border-color: #6c757d;
  2553. }
  2554. .btn-secondary:not(:disabled):not(.disabled):active,
  2555. .btn-secondary:not(:disabled):not(.disabled).active,
  2556. .show > .btn-secondary.dropdown-toggle {
  2557. color: #fff;
  2558. background-color: #545b62;
  2559. border-color: #4e555b;
  2560. }
  2561. .btn-secondary:not(:disabled):not(.disabled):active:focus,
  2562. .btn-secondary:not(:disabled):not(.disabled).active:focus,
  2563. .show > .btn-secondary.dropdown-toggle:focus {
  2564. box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
  2565. }
  2566. .btn-success {
  2567. color: #fff;
  2568. background-color: #38c172;
  2569. border-color: #38c172;
  2570. }
  2571. .btn-success:hover {
  2572. color: #fff;
  2573. background-color: #2fa360;
  2574. border-color: #2d995b;
  2575. }
  2576. .btn-success:focus,
  2577. .btn-success.focus {
  2578. color: #fff;
  2579. background-color: #2fa360;
  2580. border-color: #2d995b;
  2581. box-shadow: 0 0 0 0.2rem rgba(86, 202, 135, 0.5);
  2582. }
  2583. .btn-success.disabled,
  2584. .btn-success:disabled {
  2585. color: #fff;
  2586. background-color: #38c172;
  2587. border-color: #38c172;
  2588. }
  2589. .btn-success:not(:disabled):not(.disabled):active,
  2590. .btn-success:not(:disabled):not(.disabled).active,
  2591. .show > .btn-success.dropdown-toggle {
  2592. color: #fff;
  2593. background-color: #2d995b;
  2594. border-color: #2a9055;
  2595. }
  2596. .btn-success:not(:disabled):not(.disabled):active:focus,
  2597. .btn-success:not(:disabled):not(.disabled).active:focus,
  2598. .show > .btn-success.dropdown-toggle:focus {
  2599. box-shadow: 0 0 0 0.2rem rgba(86, 202, 135, 0.5);
  2600. }
  2601. .btn-info {
  2602. color: #212529;
  2603. background-color: #6cb2eb;
  2604. border-color: #6cb2eb;
  2605. }
  2606. .btn-info:hover {
  2607. color: #fff;
  2608. background-color: #4aa0e6;
  2609. border-color: #3f9ae5;
  2610. }
  2611. .btn-info:focus,
  2612. .btn-info.focus {
  2613. color: #fff;
  2614. background-color: #4aa0e6;
  2615. border-color: #3f9ae5;
  2616. box-shadow: 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
  2617. }
  2618. .btn-info.disabled,
  2619. .btn-info:disabled {
  2620. color: #212529;
  2621. background-color: #6cb2eb;
  2622. border-color: #6cb2eb;
  2623. }
  2624. .btn-info:not(:disabled):not(.disabled):active,
  2625. .btn-info:not(:disabled):not(.disabled).active,
  2626. .show > .btn-info.dropdown-toggle {
  2627. color: #fff;
  2628. background-color: #3f9ae5;
  2629. border-color: #3495e3;
  2630. }
  2631. .btn-info:not(:disabled):not(.disabled):active:focus,
  2632. .btn-info:not(:disabled):not(.disabled).active:focus,
  2633. .show > .btn-info.dropdown-toggle:focus {
  2634. box-shadow: 0 0 0 0.2rem rgba(97, 157, 206, 0.5);
  2635. }
  2636. .btn-warning {
  2637. color: #212529;
  2638. background-color: #ffed4a;
  2639. border-color: #ffed4a;
  2640. }
  2641. .btn-warning:hover {
  2642. color: #212529;
  2643. background-color: #ffe924;
  2644. border-color: #ffe817;
  2645. }
  2646. .btn-warning:focus,
  2647. .btn-warning.focus {
  2648. color: #212529;
  2649. background-color: #ffe924;
  2650. border-color: #ffe817;
  2651. box-shadow: 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
  2652. }
  2653. .btn-warning.disabled,
  2654. .btn-warning:disabled {
  2655. color: #212529;
  2656. background-color: #ffed4a;
  2657. border-color: #ffed4a;
  2658. }
  2659. .btn-warning:not(:disabled):not(.disabled):active,
  2660. .btn-warning:not(:disabled):not(.disabled).active,
  2661. .show > .btn-warning.dropdown-toggle {
  2662. color: #212529;
  2663. background-color: #ffe817;
  2664. border-color: #ffe70a;
  2665. }
  2666. .btn-warning:not(:disabled):not(.disabled):active:focus,
  2667. .btn-warning:not(:disabled):not(.disabled).active:focus,
  2668. .show > .btn-warning.dropdown-toggle:focus {
  2669. box-shadow: 0 0 0 0.2rem rgba(222, 207, 69, 0.5);
  2670. }
  2671. .btn-danger {
  2672. color: #fff;
  2673. background-color: #e3342f;
  2674. border-color: #e3342f;
  2675. }
  2676. .btn-danger:hover {
  2677. color: #fff;
  2678. background-color: #d0211c;
  2679. border-color: #c51f1a;
  2680. }
  2681. .btn-danger:focus,
  2682. .btn-danger.focus {
  2683. color: #fff;
  2684. background-color: #d0211c;
  2685. border-color: #c51f1a;
  2686. box-shadow: 0 0 0 0.2rem rgba(231, 82, 78, 0.5);
  2687. }
  2688. .btn-danger.disabled,
  2689. .btn-danger:disabled {
  2690. color: #fff;
  2691. background-color: #e3342f;
  2692. border-color: #e3342f;
  2693. }
  2694. .btn-danger:not(:disabled):not(.disabled):active,
  2695. .btn-danger:not(:disabled):not(.disabled).active,
  2696. .show > .btn-danger.dropdown-toggle {
  2697. color: #fff;
  2698. background-color: #c51f1a;
  2699. border-color: #b91d19;
  2700. }
  2701. .btn-danger:not(:disabled):not(.disabled):active:focus,
  2702. .btn-danger:not(:disabled):not(.disabled).active:focus,
  2703. .show > .btn-danger.dropdown-toggle:focus {
  2704. box-shadow: 0 0 0 0.2rem rgba(231, 82, 78, 0.5);
  2705. }
  2706. .btn-light {
  2707. color: #212529;
  2708. background-color: #f8f9fa;
  2709. border-color: #f8f9fa;
  2710. }
  2711. .btn-light:hover {
  2712. color: #212529;
  2713. background-color: #e2e6ea;
  2714. border-color: #dae0e5;
  2715. }
  2716. .btn-light:focus,
  2717. .btn-light.focus {
  2718. color: #212529;
  2719. background-color: #e2e6ea;
  2720. border-color: #dae0e5;
  2721. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  2722. }
  2723. .btn-light.disabled,
  2724. .btn-light:disabled {
  2725. color: #212529;
  2726. background-color: #f8f9fa;
  2727. border-color: #f8f9fa;
  2728. }
  2729. .btn-light:not(:disabled):not(.disabled):active,
  2730. .btn-light:not(:disabled):not(.disabled).active,
  2731. .show > .btn-light.dropdown-toggle {
  2732. color: #212529;
  2733. background-color: #dae0e5;
  2734. border-color: #d3d9df;
  2735. }
  2736. .btn-light:not(:disabled):not(.disabled):active:focus,
  2737. .btn-light:not(:disabled):not(.disabled).active:focus,
  2738. .show > .btn-light.dropdown-toggle:focus {
  2739. box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
  2740. }
  2741. .btn-dark {
  2742. color: #fff;
  2743. background-color: #343a40;
  2744. border-color: #343a40;
  2745. }
  2746. .btn-dark:hover {
  2747. color: #fff;
  2748. background-color: #23272b;
  2749. border-color: #1d2124;
  2750. }
  2751. .btn-dark:focus,
  2752. .btn-dark.focus {
  2753. color: #fff;
  2754. background-color: #23272b;
  2755. border-color: #1d2124;
  2756. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  2757. }
  2758. .btn-dark.disabled,
  2759. .btn-dark:disabled {
  2760. color: #fff;
  2761. background-color: #343a40;
  2762. border-color: #343a40;
  2763. }
  2764. .btn-dark:not(:disabled):not(.disabled):active,
  2765. .btn-dark:not(:disabled):not(.disabled).active,
  2766. .show > .btn-dark.dropdown-toggle {
  2767. color: #fff;
  2768. background-color: #1d2124;
  2769. border-color: #171a1d;
  2770. }
  2771. .btn-dark:not(:disabled):not(.disabled):active:focus,
  2772. .btn-dark:not(:disabled):not(.disabled).active:focus,
  2773. .show > .btn-dark.dropdown-toggle:focus {
  2774. box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
  2775. }
  2776. .btn-outline-primary {
  2777. color: #3490dc;
  2778. border-color: #3490dc;
  2779. }
  2780. .btn-outline-primary:hover {
  2781. color: #fff;
  2782. background-color: #3490dc;
  2783. border-color: #3490dc;
  2784. }
  2785. .btn-outline-primary:focus,
  2786. .btn-outline-primary.focus {
  2787. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  2788. }
  2789. .btn-outline-primary.disabled,
  2790. .btn-outline-primary:disabled {
  2791. color: #3490dc;
  2792. background-color: transparent;
  2793. }
  2794. .btn-outline-primary:not(:disabled):not(.disabled):active,
  2795. .btn-outline-primary:not(:disabled):not(.disabled).active,
  2796. .show > .btn-outline-primary.dropdown-toggle {
  2797. color: #fff;
  2798. background-color: #3490dc;
  2799. border-color: #3490dc;
  2800. }
  2801. .btn-outline-primary:not(:disabled):not(.disabled):active:focus,
  2802. .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
  2803. .show > .btn-outline-primary.dropdown-toggle:focus {
  2804. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  2805. }
  2806. .btn-outline-secondary {
  2807. color: #6c757d;
  2808. border-color: #6c757d;
  2809. }
  2810. .btn-outline-secondary:hover {
  2811. color: #fff;
  2812. background-color: #6c757d;
  2813. border-color: #6c757d;
  2814. }
  2815. .btn-outline-secondary:focus,
  2816. .btn-outline-secondary.focus {
  2817. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2818. }
  2819. .btn-outline-secondary.disabled,
  2820. .btn-outline-secondary:disabled {
  2821. color: #6c757d;
  2822. background-color: transparent;
  2823. }
  2824. .btn-outline-secondary:not(:disabled):not(.disabled):active,
  2825. .btn-outline-secondary:not(:disabled):not(.disabled).active,
  2826. .show > .btn-outline-secondary.dropdown-toggle {
  2827. color: #fff;
  2828. background-color: #6c757d;
  2829. border-color: #6c757d;
  2830. }
  2831. .btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
  2832. .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
  2833. .show > .btn-outline-secondary.dropdown-toggle:focus {
  2834. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  2835. }
  2836. .btn-outline-success {
  2837. color: #38c172;
  2838. border-color: #38c172;
  2839. }
  2840. .btn-outline-success:hover {
  2841. color: #fff;
  2842. background-color: #38c172;
  2843. border-color: #38c172;
  2844. }
  2845. .btn-outline-success:focus,
  2846. .btn-outline-success.focus {
  2847. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  2848. }
  2849. .btn-outline-success.disabled,
  2850. .btn-outline-success:disabled {
  2851. color: #38c172;
  2852. background-color: transparent;
  2853. }
  2854. .btn-outline-success:not(:disabled):not(.disabled):active,
  2855. .btn-outline-success:not(:disabled):not(.disabled).active,
  2856. .show > .btn-outline-success.dropdown-toggle {
  2857. color: #fff;
  2858. background-color: #38c172;
  2859. border-color: #38c172;
  2860. }
  2861. .btn-outline-success:not(:disabled):not(.disabled):active:focus,
  2862. .btn-outline-success:not(:disabled):not(.disabled).active:focus,
  2863. .show > .btn-outline-success.dropdown-toggle:focus {
  2864. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  2865. }
  2866. .btn-outline-info {
  2867. color: #6cb2eb;
  2868. border-color: #6cb2eb;
  2869. }
  2870. .btn-outline-info:hover {
  2871. color: #212529;
  2872. background-color: #6cb2eb;
  2873. border-color: #6cb2eb;
  2874. }
  2875. .btn-outline-info:focus,
  2876. .btn-outline-info.focus {
  2877. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  2878. }
  2879. .btn-outline-info.disabled,
  2880. .btn-outline-info:disabled {
  2881. color: #6cb2eb;
  2882. background-color: transparent;
  2883. }
  2884. .btn-outline-info:not(:disabled):not(.disabled):active,
  2885. .btn-outline-info:not(:disabled):not(.disabled).active,
  2886. .show > .btn-outline-info.dropdown-toggle {
  2887. color: #212529;
  2888. background-color: #6cb2eb;
  2889. border-color: #6cb2eb;
  2890. }
  2891. .btn-outline-info:not(:disabled):not(.disabled):active:focus,
  2892. .btn-outline-info:not(:disabled):not(.disabled).active:focus,
  2893. .show > .btn-outline-info.dropdown-toggle:focus {
  2894. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  2895. }
  2896. .btn-outline-warning {
  2897. color: #ffed4a;
  2898. border-color: #ffed4a;
  2899. }
  2900. .btn-outline-warning:hover {
  2901. color: #212529;
  2902. background-color: #ffed4a;
  2903. border-color: #ffed4a;
  2904. }
  2905. .btn-outline-warning:focus,
  2906. .btn-outline-warning.focus {
  2907. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  2908. }
  2909. .btn-outline-warning.disabled,
  2910. .btn-outline-warning:disabled {
  2911. color: #ffed4a;
  2912. background-color: transparent;
  2913. }
  2914. .btn-outline-warning:not(:disabled):not(.disabled):active,
  2915. .btn-outline-warning:not(:disabled):not(.disabled).active,
  2916. .show > .btn-outline-warning.dropdown-toggle {
  2917. color: #212529;
  2918. background-color: #ffed4a;
  2919. border-color: #ffed4a;
  2920. }
  2921. .btn-outline-warning:not(:disabled):not(.disabled):active:focus,
  2922. .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
  2923. .show > .btn-outline-warning.dropdown-toggle:focus {
  2924. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  2925. }
  2926. .btn-outline-danger {
  2927. color: #e3342f;
  2928. border-color: #e3342f;
  2929. }
  2930. .btn-outline-danger:hover {
  2931. color: #fff;
  2932. background-color: #e3342f;
  2933. border-color: #e3342f;
  2934. }
  2935. .btn-outline-danger:focus,
  2936. .btn-outline-danger.focus {
  2937. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  2938. }
  2939. .btn-outline-danger.disabled,
  2940. .btn-outline-danger:disabled {
  2941. color: #e3342f;
  2942. background-color: transparent;
  2943. }
  2944. .btn-outline-danger:not(:disabled):not(.disabled):active,
  2945. .btn-outline-danger:not(:disabled):not(.disabled).active,
  2946. .show > .btn-outline-danger.dropdown-toggle {
  2947. color: #fff;
  2948. background-color: #e3342f;
  2949. border-color: #e3342f;
  2950. }
  2951. .btn-outline-danger:not(:disabled):not(.disabled):active:focus,
  2952. .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
  2953. .show > .btn-outline-danger.dropdown-toggle:focus {
  2954. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  2955. }
  2956. .btn-outline-light {
  2957. color: #f8f9fa;
  2958. border-color: #f8f9fa;
  2959. }
  2960. .btn-outline-light:hover {
  2961. color: #212529;
  2962. background-color: #f8f9fa;
  2963. border-color: #f8f9fa;
  2964. }
  2965. .btn-outline-light:focus,
  2966. .btn-outline-light.focus {
  2967. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2968. }
  2969. .btn-outline-light.disabled,
  2970. .btn-outline-light:disabled {
  2971. color: #f8f9fa;
  2972. background-color: transparent;
  2973. }
  2974. .btn-outline-light:not(:disabled):not(.disabled):active,
  2975. .btn-outline-light:not(:disabled):not(.disabled).active,
  2976. .show > .btn-outline-light.dropdown-toggle {
  2977. color: #212529;
  2978. background-color: #f8f9fa;
  2979. border-color: #f8f9fa;
  2980. }
  2981. .btn-outline-light:not(:disabled):not(.disabled):active:focus,
  2982. .btn-outline-light:not(:disabled):not(.disabled).active:focus,
  2983. .show > .btn-outline-light.dropdown-toggle:focus {
  2984. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  2985. }
  2986. .btn-outline-dark {
  2987. color: #343a40;
  2988. border-color: #343a40;
  2989. }
  2990. .btn-outline-dark:hover {
  2991. color: #fff;
  2992. background-color: #343a40;
  2993. border-color: #343a40;
  2994. }
  2995. .btn-outline-dark:focus,
  2996. .btn-outline-dark.focus {
  2997. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  2998. }
  2999. .btn-outline-dark.disabled,
  3000. .btn-outline-dark:disabled {
  3001. color: #343a40;
  3002. background-color: transparent;
  3003. }
  3004. .btn-outline-dark:not(:disabled):not(.disabled):active,
  3005. .btn-outline-dark:not(:disabled):not(.disabled).active,
  3006. .show > .btn-outline-dark.dropdown-toggle {
  3007. color: #fff;
  3008. background-color: #343a40;
  3009. border-color: #343a40;
  3010. }
  3011. .btn-outline-dark:not(:disabled):not(.disabled):active:focus,
  3012. .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
  3013. .show > .btn-outline-dark.dropdown-toggle:focus {
  3014. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  3015. }
  3016. .btn-link {
  3017. font-weight: 400;
  3018. color: #3490dc;
  3019. text-decoration: none;
  3020. }
  3021. .btn-link:hover {
  3022. color: #1d68a7;
  3023. text-decoration: underline;
  3024. }
  3025. .btn-link:focus,
  3026. .btn-link.focus {
  3027. text-decoration: underline;
  3028. }
  3029. .btn-link:disabled,
  3030. .btn-link.disabled {
  3031. color: #6c757d;
  3032. pointer-events: none;
  3033. }
  3034. .btn-lg,
  3035. .btn-group-lg > .btn {
  3036. padding: 0.5rem 1rem;
  3037. font-size: 1.125rem;
  3038. line-height: 1.5;
  3039. border-radius: 0.3rem;
  3040. }
  3041. .btn-sm,
  3042. .btn-group-sm > .btn {
  3043. padding: 0.25rem 0.5rem;
  3044. font-size: 0.7875rem;
  3045. line-height: 1.5;
  3046. border-radius: 0.2rem;
  3047. }
  3048. .btn-block {
  3049. display: block;
  3050. width: 100%;
  3051. }
  3052. .btn-block + .btn-block {
  3053. margin-top: 0.5rem;
  3054. }
  3055. input[type=submit].btn-block,
  3056. input[type=reset].btn-block,
  3057. input[type=button].btn-block {
  3058. width: 100%;
  3059. }
  3060. .fade {
  3061. transition: opacity 0.15s linear;
  3062. }
  3063. @media (prefers-reduced-motion: reduce) {
  3064. .fade {
  3065. transition: none;
  3066. }
  3067. }
  3068. .fade:not(.show) {
  3069. opacity: 0;
  3070. }
  3071. .collapse:not(.show) {
  3072. display: none;
  3073. }
  3074. .collapsing {
  3075. position: relative;
  3076. height: 0;
  3077. overflow: hidden;
  3078. transition: height 0.35s ease;
  3079. }
  3080. @media (prefers-reduced-motion: reduce) {
  3081. .collapsing {
  3082. transition: none;
  3083. }
  3084. }
  3085. .dropup,
  3086. .dropright,
  3087. .dropdown,
  3088. .dropleft {
  3089. position: relative;
  3090. }
  3091. .dropdown-toggle {
  3092. white-space: nowrap;
  3093. }
  3094. .dropdown-toggle::after {
  3095. display: inline-block;
  3096. margin-left: 0.255em;
  3097. vertical-align: 0.255em;
  3098. content: "";
  3099. border-top: 0.3em solid;
  3100. border-right: 0.3em solid transparent;
  3101. border-bottom: 0;
  3102. border-left: 0.3em solid transparent;
  3103. }
  3104. .dropdown-toggle:empty::after {
  3105. margin-left: 0;
  3106. }
  3107. .dropdown-menu {
  3108. position: absolute;
  3109. top: 100%;
  3110. left: 0;
  3111. z-index: 1000;
  3112. display: none;
  3113. float: left;
  3114. min-width: 10rem;
  3115. padding: 0.5rem 0;
  3116. margin: 0.125rem 0 0;
  3117. font-size: 0.9rem;
  3118. color: #212529;
  3119. text-align: left;
  3120. list-style: none;
  3121. background-color: #fff;
  3122. background-clip: padding-box;
  3123. border: 1px solid rgba(0, 0, 0, 0.15);
  3124. border-radius: 0.25rem;
  3125. }
  3126. .dropdown-menu-left {
  3127. right: auto;
  3128. left: 0;
  3129. }
  3130. .dropdown-menu-right {
  3131. right: 0;
  3132. left: auto;
  3133. }
  3134. @media (min-width: 576px) {
  3135. .dropdown-menu-sm-left {
  3136. right: auto;
  3137. left: 0;
  3138. }
  3139. .dropdown-menu-sm-right {
  3140. right: 0;
  3141. left: auto;
  3142. }
  3143. }
  3144. @media (min-width: 768px) {
  3145. .dropdown-menu-md-left {
  3146. right: auto;
  3147. left: 0;
  3148. }
  3149. .dropdown-menu-md-right {
  3150. right: 0;
  3151. left: auto;
  3152. }
  3153. }
  3154. @media (min-width: 992px) {
  3155. .dropdown-menu-lg-left {
  3156. right: auto;
  3157. left: 0;
  3158. }
  3159. .dropdown-menu-lg-right {
  3160. right: 0;
  3161. left: auto;
  3162. }
  3163. }
  3164. @media (min-width: 1200px) {
  3165. .dropdown-menu-xl-left {
  3166. right: auto;
  3167. left: 0;
  3168. }
  3169. .dropdown-menu-xl-right {
  3170. right: 0;
  3171. left: auto;
  3172. }
  3173. }
  3174. .dropup .dropdown-menu {
  3175. top: auto;
  3176. bottom: 100%;
  3177. margin-top: 0;
  3178. margin-bottom: 0.125rem;
  3179. }
  3180. .dropup .dropdown-toggle::after {
  3181. display: inline-block;
  3182. margin-left: 0.255em;
  3183. vertical-align: 0.255em;
  3184. content: "";
  3185. border-top: 0;
  3186. border-right: 0.3em solid transparent;
  3187. border-bottom: 0.3em solid;
  3188. border-left: 0.3em solid transparent;
  3189. }
  3190. .dropup .dropdown-toggle:empty::after {
  3191. margin-left: 0;
  3192. }
  3193. .dropright .dropdown-menu {
  3194. top: 0;
  3195. right: auto;
  3196. left: 100%;
  3197. margin-top: 0;
  3198. margin-left: 0.125rem;
  3199. }
  3200. .dropright .dropdown-toggle::after {
  3201. display: inline-block;
  3202. margin-left: 0.255em;
  3203. vertical-align: 0.255em;
  3204. content: "";
  3205. border-top: 0.3em solid transparent;
  3206. border-right: 0;
  3207. border-bottom: 0.3em solid transparent;
  3208. border-left: 0.3em solid;
  3209. }
  3210. .dropright .dropdown-toggle:empty::after {
  3211. margin-left: 0;
  3212. }
  3213. .dropright .dropdown-toggle::after {
  3214. vertical-align: 0;
  3215. }
  3216. .dropleft .dropdown-menu {
  3217. top: 0;
  3218. right: 100%;
  3219. left: auto;
  3220. margin-top: 0;
  3221. margin-right: 0.125rem;
  3222. }
  3223. .dropleft .dropdown-toggle::after {
  3224. display: inline-block;
  3225. margin-left: 0.255em;
  3226. vertical-align: 0.255em;
  3227. content: "";
  3228. }
  3229. .dropleft .dropdown-toggle::after {
  3230. display: none;
  3231. }
  3232. .dropleft .dropdown-toggle::before {
  3233. display: inline-block;
  3234. margin-right: 0.255em;
  3235. vertical-align: 0.255em;
  3236. content: "";
  3237. border-top: 0.3em solid transparent;
  3238. border-right: 0.3em solid;
  3239. border-bottom: 0.3em solid transparent;
  3240. }
  3241. .dropleft .dropdown-toggle:empty::after {
  3242. margin-left: 0;
  3243. }
  3244. .dropleft .dropdown-toggle::before {
  3245. vertical-align: 0;
  3246. }
  3247. .dropdown-menu[x-placement^=top],
  3248. .dropdown-menu[x-placement^=right],
  3249. .dropdown-menu[x-placement^=bottom],
  3250. .dropdown-menu[x-placement^=left] {
  3251. right: auto;
  3252. bottom: auto;
  3253. }
  3254. .dropdown-divider {
  3255. height: 0;
  3256. margin: 0.5rem 0;
  3257. overflow: hidden;
  3258. border-top: 1px solid #e9ecef;
  3259. }
  3260. .dropdown-item {
  3261. display: block;
  3262. width: 100%;
  3263. padding: 0.25rem 1.5rem;
  3264. clear: both;
  3265. font-weight: 400;
  3266. color: #212529;
  3267. text-align: inherit;
  3268. white-space: nowrap;
  3269. background-color: transparent;
  3270. border: 0;
  3271. }
  3272. .dropdown-item:hover,
  3273. .dropdown-item:focus {
  3274. color: #16181b;
  3275. text-decoration: none;
  3276. background-color: #f8f9fa;
  3277. }
  3278. .dropdown-item.active,
  3279. .dropdown-item:active {
  3280. color: #fff;
  3281. text-decoration: none;
  3282. background-color: #3490dc;
  3283. }
  3284. .dropdown-item.disabled,
  3285. .dropdown-item:disabled {
  3286. color: #6c757d;
  3287. pointer-events: none;
  3288. background-color: transparent;
  3289. }
  3290. .dropdown-menu.show {
  3291. display: block;
  3292. }
  3293. .dropdown-header {
  3294. display: block;
  3295. padding: 0.5rem 1.5rem;
  3296. margin-bottom: 0;
  3297. font-size: 0.7875rem;
  3298. color: #6c757d;
  3299. white-space: nowrap;
  3300. }
  3301. .dropdown-item-text {
  3302. display: block;
  3303. padding: 0.25rem 1.5rem;
  3304. color: #212529;
  3305. }
  3306. .btn-group,
  3307. .btn-group-vertical {
  3308. position: relative;
  3309. display: inline-flex;
  3310. vertical-align: middle;
  3311. }
  3312. .btn-group > .btn,
  3313. .btn-group-vertical > .btn {
  3314. position: relative;
  3315. flex: 1 1 auto;
  3316. }
  3317. .btn-group > .btn:hover,
  3318. .btn-group-vertical > .btn:hover {
  3319. z-index: 1;
  3320. }
  3321. .btn-group > .btn:focus,
  3322. .btn-group > .btn:active,
  3323. .btn-group > .btn.active,
  3324. .btn-group-vertical > .btn:focus,
  3325. .btn-group-vertical > .btn:active,
  3326. .btn-group-vertical > .btn.active {
  3327. z-index: 1;
  3328. }
  3329. .btn-toolbar {
  3330. display: flex;
  3331. flex-wrap: wrap;
  3332. justify-content: flex-start;
  3333. }
  3334. .btn-toolbar .input-group {
  3335. width: auto;
  3336. }
  3337. .btn-group > .btn:not(:first-child),
  3338. .btn-group > .btn-group:not(:first-child) {
  3339. margin-left: -1px;
  3340. }
  3341. .btn-group > .btn:not(:last-child):not(.dropdown-toggle),
  3342. .btn-group > .btn-group:not(:last-child) > .btn {
  3343. border-top-right-radius: 0;
  3344. border-bottom-right-radius: 0;
  3345. }
  3346. .btn-group > .btn:not(:first-child),
  3347. .btn-group > .btn-group:not(:first-child) > .btn {
  3348. border-top-left-radius: 0;
  3349. border-bottom-left-radius: 0;
  3350. }
  3351. .dropdown-toggle-split {
  3352. padding-right: 0.5625rem;
  3353. padding-left: 0.5625rem;
  3354. }
  3355. .dropdown-toggle-split::after,
  3356. .dropup .dropdown-toggle-split::after,
  3357. .dropright .dropdown-toggle-split::after {
  3358. margin-left: 0;
  3359. }
  3360. .dropleft .dropdown-toggle-split::before {
  3361. margin-right: 0;
  3362. }
  3363. .btn-sm + .dropdown-toggle-split,
  3364. .btn-group-sm > .btn + .dropdown-toggle-split {
  3365. padding-right: 0.375rem;
  3366. padding-left: 0.375rem;
  3367. }
  3368. .btn-lg + .dropdown-toggle-split,
  3369. .btn-group-lg > .btn + .dropdown-toggle-split {
  3370. padding-right: 0.75rem;
  3371. padding-left: 0.75rem;
  3372. }
  3373. .btn-group-vertical {
  3374. flex-direction: column;
  3375. align-items: flex-start;
  3376. justify-content: center;
  3377. }
  3378. .btn-group-vertical > .btn,
  3379. .btn-group-vertical > .btn-group {
  3380. width: 100%;
  3381. }
  3382. .btn-group-vertical > .btn:not(:first-child),
  3383. .btn-group-vertical > .btn-group:not(:first-child) {
  3384. margin-top: -1px;
  3385. }
  3386. .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
  3387. .btn-group-vertical > .btn-group:not(:last-child) > .btn {
  3388. border-bottom-right-radius: 0;
  3389. border-bottom-left-radius: 0;
  3390. }
  3391. .btn-group-vertical > .btn:not(:first-child),
  3392. .btn-group-vertical > .btn-group:not(:first-child) > .btn {
  3393. border-top-left-radius: 0;
  3394. border-top-right-radius: 0;
  3395. }
  3396. .btn-group-toggle > .btn,
  3397. .btn-group-toggle > .btn-group > .btn {
  3398. margin-bottom: 0;
  3399. }
  3400. .btn-group-toggle > .btn input[type=radio],
  3401. .btn-group-toggle > .btn input[type=checkbox],
  3402. .btn-group-toggle > .btn-group > .btn input[type=radio],
  3403. .btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  3404. position: absolute;
  3405. clip: rect(0, 0, 0, 0);
  3406. pointer-events: none;
  3407. }
  3408. .input-group {
  3409. position: relative;
  3410. display: flex;
  3411. flex-wrap: wrap;
  3412. align-items: stretch;
  3413. width: 100%;
  3414. }
  3415. .input-group > .form-control,
  3416. .input-group > .form-control-plaintext,
  3417. .input-group > .custom-select,
  3418. .input-group > .custom-file {
  3419. position: relative;
  3420. flex: 1 1 auto;
  3421. width: 1%;
  3422. min-width: 0;
  3423. margin-bottom: 0;
  3424. }
  3425. .input-group > .form-control + .form-control,
  3426. .input-group > .form-control + .custom-select,
  3427. .input-group > .form-control + .custom-file,
  3428. .input-group > .form-control-plaintext + .form-control,
  3429. .input-group > .form-control-plaintext + .custom-select,
  3430. .input-group > .form-control-plaintext + .custom-file,
  3431. .input-group > .custom-select + .form-control,
  3432. .input-group > .custom-select + .custom-select,
  3433. .input-group > .custom-select + .custom-file,
  3434. .input-group > .custom-file + .form-control,
  3435. .input-group > .custom-file + .custom-select,
  3436. .input-group > .custom-file + .custom-file {
  3437. margin-left: -1px;
  3438. }
  3439. .input-group > .form-control:focus,
  3440. .input-group > .custom-select:focus,
  3441. .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  3442. z-index: 3;
  3443. }
  3444. .input-group > .custom-file .custom-file-input:focus {
  3445. z-index: 4;
  3446. }
  3447. .input-group > .form-control:not(:last-child),
  3448. .input-group > .custom-select:not(:last-child) {
  3449. border-top-right-radius: 0;
  3450. border-bottom-right-radius: 0;
  3451. }
  3452. .input-group > .form-control:not(:first-child),
  3453. .input-group > .custom-select:not(:first-child) {
  3454. border-top-left-radius: 0;
  3455. border-bottom-left-radius: 0;
  3456. }
  3457. .input-group > .custom-file {
  3458. display: flex;
  3459. align-items: center;
  3460. }
  3461. .input-group > .custom-file:not(:last-child) .custom-file-label,
  3462. .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  3463. border-top-right-radius: 0;
  3464. border-bottom-right-radius: 0;
  3465. }
  3466. .input-group > .custom-file:not(:first-child) .custom-file-label {
  3467. border-top-left-radius: 0;
  3468. border-bottom-left-radius: 0;
  3469. }
  3470. .input-group-prepend,
  3471. .input-group-append {
  3472. display: flex;
  3473. }
  3474. .input-group-prepend .btn,
  3475. .input-group-append .btn {
  3476. position: relative;
  3477. z-index: 2;
  3478. }
  3479. .input-group-prepend .btn:focus,
  3480. .input-group-append .btn:focus {
  3481. z-index: 3;
  3482. }
  3483. .input-group-prepend .btn + .btn,
  3484. .input-group-prepend .btn + .input-group-text,
  3485. .input-group-prepend .input-group-text + .input-group-text,
  3486. .input-group-prepend .input-group-text + .btn,
  3487. .input-group-append .btn + .btn,
  3488. .input-group-append .btn + .input-group-text,
  3489. .input-group-append .input-group-text + .input-group-text,
  3490. .input-group-append .input-group-text + .btn {
  3491. margin-left: -1px;
  3492. }
  3493. .input-group-prepend {
  3494. margin-right: -1px;
  3495. }
  3496. .input-group-append {
  3497. margin-left: -1px;
  3498. }
  3499. .input-group-text {
  3500. display: flex;
  3501. align-items: center;
  3502. padding: 0.375rem 0.75rem;
  3503. margin-bottom: 0;
  3504. font-size: 0.9rem;
  3505. font-weight: 400;
  3506. line-height: 1.6;
  3507. color: #495057;
  3508. text-align: center;
  3509. white-space: nowrap;
  3510. background-color: #e9ecef;
  3511. border: 1px solid #ced4da;
  3512. border-radius: 0.25rem;
  3513. }
  3514. .input-group-text input[type=radio],
  3515. .input-group-text input[type=checkbox] {
  3516. margin-top: 0;
  3517. }
  3518. .input-group-lg > .form-control:not(textarea),
  3519. .input-group-lg > .custom-select {
  3520. height: calc(1.5em + 1rem + 2px);
  3521. }
  3522. .input-group-lg > .form-control,
  3523. .input-group-lg > .custom-select,
  3524. .input-group-lg > .input-group-prepend > .input-group-text,
  3525. .input-group-lg > .input-group-append > .input-group-text,
  3526. .input-group-lg > .input-group-prepend > .btn,
  3527. .input-group-lg > .input-group-append > .btn {
  3528. padding: 0.5rem 1rem;
  3529. font-size: 1.125rem;
  3530. line-height: 1.5;
  3531. border-radius: 0.3rem;
  3532. }
  3533. .input-group-sm > .form-control:not(textarea),
  3534. .input-group-sm > .custom-select {
  3535. height: calc(1.5em + 0.5rem + 2px);
  3536. }
  3537. .input-group-sm > .form-control,
  3538. .input-group-sm > .custom-select,
  3539. .input-group-sm > .input-group-prepend > .input-group-text,
  3540. .input-group-sm > .input-group-append > .input-group-text,
  3541. .input-group-sm > .input-group-prepend > .btn,
  3542. .input-group-sm > .input-group-append > .btn {
  3543. padding: 0.25rem 0.5rem;
  3544. font-size: 0.7875rem;
  3545. line-height: 1.5;
  3546. border-radius: 0.2rem;
  3547. }
  3548. .input-group-lg > .custom-select,
  3549. .input-group-sm > .custom-select {
  3550. padding-right: 1.75rem;
  3551. }
  3552. .input-group > .input-group-prepend > .btn,
  3553. .input-group > .input-group-prepend > .input-group-text,
  3554. .input-group > .input-group-append:not(:last-child) > .btn,
  3555. .input-group > .input-group-append:not(:last-child) > .input-group-text,
  3556. .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
  3557. .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  3558. border-top-right-radius: 0;
  3559. border-bottom-right-radius: 0;
  3560. }
  3561. .input-group > .input-group-append > .btn,
  3562. .input-group > .input-group-append > .input-group-text,
  3563. .input-group > .input-group-prepend:not(:first-child) > .btn,
  3564. .input-group > .input-group-prepend:not(:first-child) > .input-group-text,
  3565. .input-group > .input-group-prepend:first-child > .btn:not(:first-child),
  3566. .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  3567. border-top-left-radius: 0;
  3568. border-bottom-left-radius: 0;
  3569. }
  3570. .custom-control {
  3571. position: relative;
  3572. display: block;
  3573. min-height: 1.44rem;
  3574. padding-left: 1.5rem;
  3575. }
  3576. .custom-control-inline {
  3577. display: inline-flex;
  3578. margin-right: 1rem;
  3579. }
  3580. .custom-control-input {
  3581. position: absolute;
  3582. left: 0;
  3583. z-index: -1;
  3584. width: 1rem;
  3585. height: 1.22rem;
  3586. opacity: 0;
  3587. }
  3588. .custom-control-input:checked ~ .custom-control-label::before {
  3589. color: #fff;
  3590. border-color: #3490dc;
  3591. background-color: #3490dc;
  3592. }
  3593. .custom-control-input:focus ~ .custom-control-label::before {
  3594. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3595. }
  3596. .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  3597. border-color: #a1cbef;
  3598. }
  3599. .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  3600. color: #fff;
  3601. background-color: #cce3f6;
  3602. border-color: #cce3f6;
  3603. }
  3604. .custom-control-input[disabled] ~ .custom-control-label,
  3605. .custom-control-input:disabled ~ .custom-control-label {
  3606. color: #6c757d;
  3607. }
  3608. .custom-control-input[disabled] ~ .custom-control-label::before,
  3609. .custom-control-input:disabled ~ .custom-control-label::before {
  3610. background-color: #e9ecef;
  3611. }
  3612. .custom-control-label {
  3613. position: relative;
  3614. margin-bottom: 0;
  3615. vertical-align: top;
  3616. }
  3617. .custom-control-label::before {
  3618. position: absolute;
  3619. top: 0.22rem;
  3620. left: -1.5rem;
  3621. display: block;
  3622. width: 1rem;
  3623. height: 1rem;
  3624. pointer-events: none;
  3625. content: "";
  3626. background-color: #fff;
  3627. border: #adb5bd solid 1px;
  3628. }
  3629. .custom-control-label::after {
  3630. position: absolute;
  3631. top: 0.22rem;
  3632. left: -1.5rem;
  3633. display: block;
  3634. width: 1rem;
  3635. height: 1rem;
  3636. content: "";
  3637. background: no-repeat 50%/50% 50%;
  3638. }
  3639. .custom-checkbox .custom-control-label::before {
  3640. border-radius: 0.25rem;
  3641. }
  3642. .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  3643. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
  3644. }
  3645. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  3646. border-color: #3490dc;
  3647. background-color: #3490dc;
  3648. }
  3649. .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  3650. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
  3651. }
  3652. .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3653. background-color: rgba(52, 144, 220, 0.5);
  3654. }
  3655. .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  3656. background-color: rgba(52, 144, 220, 0.5);
  3657. }
  3658. .custom-radio .custom-control-label::before {
  3659. border-radius: 50%;
  3660. }
  3661. .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  3662. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  3663. }
  3664. .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3665. background-color: rgba(52, 144, 220, 0.5);
  3666. }
  3667. .custom-switch {
  3668. padding-left: 2.25rem;
  3669. }
  3670. .custom-switch .custom-control-label::before {
  3671. left: -2.25rem;
  3672. width: 1.75rem;
  3673. pointer-events: all;
  3674. border-radius: 0.5rem;
  3675. }
  3676. .custom-switch .custom-control-label::after {
  3677. top: calc(0.22rem + 2px);
  3678. left: calc(-2.25rem + 2px);
  3679. width: calc(1rem - 4px);
  3680. height: calc(1rem - 4px);
  3681. background-color: #adb5bd;
  3682. border-radius: 0.5rem;
  3683. 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;
  3684. }
  3685. @media (prefers-reduced-motion: reduce) {
  3686. .custom-switch .custom-control-label::after {
  3687. transition: none;
  3688. }
  3689. }
  3690. .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  3691. background-color: #fff;
  3692. transform: translateX(0.75rem);
  3693. }
  3694. .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  3695. background-color: rgba(52, 144, 220, 0.5);
  3696. }
  3697. .custom-select {
  3698. display: inline-block;
  3699. width: 100%;
  3700. height: calc(1.6em + 0.75rem + 2px);
  3701. padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  3702. font-size: 0.9rem;
  3703. font-weight: 400;
  3704. line-height: 1.6;
  3705. color: #495057;
  3706. vertical-align: middle;
  3707. background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  3708. border: 1px solid #ced4da;
  3709. border-radius: 0.25rem;
  3710. -webkit-appearance: none;
  3711. -moz-appearance: none;
  3712. appearance: none;
  3713. }
  3714. .custom-select:focus {
  3715. border-color: #a1cbef;
  3716. outline: 0;
  3717. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3718. }
  3719. .custom-select:focus::-ms-value {
  3720. color: #495057;
  3721. background-color: #fff;
  3722. }
  3723. .custom-select[multiple],
  3724. .custom-select[size]:not([size="1"]) {
  3725. height: auto;
  3726. padding-right: 0.75rem;
  3727. background-image: none;
  3728. }
  3729. .custom-select:disabled {
  3730. color: #6c757d;
  3731. background-color: #e9ecef;
  3732. }
  3733. .custom-select::-ms-expand {
  3734. display: none;
  3735. }
  3736. .custom-select:-moz-focusring {
  3737. color: transparent;
  3738. text-shadow: 0 0 0 #495057;
  3739. }
  3740. .custom-select-sm {
  3741. height: calc(1.5em + 0.5rem + 2px);
  3742. padding-top: 0.25rem;
  3743. padding-bottom: 0.25rem;
  3744. padding-left: 0.5rem;
  3745. font-size: 0.7875rem;
  3746. }
  3747. .custom-select-lg {
  3748. height: calc(1.5em + 1rem + 2px);
  3749. padding-top: 0.5rem;
  3750. padding-bottom: 0.5rem;
  3751. padding-left: 1rem;
  3752. font-size: 1.125rem;
  3753. }
  3754. .custom-file {
  3755. position: relative;
  3756. display: inline-block;
  3757. width: 100%;
  3758. height: calc(1.6em + 0.75rem + 2px);
  3759. margin-bottom: 0;
  3760. }
  3761. .custom-file-input {
  3762. position: relative;
  3763. z-index: 2;
  3764. width: 100%;
  3765. height: calc(1.6em + 0.75rem + 2px);
  3766. margin: 0;
  3767. opacity: 0;
  3768. }
  3769. .custom-file-input:focus ~ .custom-file-label {
  3770. border-color: #a1cbef;
  3771. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3772. }
  3773. .custom-file-input[disabled] ~ .custom-file-label,
  3774. .custom-file-input:disabled ~ .custom-file-label {
  3775. background-color: #e9ecef;
  3776. }
  3777. .custom-file-input:lang(en) ~ .custom-file-label::after {
  3778. content: "Browse";
  3779. }
  3780. .custom-file-input ~ .custom-file-label[data-browse]::after {
  3781. content: attr(data-browse);
  3782. }
  3783. .custom-file-label {
  3784. position: absolute;
  3785. top: 0;
  3786. right: 0;
  3787. left: 0;
  3788. z-index: 1;
  3789. height: calc(1.6em + 0.75rem + 2px);
  3790. padding: 0.375rem 0.75rem;
  3791. font-weight: 400;
  3792. line-height: 1.6;
  3793. color: #495057;
  3794. background-color: #fff;
  3795. border: 1px solid #ced4da;
  3796. border-radius: 0.25rem;
  3797. }
  3798. .custom-file-label::after {
  3799. position: absolute;
  3800. top: 0;
  3801. right: 0;
  3802. bottom: 0;
  3803. z-index: 3;
  3804. display: block;
  3805. height: calc(1.6em + 0.75rem);
  3806. padding: 0.375rem 0.75rem;
  3807. line-height: 1.6;
  3808. color: #495057;
  3809. content: "Browse";
  3810. background-color: #e9ecef;
  3811. border-left: inherit;
  3812. border-radius: 0 0.25rem 0.25rem 0;
  3813. }
  3814. .custom-range {
  3815. width: 100%;
  3816. height: 1.4rem;
  3817. padding: 0;
  3818. background-color: transparent;
  3819. -webkit-appearance: none;
  3820. -moz-appearance: none;
  3821. appearance: none;
  3822. }
  3823. .custom-range:focus {
  3824. outline: none;
  3825. }
  3826. .custom-range:focus::-webkit-slider-thumb {
  3827. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3828. }
  3829. .custom-range:focus::-moz-range-thumb {
  3830. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3831. }
  3832. .custom-range:focus::-ms-thumb {
  3833. box-shadow: 0 0 0 1px #f8fafc, 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  3834. }
  3835. .custom-range::-moz-focus-outer {
  3836. border: 0;
  3837. }
  3838. .custom-range::-webkit-slider-thumb {
  3839. width: 1rem;
  3840. height: 1rem;
  3841. margin-top: -0.25rem;
  3842. background-color: #3490dc;
  3843. border: 0;
  3844. border-radius: 1rem;
  3845. -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3846. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3847. -webkit-appearance: none;
  3848. appearance: none;
  3849. }
  3850. @media (prefers-reduced-motion: reduce) {
  3851. .custom-range::-webkit-slider-thumb {
  3852. -webkit-transition: none;
  3853. transition: none;
  3854. }
  3855. }
  3856. .custom-range::-webkit-slider-thumb:active {
  3857. background-color: #cce3f6;
  3858. }
  3859. .custom-range::-webkit-slider-runnable-track {
  3860. width: 100%;
  3861. height: 0.5rem;
  3862. color: transparent;
  3863. cursor: pointer;
  3864. background-color: #dee2e6;
  3865. border-color: transparent;
  3866. border-radius: 1rem;
  3867. }
  3868. .custom-range::-moz-range-thumb {
  3869. width: 1rem;
  3870. height: 1rem;
  3871. background-color: #3490dc;
  3872. border: 0;
  3873. border-radius: 1rem;
  3874. -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3875. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3876. -moz-appearance: none;
  3877. appearance: none;
  3878. }
  3879. @media (prefers-reduced-motion: reduce) {
  3880. .custom-range::-moz-range-thumb {
  3881. -moz-transition: none;
  3882. transition: none;
  3883. }
  3884. }
  3885. .custom-range::-moz-range-thumb:active {
  3886. background-color: #cce3f6;
  3887. }
  3888. .custom-range::-moz-range-track {
  3889. width: 100%;
  3890. height: 0.5rem;
  3891. color: transparent;
  3892. cursor: pointer;
  3893. background-color: #dee2e6;
  3894. border-color: transparent;
  3895. border-radius: 1rem;
  3896. }
  3897. .custom-range::-ms-thumb {
  3898. width: 1rem;
  3899. height: 1rem;
  3900. margin-top: 0;
  3901. margin-right: 0.2rem;
  3902. margin-left: 0.2rem;
  3903. background-color: #3490dc;
  3904. border: 0;
  3905. border-radius: 1rem;
  3906. -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3907. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3908. appearance: none;
  3909. }
  3910. @media (prefers-reduced-motion: reduce) {
  3911. .custom-range::-ms-thumb {
  3912. -ms-transition: none;
  3913. transition: none;
  3914. }
  3915. }
  3916. .custom-range::-ms-thumb:active {
  3917. background-color: #cce3f6;
  3918. }
  3919. .custom-range::-ms-track {
  3920. width: 100%;
  3921. height: 0.5rem;
  3922. color: transparent;
  3923. cursor: pointer;
  3924. background-color: transparent;
  3925. border-color: transparent;
  3926. border-width: 0.5rem;
  3927. }
  3928. .custom-range::-ms-fill-lower {
  3929. background-color: #dee2e6;
  3930. border-radius: 1rem;
  3931. }
  3932. .custom-range::-ms-fill-upper {
  3933. margin-right: 15px;
  3934. background-color: #dee2e6;
  3935. border-radius: 1rem;
  3936. }
  3937. .custom-range:disabled::-webkit-slider-thumb {
  3938. background-color: #adb5bd;
  3939. }
  3940. .custom-range:disabled::-webkit-slider-runnable-track {
  3941. cursor: default;
  3942. }
  3943. .custom-range:disabled::-moz-range-thumb {
  3944. background-color: #adb5bd;
  3945. }
  3946. .custom-range:disabled::-moz-range-track {
  3947. cursor: default;
  3948. }
  3949. .custom-range:disabled::-ms-thumb {
  3950. background-color: #adb5bd;
  3951. }
  3952. .custom-control-label::before,
  3953. .custom-file-label,
  3954. .custom-select {
  3955. transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  3956. }
  3957. @media (prefers-reduced-motion: reduce) {
  3958. .custom-control-label::before,
  3959. .custom-file-label,
  3960. .custom-select {
  3961. transition: none;
  3962. }
  3963. }
  3964. .nav {
  3965. display: flex;
  3966. flex-wrap: wrap;
  3967. padding-left: 0;
  3968. margin-bottom: 0;
  3969. list-style: none;
  3970. }
  3971. .nav-link {
  3972. display: block;
  3973. padding: 0.5rem 1rem;
  3974. }
  3975. .nav-link:hover,
  3976. .nav-link:focus {
  3977. text-decoration: none;
  3978. }
  3979. .nav-link.disabled {
  3980. color: #6c757d;
  3981. pointer-events: none;
  3982. cursor: default;
  3983. }
  3984. .nav-tabs {
  3985. border-bottom: 1px solid #dee2e6;
  3986. }
  3987. .nav-tabs .nav-item {
  3988. margin-bottom: -1px;
  3989. }
  3990. .nav-tabs .nav-link {
  3991. border: 1px solid transparent;
  3992. border-top-left-radius: 0.25rem;
  3993. border-top-right-radius: 0.25rem;
  3994. }
  3995. .nav-tabs .nav-link:hover,
  3996. .nav-tabs .nav-link:focus {
  3997. border-color: #e9ecef #e9ecef #dee2e6;
  3998. }
  3999. .nav-tabs .nav-link.disabled {
  4000. color: #6c757d;
  4001. background-color: transparent;
  4002. border-color: transparent;
  4003. }
  4004. .nav-tabs .nav-link.active,
  4005. .nav-tabs .nav-item.show .nav-link {
  4006. color: #495057;
  4007. background-color: #f8fafc;
  4008. border-color: #dee2e6 #dee2e6 #f8fafc;
  4009. }
  4010. .nav-tabs .dropdown-menu {
  4011. margin-top: -1px;
  4012. border-top-left-radius: 0;
  4013. border-top-right-radius: 0;
  4014. }
  4015. .nav-pills .nav-link {
  4016. border-radius: 0.25rem;
  4017. }
  4018. .nav-pills .nav-link.active,
  4019. .nav-pills .show > .nav-link {
  4020. color: #fff;
  4021. background-color: #3490dc;
  4022. }
  4023. .nav-fill .nav-item {
  4024. flex: 1 1 auto;
  4025. text-align: center;
  4026. }
  4027. .nav-justified .nav-item {
  4028. flex-basis: 0;
  4029. flex-grow: 1;
  4030. text-align: center;
  4031. }
  4032. .tab-content > .tab-pane {
  4033. display: none;
  4034. }
  4035. .tab-content > .active {
  4036. display: block;
  4037. }
  4038. .navbar {
  4039. position: relative;
  4040. display: flex;
  4041. flex-wrap: wrap;
  4042. align-items: center;
  4043. justify-content: space-between;
  4044. padding: 0.5rem 1rem;
  4045. }
  4046. .navbar .container,
  4047. .navbar .container-fluid,
  4048. .navbar .container-sm,
  4049. .navbar .container-md,
  4050. .navbar .container-lg,
  4051. .navbar .container-xl {
  4052. display: flex;
  4053. flex-wrap: wrap;
  4054. align-items: center;
  4055. justify-content: space-between;
  4056. }
  4057. .navbar-brand {
  4058. display: inline-block;
  4059. padding-top: 0.32rem;
  4060. padding-bottom: 0.32rem;
  4061. margin-right: 1rem;
  4062. font-size: 1.125rem;
  4063. line-height: inherit;
  4064. white-space: nowrap;
  4065. }
  4066. .navbar-brand:hover,
  4067. .navbar-brand:focus {
  4068. text-decoration: none;
  4069. }
  4070. .navbar-nav {
  4071. display: flex;
  4072. flex-direction: column;
  4073. padding-left: 0;
  4074. margin-bottom: 0;
  4075. list-style: none;
  4076. }
  4077. .navbar-nav .nav-link {
  4078. padding-right: 0;
  4079. padding-left: 0;
  4080. }
  4081. .navbar-nav .dropdown-menu {
  4082. position: static;
  4083. float: none;
  4084. }
  4085. .navbar-text {
  4086. display: inline-block;
  4087. padding-top: 0.5rem;
  4088. padding-bottom: 0.5rem;
  4089. }
  4090. .navbar-collapse {
  4091. flex-basis: 100%;
  4092. flex-grow: 1;
  4093. align-items: center;
  4094. }
  4095. .navbar-toggler {
  4096. padding: 0.25rem 0.75rem;
  4097. font-size: 1.125rem;
  4098. line-height: 1;
  4099. background-color: transparent;
  4100. border: 1px solid transparent;
  4101. border-radius: 0.25rem;
  4102. }
  4103. .navbar-toggler:hover,
  4104. .navbar-toggler:focus {
  4105. text-decoration: none;
  4106. }
  4107. .navbar-toggler-icon {
  4108. display: inline-block;
  4109. width: 1.5em;
  4110. height: 1.5em;
  4111. vertical-align: middle;
  4112. content: "";
  4113. background: no-repeat center center;
  4114. background-size: 100% 100%;
  4115. }
  4116. @media (max-width: 575.98px) {
  4117. .navbar-expand-sm > .container,
  4118. .navbar-expand-sm > .container-fluid,
  4119. .navbar-expand-sm > .container-sm,
  4120. .navbar-expand-sm > .container-md,
  4121. .navbar-expand-sm > .container-lg,
  4122. .navbar-expand-sm > .container-xl {
  4123. padding-right: 0;
  4124. padding-left: 0;
  4125. }
  4126. }
  4127. @media (min-width: 576px) {
  4128. .navbar-expand-sm {
  4129. flex-flow: row nowrap;
  4130. justify-content: flex-start;
  4131. }
  4132. .navbar-expand-sm .navbar-nav {
  4133. flex-direction: row;
  4134. }
  4135. .navbar-expand-sm .navbar-nav .dropdown-menu {
  4136. position: absolute;
  4137. }
  4138. .navbar-expand-sm .navbar-nav .nav-link {
  4139. padding-right: 0.5rem;
  4140. padding-left: 0.5rem;
  4141. }
  4142. .navbar-expand-sm > .container,
  4143. .navbar-expand-sm > .container-fluid,
  4144. .navbar-expand-sm > .container-sm,
  4145. .navbar-expand-sm > .container-md,
  4146. .navbar-expand-sm > .container-lg,
  4147. .navbar-expand-sm > .container-xl {
  4148. flex-wrap: nowrap;
  4149. }
  4150. .navbar-expand-sm .navbar-collapse {
  4151. display: flex !important;
  4152. flex-basis: auto;
  4153. }
  4154. .navbar-expand-sm .navbar-toggler {
  4155. display: none;
  4156. }
  4157. }
  4158. @media (max-width: 767.98px) {
  4159. .navbar-expand-md > .container,
  4160. .navbar-expand-md > .container-fluid,
  4161. .navbar-expand-md > .container-sm,
  4162. .navbar-expand-md > .container-md,
  4163. .navbar-expand-md > .container-lg,
  4164. .navbar-expand-md > .container-xl {
  4165. padding-right: 0;
  4166. padding-left: 0;
  4167. }
  4168. }
  4169. @media (min-width: 768px) {
  4170. .navbar-expand-md {
  4171. flex-flow: row nowrap;
  4172. justify-content: flex-start;
  4173. }
  4174. .navbar-expand-md .navbar-nav {
  4175. flex-direction: row;
  4176. }
  4177. .navbar-expand-md .navbar-nav .dropdown-menu {
  4178. position: absolute;
  4179. }
  4180. .navbar-expand-md .navbar-nav .nav-link {
  4181. padding-right: 0.5rem;
  4182. padding-left: 0.5rem;
  4183. }
  4184. .navbar-expand-md > .container,
  4185. .navbar-expand-md > .container-fluid,
  4186. .navbar-expand-md > .container-sm,
  4187. .navbar-expand-md > .container-md,
  4188. .navbar-expand-md > .container-lg,
  4189. .navbar-expand-md > .container-xl {
  4190. flex-wrap: nowrap;
  4191. }
  4192. .navbar-expand-md .navbar-collapse {
  4193. display: flex !important;
  4194. flex-basis: auto;
  4195. }
  4196. .navbar-expand-md .navbar-toggler {
  4197. display: none;
  4198. }
  4199. }
  4200. @media (max-width: 991.98px) {
  4201. .navbar-expand-lg > .container,
  4202. .navbar-expand-lg > .container-fluid,
  4203. .navbar-expand-lg > .container-sm,
  4204. .navbar-expand-lg > .container-md,
  4205. .navbar-expand-lg > .container-lg,
  4206. .navbar-expand-lg > .container-xl {
  4207. padding-right: 0;
  4208. padding-left: 0;
  4209. }
  4210. }
  4211. @media (min-width: 992px) {
  4212. .navbar-expand-lg {
  4213. flex-flow: row nowrap;
  4214. justify-content: flex-start;
  4215. }
  4216. .navbar-expand-lg .navbar-nav {
  4217. flex-direction: row;
  4218. }
  4219. .navbar-expand-lg .navbar-nav .dropdown-menu {
  4220. position: absolute;
  4221. }
  4222. .navbar-expand-lg .navbar-nav .nav-link {
  4223. padding-right: 0.5rem;
  4224. padding-left: 0.5rem;
  4225. }
  4226. .navbar-expand-lg > .container,
  4227. .navbar-expand-lg > .container-fluid,
  4228. .navbar-expand-lg > .container-sm,
  4229. .navbar-expand-lg > .container-md,
  4230. .navbar-expand-lg > .container-lg,
  4231. .navbar-expand-lg > .container-xl {
  4232. flex-wrap: nowrap;
  4233. }
  4234. .navbar-expand-lg .navbar-collapse {
  4235. display: flex !important;
  4236. flex-basis: auto;
  4237. }
  4238. .navbar-expand-lg .navbar-toggler {
  4239. display: none;
  4240. }
  4241. }
  4242. @media (max-width: 1199.98px) {
  4243. .navbar-expand-xl > .container,
  4244. .navbar-expand-xl > .container-fluid,
  4245. .navbar-expand-xl > .container-sm,
  4246. .navbar-expand-xl > .container-md,
  4247. .navbar-expand-xl > .container-lg,
  4248. .navbar-expand-xl > .container-xl {
  4249. padding-right: 0;
  4250. padding-left: 0;
  4251. }
  4252. }
  4253. @media (min-width: 1200px) {
  4254. .navbar-expand-xl {
  4255. flex-flow: row nowrap;
  4256. justify-content: flex-start;
  4257. }
  4258. .navbar-expand-xl .navbar-nav {
  4259. flex-direction: row;
  4260. }
  4261. .navbar-expand-xl .navbar-nav .dropdown-menu {
  4262. position: absolute;
  4263. }
  4264. .navbar-expand-xl .navbar-nav .nav-link {
  4265. padding-right: 0.5rem;
  4266. padding-left: 0.5rem;
  4267. }
  4268. .navbar-expand-xl > .container,
  4269. .navbar-expand-xl > .container-fluid,
  4270. .navbar-expand-xl > .container-sm,
  4271. .navbar-expand-xl > .container-md,
  4272. .navbar-expand-xl > .container-lg,
  4273. .navbar-expand-xl > .container-xl {
  4274. flex-wrap: nowrap;
  4275. }
  4276. .navbar-expand-xl .navbar-collapse {
  4277. display: flex !important;
  4278. flex-basis: auto;
  4279. }
  4280. .navbar-expand-xl .navbar-toggler {
  4281. display: none;
  4282. }
  4283. }
  4284. .navbar-expand {
  4285. flex-flow: row nowrap;
  4286. justify-content: flex-start;
  4287. }
  4288. .navbar-expand > .container,
  4289. .navbar-expand > .container-fluid,
  4290. .navbar-expand > .container-sm,
  4291. .navbar-expand > .container-md,
  4292. .navbar-expand > .container-lg,
  4293. .navbar-expand > .container-xl {
  4294. padding-right: 0;
  4295. padding-left: 0;
  4296. }
  4297. .navbar-expand .navbar-nav {
  4298. flex-direction: row;
  4299. }
  4300. .navbar-expand .navbar-nav .dropdown-menu {
  4301. position: absolute;
  4302. }
  4303. .navbar-expand .navbar-nav .nav-link {
  4304. padding-right: 0.5rem;
  4305. padding-left: 0.5rem;
  4306. }
  4307. .navbar-expand > .container,
  4308. .navbar-expand > .container-fluid,
  4309. .navbar-expand > .container-sm,
  4310. .navbar-expand > .container-md,
  4311. .navbar-expand > .container-lg,
  4312. .navbar-expand > .container-xl {
  4313. flex-wrap: nowrap;
  4314. }
  4315. .navbar-expand .navbar-collapse {
  4316. display: flex !important;
  4317. flex-basis: auto;
  4318. }
  4319. .navbar-expand .navbar-toggler {
  4320. display: none;
  4321. }
  4322. .navbar-light .navbar-brand {
  4323. color: rgba(0, 0, 0, 0.9);
  4324. }
  4325. .navbar-light .navbar-brand:hover,
  4326. .navbar-light .navbar-brand:focus {
  4327. color: rgba(0, 0, 0, 0.9);
  4328. }
  4329. .navbar-light .navbar-nav .nav-link {
  4330. color: rgba(0, 0, 0, 0.5);
  4331. }
  4332. .navbar-light .navbar-nav .nav-link:hover,
  4333. .navbar-light .navbar-nav .nav-link:focus {
  4334. color: rgba(0, 0, 0, 0.7);
  4335. }
  4336. .navbar-light .navbar-nav .nav-link.disabled {
  4337. color: rgba(0, 0, 0, 0.3);
  4338. }
  4339. .navbar-light .navbar-nav .show > .nav-link,
  4340. .navbar-light .navbar-nav .active > .nav-link,
  4341. .navbar-light .navbar-nav .nav-link.show,
  4342. .navbar-light .navbar-nav .nav-link.active {
  4343. color: rgba(0, 0, 0, 0.9);
  4344. }
  4345. .navbar-light .navbar-toggler {
  4346. color: rgba(0, 0, 0, 0.5);
  4347. border-color: rgba(0, 0, 0, 0.1);
  4348. }
  4349. .navbar-light .navbar-toggler-icon {
  4350. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  4351. }
  4352. .navbar-light .navbar-text {
  4353. color: rgba(0, 0, 0, 0.5);
  4354. }
  4355. .navbar-light .navbar-text a {
  4356. color: rgba(0, 0, 0, 0.9);
  4357. }
  4358. .navbar-light .navbar-text a:hover,
  4359. .navbar-light .navbar-text a:focus {
  4360. color: rgba(0, 0, 0, 0.9);
  4361. }
  4362. .navbar-dark .navbar-brand {
  4363. color: #fff;
  4364. }
  4365. .navbar-dark .navbar-brand:hover,
  4366. .navbar-dark .navbar-brand:focus {
  4367. color: #fff;
  4368. }
  4369. .navbar-dark .navbar-nav .nav-link {
  4370. color: rgba(255, 255, 255, 0.5);
  4371. }
  4372. .navbar-dark .navbar-nav .nav-link:hover,
  4373. .navbar-dark .navbar-nav .nav-link:focus {
  4374. color: rgba(255, 255, 255, 0.75);
  4375. }
  4376. .navbar-dark .navbar-nav .nav-link.disabled {
  4377. color: rgba(255, 255, 255, 0.25);
  4378. }
  4379. .navbar-dark .navbar-nav .show > .nav-link,
  4380. .navbar-dark .navbar-nav .active > .nav-link,
  4381. .navbar-dark .navbar-nav .nav-link.show,
  4382. .navbar-dark .navbar-nav .nav-link.active {
  4383. color: #fff;
  4384. }
  4385. .navbar-dark .navbar-toggler {
  4386. color: rgba(255, 255, 255, 0.5);
  4387. border-color: rgba(255, 255, 255, 0.1);
  4388. }
  4389. .navbar-dark .navbar-toggler-icon {
  4390. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  4391. }
  4392. .navbar-dark .navbar-text {
  4393. color: rgba(255, 255, 255, 0.5);
  4394. }
  4395. .navbar-dark .navbar-text a {
  4396. color: #fff;
  4397. }
  4398. .navbar-dark .navbar-text a:hover,
  4399. .navbar-dark .navbar-text a:focus {
  4400. color: #fff;
  4401. }
  4402. .card {
  4403. position: relative;
  4404. display: flex;
  4405. flex-direction: column;
  4406. min-width: 0;
  4407. word-wrap: break-word;
  4408. background-color: #fff;
  4409. background-clip: border-box;
  4410. border: 1px solid rgba(0, 0, 0, 0.125);
  4411. border-radius: 0.25rem;
  4412. }
  4413. .card > hr {
  4414. margin-right: 0;
  4415. margin-left: 0;
  4416. }
  4417. .card > .list-group {
  4418. border-top: inherit;
  4419. border-bottom: inherit;
  4420. }
  4421. .card > .list-group:first-child {
  4422. border-top-width: 0;
  4423. border-top-left-radius: calc(0.25rem - 1px);
  4424. border-top-right-radius: calc(0.25rem - 1px);
  4425. }
  4426. .card > .list-group:last-child {
  4427. border-bottom-width: 0;
  4428. border-bottom-right-radius: calc(0.25rem - 1px);
  4429. border-bottom-left-radius: calc(0.25rem - 1px);
  4430. }
  4431. .card-body {
  4432. flex: 1 1 auto;
  4433. min-height: 1px;
  4434. padding: 1.25rem;
  4435. }
  4436. .card-title {
  4437. margin-bottom: 0.75rem;
  4438. }
  4439. .card-subtitle {
  4440. margin-top: -0.375rem;
  4441. margin-bottom: 0;
  4442. }
  4443. .card-text:last-child {
  4444. margin-bottom: 0;
  4445. }
  4446. .card-link:hover {
  4447. text-decoration: none;
  4448. }
  4449. .card-link + .card-link {
  4450. margin-left: 1.25rem;
  4451. }
  4452. .card-header {
  4453. padding: 0.75rem 1.25rem;
  4454. margin-bottom: 0;
  4455. background-color: rgba(0, 0, 0, 0.03);
  4456. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  4457. }
  4458. .card-header:first-child {
  4459. border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
  4460. }
  4461. .card-header + .list-group .list-group-item:first-child {
  4462. border-top: 0;
  4463. }
  4464. .card-footer {
  4465. padding: 0.75rem 1.25rem;
  4466. background-color: rgba(0, 0, 0, 0.03);
  4467. border-top: 1px solid rgba(0, 0, 0, 0.125);
  4468. }
  4469. .card-footer:last-child {
  4470. border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
  4471. }
  4472. .card-header-tabs {
  4473. margin-right: -0.625rem;
  4474. margin-bottom: -0.75rem;
  4475. margin-left: -0.625rem;
  4476. border-bottom: 0;
  4477. }
  4478. .card-header-pills {
  4479. margin-right: -0.625rem;
  4480. margin-left: -0.625rem;
  4481. }
  4482. .card-img-overlay {
  4483. position: absolute;
  4484. top: 0;
  4485. right: 0;
  4486. bottom: 0;
  4487. left: 0;
  4488. padding: 1.25rem;
  4489. }
  4490. .card-img,
  4491. .card-img-top,
  4492. .card-img-bottom {
  4493. flex-shrink: 0;
  4494. width: 100%;
  4495. }
  4496. .card-img,
  4497. .card-img-top {
  4498. border-top-left-radius: calc(0.25rem - 1px);
  4499. border-top-right-radius: calc(0.25rem - 1px);
  4500. }
  4501. .card-img,
  4502. .card-img-bottom {
  4503. border-bottom-right-radius: calc(0.25rem - 1px);
  4504. border-bottom-left-radius: calc(0.25rem - 1px);
  4505. }
  4506. .card-deck .card {
  4507. margin-bottom: 15px;
  4508. }
  4509. @media (min-width: 576px) {
  4510. .card-deck {
  4511. display: flex;
  4512. flex-flow: row wrap;
  4513. margin-right: -15px;
  4514. margin-left: -15px;
  4515. }
  4516. .card-deck .card {
  4517. flex: 1 0 0%;
  4518. margin-right: 15px;
  4519. margin-bottom: 0;
  4520. margin-left: 15px;
  4521. }
  4522. }
  4523. .card-group > .card {
  4524. margin-bottom: 15px;
  4525. }
  4526. @media (min-width: 576px) {
  4527. .card-group {
  4528. display: flex;
  4529. flex-flow: row wrap;
  4530. }
  4531. .card-group > .card {
  4532. flex: 1 0 0%;
  4533. margin-bottom: 0;
  4534. }
  4535. .card-group > .card + .card {
  4536. margin-left: 0;
  4537. border-left: 0;
  4538. }
  4539. .card-group > .card:not(:last-child) {
  4540. border-top-right-radius: 0;
  4541. border-bottom-right-radius: 0;
  4542. }
  4543. .card-group > .card:not(:last-child) .card-img-top,
  4544. .card-group > .card:not(:last-child) .card-header {
  4545. border-top-right-radius: 0;
  4546. }
  4547. .card-group > .card:not(:last-child) .card-img-bottom,
  4548. .card-group > .card:not(:last-child) .card-footer {
  4549. border-bottom-right-radius: 0;
  4550. }
  4551. .card-group > .card:not(:first-child) {
  4552. border-top-left-radius: 0;
  4553. border-bottom-left-radius: 0;
  4554. }
  4555. .card-group > .card:not(:first-child) .card-img-top,
  4556. .card-group > .card:not(:first-child) .card-header {
  4557. border-top-left-radius: 0;
  4558. }
  4559. .card-group > .card:not(:first-child) .card-img-bottom,
  4560. .card-group > .card:not(:first-child) .card-footer {
  4561. border-bottom-left-radius: 0;
  4562. }
  4563. }
  4564. .card-columns .card {
  4565. margin-bottom: 0.75rem;
  4566. }
  4567. @media (min-width: 576px) {
  4568. .card-columns {
  4569. -moz-column-count: 3;
  4570. column-count: 3;
  4571. -moz-column-gap: 1.25rem;
  4572. column-gap: 1.25rem;
  4573. orphans: 1;
  4574. widows: 1;
  4575. }
  4576. .card-columns .card {
  4577. display: inline-block;
  4578. width: 100%;
  4579. }
  4580. }
  4581. .accordion > .card {
  4582. overflow: hidden;
  4583. }
  4584. .accordion > .card:not(:last-of-type) {
  4585. border-bottom: 0;
  4586. border-bottom-right-radius: 0;
  4587. border-bottom-left-radius: 0;
  4588. }
  4589. .accordion > .card:not(:first-of-type) {
  4590. border-top-left-radius: 0;
  4591. border-top-right-radius: 0;
  4592. }
  4593. .accordion > .card > .card-header {
  4594. border-radius: 0;
  4595. margin-bottom: -1px;
  4596. }
  4597. .breadcrumb {
  4598. display: flex;
  4599. flex-wrap: wrap;
  4600. padding: 0.75rem 1rem;
  4601. margin-bottom: 1rem;
  4602. list-style: none;
  4603. background-color: #e9ecef;
  4604. border-radius: 0.25rem;
  4605. }
  4606. .breadcrumb-item {
  4607. display: flex;
  4608. }
  4609. .breadcrumb-item + .breadcrumb-item {
  4610. padding-left: 0.5rem;
  4611. }
  4612. .breadcrumb-item + .breadcrumb-item::before {
  4613. display: inline-block;
  4614. padding-right: 0.5rem;
  4615. color: #6c757d;
  4616. content: "/";
  4617. }
  4618. .breadcrumb-item + .breadcrumb-item:hover::before {
  4619. text-decoration: underline;
  4620. }
  4621. .breadcrumb-item + .breadcrumb-item:hover::before {
  4622. text-decoration: none;
  4623. }
  4624. .breadcrumb-item.active {
  4625. color: #6c757d;
  4626. }
  4627. .pagination {
  4628. display: flex;
  4629. padding-left: 0;
  4630. list-style: none;
  4631. border-radius: 0.25rem;
  4632. }
  4633. .page-link {
  4634. position: relative;
  4635. display: block;
  4636. padding: 0.5rem 0.75rem;
  4637. margin-left: -1px;
  4638. line-height: 1.25;
  4639. color: #3490dc;
  4640. background-color: #fff;
  4641. border: 1px solid #dee2e6;
  4642. }
  4643. .page-link:hover {
  4644. z-index: 2;
  4645. color: #1d68a7;
  4646. text-decoration: none;
  4647. background-color: #e9ecef;
  4648. border-color: #dee2e6;
  4649. }
  4650. .page-link:focus {
  4651. z-index: 3;
  4652. outline: 0;
  4653. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.25);
  4654. }
  4655. .page-item:first-child .page-link {
  4656. margin-left: 0;
  4657. border-top-left-radius: 0.25rem;
  4658. border-bottom-left-radius: 0.25rem;
  4659. }
  4660. .page-item:last-child .page-link {
  4661. border-top-right-radius: 0.25rem;
  4662. border-bottom-right-radius: 0.25rem;
  4663. }
  4664. .page-item.active .page-link {
  4665. z-index: 3;
  4666. color: #fff;
  4667. background-color: #3490dc;
  4668. border-color: #3490dc;
  4669. }
  4670. .page-item.disabled .page-link {
  4671. color: #6c757d;
  4672. pointer-events: none;
  4673. cursor: auto;
  4674. background-color: #fff;
  4675. border-color: #dee2e6;
  4676. }
  4677. .pagination-lg .page-link {
  4678. padding: 0.75rem 1.5rem;
  4679. font-size: 1.125rem;
  4680. line-height: 1.5;
  4681. }
  4682. .pagination-lg .page-item:first-child .page-link {
  4683. border-top-left-radius: 0.3rem;
  4684. border-bottom-left-radius: 0.3rem;
  4685. }
  4686. .pagination-lg .page-item:last-child .page-link {
  4687. border-top-right-radius: 0.3rem;
  4688. border-bottom-right-radius: 0.3rem;
  4689. }
  4690. .pagination-sm .page-link {
  4691. padding: 0.25rem 0.5rem;
  4692. font-size: 0.7875rem;
  4693. line-height: 1.5;
  4694. }
  4695. .pagination-sm .page-item:first-child .page-link {
  4696. border-top-left-radius: 0.2rem;
  4697. border-bottom-left-radius: 0.2rem;
  4698. }
  4699. .pagination-sm .page-item:last-child .page-link {
  4700. border-top-right-radius: 0.2rem;
  4701. border-bottom-right-radius: 0.2rem;
  4702. }
  4703. .badge {
  4704. display: inline-block;
  4705. padding: 0.25em 0.4em;
  4706. font-size: 75%;
  4707. font-weight: 700;
  4708. line-height: 1;
  4709. text-align: center;
  4710. white-space: nowrap;
  4711. vertical-align: baseline;
  4712. border-radius: 0.25rem;
  4713. 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;
  4714. }
  4715. @media (prefers-reduced-motion: reduce) {
  4716. .badge {
  4717. transition: none;
  4718. }
  4719. }
  4720. a.badge:hover,
  4721. a.badge:focus {
  4722. text-decoration: none;
  4723. }
  4724. .badge:empty {
  4725. display: none;
  4726. }
  4727. .btn .badge {
  4728. position: relative;
  4729. top: -1px;
  4730. }
  4731. .badge-pill {
  4732. padding-right: 0.6em;
  4733. padding-left: 0.6em;
  4734. border-radius: 10rem;
  4735. }
  4736. .badge-primary {
  4737. color: #fff;
  4738. background-color: #3490dc;
  4739. }
  4740. a.badge-primary:hover,
  4741. a.badge-primary:focus {
  4742. color: #fff;
  4743. background-color: #2176bd;
  4744. }
  4745. a.badge-primary:focus,
  4746. a.badge-primary.focus {
  4747. outline: 0;
  4748. box-shadow: 0 0 0 0.2rem rgba(52, 144, 220, 0.5);
  4749. }
  4750. .badge-secondary {
  4751. color: #fff;
  4752. background-color: #6c757d;
  4753. }
  4754. a.badge-secondary:hover,
  4755. a.badge-secondary:focus {
  4756. color: #fff;
  4757. background-color: #545b62;
  4758. }
  4759. a.badge-secondary:focus,
  4760. a.badge-secondary.focus {
  4761. outline: 0;
  4762. box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
  4763. }
  4764. .badge-success {
  4765. color: #fff;
  4766. background-color: #38c172;
  4767. }
  4768. a.badge-success:hover,
  4769. a.badge-success:focus {
  4770. color: #fff;
  4771. background-color: #2d995b;
  4772. }
  4773. a.badge-success:focus,
  4774. a.badge-success.focus {
  4775. outline: 0;
  4776. box-shadow: 0 0 0 0.2rem rgba(56, 193, 114, 0.5);
  4777. }
  4778. .badge-info {
  4779. color: #212529;
  4780. background-color: #6cb2eb;
  4781. }
  4782. a.badge-info:hover,
  4783. a.badge-info:focus {
  4784. color: #212529;
  4785. background-color: #3f9ae5;
  4786. }
  4787. a.badge-info:focus,
  4788. a.badge-info.focus {
  4789. outline: 0;
  4790. box-shadow: 0 0 0 0.2rem rgba(108, 178, 235, 0.5);
  4791. }
  4792. .badge-warning {
  4793. color: #212529;
  4794. background-color: #ffed4a;
  4795. }
  4796. a.badge-warning:hover,
  4797. a.badge-warning:focus {
  4798. color: #212529;
  4799. background-color: #ffe817;
  4800. }
  4801. a.badge-warning:focus,
  4802. a.badge-warning.focus {
  4803. outline: 0;
  4804. box-shadow: 0 0 0 0.2rem rgba(255, 237, 74, 0.5);
  4805. }
  4806. .badge-danger {
  4807. color: #fff;
  4808. background-color: #e3342f;
  4809. }
  4810. a.badge-danger:hover,
  4811. a.badge-danger:focus {
  4812. color: #fff;
  4813. background-color: #c51f1a;
  4814. }
  4815. a.badge-danger:focus,
  4816. a.badge-danger.focus {
  4817. outline: 0;
  4818. box-shadow: 0 0 0 0.2rem rgba(227, 52, 47, 0.5);
  4819. }
  4820. .badge-light {
  4821. color: #212529;
  4822. background-color: #f8f9fa;
  4823. }
  4824. a.badge-light:hover,
  4825. a.badge-light:focus {
  4826. color: #212529;
  4827. background-color: #dae0e5;
  4828. }
  4829. a.badge-light:focus,
  4830. a.badge-light.focus {
  4831. outline: 0;
  4832. box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
  4833. }
  4834. .badge-dark {
  4835. color: #fff;
  4836. background-color: #343a40;
  4837. }
  4838. a.badge-dark:hover,
  4839. a.badge-dark:focus {
  4840. color: #fff;
  4841. background-color: #1d2124;
  4842. }
  4843. a.badge-dark:focus,
  4844. a.badge-dark.focus {
  4845. outline: 0;
  4846. box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
  4847. }
  4848. .jumbotron {
  4849. padding: 2rem 1rem;
  4850. margin-bottom: 2rem;
  4851. background-color: #e9ecef;
  4852. border-radius: 0.3rem;
  4853. }
  4854. @media (min-width: 576px) {
  4855. .jumbotron {
  4856. padding: 4rem 2rem;
  4857. }
  4858. }
  4859. .jumbotron-fluid {
  4860. padding-right: 0;
  4861. padding-left: 0;
  4862. border-radius: 0;
  4863. }
  4864. .alert {
  4865. position: relative;
  4866. padding: 0.75rem 1.25rem;
  4867. margin-bottom: 1rem;
  4868. border: 1px solid transparent;
  4869. border-radius: 0.25rem;
  4870. }
  4871. .alert-heading {
  4872. color: inherit;
  4873. }
  4874. .alert-link {
  4875. font-weight: 700;
  4876. }
  4877. .alert-dismissible {
  4878. padding-right: 3.85rem;
  4879. }
  4880. .alert-dismissible .close {
  4881. position: absolute;
  4882. top: 0;
  4883. right: 0;
  4884. padding: 0.75rem 1.25rem;
  4885. color: inherit;
  4886. }
  4887. .alert-primary {
  4888. color: #1b4b72;
  4889. background-color: #d6e9f8;
  4890. border-color: #c6e0f5;
  4891. }
  4892. .alert-primary hr {
  4893. border-top-color: #b0d4f1;
  4894. }
  4895. .alert-primary .alert-link {
  4896. color: #113049;
  4897. }
  4898. .alert-secondary {
  4899. color: #383d41;
  4900. background-color: #e2e3e5;
  4901. border-color: #d6d8db;
  4902. }
  4903. .alert-secondary hr {
  4904. border-top-color: #c8cbcf;
  4905. }
  4906. .alert-secondary .alert-link {
  4907. color: #202326;
  4908. }
  4909. .alert-success {
  4910. color: #1d643b;
  4911. background-color: #d7f3e3;
  4912. border-color: #c7eed8;
  4913. }
  4914. .alert-success hr {
  4915. border-top-color: #b3e8ca;
  4916. }
  4917. .alert-success .alert-link {
  4918. color: #123c24;
  4919. }
  4920. .alert-info {
  4921. color: #385d7a;
  4922. background-color: #e2f0fb;
  4923. border-color: #d6e9f9;
  4924. }
  4925. .alert-info hr {
  4926. border-top-color: #c0ddf6;
  4927. }
  4928. .alert-info .alert-link {
  4929. color: #284257;
  4930. }
  4931. .alert-warning {
  4932. color: #857b26;
  4933. background-color: #fffbdb;
  4934. border-color: #fffacc;
  4935. }
  4936. .alert-warning hr {
  4937. border-top-color: #fff8b3;
  4938. }
  4939. .alert-warning .alert-link {
  4940. color: #5d561b;
  4941. }
  4942. .alert-danger {
  4943. color: #761b18;
  4944. background-color: #f9d6d5;
  4945. border-color: #f7c6c5;
  4946. }
  4947. .alert-danger hr {
  4948. border-top-color: #f4b0af;
  4949. }
  4950. .alert-danger .alert-link {
  4951. color: #4c110f;
  4952. }
  4953. .alert-light {
  4954. color: #818182;
  4955. background-color: #fefefe;
  4956. border-color: #fdfdfe;
  4957. }
  4958. .alert-light hr {
  4959. border-top-color: #ececf6;
  4960. }
  4961. .alert-light .alert-link {
  4962. color: #686868;
  4963. }
  4964. .alert-dark {
  4965. color: #1b1e21;
  4966. background-color: #d6d8d9;
  4967. border-color: #c6c8ca;
  4968. }
  4969. .alert-dark hr {
  4970. border-top-color: #b9bbbe;
  4971. }
  4972. .alert-dark .alert-link {
  4973. color: #040505;
  4974. }
  4975. @-webkit-keyframes progress-bar-stripes {
  4976. from {
  4977. background-position: 1rem 0;
  4978. }
  4979. to {
  4980. background-position: 0 0;
  4981. }
  4982. }
  4983. @keyframes progress-bar-stripes {
  4984. from {
  4985. background-position: 1rem 0;
  4986. }
  4987. to {
  4988. background-position: 0 0;
  4989. }
  4990. }
  4991. .progress {
  4992. display: flex;
  4993. height: 1rem;
  4994. overflow: hidden;
  4995. line-height: 0;
  4996. font-size: 0.675rem;
  4997. background-color: #e9ecef;
  4998. border-radius: 0.25rem;
  4999. }
  5000. .progress-bar {
  5001. display: flex;
  5002. flex-direction: column;
  5003. justify-content: center;
  5004. overflow: hidden;
  5005. color: #fff;
  5006. text-align: center;
  5007. white-space: nowrap;
  5008. background-color: #3490dc;
  5009. transition: width 0.6s ease;
  5010. }
  5011. @media (prefers-reduced-motion: reduce) {
  5012. .progress-bar {
  5013. transition: none;
  5014. }
  5015. }
  5016. .progress-bar-striped {
  5017. 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);
  5018. background-size: 1rem 1rem;
  5019. }
  5020. .progress-bar-animated {
  5021. -webkit-animation: progress-bar-stripes 1s linear infinite;
  5022. animation: progress-bar-stripes 1s linear infinite;
  5023. }
  5024. @media (prefers-reduced-motion: reduce) {
  5025. .progress-bar-animated {
  5026. -webkit-animation: none;
  5027. animation: none;
  5028. }
  5029. }
  5030. .media {
  5031. display: flex;
  5032. align-items: flex-start;
  5033. }
  5034. .media-body {
  5035. flex: 1;
  5036. }
  5037. .list-group {
  5038. display: flex;
  5039. flex-direction: column;
  5040. padding-left: 0;
  5041. margin-bottom: 0;
  5042. border-radius: 0.25rem;
  5043. }
  5044. .list-group-item-action {
  5045. width: 100%;
  5046. color: #495057;
  5047. text-align: inherit;
  5048. }
  5049. .list-group-item-action:hover,
  5050. .list-group-item-action:focus {
  5051. z-index: 1;
  5052. color: #495057;
  5053. text-decoration: none;
  5054. background-color: #f8f9fa;
  5055. }
  5056. .list-group-item-action:active {
  5057. color: #212529;
  5058. background-color: #e9ecef;
  5059. }
  5060. .list-group-item {
  5061. position: relative;
  5062. display: block;
  5063. padding: 0.75rem 1.25rem;
  5064. background-color: #fff;
  5065. border: 1px solid rgba(0, 0, 0, 0.125);
  5066. }
  5067. .list-group-item:first-child {
  5068. border-top-left-radius: inherit;
  5069. border-top-right-radius: inherit;
  5070. }
  5071. .list-group-item:last-child {
  5072. border-bottom-right-radius: inherit;
  5073. border-bottom-left-radius: inherit;
  5074. }
  5075. .list-group-item.disabled,
  5076. .list-group-item:disabled {
  5077. color: #6c757d;
  5078. pointer-events: none;
  5079. background-color: #fff;
  5080. }
  5081. .list-group-item.active {
  5082. z-index: 2;
  5083. color: #fff;
  5084. background-color: #3490dc;
  5085. border-color: #3490dc;
  5086. }
  5087. .list-group-item + .list-group-item {
  5088. border-top-width: 0;
  5089. }
  5090. .list-group-item + .list-group-item.active {
  5091. margin-top: -1px;
  5092. border-top-width: 1px;
  5093. }
  5094. .list-group-horizontal {
  5095. flex-direction: row;
  5096. }
  5097. .list-group-horizontal > .list-group-item:first-child {
  5098. border-bottom-left-radius: 0.25rem;
  5099. border-top-right-radius: 0;
  5100. }
  5101. .list-group-horizontal > .list-group-item:last-child {
  5102. border-top-right-radius: 0.25rem;
  5103. border-bottom-left-radius: 0;
  5104. }
  5105. .list-group-horizontal > .list-group-item.active {
  5106. margin-top: 0;
  5107. }
  5108. .list-group-horizontal > .list-group-item + .list-group-item {
  5109. border-top-width: 1px;
  5110. border-left-width: 0;
  5111. }
  5112. .list-group-horizontal > .list-group-item + .list-group-item.active {
  5113. margin-left: -1px;
  5114. border-left-width: 1px;
  5115. }
  5116. @media (min-width: 576px) {
  5117. .list-group-horizontal-sm {
  5118. flex-direction: row;
  5119. }
  5120. .list-group-horizontal-sm > .list-group-item:first-child {
  5121. border-bottom-left-radius: 0.25rem;
  5122. border-top-right-radius: 0;
  5123. }
  5124. .list-group-horizontal-sm > .list-group-item:last-child {
  5125. border-top-right-radius: 0.25rem;
  5126. border-bottom-left-radius: 0;
  5127. }
  5128. .list-group-horizontal-sm > .list-group-item.active {
  5129. margin-top: 0;
  5130. }
  5131. .list-group-horizontal-sm > .list-group-item + .list-group-item {
  5132. border-top-width: 1px;
  5133. border-left-width: 0;
  5134. }
  5135. .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
  5136. margin-left: -1px;
  5137. border-left-width: 1px;
  5138. }
  5139. }
  5140. @media (min-width: 768px) {
  5141. .list-group-horizontal-md {
  5142. flex-direction: row;
  5143. }
  5144. .list-group-horizontal-md > .list-group-item:first-child {
  5145. border-bottom-left-radius: 0.25rem;
  5146. border-top-right-radius: 0;
  5147. }
  5148. .list-group-horizontal-md > .list-group-item:last-child {
  5149. border-top-right-radius: 0.25rem;
  5150. border-bottom-left-radius: 0;
  5151. }
  5152. .list-group-horizontal-md > .list-group-item.active {
  5153. margin-top: 0;
  5154. }
  5155. .list-group-horizontal-md > .list-group-item + .list-group-item {
  5156. border-top-width: 1px;
  5157. border-left-width: 0;
  5158. }
  5159. .list-group-horizontal-md > .list-group-item + .list-group-item.active {
  5160. margin-left: -1px;
  5161. border-left-width: 1px;
  5162. }
  5163. }
  5164. @media (min-width: 992px) {
  5165. .list-group-horizontal-lg {
  5166. flex-direction: row;
  5167. }
  5168. .list-group-horizontal-lg > .list-group-item:first-child {
  5169. border-bottom-left-radius: 0.25rem;
  5170. border-top-right-radius: 0;
  5171. }
  5172. .list-group-horizontal-lg > .list-group-item:last-child {
  5173. border-top-right-radius: 0.25rem;
  5174. border-bottom-left-radius: 0;
  5175. }
  5176. .list-group-horizontal-lg > .list-group-item.active {
  5177. margin-top: 0;
  5178. }
  5179. .list-group-horizontal-lg > .list-group-item + .list-group-item {
  5180. border-top-width: 1px;
  5181. border-left-width: 0;
  5182. }
  5183. .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
  5184. margin-left: -1px;
  5185. border-left-width: 1px;
  5186. }
  5187. }
  5188. @media (min-width: 1200px) {
  5189. .list-group-horizontal-xl {
  5190. flex-direction: row;
  5191. }
  5192. .list-group-horizontal-xl > .list-group-item:first-child {
  5193. border-bottom-left-radius: 0.25rem;
  5194. border-top-right-radius: 0;
  5195. }
  5196. .list-group-horizontal-xl > .list-group-item:last-child {
  5197. border-top-right-radius: 0.25rem;
  5198. border-bottom-left-radius: 0;
  5199. }
  5200. .list-group-horizontal-xl > .list-group-item.active {
  5201. margin-top: 0;
  5202. }
  5203. .list-group-horizontal-xl > .list-group-item + .list-group-item {
  5204. border-top-width: 1px;
  5205. border-left-width: 0;
  5206. }
  5207. .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
  5208. margin-left: -1px;
  5209. border-left-width: 1px;
  5210. }
  5211. }
  5212. .list-group-flush {
  5213. border-radius: 0;
  5214. }
  5215. .list-group-flush > .list-group-item {
  5216. border-width: 0 0 1px;
  5217. }
  5218. .list-group-flush > .list-group-item:last-child {
  5219. border-bottom-width: 0;
  5220. }
  5221. .list-group-item-primary {
  5222. color: #1b4b72;
  5223. background-color: #c6e0f5;
  5224. }
  5225. .list-group-item-primary.list-group-item-action:hover,
  5226. .list-group-item-primary.list-group-item-action:focus {
  5227. color: #1b4b72;
  5228. background-color: #b0d4f1;
  5229. }
  5230. .list-group-item-primary.list-group-item-action.active {
  5231. color: #fff;
  5232. background-color: #1b4b72;
  5233. border-color: #1b4b72;
  5234. }
  5235. .list-group-item-secondary {
  5236. color: #383d41;
  5237. background-color: #d6d8db;
  5238. }
  5239. .list-group-item-secondary.list-group-item-action:hover,
  5240. .list-group-item-secondary.list-group-item-action:focus {
  5241. color: #383d41;
  5242. background-color: #c8cbcf;
  5243. }
  5244. .list-group-item-secondary.list-group-item-action.active {
  5245. color: #fff;
  5246. background-color: #383d41;
  5247. border-color: #383d41;
  5248. }
  5249. .list-group-item-success {
  5250. color: #1d643b;
  5251. background-color: #c7eed8;
  5252. }
  5253. .list-group-item-success.list-group-item-action:hover,
  5254. .list-group-item-success.list-group-item-action:focus {
  5255. color: #1d643b;
  5256. background-color: #b3e8ca;
  5257. }
  5258. .list-group-item-success.list-group-item-action.active {
  5259. color: #fff;
  5260. background-color: #1d643b;
  5261. border-color: #1d643b;
  5262. }
  5263. .list-group-item-info {
  5264. color: #385d7a;
  5265. background-color: #d6e9f9;
  5266. }
  5267. .list-group-item-info.list-group-item-action:hover,
  5268. .list-group-item-info.list-group-item-action:focus {
  5269. color: #385d7a;
  5270. background-color: #c0ddf6;
  5271. }
  5272. .list-group-item-info.list-group-item-action.active {
  5273. color: #fff;
  5274. background-color: #385d7a;
  5275. border-color: #385d7a;
  5276. }
  5277. .list-group-item-warning {
  5278. color: #857b26;
  5279. background-color: #fffacc;
  5280. }
  5281. .list-group-item-warning.list-group-item-action:hover,
  5282. .list-group-item-warning.list-group-item-action:focus {
  5283. color: #857b26;
  5284. background-color: #fff8b3;
  5285. }
  5286. .list-group-item-warning.list-group-item-action.active {
  5287. color: #fff;
  5288. background-color: #857b26;
  5289. border-color: #857b26;
  5290. }
  5291. .list-group-item-danger {
  5292. color: #761b18;
  5293. background-color: #f7c6c5;
  5294. }
  5295. .list-group-item-danger.list-group-item-action:hover,
  5296. .list-group-item-danger.list-group-item-action:focus {
  5297. color: #761b18;
  5298. background-color: #f4b0af;
  5299. }
  5300. .list-group-item-danger.list-group-item-action.active {
  5301. color: #fff;
  5302. background-color: #761b18;
  5303. border-color: #761b18;
  5304. }
  5305. .list-group-item-light {
  5306. color: #818182;
  5307. background-color: #fdfdfe;
  5308. }
  5309. .list-group-item-light.list-group-item-action:hover,
  5310. .list-group-item-light.list-group-item-action:focus {
  5311. color: #818182;
  5312. background-color: #ececf6;
  5313. }
  5314. .list-group-item-light.list-group-item-action.active {
  5315. color: #fff;
  5316. background-color: #818182;
  5317. border-color: #818182;
  5318. }
  5319. .list-group-item-dark {
  5320. color: #1b1e21;
  5321. background-color: #c6c8ca;
  5322. }
  5323. .list-group-item-dark.list-group-item-action:hover,
  5324. .list-group-item-dark.list-group-item-action:focus {
  5325. color: #1b1e21;
  5326. background-color: #b9bbbe;
  5327. }
  5328. .list-group-item-dark.list-group-item-action.active {
  5329. color: #fff;
  5330. background-color: #1b1e21;
  5331. border-color: #1b1e21;
  5332. }
  5333. .close {
  5334. float: right;
  5335. font-size: 1.35rem;
  5336. font-weight: 700;
  5337. line-height: 1;
  5338. color: #000;
  5339. text-shadow: 0 1px 0 #fff;
  5340. opacity: 0.5;
  5341. }
  5342. .close:hover {
  5343. color: #000;
  5344. text-decoration: none;
  5345. }
  5346. .close:not(:disabled):not(.disabled):hover,
  5347. .close:not(:disabled):not(.disabled):focus {
  5348. opacity: 0.75;
  5349. }
  5350. button.close {
  5351. padding: 0;
  5352. background-color: transparent;
  5353. border: 0;
  5354. }
  5355. a.close.disabled {
  5356. pointer-events: none;
  5357. }
  5358. .toast {
  5359. max-width: 350px;
  5360. overflow: hidden;
  5361. font-size: 0.875rem;
  5362. background-color: rgba(255, 255, 255, 0.85);
  5363. background-clip: padding-box;
  5364. border: 1px solid rgba(0, 0, 0, 0.1);
  5365. box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  5366. -webkit-backdrop-filter: blur(10px);
  5367. backdrop-filter: blur(10px);
  5368. opacity: 0;
  5369. border-radius: 0.25rem;
  5370. }
  5371. .toast:not(:last-child) {
  5372. margin-bottom: 0.75rem;
  5373. }
  5374. .toast.showing {
  5375. opacity: 1;
  5376. }
  5377. .toast.show {
  5378. display: block;
  5379. opacity: 1;
  5380. }
  5381. .toast.hide {
  5382. display: none;
  5383. }
  5384. .toast-header {
  5385. display: flex;
  5386. align-items: center;
  5387. padding: 0.25rem 0.75rem;
  5388. color: #6c757d;
  5389. background-color: rgba(255, 255, 255, 0.85);
  5390. background-clip: padding-box;
  5391. border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  5392. }
  5393. .toast-body {
  5394. padding: 0.75rem;
  5395. }
  5396. .modal-open {
  5397. overflow: hidden;
  5398. }
  5399. .modal-open .modal {
  5400. overflow-x: hidden;
  5401. overflow-y: auto;
  5402. }
  5403. .modal {
  5404. position: fixed;
  5405. top: 0;
  5406. left: 0;
  5407. z-index: 1050;
  5408. display: none;
  5409. width: 100%;
  5410. height: 100%;
  5411. overflow: hidden;
  5412. outline: 0;
  5413. }
  5414. .modal-dialog {
  5415. position: relative;
  5416. width: auto;
  5417. margin: 0.5rem;
  5418. pointer-events: none;
  5419. }
  5420. .modal.fade .modal-dialog {
  5421. transition: transform 0.3s ease-out;
  5422. transform: translate(0, -50px);
  5423. }
  5424. @media (prefers-reduced-motion: reduce) {
  5425. .modal.fade .modal-dialog {
  5426. transition: none;
  5427. }
  5428. }
  5429. .modal.show .modal-dialog {
  5430. transform: none;
  5431. }
  5432. .modal.modal-static .modal-dialog {
  5433. transform: scale(1.02);
  5434. }
  5435. .modal-dialog-scrollable {
  5436. display: flex;
  5437. max-height: calc(100% - 1rem);
  5438. }
  5439. .modal-dialog-scrollable .modal-content {
  5440. max-height: calc(100vh - 1rem);
  5441. overflow: hidden;
  5442. }
  5443. .modal-dialog-scrollable .modal-header,
  5444. .modal-dialog-scrollable .modal-footer {
  5445. flex-shrink: 0;
  5446. }
  5447. .modal-dialog-scrollable .modal-body {
  5448. overflow-y: auto;
  5449. }
  5450. .modal-dialog-centered {
  5451. display: flex;
  5452. align-items: center;
  5453. min-height: calc(100% - 1rem);
  5454. }
  5455. .modal-dialog-centered::before {
  5456. display: block;
  5457. height: calc(100vh - 1rem);
  5458. height: -webkit-min-content;
  5459. height: -moz-min-content;
  5460. height: min-content;
  5461. content: "";
  5462. }
  5463. .modal-dialog-centered.modal-dialog-scrollable {
  5464. flex-direction: column;
  5465. justify-content: center;
  5466. height: 100%;
  5467. }
  5468. .modal-dialog-centered.modal-dialog-scrollable .modal-content {
  5469. max-height: none;
  5470. }
  5471. .modal-dialog-centered.modal-dialog-scrollable::before {
  5472. content: none;
  5473. }
  5474. .modal-content {
  5475. position: relative;
  5476. display: flex;
  5477. flex-direction: column;
  5478. width: 100%;
  5479. pointer-events: auto;
  5480. background-color: #fff;
  5481. background-clip: padding-box;
  5482. border: 1px solid rgba(0, 0, 0, 0.2);
  5483. border-radius: 0.3rem;
  5484. outline: 0;
  5485. }
  5486. .modal-backdrop {
  5487. position: fixed;
  5488. top: 0;
  5489. left: 0;
  5490. z-index: 1040;
  5491. width: 100vw;
  5492. height: 100vh;
  5493. background-color: #000;
  5494. }
  5495. .modal-backdrop.fade {
  5496. opacity: 0;
  5497. }
  5498. .modal-backdrop.show {
  5499. opacity: 0.5;
  5500. }
  5501. .modal-header {
  5502. display: flex;
  5503. align-items: flex-start;
  5504. justify-content: space-between;
  5505. padding: 1rem 1rem;
  5506. border-bottom: 1px solid #dee2e6;
  5507. border-top-left-radius: calc(0.3rem - 1px);
  5508. border-top-right-radius: calc(0.3rem - 1px);
  5509. }
  5510. .modal-header .close {
  5511. padding: 1rem 1rem;
  5512. margin: -1rem -1rem -1rem auto;
  5513. }
  5514. .modal-title {
  5515. margin-bottom: 0;
  5516. line-height: 1.6;
  5517. }
  5518. .modal-body {
  5519. position: relative;
  5520. flex: 1 1 auto;
  5521. padding: 1rem;
  5522. }
  5523. .modal-footer {
  5524. display: flex;
  5525. flex-wrap: wrap;
  5526. align-items: center;
  5527. justify-content: flex-end;
  5528. padding: 0.75rem;
  5529. border-top: 1px solid #dee2e6;
  5530. border-bottom-right-radius: calc(0.3rem - 1px);
  5531. border-bottom-left-radius: calc(0.3rem - 1px);
  5532. }
  5533. .modal-footer > * {
  5534. margin: 0.25rem;
  5535. }
  5536. .modal-scrollbar-measure {
  5537. position: absolute;
  5538. top: -9999px;
  5539. width: 50px;
  5540. height: 50px;
  5541. overflow: scroll;
  5542. }
  5543. @media (min-width: 576px) {
  5544. .modal-dialog {
  5545. max-width: 500px;
  5546. margin: 1.75rem auto;
  5547. }
  5548. .modal-dialog-scrollable {
  5549. max-height: calc(100% - 3.5rem);
  5550. }
  5551. .modal-dialog-scrollable .modal-content {
  5552. max-height: calc(100vh - 3.5rem);
  5553. }
  5554. .modal-dialog-centered {
  5555. min-height: calc(100% - 3.5rem);
  5556. }
  5557. .modal-dialog-centered::before {
  5558. height: calc(100vh - 3.5rem);
  5559. height: -webkit-min-content;
  5560. height: -moz-min-content;
  5561. height: min-content;
  5562. }
  5563. .modal-sm {
  5564. max-width: 300px;
  5565. }
  5566. }
  5567. @media (min-width: 992px) {
  5568. .modal-lg,
  5569. .modal-xl {
  5570. max-width: 800px;
  5571. }
  5572. }
  5573. @media (min-width: 1200px) {
  5574. .modal-xl {
  5575. max-width: 1140px;
  5576. }
  5577. }
  5578. .tooltip {
  5579. position: absolute;
  5580. z-index: 1070;
  5581. display: block;
  5582. margin: 0;
  5583. font-family: "Nunito", sans-serif;
  5584. font-style: normal;
  5585. font-weight: 400;
  5586. line-height: 1.6;
  5587. text-align: left;
  5588. text-align: start;
  5589. text-decoration: none;
  5590. text-shadow: none;
  5591. text-transform: none;
  5592. letter-spacing: normal;
  5593. word-break: normal;
  5594. word-spacing: normal;
  5595. white-space: normal;
  5596. line-break: auto;
  5597. font-size: 0.7875rem;
  5598. word-wrap: break-word;
  5599. opacity: 0;
  5600. }
  5601. .tooltip.show {
  5602. opacity: 0.9;
  5603. }
  5604. .tooltip .arrow {
  5605. position: absolute;
  5606. display: block;
  5607. width: 0.8rem;
  5608. height: 0.4rem;
  5609. }
  5610. .tooltip .arrow::before {
  5611. position: absolute;
  5612. content: "";
  5613. border-color: transparent;
  5614. border-style: solid;
  5615. }
  5616. .bs-tooltip-top,
  5617. .bs-tooltip-auto[x-placement^=top] {
  5618. padding: 0.4rem 0;
  5619. }
  5620. .bs-tooltip-top .arrow,
  5621. .bs-tooltip-auto[x-placement^=top] .arrow {
  5622. bottom: 0;
  5623. }
  5624. .bs-tooltip-top .arrow::before,
  5625. .bs-tooltip-auto[x-placement^=top] .arrow::before {
  5626. top: 0;
  5627. border-width: 0.4rem 0.4rem 0;
  5628. border-top-color: #000;
  5629. }
  5630. .bs-tooltip-right,
  5631. .bs-tooltip-auto[x-placement^=right] {
  5632. padding: 0 0.4rem;
  5633. }
  5634. .bs-tooltip-right .arrow,
  5635. .bs-tooltip-auto[x-placement^=right] .arrow {
  5636. left: 0;
  5637. width: 0.4rem;
  5638. height: 0.8rem;
  5639. }
  5640. .bs-tooltip-right .arrow::before,
  5641. .bs-tooltip-auto[x-placement^=right] .arrow::before {
  5642. right: 0;
  5643. border-width: 0.4rem 0.4rem 0.4rem 0;
  5644. border-right-color: #000;
  5645. }
  5646. .bs-tooltip-bottom,
  5647. .bs-tooltip-auto[x-placement^=bottom] {
  5648. padding: 0.4rem 0;
  5649. }
  5650. .bs-tooltip-bottom .arrow,
  5651. .bs-tooltip-auto[x-placement^=bottom] .arrow {
  5652. top: 0;
  5653. }
  5654. .bs-tooltip-bottom .arrow::before,
  5655. .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  5656. bottom: 0;
  5657. border-width: 0 0.4rem 0.4rem;
  5658. border-bottom-color: #000;
  5659. }
  5660. .bs-tooltip-left,
  5661. .bs-tooltip-auto[x-placement^=left] {
  5662. padding: 0 0.4rem;
  5663. }
  5664. .bs-tooltip-left .arrow,
  5665. .bs-tooltip-auto[x-placement^=left] .arrow {
  5666. right: 0;
  5667. width: 0.4rem;
  5668. height: 0.8rem;
  5669. }
  5670. .bs-tooltip-left .arrow::before,
  5671. .bs-tooltip-auto[x-placement^=left] .arrow::before {
  5672. left: 0;
  5673. border-width: 0.4rem 0 0.4rem 0.4rem;
  5674. border-left-color: #000;
  5675. }
  5676. .tooltip-inner {
  5677. max-width: 200px;
  5678. padding: 0.25rem 0.5rem;
  5679. color: #fff;
  5680. text-align: center;
  5681. background-color: #000;
  5682. border-radius: 0.25rem;
  5683. }
  5684. .popover {
  5685. position: absolute;
  5686. top: 0;
  5687. left: 0;
  5688. z-index: 1060;
  5689. display: block;
  5690. max-width: 276px;
  5691. font-family: "Nunito", sans-serif;
  5692. font-style: normal;
  5693. font-weight: 400;
  5694. line-height: 1.6;
  5695. text-align: left;
  5696. text-align: start;
  5697. text-decoration: none;
  5698. text-shadow: none;
  5699. text-transform: none;
  5700. letter-spacing: normal;
  5701. word-break: normal;
  5702. word-spacing: normal;
  5703. white-space: normal;
  5704. line-break: auto;
  5705. font-size: 0.7875rem;
  5706. word-wrap: break-word;
  5707. background-color: #fff;
  5708. background-clip: padding-box;
  5709. border: 1px solid rgba(0, 0, 0, 0.2);
  5710. border-radius: 0.3rem;
  5711. }
  5712. .popover .arrow {
  5713. position: absolute;
  5714. display: block;
  5715. width: 1rem;
  5716. height: 0.5rem;
  5717. margin: 0 0.3rem;
  5718. }
  5719. .popover .arrow::before,
  5720. .popover .arrow::after {
  5721. position: absolute;
  5722. display: block;
  5723. content: "";
  5724. border-color: transparent;
  5725. border-style: solid;
  5726. }
  5727. .bs-popover-top,
  5728. .bs-popover-auto[x-placement^=top] {
  5729. margin-bottom: 0.5rem;
  5730. }
  5731. .bs-popover-top > .arrow,
  5732. .bs-popover-auto[x-placement^=top] > .arrow {
  5733. bottom: calc(-0.5rem - 1px);
  5734. }
  5735. .bs-popover-top > .arrow::before,
  5736. .bs-popover-auto[x-placement^=top] > .arrow::before {
  5737. bottom: 0;
  5738. border-width: 0.5rem 0.5rem 0;
  5739. border-top-color: rgba(0, 0, 0, 0.25);
  5740. }
  5741. .bs-popover-top > .arrow::after,
  5742. .bs-popover-auto[x-placement^=top] > .arrow::after {
  5743. bottom: 1px;
  5744. border-width: 0.5rem 0.5rem 0;
  5745. border-top-color: #fff;
  5746. }
  5747. .bs-popover-right,
  5748. .bs-popover-auto[x-placement^=right] {
  5749. margin-left: 0.5rem;
  5750. }
  5751. .bs-popover-right > .arrow,
  5752. .bs-popover-auto[x-placement^=right] > .arrow {
  5753. left: calc(-0.5rem - 1px);
  5754. width: 0.5rem;
  5755. height: 1rem;
  5756. margin: 0.3rem 0;
  5757. }
  5758. .bs-popover-right > .arrow::before,
  5759. .bs-popover-auto[x-placement^=right] > .arrow::before {
  5760. left: 0;
  5761. border-width: 0.5rem 0.5rem 0.5rem 0;
  5762. border-right-color: rgba(0, 0, 0, 0.25);
  5763. }
  5764. .bs-popover-right > .arrow::after,
  5765. .bs-popover-auto[x-placement^=right] > .arrow::after {
  5766. left: 1px;
  5767. border-width: 0.5rem 0.5rem 0.5rem 0;
  5768. border-right-color: #fff;
  5769. }
  5770. .bs-popover-bottom,
  5771. .bs-popover-auto[x-placement^=bottom] {
  5772. margin-top: 0.5rem;
  5773. }
  5774. .bs-popover-bottom > .arrow,
  5775. .bs-popover-auto[x-placement^=bottom] > .arrow {
  5776. top: calc(-0.5rem - 1px);
  5777. }
  5778. .bs-popover-bottom > .arrow::before,
  5779. .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  5780. top: 0;
  5781. border-width: 0 0.5rem 0.5rem 0.5rem;
  5782. border-bottom-color: rgba(0, 0, 0, 0.25);
  5783. }
  5784. .bs-popover-bottom > .arrow::after,
  5785. .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  5786. top: 1px;
  5787. border-width: 0 0.5rem 0.5rem 0.5rem;
  5788. border-bottom-color: #fff;
  5789. }
  5790. .bs-popover-bottom .popover-header::before,
  5791. .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  5792. position: absolute;
  5793. top: 0;
  5794. left: 50%;
  5795. display: block;
  5796. width: 1rem;
  5797. margin-left: -0.5rem;
  5798. content: "";
  5799. border-bottom: 1px solid #f7f7f7;
  5800. }
  5801. .bs-popover-left,
  5802. .bs-popover-auto[x-placement^=left] {
  5803. margin-right: 0.5rem;
  5804. }
  5805. .bs-popover-left > .arrow,
  5806. .bs-popover-auto[x-placement^=left] > .arrow {
  5807. right: calc(-0.5rem - 1px);
  5808. width: 0.5rem;
  5809. height: 1rem;
  5810. margin: 0.3rem 0;
  5811. }
  5812. .bs-popover-left > .arrow::before,
  5813. .bs-popover-auto[x-placement^=left] > .arrow::before {
  5814. right: 0;
  5815. border-width: 0.5rem 0 0.5rem 0.5rem;
  5816. border-left-color: rgba(0, 0, 0, 0.25);
  5817. }
  5818. .bs-popover-left > .arrow::after,
  5819. .bs-popover-auto[x-placement^=left] > .arrow::after {
  5820. right: 1px;
  5821. border-width: 0.5rem 0 0.5rem 0.5rem;
  5822. border-left-color: #fff;
  5823. }
  5824. .popover-header {
  5825. padding: 0.5rem 0.75rem;
  5826. margin-bottom: 0;
  5827. font-size: 0.9rem;
  5828. background-color: #f7f7f7;
  5829. border-bottom: 1px solid #ebebeb;
  5830. border-top-left-radius: calc(0.3rem - 1px);
  5831. border-top-right-radius: calc(0.3rem - 1px);
  5832. }
  5833. .popover-header:empty {
  5834. display: none;
  5835. }
  5836. .popover-body {
  5837. padding: 0.5rem 0.75rem;
  5838. color: #212529;
  5839. }
  5840. .carousel {
  5841. position: relative;
  5842. }
  5843. .carousel.pointer-event {
  5844. touch-action: pan-y;
  5845. }
  5846. .carousel-inner {
  5847. position: relative;
  5848. width: 100%;
  5849. overflow: hidden;
  5850. }
  5851. .carousel-inner::after {
  5852. display: block;
  5853. clear: both;
  5854. content: "";
  5855. }
  5856. .carousel-item {
  5857. position: relative;
  5858. display: none;
  5859. float: left;
  5860. width: 100%;
  5861. margin-right: -100%;
  5862. -webkit-backface-visibility: hidden;
  5863. backface-visibility: hidden;
  5864. transition: transform 0.6s ease-in-out;
  5865. }
  5866. @media (prefers-reduced-motion: reduce) {
  5867. .carousel-item {
  5868. transition: none;
  5869. }
  5870. }
  5871. .carousel-item.active,
  5872. .carousel-item-next,
  5873. .carousel-item-prev {
  5874. display: block;
  5875. }
  5876. .carousel-item-next:not(.carousel-item-left),
  5877. .active.carousel-item-right {
  5878. transform: translateX(100%);
  5879. }
  5880. .carousel-item-prev:not(.carousel-item-right),
  5881. .active.carousel-item-left {
  5882. transform: translateX(-100%);
  5883. }
  5884. .carousel-fade .carousel-item {
  5885. opacity: 0;
  5886. transition-property: opacity;
  5887. transform: none;
  5888. }
  5889. .carousel-fade .carousel-item.active,
  5890. .carousel-fade .carousel-item-next.carousel-item-left,
  5891. .carousel-fade .carousel-item-prev.carousel-item-right {
  5892. z-index: 1;
  5893. opacity: 1;
  5894. }
  5895. .carousel-fade .active.carousel-item-left,
  5896. .carousel-fade .active.carousel-item-right {
  5897. z-index: 0;
  5898. opacity: 0;
  5899. transition: opacity 0s 0.6s;
  5900. }
  5901. @media (prefers-reduced-motion: reduce) {
  5902. .carousel-fade .active.carousel-item-left,
  5903. .carousel-fade .active.carousel-item-right {
  5904. transition: none;
  5905. }
  5906. }
  5907. .carousel-control-prev,
  5908. .carousel-control-next {
  5909. position: absolute;
  5910. top: 0;
  5911. bottom: 0;
  5912. z-index: 1;
  5913. display: flex;
  5914. align-items: center;
  5915. justify-content: center;
  5916. width: 15%;
  5917. color: #fff;
  5918. text-align: center;
  5919. opacity: 0.5;
  5920. transition: opacity 0.15s ease;
  5921. }
  5922. @media (prefers-reduced-motion: reduce) {
  5923. .carousel-control-prev,
  5924. .carousel-control-next {
  5925. transition: none;
  5926. }
  5927. }
  5928. .carousel-control-prev:hover,
  5929. .carousel-control-prev:focus,
  5930. .carousel-control-next:hover,
  5931. .carousel-control-next:focus {
  5932. color: #fff;
  5933. text-decoration: none;
  5934. outline: 0;
  5935. opacity: 0.9;
  5936. }
  5937. .carousel-control-prev {
  5938. left: 0;
  5939. }
  5940. .carousel-control-next {
  5941. right: 0;
  5942. }
  5943. .carousel-control-prev-icon,
  5944. .carousel-control-next-icon {
  5945. display: inline-block;
  5946. width: 20px;
  5947. height: 20px;
  5948. background: no-repeat 50%/100% 100%;
  5949. }
  5950. .carousel-control-prev-icon {
  5951. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
  5952. }
  5953. .carousel-control-next-icon {
  5954. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
  5955. }
  5956. .carousel-indicators {
  5957. position: absolute;
  5958. right: 0;
  5959. bottom: 0;
  5960. left: 0;
  5961. z-index: 15;
  5962. display: flex;
  5963. justify-content: center;
  5964. padding-left: 0;
  5965. margin-right: 15%;
  5966. margin-left: 15%;
  5967. list-style: none;
  5968. }
  5969. .carousel-indicators li {
  5970. box-sizing: content-box;
  5971. flex: 0 1 auto;
  5972. width: 30px;
  5973. height: 3px;
  5974. margin-right: 3px;
  5975. margin-left: 3px;
  5976. text-indent: -999px;
  5977. cursor: pointer;
  5978. background-color: #fff;
  5979. background-clip: padding-box;
  5980. border-top: 10px solid transparent;
  5981. border-bottom: 10px solid transparent;
  5982. opacity: 0.5;
  5983. transition: opacity 0.6s ease;
  5984. }
  5985. @media (prefers-reduced-motion: reduce) {
  5986. .carousel-indicators li {
  5987. transition: none;
  5988. }
  5989. }
  5990. .carousel-indicators .active {
  5991. opacity: 1;
  5992. }
  5993. .carousel-caption {
  5994. position: absolute;
  5995. right: 15%;
  5996. bottom: 20px;
  5997. left: 15%;
  5998. z-index: 10;
  5999. padding-top: 20px;
  6000. padding-bottom: 20px;
  6001. color: #fff;
  6002. text-align: center;
  6003. }
  6004. @-webkit-keyframes spinner-border {
  6005. to {
  6006. transform: rotate(360deg);
  6007. }
  6008. }
  6009. @keyframes spinner-border {
  6010. to {
  6011. transform: rotate(360deg);
  6012. }
  6013. }
  6014. .spinner-border {
  6015. display: inline-block;
  6016. width: 2rem;
  6017. height: 2rem;
  6018. vertical-align: text-bottom;
  6019. border: 0.25em solid currentColor;
  6020. border-right-color: transparent;
  6021. border-radius: 50%;
  6022. -webkit-animation: spinner-border 0.75s linear infinite;
  6023. animation: spinner-border 0.75s linear infinite;
  6024. }
  6025. .spinner-border-sm {
  6026. width: 1rem;
  6027. height: 1rem;
  6028. border-width: 0.2em;
  6029. }
  6030. @-webkit-keyframes spinner-grow {
  6031. 0% {
  6032. transform: scale(0);
  6033. }
  6034. 50% {
  6035. opacity: 1;
  6036. transform: none;
  6037. }
  6038. }
  6039. @keyframes spinner-grow {
  6040. 0% {
  6041. transform: scale(0);
  6042. }
  6043. 50% {
  6044. opacity: 1;
  6045. transform: none;
  6046. }
  6047. }
  6048. .spinner-grow {
  6049. display: inline-block;
  6050. width: 2rem;
  6051. height: 2rem;
  6052. vertical-align: text-bottom;
  6053. background-color: currentColor;
  6054. border-radius: 50%;
  6055. opacity: 0;
  6056. -webkit-animation: spinner-grow 0.75s linear infinite;
  6057. animation: spinner-grow 0.75s linear infinite;
  6058. }
  6059. .spinner-grow-sm {
  6060. width: 1rem;
  6061. height: 1rem;
  6062. }
  6063. .align-baseline {
  6064. vertical-align: baseline !important;
  6065. }
  6066. .align-top {
  6067. vertical-align: top !important;
  6068. }
  6069. .align-middle {
  6070. vertical-align: middle !important;
  6071. }
  6072. .align-bottom {
  6073. vertical-align: bottom !important;
  6074. }
  6075. .align-text-bottom {
  6076. vertical-align: text-bottom !important;
  6077. }
  6078. .align-text-top {
  6079. vertical-align: text-top !important;
  6080. }
  6081. .bg-primary {
  6082. background-color: #3490dc !important;
  6083. }
  6084. a.bg-primary:hover,
  6085. a.bg-primary:focus,
  6086. button.bg-primary:hover,
  6087. button.bg-primary:focus {
  6088. background-color: #2176bd !important;
  6089. }
  6090. .bg-secondary {
  6091. background-color: #6c757d !important;
  6092. }
  6093. a.bg-secondary:hover,
  6094. a.bg-secondary:focus,
  6095. button.bg-secondary:hover,
  6096. button.bg-secondary:focus {
  6097. background-color: #545b62 !important;
  6098. }
  6099. .bg-success {
  6100. background-color: #38c172 !important;
  6101. }
  6102. a.bg-success:hover,
  6103. a.bg-success:focus,
  6104. button.bg-success:hover,
  6105. button.bg-success:focus {
  6106. background-color: #2d995b !important;
  6107. }
  6108. .bg-info {
  6109. background-color: #6cb2eb !important;
  6110. }
  6111. a.bg-info:hover,
  6112. a.bg-info:focus,
  6113. button.bg-info:hover,
  6114. button.bg-info:focus {
  6115. background-color: #3f9ae5 !important;
  6116. }
  6117. .bg-warning {
  6118. background-color: #ffed4a !important;
  6119. }
  6120. a.bg-warning:hover,
  6121. a.bg-warning:focus,
  6122. button.bg-warning:hover,
  6123. button.bg-warning:focus {
  6124. background-color: #ffe817 !important;
  6125. }
  6126. .bg-danger {
  6127. background-color: #e3342f !important;
  6128. }
  6129. a.bg-danger:hover,
  6130. a.bg-danger:focus,
  6131. button.bg-danger:hover,
  6132. button.bg-danger:focus {
  6133. background-color: #c51f1a !important;
  6134. }
  6135. .bg-light {
  6136. background-color: #f8f9fa !important;
  6137. }
  6138. a.bg-light:hover,
  6139. a.bg-light:focus,
  6140. button.bg-light:hover,
  6141. button.bg-light:focus {
  6142. background-color: #dae0e5 !important;
  6143. }
  6144. .bg-dark {
  6145. background-color: #343a40 !important;
  6146. }
  6147. a.bg-dark:hover,
  6148. a.bg-dark:focus,
  6149. button.bg-dark:hover,
  6150. button.bg-dark:focus {
  6151. background-color: #1d2124 !important;
  6152. }
  6153. .bg-white {
  6154. background-color: #fff !important;
  6155. }
  6156. .bg-transparent {
  6157. background-color: transparent !important;
  6158. }
  6159. .border {
  6160. border: 1px solid #dee2e6 !important;
  6161. }
  6162. .border-top {
  6163. border-top: 1px solid #dee2e6 !important;
  6164. }
  6165. .border-right {
  6166. border-right: 1px solid #dee2e6 !important;
  6167. }
  6168. .border-bottom {
  6169. border-bottom: 1px solid #dee2e6 !important;
  6170. }
  6171. .border-left {
  6172. border-left: 1px solid #dee2e6 !important;
  6173. }
  6174. .border-0 {
  6175. border: 0 !important;
  6176. }
  6177. .border-top-0 {
  6178. border-top: 0 !important;
  6179. }
  6180. .border-right-0 {
  6181. border-right: 0 !important;
  6182. }
  6183. .border-bottom-0 {
  6184. border-bottom: 0 !important;
  6185. }
  6186. .border-left-0 {
  6187. border-left: 0 !important;
  6188. }
  6189. .border-primary {
  6190. border-color: #3490dc !important;
  6191. }
  6192. .border-secondary {
  6193. border-color: #6c757d !important;
  6194. }
  6195. .border-success {
  6196. border-color: #38c172 !important;
  6197. }
  6198. .border-info {
  6199. border-color: #6cb2eb !important;
  6200. }
  6201. .border-warning {
  6202. border-color: #ffed4a !important;
  6203. }
  6204. .border-danger {
  6205. border-color: #e3342f !important;
  6206. }
  6207. .border-light {
  6208. border-color: #f8f9fa !important;
  6209. }
  6210. .border-dark {
  6211. border-color: #343a40 !important;
  6212. }
  6213. .border-white {
  6214. border-color: #fff !important;
  6215. }
  6216. .rounded-sm {
  6217. border-radius: 0.2rem !important;
  6218. }
  6219. .rounded {
  6220. border-radius: 0.25rem !important;
  6221. }
  6222. .rounded-top {
  6223. border-top-left-radius: 0.25rem !important;
  6224. border-top-right-radius: 0.25rem !important;
  6225. }
  6226. .rounded-right {
  6227. border-top-right-radius: 0.25rem !important;
  6228. border-bottom-right-radius: 0.25rem !important;
  6229. }
  6230. .rounded-bottom {
  6231. border-bottom-right-radius: 0.25rem !important;
  6232. border-bottom-left-radius: 0.25rem !important;
  6233. }
  6234. .rounded-left {
  6235. border-top-left-radius: 0.25rem !important;
  6236. border-bottom-left-radius: 0.25rem !important;
  6237. }
  6238. .rounded-lg {
  6239. border-radius: 0.3rem !important;
  6240. }
  6241. .rounded-circle {
  6242. border-radius: 50% !important;
  6243. }
  6244. .rounded-pill {
  6245. border-radius: 50rem !important;
  6246. }
  6247. .rounded-0 {
  6248. border-radius: 0 !important;
  6249. }
  6250. .clearfix::after {
  6251. display: block;
  6252. clear: both;
  6253. content: "";
  6254. }
  6255. .d-none {
  6256. display: none !important;
  6257. }
  6258. .d-inline {
  6259. display: inline !important;
  6260. }
  6261. .d-inline-block {
  6262. display: inline-block !important;
  6263. }
  6264. .d-block {
  6265. display: block !important;
  6266. }
  6267. .d-table {
  6268. display: table !important;
  6269. }
  6270. .d-table-row {
  6271. display: table-row !important;
  6272. }
  6273. .d-table-cell {
  6274. display: table-cell !important;
  6275. }
  6276. .d-flex {
  6277. display: flex !important;
  6278. }
  6279. .d-inline-flex {
  6280. display: inline-flex !important;
  6281. }
  6282. @media (min-width: 576px) {
  6283. .d-sm-none {
  6284. display: none !important;
  6285. }
  6286. .d-sm-inline {
  6287. display: inline !important;
  6288. }
  6289. .d-sm-inline-block {
  6290. display: inline-block !important;
  6291. }
  6292. .d-sm-block {
  6293. display: block !important;
  6294. }
  6295. .d-sm-table {
  6296. display: table !important;
  6297. }
  6298. .d-sm-table-row {
  6299. display: table-row !important;
  6300. }
  6301. .d-sm-table-cell {
  6302. display: table-cell !important;
  6303. }
  6304. .d-sm-flex {
  6305. display: flex !important;
  6306. }
  6307. .d-sm-inline-flex {
  6308. display: inline-flex !important;
  6309. }
  6310. }
  6311. @media (min-width: 768px) {
  6312. .d-md-none {
  6313. display: none !important;
  6314. }
  6315. .d-md-inline {
  6316. display: inline !important;
  6317. }
  6318. .d-md-inline-block {
  6319. display: inline-block !important;
  6320. }
  6321. .d-md-block {
  6322. display: block !important;
  6323. }
  6324. .d-md-table {
  6325. display: table !important;
  6326. }
  6327. .d-md-table-row {
  6328. display: table-row !important;
  6329. }
  6330. .d-md-table-cell {
  6331. display: table-cell !important;
  6332. }
  6333. .d-md-flex {
  6334. display: flex !important;
  6335. }
  6336. .d-md-inline-flex {
  6337. display: inline-flex !important;
  6338. }
  6339. }
  6340. @media (min-width: 992px) {
  6341. .d-lg-none {
  6342. display: none !important;
  6343. }
  6344. .d-lg-inline {
  6345. display: inline !important;
  6346. }
  6347. .d-lg-inline-block {
  6348. display: inline-block !important;
  6349. }
  6350. .d-lg-block {
  6351. display: block !important;
  6352. }
  6353. .d-lg-table {
  6354. display: table !important;
  6355. }
  6356. .d-lg-table-row {
  6357. display: table-row !important;
  6358. }
  6359. .d-lg-table-cell {
  6360. display: table-cell !important;
  6361. }
  6362. .d-lg-flex {
  6363. display: flex !important;
  6364. }
  6365. .d-lg-inline-flex {
  6366. display: inline-flex !important;
  6367. }
  6368. }
  6369. @media (min-width: 1200px) {
  6370. .d-xl-none {
  6371. display: none !important;
  6372. }
  6373. .d-xl-inline {
  6374. display: inline !important;
  6375. }
  6376. .d-xl-inline-block {
  6377. display: inline-block !important;
  6378. }
  6379. .d-xl-block {
  6380. display: block !important;
  6381. }
  6382. .d-xl-table {
  6383. display: table !important;
  6384. }
  6385. .d-xl-table-row {
  6386. display: table-row !important;
  6387. }
  6388. .d-xl-table-cell {
  6389. display: table-cell !important;
  6390. }
  6391. .d-xl-flex {
  6392. display: flex !important;
  6393. }
  6394. .d-xl-inline-flex {
  6395. display: inline-flex !important;
  6396. }
  6397. }
  6398. @media print {
  6399. .d-print-none {
  6400. display: none !important;
  6401. }
  6402. .d-print-inline {
  6403. display: inline !important;
  6404. }
  6405. .d-print-inline-block {
  6406. display: inline-block !important;
  6407. }
  6408. .d-print-block {
  6409. display: block !important;
  6410. }
  6411. .d-print-table {
  6412. display: table !important;
  6413. }
  6414. .d-print-table-row {
  6415. display: table-row !important;
  6416. }
  6417. .d-print-table-cell {
  6418. display: table-cell !important;
  6419. }
  6420. .d-print-flex {
  6421. display: flex !important;
  6422. }
  6423. .d-print-inline-flex {
  6424. display: inline-flex !important;
  6425. }
  6426. }
  6427. .embed-responsive {
  6428. position: relative;
  6429. display: block;
  6430. width: 100%;
  6431. padding: 0;
  6432. overflow: hidden;
  6433. }
  6434. .embed-responsive::before {
  6435. display: block;
  6436. content: "";
  6437. }
  6438. .embed-responsive .embed-responsive-item,
  6439. .embed-responsive iframe,
  6440. .embed-responsive embed,
  6441. .embed-responsive object,
  6442. .embed-responsive video {
  6443. position: absolute;
  6444. top: 0;
  6445. bottom: 0;
  6446. left: 0;
  6447. width: 100%;
  6448. height: 100%;
  6449. border: 0;
  6450. }
  6451. .embed-responsive-21by9::before {
  6452. padding-top: 42.8571428571%;
  6453. }
  6454. .embed-responsive-16by9::before {
  6455. padding-top: 56.25%;
  6456. }
  6457. .embed-responsive-4by3::before {
  6458. padding-top: 75%;
  6459. }
  6460. .embed-responsive-1by1::before {
  6461. padding-top: 100%;
  6462. }
  6463. .flex-row {
  6464. flex-direction: row !important;
  6465. }
  6466. .flex-column {
  6467. flex-direction: column !important;
  6468. }
  6469. .flex-row-reverse {
  6470. flex-direction: row-reverse !important;
  6471. }
  6472. .flex-column-reverse {
  6473. flex-direction: column-reverse !important;
  6474. }
  6475. .flex-wrap {
  6476. flex-wrap: wrap !important;
  6477. }
  6478. .flex-nowrap {
  6479. flex-wrap: nowrap !important;
  6480. }
  6481. .flex-wrap-reverse {
  6482. flex-wrap: wrap-reverse !important;
  6483. }
  6484. .flex-fill {
  6485. flex: 1 1 auto !important;
  6486. }
  6487. .flex-grow-0 {
  6488. flex-grow: 0 !important;
  6489. }
  6490. .flex-grow-1 {
  6491. flex-grow: 1 !important;
  6492. }
  6493. .flex-shrink-0 {
  6494. flex-shrink: 0 !important;
  6495. }
  6496. .flex-shrink-1 {
  6497. flex-shrink: 1 !important;
  6498. }
  6499. .justify-content-start {
  6500. justify-content: flex-start !important;
  6501. }
  6502. .justify-content-end {
  6503. justify-content: flex-end !important;
  6504. }
  6505. .justify-content-center {
  6506. justify-content: center !important;
  6507. }
  6508. .justify-content-between {
  6509. justify-content: space-between !important;
  6510. }
  6511. .justify-content-around {
  6512. justify-content: space-around !important;
  6513. }
  6514. .align-items-start {
  6515. align-items: flex-start !important;
  6516. }
  6517. .align-items-end {
  6518. align-items: flex-end !important;
  6519. }
  6520. .align-items-center {
  6521. align-items: center !important;
  6522. }
  6523. .align-items-baseline {
  6524. align-items: baseline !important;
  6525. }
  6526. .align-items-stretch {
  6527. align-items: stretch !important;
  6528. }
  6529. .align-content-start {
  6530. align-content: flex-start !important;
  6531. }
  6532. .align-content-end {
  6533. align-content: flex-end !important;
  6534. }
  6535. .align-content-center {
  6536. align-content: center !important;
  6537. }
  6538. .align-content-between {
  6539. align-content: space-between !important;
  6540. }
  6541. .align-content-around {
  6542. align-content: space-around !important;
  6543. }
  6544. .align-content-stretch {
  6545. align-content: stretch !important;
  6546. }
  6547. .align-self-auto {
  6548. align-self: auto !important;
  6549. }
  6550. .align-self-start {
  6551. align-self: flex-start !important;
  6552. }
  6553. .align-self-end {
  6554. align-self: flex-end !important;
  6555. }
  6556. .align-self-center {
  6557. align-self: center !important;
  6558. }
  6559. .align-self-baseline {
  6560. align-self: baseline !important;
  6561. }
  6562. .align-self-stretch {
  6563. align-self: stretch !important;
  6564. }
  6565. @media (min-width: 576px) {
  6566. .flex-sm-row {
  6567. flex-direction: row !important;
  6568. }
  6569. .flex-sm-column {
  6570. flex-direction: column !important;
  6571. }
  6572. .flex-sm-row-reverse {
  6573. flex-direction: row-reverse !important;
  6574. }
  6575. .flex-sm-column-reverse {
  6576. flex-direction: column-reverse !important;
  6577. }
  6578. .flex-sm-wrap {
  6579. flex-wrap: wrap !important;
  6580. }
  6581. .flex-sm-nowrap {
  6582. flex-wrap: nowrap !important;
  6583. }
  6584. .flex-sm-wrap-reverse {
  6585. flex-wrap: wrap-reverse !important;
  6586. }
  6587. .flex-sm-fill {
  6588. flex: 1 1 auto !important;
  6589. }
  6590. .flex-sm-grow-0 {
  6591. flex-grow: 0 !important;
  6592. }
  6593. .flex-sm-grow-1 {
  6594. flex-grow: 1 !important;
  6595. }
  6596. .flex-sm-shrink-0 {
  6597. flex-shrink: 0 !important;
  6598. }
  6599. .flex-sm-shrink-1 {
  6600. flex-shrink: 1 !important;
  6601. }
  6602. .justify-content-sm-start {
  6603. justify-content: flex-start !important;
  6604. }
  6605. .justify-content-sm-end {
  6606. justify-content: flex-end !important;
  6607. }
  6608. .justify-content-sm-center {
  6609. justify-content: center !important;
  6610. }
  6611. .justify-content-sm-between {
  6612. justify-content: space-between !important;
  6613. }
  6614. .justify-content-sm-around {
  6615. justify-content: space-around !important;
  6616. }
  6617. .align-items-sm-start {
  6618. align-items: flex-start !important;
  6619. }
  6620. .align-items-sm-end {
  6621. align-items: flex-end !important;
  6622. }
  6623. .align-items-sm-center {
  6624. align-items: center !important;
  6625. }
  6626. .align-items-sm-baseline {
  6627. align-items: baseline !important;
  6628. }
  6629. .align-items-sm-stretch {
  6630. align-items: stretch !important;
  6631. }
  6632. .align-content-sm-start {
  6633. align-content: flex-start !important;
  6634. }
  6635. .align-content-sm-end {
  6636. align-content: flex-end !important;
  6637. }
  6638. .align-content-sm-center {
  6639. align-content: center !important;
  6640. }
  6641. .align-content-sm-between {
  6642. align-content: space-between !important;
  6643. }
  6644. .align-content-sm-around {
  6645. align-content: space-around !important;
  6646. }
  6647. .align-content-sm-stretch {
  6648. align-content: stretch !important;
  6649. }
  6650. .align-self-sm-auto {
  6651. align-self: auto !important;
  6652. }
  6653. .align-self-sm-start {
  6654. align-self: flex-start !important;
  6655. }
  6656. .align-self-sm-end {
  6657. align-self: flex-end !important;
  6658. }
  6659. .align-self-sm-center {
  6660. align-self: center !important;
  6661. }
  6662. .align-self-sm-baseline {
  6663. align-self: baseline !important;
  6664. }
  6665. .align-self-sm-stretch {
  6666. align-self: stretch !important;
  6667. }
  6668. }
  6669. @media (min-width: 768px) {
  6670. .flex-md-row {
  6671. flex-direction: row !important;
  6672. }
  6673. .flex-md-column {
  6674. flex-direction: column !important;
  6675. }
  6676. .flex-md-row-reverse {
  6677. flex-direction: row-reverse !important;
  6678. }
  6679. .flex-md-column-reverse {
  6680. flex-direction: column-reverse !important;
  6681. }
  6682. .flex-md-wrap {
  6683. flex-wrap: wrap !important;
  6684. }
  6685. .flex-md-nowrap {
  6686. flex-wrap: nowrap !important;
  6687. }
  6688. .flex-md-wrap-reverse {
  6689. flex-wrap: wrap-reverse !important;
  6690. }
  6691. .flex-md-fill {
  6692. flex: 1 1 auto !important;
  6693. }
  6694. .flex-md-grow-0 {
  6695. flex-grow: 0 !important;
  6696. }
  6697. .flex-md-grow-1 {
  6698. flex-grow: 1 !important;
  6699. }
  6700. .flex-md-shrink-0 {
  6701. flex-shrink: 0 !important;
  6702. }
  6703. .flex-md-shrink-1 {
  6704. flex-shrink: 1 !important;
  6705. }
  6706. .justify-content-md-start {
  6707. justify-content: flex-start !important;
  6708. }
  6709. .justify-content-md-end {
  6710. justify-content: flex-end !important;
  6711. }
  6712. .justify-content-md-center {
  6713. justify-content: center !important;
  6714. }
  6715. .justify-content-md-between {
  6716. justify-content: space-between !important;
  6717. }
  6718. .justify-content-md-around {
  6719. justify-content: space-around !important;
  6720. }
  6721. .align-items-md-start {
  6722. align-items: flex-start !important;
  6723. }
  6724. .align-items-md-end {
  6725. align-items: flex-end !important;
  6726. }
  6727. .align-items-md-center {
  6728. align-items: center !important;
  6729. }
  6730. .align-items-md-baseline {
  6731. align-items: baseline !important;
  6732. }
  6733. .align-items-md-stretch {
  6734. align-items: stretch !important;
  6735. }
  6736. .align-content-md-start {
  6737. align-content: flex-start !important;
  6738. }
  6739. .align-content-md-end {
  6740. align-content: flex-end !important;
  6741. }
  6742. .align-content-md-center {
  6743. align-content: center !important;
  6744. }
  6745. .align-content-md-between {
  6746. align-content: space-between !important;
  6747. }
  6748. .align-content-md-around {
  6749. align-content: space-around !important;
  6750. }
  6751. .align-content-md-stretch {
  6752. align-content: stretch !important;
  6753. }
  6754. .align-self-md-auto {
  6755. align-self: auto !important;
  6756. }
  6757. .align-self-md-start {
  6758. align-self: flex-start !important;
  6759. }
  6760. .align-self-md-end {
  6761. align-self: flex-end !important;
  6762. }
  6763. .align-self-md-center {
  6764. align-self: center !important;
  6765. }
  6766. .align-self-md-baseline {
  6767. align-self: baseline !important;
  6768. }
  6769. .align-self-md-stretch {
  6770. align-self: stretch !important;
  6771. }
  6772. }
  6773. @media (min-width: 992px) {
  6774. .flex-lg-row {
  6775. flex-direction: row !important;
  6776. }
  6777. .flex-lg-column {
  6778. flex-direction: column !important;
  6779. }
  6780. .flex-lg-row-reverse {
  6781. flex-direction: row-reverse !important;
  6782. }
  6783. .flex-lg-column-reverse {
  6784. flex-direction: column-reverse !important;
  6785. }
  6786. .flex-lg-wrap {
  6787. flex-wrap: wrap !important;
  6788. }
  6789. .flex-lg-nowrap {
  6790. flex-wrap: nowrap !important;
  6791. }
  6792. .flex-lg-wrap-reverse {
  6793. flex-wrap: wrap-reverse !important;
  6794. }
  6795. .flex-lg-fill {
  6796. flex: 1 1 auto !important;
  6797. }
  6798. .flex-lg-grow-0 {
  6799. flex-grow: 0 !important;
  6800. }
  6801. .flex-lg-grow-1 {
  6802. flex-grow: 1 !important;
  6803. }
  6804. .flex-lg-shrink-0 {
  6805. flex-shrink: 0 !important;
  6806. }
  6807. .flex-lg-shrink-1 {
  6808. flex-shrink: 1 !important;
  6809. }
  6810. .justify-content-lg-start {
  6811. justify-content: flex-start !important;
  6812. }
  6813. .justify-content-lg-end {
  6814. justify-content: flex-end !important;
  6815. }
  6816. .justify-content-lg-center {
  6817. justify-content: center !important;
  6818. }
  6819. .justify-content-lg-between {
  6820. justify-content: space-between !important;
  6821. }
  6822. .justify-content-lg-around {
  6823. justify-content: space-around !important;
  6824. }
  6825. .align-items-lg-start {
  6826. align-items: flex-start !important;
  6827. }
  6828. .align-items-lg-end {
  6829. align-items: flex-end !important;
  6830. }
  6831. .align-items-lg-center {
  6832. align-items: center !important;
  6833. }
  6834. .align-items-lg-baseline {
  6835. align-items: baseline !important;
  6836. }
  6837. .align-items-lg-stretch {
  6838. align-items: stretch !important;
  6839. }
  6840. .align-content-lg-start {
  6841. align-content: flex-start !important;
  6842. }
  6843. .align-content-lg-end {
  6844. align-content: flex-end !important;
  6845. }
  6846. .align-content-lg-center {
  6847. align-content: center !important;
  6848. }
  6849. .align-content-lg-between {
  6850. align-content: space-between !important;
  6851. }
  6852. .align-content-lg-around {
  6853. align-content: space-around !important;
  6854. }
  6855. .align-content-lg-stretch {
  6856. align-content: stretch !important;
  6857. }
  6858. .align-self-lg-auto {
  6859. align-self: auto !important;
  6860. }
  6861. .align-self-lg-start {
  6862. align-self: flex-start !important;
  6863. }
  6864. .align-self-lg-end {
  6865. align-self: flex-end !important;
  6866. }
  6867. .align-self-lg-center {
  6868. align-self: center !important;
  6869. }
  6870. .align-self-lg-baseline {
  6871. align-self: baseline !important;
  6872. }
  6873. .align-self-lg-stretch {
  6874. align-self: stretch !important;
  6875. }
  6876. }
  6877. @media (min-width: 1200px) {
  6878. .flex-xl-row {
  6879. flex-direction: row !important;
  6880. }
  6881. .flex-xl-column {
  6882. flex-direction: column !important;
  6883. }
  6884. .flex-xl-row-reverse {
  6885. flex-direction: row-reverse !important;
  6886. }
  6887. .flex-xl-column-reverse {
  6888. flex-direction: column-reverse !important;
  6889. }
  6890. .flex-xl-wrap {
  6891. flex-wrap: wrap !important;
  6892. }
  6893. .flex-xl-nowrap {
  6894. flex-wrap: nowrap !important;
  6895. }
  6896. .flex-xl-wrap-reverse {
  6897. flex-wrap: wrap-reverse !important;
  6898. }
  6899. .flex-xl-fill {
  6900. flex: 1 1 auto !important;
  6901. }
  6902. .flex-xl-grow-0 {
  6903. flex-grow: 0 !important;
  6904. }
  6905. .flex-xl-grow-1 {
  6906. flex-grow: 1 !important;
  6907. }
  6908. .flex-xl-shrink-0 {
  6909. flex-shrink: 0 !important;
  6910. }
  6911. .flex-xl-shrink-1 {
  6912. flex-shrink: 1 !important;
  6913. }
  6914. .justify-content-xl-start {
  6915. justify-content: flex-start !important;
  6916. }
  6917. .justify-content-xl-end {
  6918. justify-content: flex-end !important;
  6919. }
  6920. .justify-content-xl-center {
  6921. justify-content: center !important;
  6922. }
  6923. .justify-content-xl-between {
  6924. justify-content: space-between !important;
  6925. }
  6926. .justify-content-xl-around {
  6927. justify-content: space-around !important;
  6928. }
  6929. .align-items-xl-start {
  6930. align-items: flex-start !important;
  6931. }
  6932. .align-items-xl-end {
  6933. align-items: flex-end !important;
  6934. }
  6935. .align-items-xl-center {
  6936. align-items: center !important;
  6937. }
  6938. .align-items-xl-baseline {
  6939. align-items: baseline !important;
  6940. }
  6941. .align-items-xl-stretch {
  6942. align-items: stretch !important;
  6943. }
  6944. .align-content-xl-start {
  6945. align-content: flex-start !important;
  6946. }
  6947. .align-content-xl-end {
  6948. align-content: flex-end !important;
  6949. }
  6950. .align-content-xl-center {
  6951. align-content: center !important;
  6952. }
  6953. .align-content-xl-between {
  6954. align-content: space-between !important;
  6955. }
  6956. .align-content-xl-around {
  6957. align-content: space-around !important;
  6958. }
  6959. .align-content-xl-stretch {
  6960. align-content: stretch !important;
  6961. }
  6962. .align-self-xl-auto {
  6963. align-self: auto !important;
  6964. }
  6965. .align-self-xl-start {
  6966. align-self: flex-start !important;
  6967. }
  6968. .align-self-xl-end {
  6969. align-self: flex-end !important;
  6970. }
  6971. .align-self-xl-center {
  6972. align-self: center !important;
  6973. }
  6974. .align-self-xl-baseline {
  6975. align-self: baseline !important;
  6976. }
  6977. .align-self-xl-stretch {
  6978. align-self: stretch !important;
  6979. }
  6980. }
  6981. .float-left {
  6982. float: left !important;
  6983. }
  6984. .float-right {
  6985. float: right !important;
  6986. }
  6987. .float-none {
  6988. float: none !important;
  6989. }
  6990. @media (min-width: 576px) {
  6991. .float-sm-left {
  6992. float: left !important;
  6993. }
  6994. .float-sm-right {
  6995. float: right !important;
  6996. }
  6997. .float-sm-none {
  6998. float: none !important;
  6999. }
  7000. }
  7001. @media (min-width: 768px) {
  7002. .float-md-left {
  7003. float: left !important;
  7004. }
  7005. .float-md-right {
  7006. float: right !important;
  7007. }
  7008. .float-md-none {
  7009. float: none !important;
  7010. }
  7011. }
  7012. @media (min-width: 992px) {
  7013. .float-lg-left {
  7014. float: left !important;
  7015. }
  7016. .float-lg-right {
  7017. float: right !important;
  7018. }
  7019. .float-lg-none {
  7020. float: none !important;
  7021. }
  7022. }
  7023. @media (min-width: 1200px) {
  7024. .float-xl-left {
  7025. float: left !important;
  7026. }
  7027. .float-xl-right {
  7028. float: right !important;
  7029. }
  7030. .float-xl-none {
  7031. float: none !important;
  7032. }
  7033. }
  7034. .user-select-all {
  7035. -webkit-user-select: all !important;
  7036. -moz-user-select: all !important;
  7037. -ms-user-select: all !important;
  7038. user-select: all !important;
  7039. }
  7040. .user-select-auto {
  7041. -webkit-user-select: auto !important;
  7042. -moz-user-select: auto !important;
  7043. -ms-user-select: auto !important;
  7044. user-select: auto !important;
  7045. }
  7046. .user-select-none {
  7047. -webkit-user-select: none !important;
  7048. -moz-user-select: none !important;
  7049. -ms-user-select: none !important;
  7050. user-select: none !important;
  7051. }
  7052. .overflow-auto {
  7053. overflow: auto !important;
  7054. }
  7055. .overflow-hidden {
  7056. overflow: hidden !important;
  7057. }
  7058. .position-static {
  7059. position: static !important;
  7060. }
  7061. .position-relative {
  7062. position: relative !important;
  7063. }
  7064. .position-absolute {
  7065. position: absolute !important;
  7066. }
  7067. .position-fixed {
  7068. position: fixed !important;
  7069. }
  7070. .position-sticky {
  7071. position: -webkit-sticky !important;
  7072. position: sticky !important;
  7073. }
  7074. .fixed-top {
  7075. position: fixed;
  7076. top: 0;
  7077. right: 0;
  7078. left: 0;
  7079. z-index: 1030;
  7080. }
  7081. .fixed-bottom {
  7082. position: fixed;
  7083. right: 0;
  7084. bottom: 0;
  7085. left: 0;
  7086. z-index: 1030;
  7087. }
  7088. @supports ((position: -webkit-sticky) or (position: sticky)) {
  7089. .sticky-top {
  7090. position: -webkit-sticky;
  7091. position: sticky;
  7092. top: 0;
  7093. z-index: 1020;
  7094. }
  7095. }
  7096. .sr-only {
  7097. position: absolute;
  7098. width: 1px;
  7099. height: 1px;
  7100. padding: 0;
  7101. margin: -1px;
  7102. overflow: hidden;
  7103. clip: rect(0, 0, 0, 0);
  7104. white-space: nowrap;
  7105. border: 0;
  7106. }
  7107. .sr-only-focusable:active,
  7108. .sr-only-focusable:focus {
  7109. position: static;
  7110. width: auto;
  7111. height: auto;
  7112. overflow: visible;
  7113. clip: auto;
  7114. white-space: normal;
  7115. }
  7116. .shadow-sm {
  7117. box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  7118. }
  7119. .shadow {
  7120. box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  7121. }
  7122. .shadow-lg {
  7123. box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  7124. }
  7125. .shadow-none {
  7126. box-shadow: none !important;
  7127. }
  7128. .w-25 {
  7129. width: 25% !important;
  7130. }
  7131. .w-50 {
  7132. width: 50% !important;
  7133. }
  7134. .w-75 {
  7135. width: 75% !important;
  7136. }
  7137. .w-100 {
  7138. width: 100% !important;
  7139. }
  7140. .w-auto {
  7141. width: auto !important;
  7142. }
  7143. .h-25 {
  7144. height: 25% !important;
  7145. }
  7146. .h-50 {
  7147. height: 50% !important;
  7148. }
  7149. .h-75 {
  7150. height: 75% !important;
  7151. }
  7152. .h-100 {
  7153. height: 100% !important;
  7154. }
  7155. .h-auto {
  7156. height: auto !important;
  7157. }
  7158. .mw-100 {
  7159. max-width: 100% !important;
  7160. }
  7161. .mh-100 {
  7162. max-height: 100% !important;
  7163. }
  7164. .min-vw-100 {
  7165. min-width: 100vw !important;
  7166. }
  7167. .min-vh-100 {
  7168. min-height: 100vh !important;
  7169. }
  7170. .vw-100 {
  7171. width: 100vw !important;
  7172. }
  7173. .vh-100 {
  7174. height: 100vh !important;
  7175. }
  7176. .m-0 {
  7177. margin: 0 !important;
  7178. }
  7179. .mt-0,
  7180. .my-0 {
  7181. margin-top: 0 !important;
  7182. }
  7183. .mr-0,
  7184. .mx-0 {
  7185. margin-right: 0 !important;
  7186. }
  7187. .mb-0,
  7188. .my-0 {
  7189. margin-bottom: 0 !important;
  7190. }
  7191. .ml-0,
  7192. .mx-0 {
  7193. margin-left: 0 !important;
  7194. }
  7195. .m-1 {
  7196. margin: 0.25rem !important;
  7197. }
  7198. .mt-1,
  7199. .my-1 {
  7200. margin-top: 0.25rem !important;
  7201. }
  7202. .mr-1,
  7203. .mx-1 {
  7204. margin-right: 0.25rem !important;
  7205. }
  7206. .mb-1,
  7207. .my-1 {
  7208. margin-bottom: 0.25rem !important;
  7209. }
  7210. .ml-1,
  7211. .mx-1 {
  7212. margin-left: 0.25rem !important;
  7213. }
  7214. .m-2 {
  7215. margin: 0.5rem !important;
  7216. }
  7217. .mt-2,
  7218. .my-2 {
  7219. margin-top: 0.5rem !important;
  7220. }
  7221. .mr-2,
  7222. .mx-2 {
  7223. margin-right: 0.5rem !important;
  7224. }
  7225. .mb-2,
  7226. .my-2 {
  7227. margin-bottom: 0.5rem !important;
  7228. }
  7229. .ml-2,
  7230. .mx-2 {
  7231. margin-left: 0.5rem !important;
  7232. }
  7233. .m-3 {
  7234. margin: 1rem !important;
  7235. }
  7236. .mt-3,
  7237. .my-3 {
  7238. margin-top: 1rem !important;
  7239. }
  7240. .mr-3,
  7241. .mx-3 {
  7242. margin-right: 1rem !important;
  7243. }
  7244. .mb-3,
  7245. .my-3 {
  7246. margin-bottom: 1rem !important;
  7247. }
  7248. .ml-3,
  7249. .mx-3 {
  7250. margin-left: 1rem !important;
  7251. }
  7252. .m-4 {
  7253. margin: 1.5rem !important;
  7254. }
  7255. .mt-4,
  7256. .my-4 {
  7257. margin-top: 1.5rem !important;
  7258. }
  7259. .mr-4,
  7260. .mx-4 {
  7261. margin-right: 1.5rem !important;
  7262. }
  7263. .mb-4,
  7264. .my-4 {
  7265. margin-bottom: 1.5rem !important;
  7266. }
  7267. .ml-4,
  7268. .mx-4 {
  7269. margin-left: 1.5rem !important;
  7270. }
  7271. .m-5 {
  7272. margin: 3rem !important;
  7273. }
  7274. .mt-5,
  7275. .my-5 {
  7276. margin-top: 3rem !important;
  7277. }
  7278. .mr-5,
  7279. .mx-5 {
  7280. margin-right: 3rem !important;
  7281. }
  7282. .mb-5,
  7283. .my-5 {
  7284. margin-bottom: 3rem !important;
  7285. }
  7286. .ml-5,
  7287. .mx-5 {
  7288. margin-left: 3rem !important;
  7289. }
  7290. .p-0 {
  7291. padding: 0 !important;
  7292. }
  7293. .pt-0,
  7294. .py-0 {
  7295. padding-top: 0 !important;
  7296. }
  7297. .pr-0,
  7298. .px-0 {
  7299. padding-right: 0 !important;
  7300. }
  7301. .pb-0,
  7302. .py-0 {
  7303. padding-bottom: 0 !important;
  7304. }
  7305. .pl-0,
  7306. .px-0 {
  7307. padding-left: 0 !important;
  7308. }
  7309. .p-1 {
  7310. padding: 0.25rem !important;
  7311. }
  7312. .pt-1,
  7313. .py-1 {
  7314. padding-top: 0.25rem !important;
  7315. }
  7316. .pr-1,
  7317. .px-1 {
  7318. padding-right: 0.25rem !important;
  7319. }
  7320. .pb-1,
  7321. .py-1 {
  7322. padding-bottom: 0.25rem !important;
  7323. }
  7324. .pl-1,
  7325. .px-1 {
  7326. padding-left: 0.25rem !important;
  7327. }
  7328. .p-2 {
  7329. padding: 0.5rem !important;
  7330. }
  7331. .pt-2,
  7332. .py-2 {
  7333. padding-top: 0.5rem !important;
  7334. }
  7335. .pr-2,
  7336. .px-2 {
  7337. padding-right: 0.5rem !important;
  7338. }
  7339. .pb-2,
  7340. .py-2 {
  7341. padding-bottom: 0.5rem !important;
  7342. }
  7343. .pl-2,
  7344. .px-2 {
  7345. padding-left: 0.5rem !important;
  7346. }
  7347. .p-3 {
  7348. padding: 1rem !important;
  7349. }
  7350. .pt-3,
  7351. .py-3 {
  7352. padding-top: 1rem !important;
  7353. }
  7354. .pr-3,
  7355. .px-3 {
  7356. padding-right: 1rem !important;
  7357. }
  7358. .pb-3,
  7359. .py-3 {
  7360. padding-bottom: 1rem !important;
  7361. }
  7362. .pl-3,
  7363. .px-3 {
  7364. padding-left: 1rem !important;
  7365. }
  7366. .p-4 {
  7367. padding: 1.5rem !important;
  7368. }
  7369. .pt-4,
  7370. .py-4 {
  7371. padding-top: 1.5rem !important;
  7372. }
  7373. .pr-4,
  7374. .px-4 {
  7375. padding-right: 1.5rem !important;
  7376. }
  7377. .pb-4,
  7378. .py-4 {
  7379. padding-bottom: 1.5rem !important;
  7380. }
  7381. .pl-4,
  7382. .px-4 {
  7383. padding-left: 1.5rem !important;
  7384. }
  7385. .p-5 {
  7386. padding: 3rem !important;
  7387. }
  7388. .pt-5,
  7389. .py-5 {
  7390. padding-top: 3rem !important;
  7391. }
  7392. .pr-5,
  7393. .px-5 {
  7394. padding-right: 3rem !important;
  7395. }
  7396. .pb-5,
  7397. .py-5 {
  7398. padding-bottom: 3rem !important;
  7399. }
  7400. .pl-5,
  7401. .px-5 {
  7402. padding-left: 3rem !important;
  7403. }
  7404. .m-n1 {
  7405. margin: -0.25rem !important;
  7406. }
  7407. .mt-n1,
  7408. .my-n1 {
  7409. margin-top: -0.25rem !important;
  7410. }
  7411. .mr-n1,
  7412. .mx-n1 {
  7413. margin-right: -0.25rem !important;
  7414. }
  7415. .mb-n1,
  7416. .my-n1 {
  7417. margin-bottom: -0.25rem !important;
  7418. }
  7419. .ml-n1,
  7420. .mx-n1 {
  7421. margin-left: -0.25rem !important;
  7422. }
  7423. .m-n2 {
  7424. margin: -0.5rem !important;
  7425. }
  7426. .mt-n2,
  7427. .my-n2 {
  7428. margin-top: -0.5rem !important;
  7429. }
  7430. .mr-n2,
  7431. .mx-n2 {
  7432. margin-right: -0.5rem !important;
  7433. }
  7434. .mb-n2,
  7435. .my-n2 {
  7436. margin-bottom: -0.5rem !important;
  7437. }
  7438. .ml-n2,
  7439. .mx-n2 {
  7440. margin-left: -0.5rem !important;
  7441. }
  7442. .m-n3 {
  7443. margin: -1rem !important;
  7444. }
  7445. .mt-n3,
  7446. .my-n3 {
  7447. margin-top: -1rem !important;
  7448. }
  7449. .mr-n3,
  7450. .mx-n3 {
  7451. margin-right: -1rem !important;
  7452. }
  7453. .mb-n3,
  7454. .my-n3 {
  7455. margin-bottom: -1rem !important;
  7456. }
  7457. .ml-n3,
  7458. .mx-n3 {
  7459. margin-left: -1rem !important;
  7460. }
  7461. .m-n4 {
  7462. margin: -1.5rem !important;
  7463. }
  7464. .mt-n4,
  7465. .my-n4 {
  7466. margin-top: -1.5rem !important;
  7467. }
  7468. .mr-n4,
  7469. .mx-n4 {
  7470. margin-right: -1.5rem !important;
  7471. }
  7472. .mb-n4,
  7473. .my-n4 {
  7474. margin-bottom: -1.5rem !important;
  7475. }
  7476. .ml-n4,
  7477. .mx-n4 {
  7478. margin-left: -1.5rem !important;
  7479. }
  7480. .m-n5 {
  7481. margin: -3rem !important;
  7482. }
  7483. .mt-n5,
  7484. .my-n5 {
  7485. margin-top: -3rem !important;
  7486. }
  7487. .mr-n5,
  7488. .mx-n5 {
  7489. margin-right: -3rem !important;
  7490. }
  7491. .mb-n5,
  7492. .my-n5 {
  7493. margin-bottom: -3rem !important;
  7494. }
  7495. .ml-n5,
  7496. .mx-n5 {
  7497. margin-left: -3rem !important;
  7498. }
  7499. .m-auto {
  7500. margin: auto !important;
  7501. }
  7502. .mt-auto,
  7503. .my-auto {
  7504. margin-top: auto !important;
  7505. }
  7506. .mr-auto,
  7507. .mx-auto {
  7508. margin-right: auto !important;
  7509. }
  7510. .mb-auto,
  7511. .my-auto {
  7512. margin-bottom: auto !important;
  7513. }
  7514. .ml-auto,
  7515. .mx-auto {
  7516. margin-left: auto !important;
  7517. }
  7518. @media (min-width: 576px) {
  7519. .m-sm-0 {
  7520. margin: 0 !important;
  7521. }
  7522. .mt-sm-0,
  7523. .my-sm-0 {
  7524. margin-top: 0 !important;
  7525. }
  7526. .mr-sm-0,
  7527. .mx-sm-0 {
  7528. margin-right: 0 !important;
  7529. }
  7530. .mb-sm-0,
  7531. .my-sm-0 {
  7532. margin-bottom: 0 !important;
  7533. }
  7534. .ml-sm-0,
  7535. .mx-sm-0 {
  7536. margin-left: 0 !important;
  7537. }
  7538. .m-sm-1 {
  7539. margin: 0.25rem !important;
  7540. }
  7541. .mt-sm-1,
  7542. .my-sm-1 {
  7543. margin-top: 0.25rem !important;
  7544. }
  7545. .mr-sm-1,
  7546. .mx-sm-1 {
  7547. margin-right: 0.25rem !important;
  7548. }
  7549. .mb-sm-1,
  7550. .my-sm-1 {
  7551. margin-bottom: 0.25rem !important;
  7552. }
  7553. .ml-sm-1,
  7554. .mx-sm-1 {
  7555. margin-left: 0.25rem !important;
  7556. }
  7557. .m-sm-2 {
  7558. margin: 0.5rem !important;
  7559. }
  7560. .mt-sm-2,
  7561. .my-sm-2 {
  7562. margin-top: 0.5rem !important;
  7563. }
  7564. .mr-sm-2,
  7565. .mx-sm-2 {
  7566. margin-right: 0.5rem !important;
  7567. }
  7568. .mb-sm-2,
  7569. .my-sm-2 {
  7570. margin-bottom: 0.5rem !important;
  7571. }
  7572. .ml-sm-2,
  7573. .mx-sm-2 {
  7574. margin-left: 0.5rem !important;
  7575. }
  7576. .m-sm-3 {
  7577. margin: 1rem !important;
  7578. }
  7579. .mt-sm-3,
  7580. .my-sm-3 {
  7581. margin-top: 1rem !important;
  7582. }
  7583. .mr-sm-3,
  7584. .mx-sm-3 {
  7585. margin-right: 1rem !important;
  7586. }
  7587. .mb-sm-3,
  7588. .my-sm-3 {
  7589. margin-bottom: 1rem !important;
  7590. }
  7591. .ml-sm-3,
  7592. .mx-sm-3 {
  7593. margin-left: 1rem !important;
  7594. }
  7595. .m-sm-4 {
  7596. margin: 1.5rem !important;
  7597. }
  7598. .mt-sm-4,
  7599. .my-sm-4 {
  7600. margin-top: 1.5rem !important;
  7601. }
  7602. .mr-sm-4,
  7603. .mx-sm-4 {
  7604. margin-right: 1.5rem !important;
  7605. }
  7606. .mb-sm-4,
  7607. .my-sm-4 {
  7608. margin-bottom: 1.5rem !important;
  7609. }
  7610. .ml-sm-4,
  7611. .mx-sm-4 {
  7612. margin-left: 1.5rem !important;
  7613. }
  7614. .m-sm-5 {
  7615. margin: 3rem !important;
  7616. }
  7617. .mt-sm-5,
  7618. .my-sm-5 {
  7619. margin-top: 3rem !important;
  7620. }
  7621. .mr-sm-5,
  7622. .mx-sm-5 {
  7623. margin-right: 3rem !important;
  7624. }
  7625. .mb-sm-5,
  7626. .my-sm-5 {
  7627. margin-bottom: 3rem !important;
  7628. }
  7629. .ml-sm-5,
  7630. .mx-sm-5 {
  7631. margin-left: 3rem !important;
  7632. }
  7633. .p-sm-0 {
  7634. padding: 0 !important;
  7635. }
  7636. .pt-sm-0,
  7637. .py-sm-0 {
  7638. padding-top: 0 !important;
  7639. }
  7640. .pr-sm-0,
  7641. .px-sm-0 {
  7642. padding-right: 0 !important;
  7643. }
  7644. .pb-sm-0,
  7645. .py-sm-0 {
  7646. padding-bottom: 0 !important;
  7647. }
  7648. .pl-sm-0,
  7649. .px-sm-0 {
  7650. padding-left: 0 !important;
  7651. }
  7652. .p-sm-1 {
  7653. padding: 0.25rem !important;
  7654. }
  7655. .pt-sm-1,
  7656. .py-sm-1 {
  7657. padding-top: 0.25rem !important;
  7658. }
  7659. .pr-sm-1,
  7660. .px-sm-1 {
  7661. padding-right: 0.25rem !important;
  7662. }
  7663. .pb-sm-1,
  7664. .py-sm-1 {
  7665. padding-bottom: 0.25rem !important;
  7666. }
  7667. .pl-sm-1,
  7668. .px-sm-1 {
  7669. padding-left: 0.25rem !important;
  7670. }
  7671. .p-sm-2 {
  7672. padding: 0.5rem !important;
  7673. }
  7674. .pt-sm-2,
  7675. .py-sm-2 {
  7676. padding-top: 0.5rem !important;
  7677. }
  7678. .pr-sm-2,
  7679. .px-sm-2 {
  7680. padding-right: 0.5rem !important;
  7681. }
  7682. .pb-sm-2,
  7683. .py-sm-2 {
  7684. padding-bottom: 0.5rem !important;
  7685. }
  7686. .pl-sm-2,
  7687. .px-sm-2 {
  7688. padding-left: 0.5rem !important;
  7689. }
  7690. .p-sm-3 {
  7691. padding: 1rem !important;
  7692. }
  7693. .pt-sm-3,
  7694. .py-sm-3 {
  7695. padding-top: 1rem !important;
  7696. }
  7697. .pr-sm-3,
  7698. .px-sm-3 {
  7699. padding-right: 1rem !important;
  7700. }
  7701. .pb-sm-3,
  7702. .py-sm-3 {
  7703. padding-bottom: 1rem !important;
  7704. }
  7705. .pl-sm-3,
  7706. .px-sm-3 {
  7707. padding-left: 1rem !important;
  7708. }
  7709. .p-sm-4 {
  7710. padding: 1.5rem !important;
  7711. }
  7712. .pt-sm-4,
  7713. .py-sm-4 {
  7714. padding-top: 1.5rem !important;
  7715. }
  7716. .pr-sm-4,
  7717. .px-sm-4 {
  7718. padding-right: 1.5rem !important;
  7719. }
  7720. .pb-sm-4,
  7721. .py-sm-4 {
  7722. padding-bottom: 1.5rem !important;
  7723. }
  7724. .pl-sm-4,
  7725. .px-sm-4 {
  7726. padding-left: 1.5rem !important;
  7727. }
  7728. .p-sm-5 {
  7729. padding: 3rem !important;
  7730. }
  7731. .pt-sm-5,
  7732. .py-sm-5 {
  7733. padding-top: 3rem !important;
  7734. }
  7735. .pr-sm-5,
  7736. .px-sm-5 {
  7737. padding-right: 3rem !important;
  7738. }
  7739. .pb-sm-5,
  7740. .py-sm-5 {
  7741. padding-bottom: 3rem !important;
  7742. }
  7743. .pl-sm-5,
  7744. .px-sm-5 {
  7745. padding-left: 3rem !important;
  7746. }
  7747. .m-sm-n1 {
  7748. margin: -0.25rem !important;
  7749. }
  7750. .mt-sm-n1,
  7751. .my-sm-n1 {
  7752. margin-top: -0.25rem !important;
  7753. }
  7754. .mr-sm-n1,
  7755. .mx-sm-n1 {
  7756. margin-right: -0.25rem !important;
  7757. }
  7758. .mb-sm-n1,
  7759. .my-sm-n1 {
  7760. margin-bottom: -0.25rem !important;
  7761. }
  7762. .ml-sm-n1,
  7763. .mx-sm-n1 {
  7764. margin-left: -0.25rem !important;
  7765. }
  7766. .m-sm-n2 {
  7767. margin: -0.5rem !important;
  7768. }
  7769. .mt-sm-n2,
  7770. .my-sm-n2 {
  7771. margin-top: -0.5rem !important;
  7772. }
  7773. .mr-sm-n2,
  7774. .mx-sm-n2 {
  7775. margin-right: -0.5rem !important;
  7776. }
  7777. .mb-sm-n2,
  7778. .my-sm-n2 {
  7779. margin-bottom: -0.5rem !important;
  7780. }
  7781. .ml-sm-n2,
  7782. .mx-sm-n2 {
  7783. margin-left: -0.5rem !important;
  7784. }
  7785. .m-sm-n3 {
  7786. margin: -1rem !important;
  7787. }
  7788. .mt-sm-n3,
  7789. .my-sm-n3 {
  7790. margin-top: -1rem !important;
  7791. }
  7792. .mr-sm-n3,
  7793. .mx-sm-n3 {
  7794. margin-right: -1rem !important;
  7795. }
  7796. .mb-sm-n3,
  7797. .my-sm-n3 {
  7798. margin-bottom: -1rem !important;
  7799. }
  7800. .ml-sm-n3,
  7801. .mx-sm-n3 {
  7802. margin-left: -1rem !important;
  7803. }
  7804. .m-sm-n4 {
  7805. margin: -1.5rem !important;
  7806. }
  7807. .mt-sm-n4,
  7808. .my-sm-n4 {
  7809. margin-top: -1.5rem !important;
  7810. }
  7811. .mr-sm-n4,
  7812. .mx-sm-n4 {
  7813. margin-right: -1.5rem !important;
  7814. }
  7815. .mb-sm-n4,
  7816. .my-sm-n4 {
  7817. margin-bottom: -1.5rem !important;
  7818. }
  7819. .ml-sm-n4,
  7820. .mx-sm-n4 {
  7821. margin-left: -1.5rem !important;
  7822. }
  7823. .m-sm-n5 {
  7824. margin: -3rem !important;
  7825. }
  7826. .mt-sm-n5,
  7827. .my-sm-n5 {
  7828. margin-top: -3rem !important;
  7829. }
  7830. .mr-sm-n5,
  7831. .mx-sm-n5 {
  7832. margin-right: -3rem !important;
  7833. }
  7834. .mb-sm-n5,
  7835. .my-sm-n5 {
  7836. margin-bottom: -3rem !important;
  7837. }
  7838. .ml-sm-n5,
  7839. .mx-sm-n5 {
  7840. margin-left: -3rem !important;
  7841. }
  7842. .m-sm-auto {
  7843. margin: auto !important;
  7844. }
  7845. .mt-sm-auto,
  7846. .my-sm-auto {
  7847. margin-top: auto !important;
  7848. }
  7849. .mr-sm-auto,
  7850. .mx-sm-auto {
  7851. margin-right: auto !important;
  7852. }
  7853. .mb-sm-auto,
  7854. .my-sm-auto {
  7855. margin-bottom: auto !important;
  7856. }
  7857. .ml-sm-auto,
  7858. .mx-sm-auto {
  7859. margin-left: auto !important;
  7860. }
  7861. }
  7862. @media (min-width: 768px) {
  7863. .m-md-0 {
  7864. margin: 0 !important;
  7865. }
  7866. .mt-md-0,
  7867. .my-md-0 {
  7868. margin-top: 0 !important;
  7869. }
  7870. .mr-md-0,
  7871. .mx-md-0 {
  7872. margin-right: 0 !important;
  7873. }
  7874. .mb-md-0,
  7875. .my-md-0 {
  7876. margin-bottom: 0 !important;
  7877. }
  7878. .ml-md-0,
  7879. .mx-md-0 {
  7880. margin-left: 0 !important;
  7881. }
  7882. .m-md-1 {
  7883. margin: 0.25rem !important;
  7884. }
  7885. .mt-md-1,
  7886. .my-md-1 {
  7887. margin-top: 0.25rem !important;
  7888. }
  7889. .mr-md-1,
  7890. .mx-md-1 {
  7891. margin-right: 0.25rem !important;
  7892. }
  7893. .mb-md-1,
  7894. .my-md-1 {
  7895. margin-bottom: 0.25rem !important;
  7896. }
  7897. .ml-md-1,
  7898. .mx-md-1 {
  7899. margin-left: 0.25rem !important;
  7900. }
  7901. .m-md-2 {
  7902. margin: 0.5rem !important;
  7903. }
  7904. .mt-md-2,
  7905. .my-md-2 {
  7906. margin-top: 0.5rem !important;
  7907. }
  7908. .mr-md-2,
  7909. .mx-md-2 {
  7910. margin-right: 0.5rem !important;
  7911. }
  7912. .mb-md-2,
  7913. .my-md-2 {
  7914. margin-bottom: 0.5rem !important;
  7915. }
  7916. .ml-md-2,
  7917. .mx-md-2 {
  7918. margin-left: 0.5rem !important;
  7919. }
  7920. .m-md-3 {
  7921. margin: 1rem !important;
  7922. }
  7923. .mt-md-3,
  7924. .my-md-3 {
  7925. margin-top: 1rem !important;
  7926. }
  7927. .mr-md-3,
  7928. .mx-md-3 {
  7929. margin-right: 1rem !important;
  7930. }
  7931. .mb-md-3,
  7932. .my-md-3 {
  7933. margin-bottom: 1rem !important;
  7934. }
  7935. .ml-md-3,
  7936. .mx-md-3 {
  7937. margin-left: 1rem !important;
  7938. }
  7939. .m-md-4 {
  7940. margin: 1.5rem !important;
  7941. }
  7942. .mt-md-4,
  7943. .my-md-4 {
  7944. margin-top: 1.5rem !important;
  7945. }
  7946. .mr-md-4,
  7947. .mx-md-4 {
  7948. margin-right: 1.5rem !important;
  7949. }
  7950. .mb-md-4,
  7951. .my-md-4 {
  7952. margin-bottom: 1.5rem !important;
  7953. }
  7954. .ml-md-4,
  7955. .mx-md-4 {
  7956. margin-left: 1.5rem !important;
  7957. }
  7958. .m-md-5 {
  7959. margin: 3rem !important;
  7960. }
  7961. .mt-md-5,
  7962. .my-md-5 {
  7963. margin-top: 3rem !important;
  7964. }
  7965. .mr-md-5,
  7966. .mx-md-5 {
  7967. margin-right: 3rem !important;
  7968. }
  7969. .mb-md-5,
  7970. .my-md-5 {
  7971. margin-bottom: 3rem !important;
  7972. }
  7973. .ml-md-5,
  7974. .mx-md-5 {
  7975. margin-left: 3rem !important;
  7976. }
  7977. .p-md-0 {
  7978. padding: 0 !important;
  7979. }
  7980. .pt-md-0,
  7981. .py-md-0 {
  7982. padding-top: 0 !important;
  7983. }
  7984. .pr-md-0,
  7985. .px-md-0 {
  7986. padding-right: 0 !important;
  7987. }
  7988. .pb-md-0,
  7989. .py-md-0 {
  7990. padding-bottom: 0 !important;
  7991. }
  7992. .pl-md-0,
  7993. .px-md-0 {
  7994. padding-left: 0 !important;
  7995. }
  7996. .p-md-1 {
  7997. padding: 0.25rem !important;
  7998. }
  7999. .pt-md-1,
  8000. .py-md-1 {
  8001. padding-top: 0.25rem !important;
  8002. }
  8003. .pr-md-1,
  8004. .px-md-1 {
  8005. padding-right: 0.25rem !important;
  8006. }
  8007. .pb-md-1,
  8008. .py-md-1 {
  8009. padding-bottom: 0.25rem !important;
  8010. }
  8011. .pl-md-1,
  8012. .px-md-1 {
  8013. padding-left: 0.25rem !important;
  8014. }
  8015. .p-md-2 {
  8016. padding: 0.5rem !important;
  8017. }
  8018. .pt-md-2,
  8019. .py-md-2 {
  8020. padding-top: 0.5rem !important;
  8021. }
  8022. .pr-md-2,
  8023. .px-md-2 {
  8024. padding-right: 0.5rem !important;
  8025. }
  8026. .pb-md-2,
  8027. .py-md-2 {
  8028. padding-bottom: 0.5rem !important;
  8029. }
  8030. .pl-md-2,
  8031. .px-md-2 {
  8032. padding-left: 0.5rem !important;
  8033. }
  8034. .p-md-3 {
  8035. padding: 1rem !important;
  8036. }
  8037. .pt-md-3,
  8038. .py-md-3 {
  8039. padding-top: 1rem !important;
  8040. }
  8041. .pr-md-3,
  8042. .px-md-3 {
  8043. padding-right: 1rem !important;
  8044. }
  8045. .pb-md-3,
  8046. .py-md-3 {
  8047. padding-bottom: 1rem !important;
  8048. }
  8049. .pl-md-3,
  8050. .px-md-3 {
  8051. padding-left: 1rem !important;
  8052. }
  8053. .p-md-4 {
  8054. padding: 1.5rem !important;
  8055. }
  8056. .pt-md-4,
  8057. .py-md-4 {
  8058. padding-top: 1.5rem !important;
  8059. }
  8060. .pr-md-4,
  8061. .px-md-4 {
  8062. padding-right: 1.5rem !important;
  8063. }
  8064. .pb-md-4,
  8065. .py-md-4 {
  8066. padding-bottom: 1.5rem !important;
  8067. }
  8068. .pl-md-4,
  8069. .px-md-4 {
  8070. padding-left: 1.5rem !important;
  8071. }
  8072. .p-md-5 {
  8073. padding: 3rem !important;
  8074. }
  8075. .pt-md-5,
  8076. .py-md-5 {
  8077. padding-top: 3rem !important;
  8078. }
  8079. .pr-md-5,
  8080. .px-md-5 {
  8081. padding-right: 3rem !important;
  8082. }
  8083. .pb-md-5,
  8084. .py-md-5 {
  8085. padding-bottom: 3rem !important;
  8086. }
  8087. .pl-md-5,
  8088. .px-md-5 {
  8089. padding-left: 3rem !important;
  8090. }
  8091. .m-md-n1 {
  8092. margin: -0.25rem !important;
  8093. }
  8094. .mt-md-n1,
  8095. .my-md-n1 {
  8096. margin-top: -0.25rem !important;
  8097. }
  8098. .mr-md-n1,
  8099. .mx-md-n1 {
  8100. margin-right: -0.25rem !important;
  8101. }
  8102. .mb-md-n1,
  8103. .my-md-n1 {
  8104. margin-bottom: -0.25rem !important;
  8105. }
  8106. .ml-md-n1,
  8107. .mx-md-n1 {
  8108. margin-left: -0.25rem !important;
  8109. }
  8110. .m-md-n2 {
  8111. margin: -0.5rem !important;
  8112. }
  8113. .mt-md-n2,
  8114. .my-md-n2 {
  8115. margin-top: -0.5rem !important;
  8116. }
  8117. .mr-md-n2,
  8118. .mx-md-n2 {
  8119. margin-right: -0.5rem !important;
  8120. }
  8121. .mb-md-n2,
  8122. .my-md-n2 {
  8123. margin-bottom: -0.5rem !important;
  8124. }
  8125. .ml-md-n2,
  8126. .mx-md-n2 {
  8127. margin-left: -0.5rem !important;
  8128. }
  8129. .m-md-n3 {
  8130. margin: -1rem !important;
  8131. }
  8132. .mt-md-n3,
  8133. .my-md-n3 {
  8134. margin-top: -1rem !important;
  8135. }
  8136. .mr-md-n3,
  8137. .mx-md-n3 {
  8138. margin-right: -1rem !important;
  8139. }
  8140. .mb-md-n3,
  8141. .my-md-n3 {
  8142. margin-bottom: -1rem !important;
  8143. }
  8144. .ml-md-n3,
  8145. .mx-md-n3 {
  8146. margin-left: -1rem !important;
  8147. }
  8148. .m-md-n4 {
  8149. margin: -1.5rem !important;
  8150. }
  8151. .mt-md-n4,
  8152. .my-md-n4 {
  8153. margin-top: -1.5rem !important;
  8154. }
  8155. .mr-md-n4,
  8156. .mx-md-n4 {
  8157. margin-right: -1.5rem !important;
  8158. }
  8159. .mb-md-n4,
  8160. .my-md-n4 {
  8161. margin-bottom: -1.5rem !important;
  8162. }
  8163. .ml-md-n4,
  8164. .mx-md-n4 {
  8165. margin-left: -1.5rem !important;
  8166. }
  8167. .m-md-n5 {
  8168. margin: -3rem !important;
  8169. }
  8170. .mt-md-n5,
  8171. .my-md-n5 {
  8172. margin-top: -3rem !important;
  8173. }
  8174. .mr-md-n5,
  8175. .mx-md-n5 {
  8176. margin-right: -3rem !important;
  8177. }
  8178. .mb-md-n5,
  8179. .my-md-n5 {
  8180. margin-bottom: -3rem !important;
  8181. }
  8182. .ml-md-n5,
  8183. .mx-md-n5 {
  8184. margin-left: -3rem !important;
  8185. }
  8186. .m-md-auto {
  8187. margin: auto !important;
  8188. }
  8189. .mt-md-auto,
  8190. .my-md-auto {
  8191. margin-top: auto !important;
  8192. }
  8193. .mr-md-auto,
  8194. .mx-md-auto {
  8195. margin-right: auto !important;
  8196. }
  8197. .mb-md-auto,
  8198. .my-md-auto {
  8199. margin-bottom: auto !important;
  8200. }
  8201. .ml-md-auto,
  8202. .mx-md-auto {
  8203. margin-left: auto !important;
  8204. }
  8205. }
  8206. @media (min-width: 992px) {
  8207. .m-lg-0 {
  8208. margin: 0 !important;
  8209. }
  8210. .mt-lg-0,
  8211. .my-lg-0 {
  8212. margin-top: 0 !important;
  8213. }
  8214. .mr-lg-0,
  8215. .mx-lg-0 {
  8216. margin-right: 0 !important;
  8217. }
  8218. .mb-lg-0,
  8219. .my-lg-0 {
  8220. margin-bottom: 0 !important;
  8221. }
  8222. .ml-lg-0,
  8223. .mx-lg-0 {
  8224. margin-left: 0 !important;
  8225. }
  8226. .m-lg-1 {
  8227. margin: 0.25rem !important;
  8228. }
  8229. .mt-lg-1,
  8230. .my-lg-1 {
  8231. margin-top: 0.25rem !important;
  8232. }
  8233. .mr-lg-1,
  8234. .mx-lg-1 {
  8235. margin-right: 0.25rem !important;
  8236. }
  8237. .mb-lg-1,
  8238. .my-lg-1 {
  8239. margin-bottom: 0.25rem !important;
  8240. }
  8241. .ml-lg-1,
  8242. .mx-lg-1 {
  8243. margin-left: 0.25rem !important;
  8244. }
  8245. .m-lg-2 {
  8246. margin: 0.5rem !important;
  8247. }
  8248. .mt-lg-2,
  8249. .my-lg-2 {
  8250. margin-top: 0.5rem !important;
  8251. }
  8252. .mr-lg-2,
  8253. .mx-lg-2 {
  8254. margin-right: 0.5rem !important;
  8255. }
  8256. .mb-lg-2,
  8257. .my-lg-2 {
  8258. margin-bottom: 0.5rem !important;
  8259. }
  8260. .ml-lg-2,
  8261. .mx-lg-2 {
  8262. margin-left: 0.5rem !important;
  8263. }
  8264. .m-lg-3 {
  8265. margin: 1rem !important;
  8266. }
  8267. .mt-lg-3,
  8268. .my-lg-3 {
  8269. margin-top: 1rem !important;
  8270. }
  8271. .mr-lg-3,
  8272. .mx-lg-3 {
  8273. margin-right: 1rem !important;
  8274. }
  8275. .mb-lg-3,
  8276. .my-lg-3 {
  8277. margin-bottom: 1rem !important;
  8278. }
  8279. .ml-lg-3,
  8280. .mx-lg-3 {
  8281. margin-left: 1rem !important;
  8282. }
  8283. .m-lg-4 {
  8284. margin: 1.5rem !important;
  8285. }
  8286. .mt-lg-4,
  8287. .my-lg-4 {
  8288. margin-top: 1.5rem !important;
  8289. }
  8290. .mr-lg-4,
  8291. .mx-lg-4 {
  8292. margin-right: 1.5rem !important;
  8293. }
  8294. .mb-lg-4,
  8295. .my-lg-4 {
  8296. margin-bottom: 1.5rem !important;
  8297. }
  8298. .ml-lg-4,
  8299. .mx-lg-4 {
  8300. margin-left: 1.5rem !important;
  8301. }
  8302. .m-lg-5 {
  8303. margin: 3rem !important;
  8304. }
  8305. .mt-lg-5,
  8306. .my-lg-5 {
  8307. margin-top: 3rem !important;
  8308. }
  8309. .mr-lg-5,
  8310. .mx-lg-5 {
  8311. margin-right: 3rem !important;
  8312. }
  8313. .mb-lg-5,
  8314. .my-lg-5 {
  8315. margin-bottom: 3rem !important;
  8316. }
  8317. .ml-lg-5,
  8318. .mx-lg-5 {
  8319. margin-left: 3rem !important;
  8320. }
  8321. .p-lg-0 {
  8322. padding: 0 !important;
  8323. }
  8324. .pt-lg-0,
  8325. .py-lg-0 {
  8326. padding-top: 0 !important;
  8327. }
  8328. .pr-lg-0,
  8329. .px-lg-0 {
  8330. padding-right: 0 !important;
  8331. }
  8332. .pb-lg-0,
  8333. .py-lg-0 {
  8334. padding-bottom: 0 !important;
  8335. }
  8336. .pl-lg-0,
  8337. .px-lg-0 {
  8338. padding-left: 0 !important;
  8339. }
  8340. .p-lg-1 {
  8341. padding: 0.25rem !important;
  8342. }
  8343. .pt-lg-1,
  8344. .py-lg-1 {
  8345. padding-top: 0.25rem !important;
  8346. }
  8347. .pr-lg-1,
  8348. .px-lg-1 {
  8349. padding-right: 0.25rem !important;
  8350. }
  8351. .pb-lg-1,
  8352. .py-lg-1 {
  8353. padding-bottom: 0.25rem !important;
  8354. }
  8355. .pl-lg-1,
  8356. .px-lg-1 {
  8357. padding-left: 0.25rem !important;
  8358. }
  8359. .p-lg-2 {
  8360. padding: 0.5rem !important;
  8361. }
  8362. .pt-lg-2,
  8363. .py-lg-2 {
  8364. padding-top: 0.5rem !important;
  8365. }
  8366. .pr-lg-2,
  8367. .px-lg-2 {
  8368. padding-right: 0.5rem !important;
  8369. }
  8370. .pb-lg-2,
  8371. .py-lg-2 {
  8372. padding-bottom: 0.5rem !important;
  8373. }
  8374. .pl-lg-2,
  8375. .px-lg-2 {
  8376. padding-left: 0.5rem !important;
  8377. }
  8378. .p-lg-3 {
  8379. padding: 1rem !important;
  8380. }
  8381. .pt-lg-3,
  8382. .py-lg-3 {
  8383. padding-top: 1rem !important;
  8384. }
  8385. .pr-lg-3,
  8386. .px-lg-3 {
  8387. padding-right: 1rem !important;
  8388. }
  8389. .pb-lg-3,
  8390. .py-lg-3 {
  8391. padding-bottom: 1rem !important;
  8392. }
  8393. .pl-lg-3,
  8394. .px-lg-3 {
  8395. padding-left: 1rem !important;
  8396. }
  8397. .p-lg-4 {
  8398. padding: 1.5rem !important;
  8399. }
  8400. .pt-lg-4,
  8401. .py-lg-4 {
  8402. padding-top: 1.5rem !important;
  8403. }
  8404. .pr-lg-4,
  8405. .px-lg-4 {
  8406. padding-right: 1.5rem !important;
  8407. }
  8408. .pb-lg-4,
  8409. .py-lg-4 {
  8410. padding-bottom: 1.5rem !important;
  8411. }
  8412. .pl-lg-4,
  8413. .px-lg-4 {
  8414. padding-left: 1.5rem !important;
  8415. }
  8416. .p-lg-5 {
  8417. padding: 3rem !important;
  8418. }
  8419. .pt-lg-5,
  8420. .py-lg-5 {
  8421. padding-top: 3rem !important;
  8422. }
  8423. .pr-lg-5,
  8424. .px-lg-5 {
  8425. padding-right: 3rem !important;
  8426. }
  8427. .pb-lg-5,
  8428. .py-lg-5 {
  8429. padding-bottom: 3rem !important;
  8430. }
  8431. .pl-lg-5,
  8432. .px-lg-5 {
  8433. padding-left: 3rem !important;
  8434. }
  8435. .m-lg-n1 {
  8436. margin: -0.25rem !important;
  8437. }
  8438. .mt-lg-n1,
  8439. .my-lg-n1 {
  8440. margin-top: -0.25rem !important;
  8441. }
  8442. .mr-lg-n1,
  8443. .mx-lg-n1 {
  8444. margin-right: -0.25rem !important;
  8445. }
  8446. .mb-lg-n1,
  8447. .my-lg-n1 {
  8448. margin-bottom: -0.25rem !important;
  8449. }
  8450. .ml-lg-n1,
  8451. .mx-lg-n1 {
  8452. margin-left: -0.25rem !important;
  8453. }
  8454. .m-lg-n2 {
  8455. margin: -0.5rem !important;
  8456. }
  8457. .mt-lg-n2,
  8458. .my-lg-n2 {
  8459. margin-top: -0.5rem !important;
  8460. }
  8461. .mr-lg-n2,
  8462. .mx-lg-n2 {
  8463. margin-right: -0.5rem !important;
  8464. }
  8465. .mb-lg-n2,
  8466. .my-lg-n2 {
  8467. margin-bottom: -0.5rem !important;
  8468. }
  8469. .ml-lg-n2,
  8470. .mx-lg-n2 {
  8471. margin-left: -0.5rem !important;
  8472. }
  8473. .m-lg-n3 {
  8474. margin: -1rem !important;
  8475. }
  8476. .mt-lg-n3,
  8477. .my-lg-n3 {
  8478. margin-top: -1rem !important;
  8479. }
  8480. .mr-lg-n3,
  8481. .mx-lg-n3 {
  8482. margin-right: -1rem !important;
  8483. }
  8484. .mb-lg-n3,
  8485. .my-lg-n3 {
  8486. margin-bottom: -1rem !important;
  8487. }
  8488. .ml-lg-n3,
  8489. .mx-lg-n3 {
  8490. margin-left: -1rem !important;
  8491. }
  8492. .m-lg-n4 {
  8493. margin: -1.5rem !important;
  8494. }
  8495. .mt-lg-n4,
  8496. .my-lg-n4 {
  8497. margin-top: -1.5rem !important;
  8498. }
  8499. .mr-lg-n4,
  8500. .mx-lg-n4 {
  8501. margin-right: -1.5rem !important;
  8502. }
  8503. .mb-lg-n4,
  8504. .my-lg-n4 {
  8505. margin-bottom: -1.5rem !important;
  8506. }
  8507. .ml-lg-n4,
  8508. .mx-lg-n4 {
  8509. margin-left: -1.5rem !important;
  8510. }
  8511. .m-lg-n5 {
  8512. margin: -3rem !important;
  8513. }
  8514. .mt-lg-n5,
  8515. .my-lg-n5 {
  8516. margin-top: -3rem !important;
  8517. }
  8518. .mr-lg-n5,
  8519. .mx-lg-n5 {
  8520. margin-right: -3rem !important;
  8521. }
  8522. .mb-lg-n5,
  8523. .my-lg-n5 {
  8524. margin-bottom: -3rem !important;
  8525. }
  8526. .ml-lg-n5,
  8527. .mx-lg-n5 {
  8528. margin-left: -3rem !important;
  8529. }
  8530. .m-lg-auto {
  8531. margin: auto !important;
  8532. }
  8533. .mt-lg-auto,
  8534. .my-lg-auto {
  8535. margin-top: auto !important;
  8536. }
  8537. .mr-lg-auto,
  8538. .mx-lg-auto {
  8539. margin-right: auto !important;
  8540. }
  8541. .mb-lg-auto,
  8542. .my-lg-auto {
  8543. margin-bottom: auto !important;
  8544. }
  8545. .ml-lg-auto,
  8546. .mx-lg-auto {
  8547. margin-left: auto !important;
  8548. }
  8549. }
  8550. @media (min-width: 1200px) {
  8551. .m-xl-0 {
  8552. margin: 0 !important;
  8553. }
  8554. .mt-xl-0,
  8555. .my-xl-0 {
  8556. margin-top: 0 !important;
  8557. }
  8558. .mr-xl-0,
  8559. .mx-xl-0 {
  8560. margin-right: 0 !important;
  8561. }
  8562. .mb-xl-0,
  8563. .my-xl-0 {
  8564. margin-bottom: 0 !important;
  8565. }
  8566. .ml-xl-0,
  8567. .mx-xl-0 {
  8568. margin-left: 0 !important;
  8569. }
  8570. .m-xl-1 {
  8571. margin: 0.25rem !important;
  8572. }
  8573. .mt-xl-1,
  8574. .my-xl-1 {
  8575. margin-top: 0.25rem !important;
  8576. }
  8577. .mr-xl-1,
  8578. .mx-xl-1 {
  8579. margin-right: 0.25rem !important;
  8580. }
  8581. .mb-xl-1,
  8582. .my-xl-1 {
  8583. margin-bottom: 0.25rem !important;
  8584. }
  8585. .ml-xl-1,
  8586. .mx-xl-1 {
  8587. margin-left: 0.25rem !important;
  8588. }
  8589. .m-xl-2 {
  8590. margin: 0.5rem !important;
  8591. }
  8592. .mt-xl-2,
  8593. .my-xl-2 {
  8594. margin-top: 0.5rem !important;
  8595. }
  8596. .mr-xl-2,
  8597. .mx-xl-2 {
  8598. margin-right: 0.5rem !important;
  8599. }
  8600. .mb-xl-2,
  8601. .my-xl-2 {
  8602. margin-bottom: 0.5rem !important;
  8603. }
  8604. .ml-xl-2,
  8605. .mx-xl-2 {
  8606. margin-left: 0.5rem !important;
  8607. }
  8608. .m-xl-3 {
  8609. margin: 1rem !important;
  8610. }
  8611. .mt-xl-3,
  8612. .my-xl-3 {
  8613. margin-top: 1rem !important;
  8614. }
  8615. .mr-xl-3,
  8616. .mx-xl-3 {
  8617. margin-right: 1rem !important;
  8618. }
  8619. .mb-xl-3,
  8620. .my-xl-3 {
  8621. margin-bottom: 1rem !important;
  8622. }
  8623. .ml-xl-3,
  8624. .mx-xl-3 {
  8625. margin-left: 1rem !important;
  8626. }
  8627. .m-xl-4 {
  8628. margin: 1.5rem !important;
  8629. }
  8630. .mt-xl-4,
  8631. .my-xl-4 {
  8632. margin-top: 1.5rem !important;
  8633. }
  8634. .mr-xl-4,
  8635. .mx-xl-4 {
  8636. margin-right: 1.5rem !important;
  8637. }
  8638. .mb-xl-4,
  8639. .my-xl-4 {
  8640. margin-bottom: 1.5rem !important;
  8641. }
  8642. .ml-xl-4,
  8643. .mx-xl-4 {
  8644. margin-left: 1.5rem !important;
  8645. }
  8646. .m-xl-5 {
  8647. margin: 3rem !important;
  8648. }
  8649. .mt-xl-5,
  8650. .my-xl-5 {
  8651. margin-top: 3rem !important;
  8652. }
  8653. .mr-xl-5,
  8654. .mx-xl-5 {
  8655. margin-right: 3rem !important;
  8656. }
  8657. .mb-xl-5,
  8658. .my-xl-5 {
  8659. margin-bottom: 3rem !important;
  8660. }
  8661. .ml-xl-5,
  8662. .mx-xl-5 {
  8663. margin-left: 3rem !important;
  8664. }
  8665. .p-xl-0 {
  8666. padding: 0 !important;
  8667. }
  8668. .pt-xl-0,
  8669. .py-xl-0 {
  8670. padding-top: 0 !important;
  8671. }
  8672. .pr-xl-0,
  8673. .px-xl-0 {
  8674. padding-right: 0 !important;
  8675. }
  8676. .pb-xl-0,
  8677. .py-xl-0 {
  8678. padding-bottom: 0 !important;
  8679. }
  8680. .pl-xl-0,
  8681. .px-xl-0 {
  8682. padding-left: 0 !important;
  8683. }
  8684. .p-xl-1 {
  8685. padding: 0.25rem !important;
  8686. }
  8687. .pt-xl-1,
  8688. .py-xl-1 {
  8689. padding-top: 0.25rem !important;
  8690. }
  8691. .pr-xl-1,
  8692. .px-xl-1 {
  8693. padding-right: 0.25rem !important;
  8694. }
  8695. .pb-xl-1,
  8696. .py-xl-1 {
  8697. padding-bottom: 0.25rem !important;
  8698. }
  8699. .pl-xl-1,
  8700. .px-xl-1 {
  8701. padding-left: 0.25rem !important;
  8702. }
  8703. .p-xl-2 {
  8704. padding: 0.5rem !important;
  8705. }
  8706. .pt-xl-2,
  8707. .py-xl-2 {
  8708. padding-top: 0.5rem !important;
  8709. }
  8710. .pr-xl-2,
  8711. .px-xl-2 {
  8712. padding-right: 0.5rem !important;
  8713. }
  8714. .pb-xl-2,
  8715. .py-xl-2 {
  8716. padding-bottom: 0.5rem !important;
  8717. }
  8718. .pl-xl-2,
  8719. .px-xl-2 {
  8720. padding-left: 0.5rem !important;
  8721. }
  8722. .p-xl-3 {
  8723. padding: 1rem !important;
  8724. }
  8725. .pt-xl-3,
  8726. .py-xl-3 {
  8727. padding-top: 1rem !important;
  8728. }
  8729. .pr-xl-3,
  8730. .px-xl-3 {
  8731. padding-right: 1rem !important;
  8732. }
  8733. .pb-xl-3,
  8734. .py-xl-3 {
  8735. padding-bottom: 1rem !important;
  8736. }
  8737. .pl-xl-3,
  8738. .px-xl-3 {
  8739. padding-left: 1rem !important;
  8740. }
  8741. .p-xl-4 {
  8742. padding: 1.5rem !important;
  8743. }
  8744. .pt-xl-4,
  8745. .py-xl-4 {
  8746. padding-top: 1.5rem !important;
  8747. }
  8748. .pr-xl-4,
  8749. .px-xl-4 {
  8750. padding-right: 1.5rem !important;
  8751. }
  8752. .pb-xl-4,
  8753. .py-xl-4 {
  8754. padding-bottom: 1.5rem !important;
  8755. }
  8756. .pl-xl-4,
  8757. .px-xl-4 {
  8758. padding-left: 1.5rem !important;
  8759. }
  8760. .p-xl-5 {
  8761. padding: 3rem !important;
  8762. }
  8763. .pt-xl-5,
  8764. .py-xl-5 {
  8765. padding-top: 3rem !important;
  8766. }
  8767. .pr-xl-5,
  8768. .px-xl-5 {
  8769. padding-right: 3rem !important;
  8770. }
  8771. .pb-xl-5,
  8772. .py-xl-5 {
  8773. padding-bottom: 3rem !important;
  8774. }
  8775. .pl-xl-5,
  8776. .px-xl-5 {
  8777. padding-left: 3rem !important;
  8778. }
  8779. .m-xl-n1 {
  8780. margin: -0.25rem !important;
  8781. }
  8782. .mt-xl-n1,
  8783. .my-xl-n1 {
  8784. margin-top: -0.25rem !important;
  8785. }
  8786. .mr-xl-n1,
  8787. .mx-xl-n1 {
  8788. margin-right: -0.25rem !important;
  8789. }
  8790. .mb-xl-n1,
  8791. .my-xl-n1 {
  8792. margin-bottom: -0.25rem !important;
  8793. }
  8794. .ml-xl-n1,
  8795. .mx-xl-n1 {
  8796. margin-left: -0.25rem !important;
  8797. }
  8798. .m-xl-n2 {
  8799. margin: -0.5rem !important;
  8800. }
  8801. .mt-xl-n2,
  8802. .my-xl-n2 {
  8803. margin-top: -0.5rem !important;
  8804. }
  8805. .mr-xl-n2,
  8806. .mx-xl-n2 {
  8807. margin-right: -0.5rem !important;
  8808. }
  8809. .mb-xl-n2,
  8810. .my-xl-n2 {
  8811. margin-bottom: -0.5rem !important;
  8812. }
  8813. .ml-xl-n2,
  8814. .mx-xl-n2 {
  8815. margin-left: -0.5rem !important;
  8816. }
  8817. .m-xl-n3 {
  8818. margin: -1rem !important;
  8819. }
  8820. .mt-xl-n3,
  8821. .my-xl-n3 {
  8822. margin-top: -1rem !important;
  8823. }
  8824. .mr-xl-n3,
  8825. .mx-xl-n3 {
  8826. margin-right: -1rem !important;
  8827. }
  8828. .mb-xl-n3,
  8829. .my-xl-n3 {
  8830. margin-bottom: -1rem !important;
  8831. }
  8832. .ml-xl-n3,
  8833. .mx-xl-n3 {
  8834. margin-left: -1rem !important;
  8835. }
  8836. .m-xl-n4 {
  8837. margin: -1.5rem !important;
  8838. }
  8839. .mt-xl-n4,
  8840. .my-xl-n4 {
  8841. margin-top: -1.5rem !important;
  8842. }
  8843. .mr-xl-n4,
  8844. .mx-xl-n4 {
  8845. margin-right: -1.5rem !important;
  8846. }
  8847. .mb-xl-n4,
  8848. .my-xl-n4 {
  8849. margin-bottom: -1.5rem !important;
  8850. }
  8851. .ml-xl-n4,
  8852. .mx-xl-n4 {
  8853. margin-left: -1.5rem !important;
  8854. }
  8855. .m-xl-n5 {
  8856. margin: -3rem !important;
  8857. }
  8858. .mt-xl-n5,
  8859. .my-xl-n5 {
  8860. margin-top: -3rem !important;
  8861. }
  8862. .mr-xl-n5,
  8863. .mx-xl-n5 {
  8864. margin-right: -3rem !important;
  8865. }
  8866. .mb-xl-n5,
  8867. .my-xl-n5 {
  8868. margin-bottom: -3rem !important;
  8869. }
  8870. .ml-xl-n5,
  8871. .mx-xl-n5 {
  8872. margin-left: -3rem !important;
  8873. }
  8874. .m-xl-auto {
  8875. margin: auto !important;
  8876. }
  8877. .mt-xl-auto,
  8878. .my-xl-auto {
  8879. margin-top: auto !important;
  8880. }
  8881. .mr-xl-auto,
  8882. .mx-xl-auto {
  8883. margin-right: auto !important;
  8884. }
  8885. .mb-xl-auto,
  8886. .my-xl-auto {
  8887. margin-bottom: auto !important;
  8888. }
  8889. .ml-xl-auto,
  8890. .mx-xl-auto {
  8891. margin-left: auto !important;
  8892. }
  8893. }
  8894. .stretched-link::after {
  8895. position: absolute;
  8896. top: 0;
  8897. right: 0;
  8898. bottom: 0;
  8899. left: 0;
  8900. z-index: 1;
  8901. pointer-events: auto;
  8902. content: "";
  8903. background-color: rgba(0, 0, 0, 0);
  8904. }
  8905. .text-monospace {
  8906. font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  8907. }
  8908. .text-justify {
  8909. text-align: justify !important;
  8910. }
  8911. .text-wrap {
  8912. white-space: normal !important;
  8913. }
  8914. .text-nowrap {
  8915. white-space: nowrap !important;
  8916. }
  8917. .text-truncate {
  8918. overflow: hidden;
  8919. text-overflow: ellipsis;
  8920. white-space: nowrap;
  8921. }
  8922. .text-left {
  8923. text-align: left !important;
  8924. }
  8925. .text-right {
  8926. text-align: right !important;
  8927. }
  8928. .text-center {
  8929. text-align: center !important;
  8930. }
  8931. @media (min-width: 576px) {
  8932. .text-sm-left {
  8933. text-align: left !important;
  8934. }
  8935. .text-sm-right {
  8936. text-align: right !important;
  8937. }
  8938. .text-sm-center {
  8939. text-align: center !important;
  8940. }
  8941. }
  8942. @media (min-width: 768px) {
  8943. .text-md-left {
  8944. text-align: left !important;
  8945. }
  8946. .text-md-right {
  8947. text-align: right !important;
  8948. }
  8949. .text-md-center {
  8950. text-align: center !important;
  8951. }
  8952. }
  8953. @media (min-width: 992px) {
  8954. .text-lg-left {
  8955. text-align: left !important;
  8956. }
  8957. .text-lg-right {
  8958. text-align: right !important;
  8959. }
  8960. .text-lg-center {
  8961. text-align: center !important;
  8962. }
  8963. }
  8964. @media (min-width: 1200px) {
  8965. .text-xl-left {
  8966. text-align: left !important;
  8967. }
  8968. .text-xl-right {
  8969. text-align: right !important;
  8970. }
  8971. .text-xl-center {
  8972. text-align: center !important;
  8973. }
  8974. }
  8975. .text-lowercase {
  8976. text-transform: lowercase !important;
  8977. }
  8978. .text-uppercase {
  8979. text-transform: uppercase !important;
  8980. }
  8981. .text-capitalize {
  8982. text-transform: capitalize !important;
  8983. }
  8984. .font-weight-light {
  8985. font-weight: 300 !important;
  8986. }
  8987. .font-weight-lighter {
  8988. font-weight: lighter !important;
  8989. }
  8990. .font-weight-normal {
  8991. font-weight: 400 !important;
  8992. }
  8993. .font-weight-bold {
  8994. font-weight: 700 !important;
  8995. }
  8996. .font-weight-bolder {
  8997. font-weight: bolder !important;
  8998. }
  8999. .font-italic {
  9000. font-style: italic !important;
  9001. }
  9002. .text-white {
  9003. color: #fff !important;
  9004. }
  9005. .text-primary {
  9006. color: #3490dc !important;
  9007. }
  9008. a.text-primary:hover,
  9009. a.text-primary:focus {
  9010. color: #1d68a7 !important;
  9011. }
  9012. .text-secondary {
  9013. color: #6c757d !important;
  9014. }
  9015. a.text-secondary:hover,
  9016. a.text-secondary:focus {
  9017. color: #494f54 !important;
  9018. }
  9019. .text-success {
  9020. color: #38c172 !important;
  9021. }
  9022. a.text-success:hover,
  9023. a.text-success:focus {
  9024. color: #27864f !important;
  9025. }
  9026. .text-info {
  9027. color: #6cb2eb !important;
  9028. }
  9029. a.text-info:hover,
  9030. a.text-info:focus {
  9031. color: #298fe2 !important;
  9032. }
  9033. .text-warning {
  9034. color: #ffed4a !important;
  9035. }
  9036. a.text-warning:hover,
  9037. a.text-warning:focus {
  9038. color: #fde300 !important;
  9039. }
  9040. .text-danger {
  9041. color: #e3342f !important;
  9042. }
  9043. a.text-danger:hover,
  9044. a.text-danger:focus {
  9045. color: #ae1c17 !important;
  9046. }
  9047. .text-light {
  9048. color: #f8f9fa !important;
  9049. }
  9050. a.text-light:hover,
  9051. a.text-light:focus {
  9052. color: #cbd3da !important;
  9053. }
  9054. .text-dark {
  9055. color: #343a40 !important;
  9056. }
  9057. a.text-dark:hover,
  9058. a.text-dark:focus {
  9059. color: #121416 !important;
  9060. }
  9061. .text-body {
  9062. color: #212529 !important;
  9063. }
  9064. .text-muted {
  9065. color: #6c757d !important;
  9066. }
  9067. .text-black-50 {
  9068. color: rgba(0, 0, 0, 0.5) !important;
  9069. }
  9070. .text-white-50 {
  9071. color: rgba(255, 255, 255, 0.5) !important;
  9072. }
  9073. .text-hide {
  9074. font: 0/0 a;
  9075. color: transparent;
  9076. text-shadow: none;
  9077. background-color: transparent;
  9078. border: 0;
  9079. }
  9080. .text-decoration-none {
  9081. text-decoration: none !important;
  9082. }
  9083. .text-break {
  9084. word-wrap: break-word !important;
  9085. }
  9086. .text-reset {
  9087. color: inherit !important;
  9088. }
  9089. .visible {
  9090. visibility: visible !important;
  9091. }
  9092. .invisible {
  9093. visibility: hidden !important;
  9094. }
  9095. @media print {
  9096. *,
  9097. *::before,
  9098. *::after {
  9099. text-shadow: none !important;
  9100. box-shadow: none !important;
  9101. }
  9102. a:not(.btn) {
  9103. text-decoration: underline;
  9104. }
  9105. abbr[title]::after {
  9106. content: " (" attr(title) ")";
  9107. }
  9108. pre {
  9109. white-space: pre-wrap !important;
  9110. }
  9111. pre,
  9112. blockquote {
  9113. border: 1px solid #adb5bd;
  9114. page-break-inside: avoid;
  9115. }
  9116. thead {
  9117. display: table-header-group;
  9118. }
  9119. tr,
  9120. img {
  9121. page-break-inside: avoid;
  9122. }
  9123. p,
  9124. h2,
  9125. h3 {
  9126. orphans: 3;
  9127. widows: 3;
  9128. }
  9129. h2,
  9130. h3 {
  9131. page-break-after: avoid;
  9132. }
  9133. @page {
  9134. size: a3;
  9135. }
  9136. body {
  9137. min-width: 992px !important;
  9138. }
  9139. .container {
  9140. min-width: 992px !important;
  9141. }
  9142. .navbar {
  9143. display: none;
  9144. }
  9145. .badge {
  9146. border: 1px solid #000;
  9147. }
  9148. .table {
  9149. border-collapse: collapse !important;
  9150. }
  9151. .table td,
  9152. .table th {
  9153. background-color: #fff !important;
  9154. }
  9155. .table-bordered th,
  9156. .table-bordered td {
  9157. border: 1px solid #dee2e6 !important;
  9158. }
  9159. .table-dark {
  9160. color: inherit;
  9161. }
  9162. .table-dark th,
  9163. .table-dark td,
  9164. .table-dark thead th,
  9165. .table-dark tbody + tbody {
  9166. border-color: #dee2e6;
  9167. }
  9168. .table .thead-dark th {
  9169. color: inherit;
  9170. border-color: #dee2e6;
  9171. }
  9172. }
  9173. /*!
  9174. * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
  9175. * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  9176. */
  9177. /* FONT PATH
  9178. * -------------------------- */
  9179. @font-face {
  9180. font-family: "FontAwesome";
  9181. src: url(/fonts/vendor/font-awesome/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);
  9182. 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");
  9183. font-weight: normal;
  9184. font-style: normal;
  9185. }
  9186. .fa {
  9187. display: inline-block;
  9188. font: normal normal normal 14px/1 FontAwesome;
  9189. font-size: inherit;
  9190. text-rendering: auto;
  9191. -webkit-font-smoothing: antialiased;
  9192. -moz-osx-font-smoothing: grayscale;
  9193. }
  9194. /* makes the font 33% larger relative to the icon container */
  9195. .fa-lg {
  9196. font-size: 1.3333333333em;
  9197. line-height: 0.75em;
  9198. vertical-align: -15%;
  9199. }
  9200. .fa-2x {
  9201. font-size: 2em;
  9202. }
  9203. .fa-3x {
  9204. font-size: 3em;
  9205. }
  9206. .fa-4x {
  9207. font-size: 4em;
  9208. }
  9209. .fa-5x {
  9210. font-size: 5em;
  9211. }
  9212. .fa-fw {
  9213. width: 1.2857142857em;
  9214. text-align: center;
  9215. }
  9216. .fa-ul {
  9217. padding-left: 0;
  9218. margin-left: 2.1428571429em;
  9219. list-style-type: none;
  9220. }
  9221. .fa-ul > li {
  9222. position: relative;
  9223. }
  9224. .fa-li {
  9225. position: absolute;
  9226. left: -2.1428571429em;
  9227. width: 2.1428571429em;
  9228. top: 0.1428571429em;
  9229. text-align: center;
  9230. }
  9231. .fa-li.fa-lg {
  9232. left: -1.8571428571em;
  9233. }
  9234. .fa-border {
  9235. padding: 0.2em 0.25em 0.15em;
  9236. border: solid 0.08em #eee;
  9237. border-radius: 0.1em;
  9238. }
  9239. .fa-pull-left {
  9240. float: left;
  9241. }
  9242. .fa-pull-right {
  9243. float: right;
  9244. }
  9245. .fa.fa-pull-left {
  9246. margin-right: 0.3em;
  9247. }
  9248. .fa.fa-pull-right {
  9249. margin-left: 0.3em;
  9250. }
  9251. /* Deprecated as of 4.4.0 */
  9252. .pull-right {
  9253. float: right;
  9254. }
  9255. .pull-left {
  9256. float: left;
  9257. }
  9258. .fa.pull-left {
  9259. margin-right: 0.3em;
  9260. }
  9261. .fa.pull-right {
  9262. margin-left: 0.3em;
  9263. }
  9264. .fa-spin {
  9265. -webkit-animation: fa-spin 2s infinite linear;
  9266. animation: fa-spin 2s infinite linear;
  9267. }
  9268. .fa-pulse {
  9269. -webkit-animation: fa-spin 1s infinite steps(8);
  9270. animation: fa-spin 1s infinite steps(8);
  9271. }
  9272. @-webkit-keyframes fa-spin {
  9273. 0% {
  9274. transform: rotate(0deg);
  9275. }
  9276. 100% {
  9277. transform: rotate(359deg);
  9278. }
  9279. }
  9280. @keyframes fa-spin {
  9281. 0% {
  9282. transform: rotate(0deg);
  9283. }
  9284. 100% {
  9285. transform: rotate(359deg);
  9286. }
  9287. }
  9288. .fa-rotate-90 {
  9289. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  9290. transform: rotate(90deg);
  9291. }
  9292. .fa-rotate-180 {
  9293. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  9294. transform: rotate(180deg);
  9295. }
  9296. .fa-rotate-270 {
  9297. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  9298. transform: rotate(270deg);
  9299. }
  9300. .fa-flip-horizontal {
  9301. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  9302. transform: scale(-1, 1);
  9303. }
  9304. .fa-flip-vertical {
  9305. -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  9306. transform: scale(1, -1);
  9307. }
  9308. :root .fa-rotate-90,
  9309. :root .fa-rotate-180,
  9310. :root .fa-rotate-270,
  9311. :root .fa-flip-horizontal,
  9312. :root .fa-flip-vertical {
  9313. -webkit-filter: none;
  9314. filter: none;
  9315. }
  9316. .fa-stack {
  9317. position: relative;
  9318. display: inline-block;
  9319. width: 2em;
  9320. height: 2em;
  9321. line-height: 2em;
  9322. vertical-align: middle;
  9323. }
  9324. .fa-stack-1x,
  9325. .fa-stack-2x {
  9326. position: absolute;
  9327. left: 0;
  9328. width: 100%;
  9329. text-align: center;
  9330. }
  9331. .fa-stack-1x {
  9332. line-height: inherit;
  9333. }
  9334. .fa-stack-2x {
  9335. font-size: 2em;
  9336. }
  9337. .fa-inverse {
  9338. color: #fff;
  9339. }
  9340. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  9341. readers do not read off random characters that represent icons */
  9342. .fa-glass:before {
  9343. content: "\F000";
  9344. }
  9345. .fa-music:before {
  9346. content: "\F001";
  9347. }
  9348. .fa-search:before {
  9349. content: "\F002";
  9350. }
  9351. .fa-envelope-o:before {
  9352. content: "\F003";
  9353. }
  9354. .fa-heart:before {
  9355. content: "\F004";
  9356. }
  9357. .fa-star:before {
  9358. content: "\F005";
  9359. }
  9360. .fa-star-o:before {
  9361. content: "\F006";
  9362. }
  9363. .fa-user:before {
  9364. content: "\F007";
  9365. }
  9366. .fa-film:before {
  9367. content: "\F008";
  9368. }
  9369. .fa-th-large:before {
  9370. content: "\F009";
  9371. }
  9372. .fa-th:before {
  9373. content: "\F00A";
  9374. }
  9375. .fa-th-list:before {
  9376. content: "\F00B";
  9377. }
  9378. .fa-check:before {
  9379. content: "\F00C";
  9380. }
  9381. .fa-remove:before,
  9382. .fa-close:before,
  9383. .fa-times:before {
  9384. content: "\F00D";
  9385. }
  9386. .fa-search-plus:before {
  9387. content: "\F00E";
  9388. }
  9389. .fa-search-minus:before {
  9390. content: "\F010";
  9391. }
  9392. .fa-power-off:before {
  9393. content: "\F011";
  9394. }
  9395. .fa-signal:before {
  9396. content: "\F012";
  9397. }
  9398. .fa-gear:before,
  9399. .fa-cog:before {
  9400. content: "\F013";
  9401. }
  9402. .fa-trash-o:before {
  9403. content: "\F014";
  9404. }
  9405. .fa-home:before {
  9406. content: "\F015";
  9407. }
  9408. .fa-file-o:before {
  9409. content: "\F016";
  9410. }
  9411. .fa-clock-o:before {
  9412. content: "\F017";
  9413. }
  9414. .fa-road:before {
  9415. content: "\F018";
  9416. }
  9417. .fa-download:before {
  9418. content: "\F019";
  9419. }
  9420. .fa-arrow-circle-o-down:before {
  9421. content: "\F01A";
  9422. }
  9423. .fa-arrow-circle-o-up:before {
  9424. content: "\F01B";
  9425. }
  9426. .fa-inbox:before {
  9427. content: "\F01C";
  9428. }
  9429. .fa-play-circle-o:before {
  9430. content: "\F01D";
  9431. }
  9432. .fa-rotate-right:before,
  9433. .fa-repeat:before {
  9434. content: "\F01E";
  9435. }
  9436. .fa-refresh:before {
  9437. content: "\F021";
  9438. }
  9439. .fa-list-alt:before {
  9440. content: "\F022";
  9441. }
  9442. .fa-lock:before {
  9443. content: "\F023";
  9444. }
  9445. .fa-flag:before {
  9446. content: "\F024";
  9447. }
  9448. .fa-headphones:before {
  9449. content: "\F025";
  9450. }
  9451. .fa-volume-off:before {
  9452. content: "\F026";
  9453. }
  9454. .fa-volume-down:before {
  9455. content: "\F027";
  9456. }
  9457. .fa-volume-up:before {
  9458. content: "\F028";
  9459. }
  9460. .fa-qrcode:before {
  9461. content: "\F029";
  9462. }
  9463. .fa-barcode:before {
  9464. content: "\F02A";
  9465. }
  9466. .fa-tag:before {
  9467. content: "\F02B";
  9468. }
  9469. .fa-tags:before {
  9470. content: "\F02C";
  9471. }
  9472. .fa-book:before {
  9473. content: "\F02D";
  9474. }
  9475. .fa-bookmark:before {
  9476. content: "\F02E";
  9477. }
  9478. .fa-print:before {
  9479. content: "\F02F";
  9480. }
  9481. .fa-camera:before {
  9482. content: "\F030";
  9483. }
  9484. .fa-font:before {
  9485. content: "\F031";
  9486. }
  9487. .fa-bold:before {
  9488. content: "\F032";
  9489. }
  9490. .fa-italic:before {
  9491. content: "\F033";
  9492. }
  9493. .fa-text-height:before {
  9494. content: "\F034";
  9495. }
  9496. .fa-text-width:before {
  9497. content: "\F035";
  9498. }
  9499. .fa-align-left:before {
  9500. content: "\F036";
  9501. }
  9502. .fa-align-center:before {
  9503. content: "\F037";
  9504. }
  9505. .fa-align-right:before {
  9506. content: "\F038";
  9507. }
  9508. .fa-align-justify:before {
  9509. content: "\F039";
  9510. }
  9511. .fa-list:before {
  9512. content: "\F03A";
  9513. }
  9514. .fa-dedent:before,
  9515. .fa-outdent:before {
  9516. content: "\F03B";
  9517. }
  9518. .fa-indent:before {
  9519. content: "\F03C";
  9520. }
  9521. .fa-video-camera:before {
  9522. content: "\F03D";
  9523. }
  9524. .fa-photo:before,
  9525. .fa-image:before,
  9526. .fa-picture-o:before {
  9527. content: "\F03E";
  9528. }
  9529. .fa-pencil:before {
  9530. content: "\F040";
  9531. }
  9532. .fa-map-marker:before {
  9533. content: "\F041";
  9534. }
  9535. .fa-adjust:before {
  9536. content: "\F042";
  9537. }
  9538. .fa-tint:before {
  9539. content: "\F043";
  9540. }
  9541. .fa-edit:before,
  9542. .fa-pencil-square-o:before {
  9543. content: "\F044";
  9544. }
  9545. .fa-share-square-o:before {
  9546. content: "\F045";
  9547. }
  9548. .fa-check-square-o:before {
  9549. content: "\F046";
  9550. }
  9551. .fa-arrows:before {
  9552. content: "\F047";
  9553. }
  9554. .fa-step-backward:before {
  9555. content: "\F048";
  9556. }
  9557. .fa-fast-backward:before {
  9558. content: "\F049";
  9559. }
  9560. .fa-backward:before {
  9561. content: "\F04A";
  9562. }
  9563. .fa-play:before {
  9564. content: "\F04B";
  9565. }
  9566. .fa-pause:before {
  9567. content: "\F04C";
  9568. }
  9569. .fa-stop:before {
  9570. content: "\F04D";
  9571. }
  9572. .fa-forward:before {
  9573. content: "\F04E";
  9574. }
  9575. .fa-fast-forward:before {
  9576. content: "\F050";
  9577. }
  9578. .fa-step-forward:before {
  9579. content: "\F051";
  9580. }
  9581. .fa-eject:before {
  9582. content: "\F052";
  9583. }
  9584. .fa-chevron-left:before {
  9585. content: "\F053";
  9586. }
  9587. .fa-chevron-right:before {
  9588. content: "\F054";
  9589. }
  9590. .fa-plus-circle:before {
  9591. content: "\F055";
  9592. }
  9593. .fa-minus-circle:before {
  9594. content: "\F056";
  9595. }
  9596. .fa-times-circle:before {
  9597. content: "\F057";
  9598. }
  9599. .fa-check-circle:before {
  9600. content: "\F058";
  9601. }
  9602. .fa-question-circle:before {
  9603. content: "\F059";
  9604. }
  9605. .fa-info-circle:before {
  9606. content: "\F05A";
  9607. }
  9608. .fa-crosshairs:before {
  9609. content: "\F05B";
  9610. }
  9611. .fa-times-circle-o:before {
  9612. content: "\F05C";
  9613. }
  9614. .fa-check-circle-o:before {
  9615. content: "\F05D";
  9616. }
  9617. .fa-ban:before {
  9618. content: "\F05E";
  9619. }
  9620. .fa-arrow-left:before {
  9621. content: "\F060";
  9622. }
  9623. .fa-arrow-right:before {
  9624. content: "\F061";
  9625. }
  9626. .fa-arrow-up:before {
  9627. content: "\F062";
  9628. }
  9629. .fa-arrow-down:before {
  9630. content: "\F063";
  9631. }
  9632. .fa-mail-forward:before,
  9633. .fa-share:before {
  9634. content: "\F064";
  9635. }
  9636. .fa-expand:before {
  9637. content: "\F065";
  9638. }
  9639. .fa-compress:before {
  9640. content: "\F066";
  9641. }
  9642. .fa-plus:before {
  9643. content: "\F067";
  9644. }
  9645. .fa-minus:before {
  9646. content: "\F068";
  9647. }
  9648. .fa-asterisk:before {
  9649. content: "\F069";
  9650. }
  9651. .fa-exclamation-circle:before {
  9652. content: "\F06A";
  9653. }
  9654. .fa-gift:before {
  9655. content: "\F06B";
  9656. }
  9657. .fa-leaf:before {
  9658. content: "\F06C";
  9659. }
  9660. .fa-fire:before {
  9661. content: "\F06D";
  9662. }
  9663. .fa-eye:before {
  9664. content: "\F06E";
  9665. }
  9666. .fa-eye-slash:before {
  9667. content: "\F070";
  9668. }
  9669. .fa-warning:before,
  9670. .fa-exclamation-triangle:before {
  9671. content: "\F071";
  9672. }
  9673. .fa-plane:before {
  9674. content: "\F072";
  9675. }
  9676. .fa-calendar:before {
  9677. content: "\F073";
  9678. }
  9679. .fa-random:before {
  9680. content: "\F074";
  9681. }
  9682. .fa-comment:before {
  9683. content: "\F075";
  9684. }
  9685. .fa-magnet:before {
  9686. content: "\F076";
  9687. }
  9688. .fa-chevron-up:before {
  9689. content: "\F077";
  9690. }
  9691. .fa-chevron-down:before {
  9692. content: "\F078";
  9693. }
  9694. .fa-retweet:before {
  9695. content: "\F079";
  9696. }
  9697. .fa-shopping-cart:before {
  9698. content: "\F07A";
  9699. }
  9700. .fa-folder:before {
  9701. content: "\F07B";
  9702. }
  9703. .fa-folder-open:before {
  9704. content: "\F07C";
  9705. }
  9706. .fa-arrows-v:before {
  9707. content: "\F07D";
  9708. }
  9709. .fa-arrows-h:before {
  9710. content: "\F07E";
  9711. }
  9712. .fa-bar-chart-o:before,
  9713. .fa-bar-chart:before {
  9714. content: "\F080";
  9715. }
  9716. .fa-twitter-square:before {
  9717. content: "\F081";
  9718. }
  9719. .fa-facebook-square:before {
  9720. content: "\F082";
  9721. }
  9722. .fa-camera-retro:before {
  9723. content: "\F083";
  9724. }
  9725. .fa-key:before {
  9726. content: "\F084";
  9727. }
  9728. .fa-gears:before,
  9729. .fa-cogs:before {
  9730. content: "\F085";
  9731. }
  9732. .fa-comments:before {
  9733. content: "\F086";
  9734. }
  9735. .fa-thumbs-o-up:before {
  9736. content: "\F087";
  9737. }
  9738. .fa-thumbs-o-down:before {
  9739. content: "\F088";
  9740. }
  9741. .fa-star-half:before {
  9742. content: "\F089";
  9743. }
  9744. .fa-heart-o:before {
  9745. content: "\F08A";
  9746. }
  9747. .fa-sign-out:before {
  9748. content: "\F08B";
  9749. }
  9750. .fa-linkedin-square:before {
  9751. content: "\F08C";
  9752. }
  9753. .fa-thumb-tack:before {
  9754. content: "\F08D";
  9755. }
  9756. .fa-external-link:before {
  9757. content: "\F08E";
  9758. }
  9759. .fa-sign-in:before {
  9760. content: "\F090";
  9761. }
  9762. .fa-trophy:before {
  9763. content: "\F091";
  9764. }
  9765. .fa-github-square:before {
  9766. content: "\F092";
  9767. }
  9768. .fa-upload:before {
  9769. content: "\F093";
  9770. }
  9771. .fa-lemon-o:before {
  9772. content: "\F094";
  9773. }
  9774. .fa-phone:before {
  9775. content: "\F095";
  9776. }
  9777. .fa-square-o:before {
  9778. content: "\F096";
  9779. }
  9780. .fa-bookmark-o:before {
  9781. content: "\F097";
  9782. }
  9783. .fa-phone-square:before {
  9784. content: "\F098";
  9785. }
  9786. .fa-twitter:before {
  9787. content: "\F099";
  9788. }
  9789. .fa-facebook-f:before,
  9790. .fa-facebook:before {
  9791. content: "\F09A";
  9792. }
  9793. .fa-github:before {
  9794. content: "\F09B";
  9795. }
  9796. .fa-unlock:before {
  9797. content: "\F09C";
  9798. }
  9799. .fa-credit-card:before {
  9800. content: "\F09D";
  9801. }
  9802. .fa-feed:before,
  9803. .fa-rss:before {
  9804. content: "\F09E";
  9805. }
  9806. .fa-hdd-o:before {
  9807. content: "\F0A0";
  9808. }
  9809. .fa-bullhorn:before {
  9810. content: "\F0A1";
  9811. }
  9812. .fa-bell:before {
  9813. content: "\F0F3";
  9814. }
  9815. .fa-certificate:before {
  9816. content: "\F0A3";
  9817. }
  9818. .fa-hand-o-right:before {
  9819. content: "\F0A4";
  9820. }
  9821. .fa-hand-o-left:before {
  9822. content: "\F0A5";
  9823. }
  9824. .fa-hand-o-up:before {
  9825. content: "\F0A6";
  9826. }
  9827. .fa-hand-o-down:before {
  9828. content: "\F0A7";
  9829. }
  9830. .fa-arrow-circle-left:before {
  9831. content: "\F0A8";
  9832. }
  9833. .fa-arrow-circle-right:before {
  9834. content: "\F0A9";
  9835. }
  9836. .fa-arrow-circle-up:before {
  9837. content: "\F0AA";
  9838. }
  9839. .fa-arrow-circle-down:before {
  9840. content: "\F0AB";
  9841. }
  9842. .fa-globe:before {
  9843. content: "\F0AC";
  9844. }
  9845. .fa-wrench:before {
  9846. content: "\F0AD";
  9847. }
  9848. .fa-tasks:before {
  9849. content: "\F0AE";
  9850. }
  9851. .fa-filter:before {
  9852. content: "\F0B0";
  9853. }
  9854. .fa-briefcase:before {
  9855. content: "\F0B1";
  9856. }
  9857. .fa-arrows-alt:before {
  9858. content: "\F0B2";
  9859. }
  9860. .fa-group:before,
  9861. .fa-users:before {
  9862. content: "\F0C0";
  9863. }
  9864. .fa-chain:before,
  9865. .fa-link:before {
  9866. content: "\F0C1";
  9867. }
  9868. .fa-cloud:before {
  9869. content: "\F0C2";
  9870. }
  9871. .fa-flask:before {
  9872. content: "\F0C3";
  9873. }
  9874. .fa-cut:before,
  9875. .fa-scissors:before {
  9876. content: "\F0C4";
  9877. }
  9878. .fa-copy:before,
  9879. .fa-files-o:before {
  9880. content: "\F0C5";
  9881. }
  9882. .fa-paperclip:before {
  9883. content: "\F0C6";
  9884. }
  9885. .fa-save:before,
  9886. .fa-floppy-o:before {
  9887. content: "\F0C7";
  9888. }
  9889. .fa-square:before {
  9890. content: "\F0C8";
  9891. }
  9892. .fa-navicon:before,
  9893. .fa-reorder:before,
  9894. .fa-bars:before {
  9895. content: "\F0C9";
  9896. }
  9897. .fa-list-ul:before {
  9898. content: "\F0CA";
  9899. }
  9900. .fa-list-ol:before {
  9901. content: "\F0CB";
  9902. }
  9903. .fa-strikethrough:before {
  9904. content: "\F0CC";
  9905. }
  9906. .fa-underline:before {
  9907. content: "\F0CD";
  9908. }
  9909. .fa-table:before {
  9910. content: "\F0CE";
  9911. }
  9912. .fa-magic:before {
  9913. content: "\F0D0";
  9914. }
  9915. .fa-truck:before {
  9916. content: "\F0D1";
  9917. }
  9918. .fa-pinterest:before {
  9919. content: "\F0D2";
  9920. }
  9921. .fa-pinterest-square:before {
  9922. content: "\F0D3";
  9923. }
  9924. .fa-google-plus-square:before {
  9925. content: "\F0D4";
  9926. }
  9927. .fa-google-plus:before {
  9928. content: "\F0D5";
  9929. }
  9930. .fa-money:before {
  9931. content: "\F0D6";
  9932. }
  9933. .fa-caret-down:before {
  9934. content: "\F0D7";
  9935. }
  9936. .fa-caret-up:before {
  9937. content: "\F0D8";
  9938. }
  9939. .fa-caret-left:before {
  9940. content: "\F0D9";
  9941. }
  9942. .fa-caret-right:before {
  9943. content: "\F0DA";
  9944. }
  9945. .fa-columns:before {
  9946. content: "\F0DB";
  9947. }
  9948. .fa-unsorted:before,
  9949. .fa-sort:before {
  9950. content: "\F0DC";
  9951. }
  9952. .fa-sort-down:before,
  9953. .fa-sort-desc:before {
  9954. content: "\F0DD";
  9955. }
  9956. .fa-sort-up:before,
  9957. .fa-sort-asc:before {
  9958. content: "\F0DE";
  9959. }
  9960. .fa-envelope:before {
  9961. content: "\F0E0";
  9962. }
  9963. .fa-linkedin:before {
  9964. content: "\F0E1";
  9965. }
  9966. .fa-rotate-left:before,
  9967. .fa-undo:before {
  9968. content: "\F0E2";
  9969. }
  9970. .fa-legal:before,
  9971. .fa-gavel:before {
  9972. content: "\F0E3";
  9973. }
  9974. .fa-dashboard:before,
  9975. .fa-tachometer:before {
  9976. content: "\F0E4";
  9977. }
  9978. .fa-comment-o:before {
  9979. content: "\F0E5";
  9980. }
  9981. .fa-comments-o:before {
  9982. content: "\F0E6";
  9983. }
  9984. .fa-flash:before,
  9985. .fa-bolt:before {
  9986. content: "\F0E7";
  9987. }
  9988. .fa-sitemap:before {
  9989. content: "\F0E8";
  9990. }
  9991. .fa-umbrella:before {
  9992. content: "\F0E9";
  9993. }
  9994. .fa-paste:before,
  9995. .fa-clipboard:before {
  9996. content: "\F0EA";
  9997. }
  9998. .fa-lightbulb-o:before {
  9999. content: "\F0EB";
  10000. }
  10001. .fa-exchange:before {
  10002. content: "\F0EC";
  10003. }
  10004. .fa-cloud-download:before {
  10005. content: "\F0ED";
  10006. }
  10007. .fa-cloud-upload:before {
  10008. content: "\F0EE";
  10009. }
  10010. .fa-user-md:before {
  10011. content: "\F0F0";
  10012. }
  10013. .fa-stethoscope:before {
  10014. content: "\F0F1";
  10015. }
  10016. .fa-suitcase:before {
  10017. content: "\F0F2";
  10018. }
  10019. .fa-bell-o:before {
  10020. content: "\F0A2";
  10021. }
  10022. .fa-coffee:before {
  10023. content: "\F0F4";
  10024. }
  10025. .fa-cutlery:before {
  10026. content: "\F0F5";
  10027. }
  10028. .fa-file-text-o:before {
  10029. content: "\F0F6";
  10030. }
  10031. .fa-building-o:before {
  10032. content: "\F0F7";
  10033. }
  10034. .fa-hospital-o:before {
  10035. content: "\F0F8";
  10036. }
  10037. .fa-ambulance:before {
  10038. content: "\F0F9";
  10039. }
  10040. .fa-medkit:before {
  10041. content: "\F0FA";
  10042. }
  10043. .fa-fighter-jet:before {
  10044. content: "\F0FB";
  10045. }
  10046. .fa-beer:before {
  10047. content: "\F0FC";
  10048. }
  10049. .fa-h-square:before {
  10050. content: "\F0FD";
  10051. }
  10052. .fa-plus-square:before {
  10053. content: "\F0FE";
  10054. }
  10055. .fa-angle-double-left:before {
  10056. content: "\F100";
  10057. }
  10058. .fa-angle-double-right:before {
  10059. content: "\F101";
  10060. }
  10061. .fa-angle-double-up:before {
  10062. content: "\F102";
  10063. }
  10064. .fa-angle-double-down:before {
  10065. content: "\F103";
  10066. }
  10067. .fa-angle-left:before {
  10068. content: "\F104";
  10069. }
  10070. .fa-angle-right:before {
  10071. content: "\F105";
  10072. }
  10073. .fa-angle-up:before {
  10074. content: "\F106";
  10075. }
  10076. .fa-angle-down:before {
  10077. content: "\F107";
  10078. }
  10079. .fa-desktop:before {
  10080. content: "\F108";
  10081. }
  10082. .fa-laptop:before {
  10083. content: "\F109";
  10084. }
  10085. .fa-tablet:before {
  10086. content: "\F10A";
  10087. }
  10088. .fa-mobile-phone:before,
  10089. .fa-mobile:before {
  10090. content: "\F10B";
  10091. }
  10092. .fa-circle-o:before {
  10093. content: "\F10C";
  10094. }
  10095. .fa-quote-left:before {
  10096. content: "\F10D";
  10097. }
  10098. .fa-quote-right:before {
  10099. content: "\F10E";
  10100. }
  10101. .fa-spinner:before {
  10102. content: "\F110";
  10103. }
  10104. .fa-circle:before {
  10105. content: "\F111";
  10106. }
  10107. .fa-mail-reply:before,
  10108. .fa-reply:before {
  10109. content: "\F112";
  10110. }
  10111. .fa-github-alt:before {
  10112. content: "\F113";
  10113. }
  10114. .fa-folder-o:before {
  10115. content: "\F114";
  10116. }
  10117. .fa-folder-open-o:before {
  10118. content: "\F115";
  10119. }
  10120. .fa-smile-o:before {
  10121. content: "\F118";
  10122. }
  10123. .fa-frown-o:before {
  10124. content: "\F119";
  10125. }
  10126. .fa-meh-o:before {
  10127. content: "\F11A";
  10128. }
  10129. .fa-gamepad:before {
  10130. content: "\F11B";
  10131. }
  10132. .fa-keyboard-o:before {
  10133. content: "\F11C";
  10134. }
  10135. .fa-flag-o:before {
  10136. content: "\F11D";
  10137. }
  10138. .fa-flag-checkered:before {
  10139. content: "\F11E";
  10140. }
  10141. .fa-terminal:before {
  10142. content: "\F120";
  10143. }
  10144. .fa-code:before {
  10145. content: "\F121";
  10146. }
  10147. .fa-mail-reply-all:before,
  10148. .fa-reply-all:before {
  10149. content: "\F122";
  10150. }
  10151. .fa-star-half-empty:before,
  10152. .fa-star-half-full:before,
  10153. .fa-star-half-o:before {
  10154. content: "\F123";
  10155. }
  10156. .fa-location-arrow:before {
  10157. content: "\F124";
  10158. }
  10159. .fa-crop:before {
  10160. content: "\F125";
  10161. }
  10162. .fa-code-fork:before {
  10163. content: "\F126";
  10164. }
  10165. .fa-unlink:before,
  10166. .fa-chain-broken:before {
  10167. content: "\F127";
  10168. }
  10169. .fa-question:before {
  10170. content: "\F128";
  10171. }
  10172. .fa-info:before {
  10173. content: "\F129";
  10174. }
  10175. .fa-exclamation:before {
  10176. content: "\F12A";
  10177. }
  10178. .fa-superscript:before {
  10179. content: "\F12B";
  10180. }
  10181. .fa-subscript:before {
  10182. content: "\F12C";
  10183. }
  10184. .fa-eraser:before {
  10185. content: "\F12D";
  10186. }
  10187. .fa-puzzle-piece:before {
  10188. content: "\F12E";
  10189. }
  10190. .fa-microphone:before {
  10191. content: "\F130";
  10192. }
  10193. .fa-microphone-slash:before {
  10194. content: "\F131";
  10195. }
  10196. .fa-shield:before {
  10197. content: "\F132";
  10198. }
  10199. .fa-calendar-o:before {
  10200. content: "\F133";
  10201. }
  10202. .fa-fire-extinguisher:before {
  10203. content: "\F134";
  10204. }
  10205. .fa-rocket:before {
  10206. content: "\F135";
  10207. }
  10208. .fa-maxcdn:before {
  10209. content: "\F136";
  10210. }
  10211. .fa-chevron-circle-left:before {
  10212. content: "\F137";
  10213. }
  10214. .fa-chevron-circle-right:before {
  10215. content: "\F138";
  10216. }
  10217. .fa-chevron-circle-up:before {
  10218. content: "\F139";
  10219. }
  10220. .fa-chevron-circle-down:before {
  10221. content: "\F13A";
  10222. }
  10223. .fa-html5:before {
  10224. content: "\F13B";
  10225. }
  10226. .fa-css3:before {
  10227. content: "\F13C";
  10228. }
  10229. .fa-anchor:before {
  10230. content: "\F13D";
  10231. }
  10232. .fa-unlock-alt:before {
  10233. content: "\F13E";
  10234. }
  10235. .fa-bullseye:before {
  10236. content: "\F140";
  10237. }
  10238. .fa-ellipsis-h:before {
  10239. content: "\F141";
  10240. }
  10241. .fa-ellipsis-v:before {
  10242. content: "\F142";
  10243. }
  10244. .fa-rss-square:before {
  10245. content: "\F143";
  10246. }
  10247. .fa-play-circle:before {
  10248. content: "\F144";
  10249. }
  10250. .fa-ticket:before {
  10251. content: "\F145";
  10252. }
  10253. .fa-minus-square:before {
  10254. content: "\F146";
  10255. }
  10256. .fa-minus-square-o:before {
  10257. content: "\F147";
  10258. }
  10259. .fa-level-up:before {
  10260. content: "\F148";
  10261. }
  10262. .fa-level-down:before {
  10263. content: "\F149";
  10264. }
  10265. .fa-check-square:before {
  10266. content: "\F14A";
  10267. }
  10268. .fa-pencil-square:before {
  10269. content: "\F14B";
  10270. }
  10271. .fa-external-link-square:before {
  10272. content: "\F14C";
  10273. }
  10274. .fa-share-square:before {
  10275. content: "\F14D";
  10276. }
  10277. .fa-compass:before {
  10278. content: "\F14E";
  10279. }
  10280. .fa-toggle-down:before,
  10281. .fa-caret-square-o-down:before {
  10282. content: "\F150";
  10283. }
  10284. .fa-toggle-up:before,
  10285. .fa-caret-square-o-up:before {
  10286. content: "\F151";
  10287. }
  10288. .fa-toggle-right:before,
  10289. .fa-caret-square-o-right:before {
  10290. content: "\F152";
  10291. }
  10292. .fa-euro:before,
  10293. .fa-eur:before {
  10294. content: "\F153";
  10295. }
  10296. .fa-gbp:before {
  10297. content: "\F154";
  10298. }
  10299. .fa-dollar:before,
  10300. .fa-usd:before {
  10301. content: "\F155";
  10302. }
  10303. .fa-rupee:before,
  10304. .fa-inr:before {
  10305. content: "\F156";
  10306. }
  10307. .fa-cny:before,
  10308. .fa-rmb:before,
  10309. .fa-yen:before,
  10310. .fa-jpy:before {
  10311. content: "\F157";
  10312. }
  10313. .fa-ruble:before,
  10314. .fa-rouble:before,
  10315. .fa-rub:before {
  10316. content: "\F158";
  10317. }
  10318. .fa-won:before,
  10319. .fa-krw:before {
  10320. content: "\F159";
  10321. }
  10322. .fa-bitcoin:before,
  10323. .fa-btc:before {
  10324. content: "\F15A";
  10325. }
  10326. .fa-file:before {
  10327. content: "\F15B";
  10328. }
  10329. .fa-file-text:before {
  10330. content: "\F15C";
  10331. }
  10332. .fa-sort-alpha-asc:before {
  10333. content: "\F15D";
  10334. }
  10335. .fa-sort-alpha-desc:before {
  10336. content: "\F15E";
  10337. }
  10338. .fa-sort-amount-asc:before {
  10339. content: "\F160";
  10340. }
  10341. .fa-sort-amount-desc:before {
  10342. content: "\F161";
  10343. }
  10344. .fa-sort-numeric-asc:before {
  10345. content: "\F162";
  10346. }
  10347. .fa-sort-numeric-desc:before {
  10348. content: "\F163";
  10349. }
  10350. .fa-thumbs-up:before {
  10351. content: "\F164";
  10352. }
  10353. .fa-thumbs-down:before {
  10354. content: "\F165";
  10355. }
  10356. .fa-youtube-square:before {
  10357. content: "\F166";
  10358. }
  10359. .fa-youtube:before {
  10360. content: "\F167";
  10361. }
  10362. .fa-xing:before {
  10363. content: "\F168";
  10364. }
  10365. .fa-xing-square:before {
  10366. content: "\F169";
  10367. }
  10368. .fa-youtube-play:before {
  10369. content: "\F16A";
  10370. }
  10371. .fa-dropbox:before {
  10372. content: "\F16B";
  10373. }
  10374. .fa-stack-overflow:before {
  10375. content: "\F16C";
  10376. }
  10377. .fa-instagram:before {
  10378. content: "\F16D";
  10379. }
  10380. .fa-flickr:before {
  10381. content: "\F16E";
  10382. }
  10383. .fa-adn:before {
  10384. content: "\F170";
  10385. }
  10386. .fa-bitbucket:before {
  10387. content: "\F171";
  10388. }
  10389. .fa-bitbucket-square:before {
  10390. content: "\F172";
  10391. }
  10392. .fa-tumblr:before {
  10393. content: "\F173";
  10394. }
  10395. .fa-tumblr-square:before {
  10396. content: "\F174";
  10397. }
  10398. .fa-long-arrow-down:before {
  10399. content: "\F175";
  10400. }
  10401. .fa-long-arrow-up:before {
  10402. content: "\F176";
  10403. }
  10404. .fa-long-arrow-left:before {
  10405. content: "\F177";
  10406. }
  10407. .fa-long-arrow-right:before {
  10408. content: "\F178";
  10409. }
  10410. .fa-apple:before {
  10411. content: "\F179";
  10412. }
  10413. .fa-windows:before {
  10414. content: "\F17A";
  10415. }
  10416. .fa-android:before {
  10417. content: "\F17B";
  10418. }
  10419. .fa-linux:before {
  10420. content: "\F17C";
  10421. }
  10422. .fa-dribbble:before {
  10423. content: "\F17D";
  10424. }
  10425. .fa-skype:before {
  10426. content: "\F17E";
  10427. }
  10428. .fa-foursquare:before {
  10429. content: "\F180";
  10430. }
  10431. .fa-trello:before {
  10432. content: "\F181";
  10433. }
  10434. .fa-female:before {
  10435. content: "\F182";
  10436. }
  10437. .fa-male:before {
  10438. content: "\F183";
  10439. }
  10440. .fa-gittip:before,
  10441. .fa-gratipay:before {
  10442. content: "\F184";
  10443. }
  10444. .fa-sun-o:before {
  10445. content: "\F185";
  10446. }
  10447. .fa-moon-o:before {
  10448. content: "\F186";
  10449. }
  10450. .fa-archive:before {
  10451. content: "\F187";
  10452. }
  10453. .fa-bug:before {
  10454. content: "\F188";
  10455. }
  10456. .fa-vk:before {
  10457. content: "\F189";
  10458. }
  10459. .fa-weibo:before {
  10460. content: "\F18A";
  10461. }
  10462. .fa-renren:before {
  10463. content: "\F18B";
  10464. }
  10465. .fa-pagelines:before {
  10466. content: "\F18C";
  10467. }
  10468. .fa-stack-exchange:before {
  10469. content: "\F18D";
  10470. }
  10471. .fa-arrow-circle-o-right:before {
  10472. content: "\F18E";
  10473. }
  10474. .fa-arrow-circle-o-left:before {
  10475. content: "\F190";
  10476. }
  10477. .fa-toggle-left:before,
  10478. .fa-caret-square-o-left:before {
  10479. content: "\F191";
  10480. }
  10481. .fa-dot-circle-o:before {
  10482. content: "\F192";
  10483. }
  10484. .fa-wheelchair:before {
  10485. content: "\F193";
  10486. }
  10487. .fa-vimeo-square:before {
  10488. content: "\F194";
  10489. }
  10490. .fa-turkish-lira:before,
  10491. .fa-try:before {
  10492. content: "\F195";
  10493. }
  10494. .fa-plus-square-o:before {
  10495. content: "\F196";
  10496. }
  10497. .fa-space-shuttle:before {
  10498. content: "\F197";
  10499. }
  10500. .fa-slack:before {
  10501. content: "\F198";
  10502. }
  10503. .fa-envelope-square:before {
  10504. content: "\F199";
  10505. }
  10506. .fa-wordpress:before {
  10507. content: "\F19A";
  10508. }
  10509. .fa-openid:before {
  10510. content: "\F19B";
  10511. }
  10512. .fa-institution:before,
  10513. .fa-bank:before,
  10514. .fa-university:before {
  10515. content: "\F19C";
  10516. }
  10517. .fa-mortar-board:before,
  10518. .fa-graduation-cap:before {
  10519. content: "\F19D";
  10520. }
  10521. .fa-yahoo:before {
  10522. content: "\F19E";
  10523. }
  10524. .fa-google:before {
  10525. content: "\F1A0";
  10526. }
  10527. .fa-reddit:before {
  10528. content: "\F1A1";
  10529. }
  10530. .fa-reddit-square:before {
  10531. content: "\F1A2";
  10532. }
  10533. .fa-stumbleupon-circle:before {
  10534. content: "\F1A3";
  10535. }
  10536. .fa-stumbleupon:before {
  10537. content: "\F1A4";
  10538. }
  10539. .fa-delicious:before {
  10540. content: "\F1A5";
  10541. }
  10542. .fa-digg:before {
  10543. content: "\F1A6";
  10544. }
  10545. .fa-pied-piper-pp:before {
  10546. content: "\F1A7";
  10547. }
  10548. .fa-pied-piper-alt:before {
  10549. content: "\F1A8";
  10550. }
  10551. .fa-drupal:before {
  10552. content: "\F1A9";
  10553. }
  10554. .fa-joomla:before {
  10555. content: "\F1AA";
  10556. }
  10557. .fa-language:before {
  10558. content: "\F1AB";
  10559. }
  10560. .fa-fax:before {
  10561. content: "\F1AC";
  10562. }
  10563. .fa-building:before {
  10564. content: "\F1AD";
  10565. }
  10566. .fa-child:before {
  10567. content: "\F1AE";
  10568. }
  10569. .fa-paw:before {
  10570. content: "\F1B0";
  10571. }
  10572. .fa-spoon:before {
  10573. content: "\F1B1";
  10574. }
  10575. .fa-cube:before {
  10576. content: "\F1B2";
  10577. }
  10578. .fa-cubes:before {
  10579. content: "\F1B3";
  10580. }
  10581. .fa-behance:before {
  10582. content: "\F1B4";
  10583. }
  10584. .fa-behance-square:before {
  10585. content: "\F1B5";
  10586. }
  10587. .fa-steam:before {
  10588. content: "\F1B6";
  10589. }
  10590. .fa-steam-square:before {
  10591. content: "\F1B7";
  10592. }
  10593. .fa-recycle:before {
  10594. content: "\F1B8";
  10595. }
  10596. .fa-automobile:before,
  10597. .fa-car:before {
  10598. content: "\F1B9";
  10599. }
  10600. .fa-cab:before,
  10601. .fa-taxi:before {
  10602. content: "\F1BA";
  10603. }
  10604. .fa-tree:before {
  10605. content: "\F1BB";
  10606. }
  10607. .fa-spotify:before {
  10608. content: "\F1BC";
  10609. }
  10610. .fa-deviantart:before {
  10611. content: "\F1BD";
  10612. }
  10613. .fa-soundcloud:before {
  10614. content: "\F1BE";
  10615. }
  10616. .fa-database:before {
  10617. content: "\F1C0";
  10618. }
  10619. .fa-file-pdf-o:before {
  10620. content: "\F1C1";
  10621. }
  10622. .fa-file-word-o:before {
  10623. content: "\F1C2";
  10624. }
  10625. .fa-file-excel-o:before {
  10626. content: "\F1C3";
  10627. }
  10628. .fa-file-powerpoint-o:before {
  10629. content: "\F1C4";
  10630. }
  10631. .fa-file-photo-o:before,
  10632. .fa-file-picture-o:before,
  10633. .fa-file-image-o:before {
  10634. content: "\F1C5";
  10635. }
  10636. .fa-file-zip-o:before,
  10637. .fa-file-archive-o:before {
  10638. content: "\F1C6";
  10639. }
  10640. .fa-file-sound-o:before,
  10641. .fa-file-audio-o:before {
  10642. content: "\F1C7";
  10643. }
  10644. .fa-file-movie-o:before,
  10645. .fa-file-video-o:before {
  10646. content: "\F1C8";
  10647. }
  10648. .fa-file-code-o:before {
  10649. content: "\F1C9";
  10650. }
  10651. .fa-vine:before {
  10652. content: "\F1CA";
  10653. }
  10654. .fa-codepen:before {
  10655. content: "\F1CB";
  10656. }
  10657. .fa-jsfiddle:before {
  10658. content: "\F1CC";
  10659. }
  10660. .fa-life-bouy:before,
  10661. .fa-life-buoy:before,
  10662. .fa-life-saver:before,
  10663. .fa-support:before,
  10664. .fa-life-ring:before {
  10665. content: "\F1CD";
  10666. }
  10667. .fa-circle-o-notch:before {
  10668. content: "\F1CE";
  10669. }
  10670. .fa-ra:before,
  10671. .fa-resistance:before,
  10672. .fa-rebel:before {
  10673. content: "\F1D0";
  10674. }
  10675. .fa-ge:before,
  10676. .fa-empire:before {
  10677. content: "\F1D1";
  10678. }
  10679. .fa-git-square:before {
  10680. content: "\F1D2";
  10681. }
  10682. .fa-git:before {
  10683. content: "\F1D3";
  10684. }
  10685. .fa-y-combinator-square:before,
  10686. .fa-yc-square:before,
  10687. .fa-hacker-news:before {
  10688. content: "\F1D4";
  10689. }
  10690. .fa-tencent-weibo:before {
  10691. content: "\F1D5";
  10692. }
  10693. .fa-qq:before {
  10694. content: "\F1D6";
  10695. }
  10696. .fa-wechat:before,
  10697. .fa-weixin:before {
  10698. content: "\F1D7";
  10699. }
  10700. .fa-send:before,
  10701. .fa-paper-plane:before {
  10702. content: "\F1D8";
  10703. }
  10704. .fa-send-o:before,
  10705. .fa-paper-plane-o:before {
  10706. content: "\F1D9";
  10707. }
  10708. .fa-history:before {
  10709. content: "\F1DA";
  10710. }
  10711. .fa-circle-thin:before {
  10712. content: "\F1DB";
  10713. }
  10714. .fa-header:before {
  10715. content: "\F1DC";
  10716. }
  10717. .fa-paragraph:before {
  10718. content: "\F1DD";
  10719. }
  10720. .fa-sliders:before {
  10721. content: "\F1DE";
  10722. }
  10723. .fa-share-alt:before {
  10724. content: "\F1E0";
  10725. }
  10726. .fa-share-alt-square:before {
  10727. content: "\F1E1";
  10728. }
  10729. .fa-bomb:before {
  10730. content: "\F1E2";
  10731. }
  10732. .fa-soccer-ball-o:before,
  10733. .fa-futbol-o:before {
  10734. content: "\F1E3";
  10735. }
  10736. .fa-tty:before {
  10737. content: "\F1E4";
  10738. }
  10739. .fa-binoculars:before {
  10740. content: "\F1E5";
  10741. }
  10742. .fa-plug:before {
  10743. content: "\F1E6";
  10744. }
  10745. .fa-slideshare:before {
  10746. content: "\F1E7";
  10747. }
  10748. .fa-twitch:before {
  10749. content: "\F1E8";
  10750. }
  10751. .fa-yelp:before {
  10752. content: "\F1E9";
  10753. }
  10754. .fa-newspaper-o:before {
  10755. content: "\F1EA";
  10756. }
  10757. .fa-wifi:before {
  10758. content: "\F1EB";
  10759. }
  10760. .fa-calculator:before {
  10761. content: "\F1EC";
  10762. }
  10763. .fa-paypal:before {
  10764. content: "\F1ED";
  10765. }
  10766. .fa-google-wallet:before {
  10767. content: "\F1EE";
  10768. }
  10769. .fa-cc-visa:before {
  10770. content: "\F1F0";
  10771. }
  10772. .fa-cc-mastercard:before {
  10773. content: "\F1F1";
  10774. }
  10775. .fa-cc-discover:before {
  10776. content: "\F1F2";
  10777. }
  10778. .fa-cc-amex:before {
  10779. content: "\F1F3";
  10780. }
  10781. .fa-cc-paypal:before {
  10782. content: "\F1F4";
  10783. }
  10784. .fa-cc-stripe:before {
  10785. content: "\F1F5";
  10786. }
  10787. .fa-bell-slash:before {
  10788. content: "\F1F6";
  10789. }
  10790. .fa-bell-slash-o:before {
  10791. content: "\F1F7";
  10792. }
  10793. .fa-trash:before {
  10794. content: "\F1F8";
  10795. }
  10796. .fa-copyright:before {
  10797. content: "\F1F9";
  10798. }
  10799. .fa-at:before {
  10800. content: "\F1FA";
  10801. }
  10802. .fa-eyedropper:before {
  10803. content: "\F1FB";
  10804. }
  10805. .fa-paint-brush:before {
  10806. content: "\F1FC";
  10807. }
  10808. .fa-birthday-cake:before {
  10809. content: "\F1FD";
  10810. }
  10811. .fa-area-chart:before {
  10812. content: "\F1FE";
  10813. }
  10814. .fa-pie-chart:before {
  10815. content: "\F200";
  10816. }
  10817. .fa-line-chart:before {
  10818. content: "\F201";
  10819. }
  10820. .fa-lastfm:before {
  10821. content: "\F202";
  10822. }
  10823. .fa-lastfm-square:before {
  10824. content: "\F203";
  10825. }
  10826. .fa-toggle-off:before {
  10827. content: "\F204";
  10828. }
  10829. .fa-toggle-on:before {
  10830. content: "\F205";
  10831. }
  10832. .fa-bicycle:before {
  10833. content: "\F206";
  10834. }
  10835. .fa-bus:before {
  10836. content: "\F207";
  10837. }
  10838. .fa-ioxhost:before {
  10839. content: "\F208";
  10840. }
  10841. .fa-angellist:before {
  10842. content: "\F209";
  10843. }
  10844. .fa-cc:before {
  10845. content: "\F20A";
  10846. }
  10847. .fa-shekel:before,
  10848. .fa-sheqel:before,
  10849. .fa-ils:before {
  10850. content: "\F20B";
  10851. }
  10852. .fa-meanpath:before {
  10853. content: "\F20C";
  10854. }
  10855. .fa-buysellads:before {
  10856. content: "\F20D";
  10857. }
  10858. .fa-connectdevelop:before {
  10859. content: "\F20E";
  10860. }
  10861. .fa-dashcube:before {
  10862. content: "\F210";
  10863. }
  10864. .fa-forumbee:before {
  10865. content: "\F211";
  10866. }
  10867. .fa-leanpub:before {
  10868. content: "\F212";
  10869. }
  10870. .fa-sellsy:before {
  10871. content: "\F213";
  10872. }
  10873. .fa-shirtsinbulk:before {
  10874. content: "\F214";
  10875. }
  10876. .fa-simplybuilt:before {
  10877. content: "\F215";
  10878. }
  10879. .fa-skyatlas:before {
  10880. content: "\F216";
  10881. }
  10882. .fa-cart-plus:before {
  10883. content: "\F217";
  10884. }
  10885. .fa-cart-arrow-down:before {
  10886. content: "\F218";
  10887. }
  10888. .fa-diamond:before {
  10889. content: "\F219";
  10890. }
  10891. .fa-ship:before {
  10892. content: "\F21A";
  10893. }
  10894. .fa-user-secret:before {
  10895. content: "\F21B";
  10896. }
  10897. .fa-motorcycle:before {
  10898. content: "\F21C";
  10899. }
  10900. .fa-street-view:before {
  10901. content: "\F21D";
  10902. }
  10903. .fa-heartbeat:before {
  10904. content: "\F21E";
  10905. }
  10906. .fa-venus:before {
  10907. content: "\F221";
  10908. }
  10909. .fa-mars:before {
  10910. content: "\F222";
  10911. }
  10912. .fa-mercury:before {
  10913. content: "\F223";
  10914. }
  10915. .fa-intersex:before,
  10916. .fa-transgender:before {
  10917. content: "\F224";
  10918. }
  10919. .fa-transgender-alt:before {
  10920. content: "\F225";
  10921. }
  10922. .fa-venus-double:before {
  10923. content: "\F226";
  10924. }
  10925. .fa-mars-double:before {
  10926. content: "\F227";
  10927. }
  10928. .fa-venus-mars:before {
  10929. content: "\F228";
  10930. }
  10931. .fa-mars-stroke:before {
  10932. content: "\F229";
  10933. }
  10934. .fa-mars-stroke-v:before {
  10935. content: "\F22A";
  10936. }
  10937. .fa-mars-stroke-h:before {
  10938. content: "\F22B";
  10939. }
  10940. .fa-neuter:before {
  10941. content: "\F22C";
  10942. }
  10943. .fa-genderless:before {
  10944. content: "\F22D";
  10945. }
  10946. .fa-facebook-official:before {
  10947. content: "\F230";
  10948. }
  10949. .fa-pinterest-p:before {
  10950. content: "\F231";
  10951. }
  10952. .fa-whatsapp:before {
  10953. content: "\F232";
  10954. }
  10955. .fa-server:before {
  10956. content: "\F233";
  10957. }
  10958. .fa-user-plus:before {
  10959. content: "\F234";
  10960. }
  10961. .fa-user-times:before {
  10962. content: "\F235";
  10963. }
  10964. .fa-hotel:before,
  10965. .fa-bed:before {
  10966. content: "\F236";
  10967. }
  10968. .fa-viacoin:before {
  10969. content: "\F237";
  10970. }
  10971. .fa-train:before {
  10972. content: "\F238";
  10973. }
  10974. .fa-subway:before {
  10975. content: "\F239";
  10976. }
  10977. .fa-medium:before {
  10978. content: "\F23A";
  10979. }
  10980. .fa-yc:before,
  10981. .fa-y-combinator:before {
  10982. content: "\F23B";
  10983. }
  10984. .fa-optin-monster:before {
  10985. content: "\F23C";
  10986. }
  10987. .fa-opencart:before {
  10988. content: "\F23D";
  10989. }
  10990. .fa-expeditedssl:before {
  10991. content: "\F23E";
  10992. }
  10993. .fa-battery-4:before,
  10994. .fa-battery:before,
  10995. .fa-battery-full:before {
  10996. content: "\F240";
  10997. }
  10998. .fa-battery-3:before,
  10999. .fa-battery-three-quarters:before {
  11000. content: "\F241";
  11001. }
  11002. .fa-battery-2:before,
  11003. .fa-battery-half:before {
  11004. content: "\F242";
  11005. }
  11006. .fa-battery-1:before,
  11007. .fa-battery-quarter:before {
  11008. content: "\F243";
  11009. }
  11010. .fa-battery-0:before,
  11011. .fa-battery-empty:before {
  11012. content: "\F244";
  11013. }
  11014. .fa-mouse-pointer:before {
  11015. content: "\F245";
  11016. }
  11017. .fa-i-cursor:before {
  11018. content: "\F246";
  11019. }
  11020. .fa-object-group:before {
  11021. content: "\F247";
  11022. }
  11023. .fa-object-ungroup:before {
  11024. content: "\F248";
  11025. }
  11026. .fa-sticky-note:before {
  11027. content: "\F249";
  11028. }
  11029. .fa-sticky-note-o:before {
  11030. content: "\F24A";
  11031. }
  11032. .fa-cc-jcb:before {
  11033. content: "\F24B";
  11034. }
  11035. .fa-cc-diners-club:before {
  11036. content: "\F24C";
  11037. }
  11038. .fa-clone:before {
  11039. content: "\F24D";
  11040. }
  11041. .fa-balance-scale:before {
  11042. content: "\F24E";
  11043. }
  11044. .fa-hourglass-o:before {
  11045. content: "\F250";
  11046. }
  11047. .fa-hourglass-1:before,
  11048. .fa-hourglass-start:before {
  11049. content: "\F251";
  11050. }
  11051. .fa-hourglass-2:before,
  11052. .fa-hourglass-half:before {
  11053. content: "\F252";
  11054. }
  11055. .fa-hourglass-3:before,
  11056. .fa-hourglass-end:before {
  11057. content: "\F253";
  11058. }
  11059. .fa-hourglass:before {
  11060. content: "\F254";
  11061. }
  11062. .fa-hand-grab-o:before,
  11063. .fa-hand-rock-o:before {
  11064. content: "\F255";
  11065. }
  11066. .fa-hand-stop-o:before,
  11067. .fa-hand-paper-o:before {
  11068. content: "\F256";
  11069. }
  11070. .fa-hand-scissors-o:before {
  11071. content: "\F257";
  11072. }
  11073. .fa-hand-lizard-o:before {
  11074. content: "\F258";
  11075. }
  11076. .fa-hand-spock-o:before {
  11077. content: "\F259";
  11078. }
  11079. .fa-hand-pointer-o:before {
  11080. content: "\F25A";
  11081. }
  11082. .fa-hand-peace-o:before {
  11083. content: "\F25B";
  11084. }
  11085. .fa-trademark:before {
  11086. content: "\F25C";
  11087. }
  11088. .fa-registered:before {
  11089. content: "\F25D";
  11090. }
  11091. .fa-creative-commons:before {
  11092. content: "\F25E";
  11093. }
  11094. .fa-gg:before {
  11095. content: "\F260";
  11096. }
  11097. .fa-gg-circle:before {
  11098. content: "\F261";
  11099. }
  11100. .fa-tripadvisor:before {
  11101. content: "\F262";
  11102. }
  11103. .fa-odnoklassniki:before {
  11104. content: "\F263";
  11105. }
  11106. .fa-odnoklassniki-square:before {
  11107. content: "\F264";
  11108. }
  11109. .fa-get-pocket:before {
  11110. content: "\F265";
  11111. }
  11112. .fa-wikipedia-w:before {
  11113. content: "\F266";
  11114. }
  11115. .fa-safari:before {
  11116. content: "\F267";
  11117. }
  11118. .fa-chrome:before {
  11119. content: "\F268";
  11120. }
  11121. .fa-firefox:before {
  11122. content: "\F269";
  11123. }
  11124. .fa-opera:before {
  11125. content: "\F26A";
  11126. }
  11127. .fa-internet-explorer:before {
  11128. content: "\F26B";
  11129. }
  11130. .fa-tv:before,
  11131. .fa-television:before {
  11132. content: "\F26C";
  11133. }
  11134. .fa-contao:before {
  11135. content: "\F26D";
  11136. }
  11137. .fa-500px:before {
  11138. content: "\F26E";
  11139. }
  11140. .fa-amazon:before {
  11141. content: "\F270";
  11142. }
  11143. .fa-calendar-plus-o:before {
  11144. content: "\F271";
  11145. }
  11146. .fa-calendar-minus-o:before {
  11147. content: "\F272";
  11148. }
  11149. .fa-calendar-times-o:before {
  11150. content: "\F273";
  11151. }
  11152. .fa-calendar-check-o:before {
  11153. content: "\F274";
  11154. }
  11155. .fa-industry:before {
  11156. content: "\F275";
  11157. }
  11158. .fa-map-pin:before {
  11159. content: "\F276";
  11160. }
  11161. .fa-map-signs:before {
  11162. content: "\F277";
  11163. }
  11164. .fa-map-o:before {
  11165. content: "\F278";
  11166. }
  11167. .fa-map:before {
  11168. content: "\F279";
  11169. }
  11170. .fa-commenting:before {
  11171. content: "\F27A";
  11172. }
  11173. .fa-commenting-o:before {
  11174. content: "\F27B";
  11175. }
  11176. .fa-houzz:before {
  11177. content: "\F27C";
  11178. }
  11179. .fa-vimeo:before {
  11180. content: "\F27D";
  11181. }
  11182. .fa-black-tie:before {
  11183. content: "\F27E";
  11184. }
  11185. .fa-fonticons:before {
  11186. content: "\F280";
  11187. }
  11188. .fa-reddit-alien:before {
  11189. content: "\F281";
  11190. }
  11191. .fa-edge:before {
  11192. content: "\F282";
  11193. }
  11194. .fa-credit-card-alt:before {
  11195. content: "\F283";
  11196. }
  11197. .fa-codiepie:before {
  11198. content: "\F284";
  11199. }
  11200. .fa-modx:before {
  11201. content: "\F285";
  11202. }
  11203. .fa-fort-awesome:before {
  11204. content: "\F286";
  11205. }
  11206. .fa-usb:before {
  11207. content: "\F287";
  11208. }
  11209. .fa-product-hunt:before {
  11210. content: "\F288";
  11211. }
  11212. .fa-mixcloud:before {
  11213. content: "\F289";
  11214. }
  11215. .fa-scribd:before {
  11216. content: "\F28A";
  11217. }
  11218. .fa-pause-circle:before {
  11219. content: "\F28B";
  11220. }
  11221. .fa-pause-circle-o:before {
  11222. content: "\F28C";
  11223. }
  11224. .fa-stop-circle:before {
  11225. content: "\F28D";
  11226. }
  11227. .fa-stop-circle-o:before {
  11228. content: "\F28E";
  11229. }
  11230. .fa-shopping-bag:before {
  11231. content: "\F290";
  11232. }
  11233. .fa-shopping-basket:before {
  11234. content: "\F291";
  11235. }
  11236. .fa-hashtag:before {
  11237. content: "\F292";
  11238. }
  11239. .fa-bluetooth:before {
  11240. content: "\F293";
  11241. }
  11242. .fa-bluetooth-b:before {
  11243. content: "\F294";
  11244. }
  11245. .fa-percent:before {
  11246. content: "\F295";
  11247. }
  11248. .fa-gitlab:before {
  11249. content: "\F296";
  11250. }
  11251. .fa-wpbeginner:before {
  11252. content: "\F297";
  11253. }
  11254. .fa-wpforms:before {
  11255. content: "\F298";
  11256. }
  11257. .fa-envira:before {
  11258. content: "\F299";
  11259. }
  11260. .fa-universal-access:before {
  11261. content: "\F29A";
  11262. }
  11263. .fa-wheelchair-alt:before {
  11264. content: "\F29B";
  11265. }
  11266. .fa-question-circle-o:before {
  11267. content: "\F29C";
  11268. }
  11269. .fa-blind:before {
  11270. content: "\F29D";
  11271. }
  11272. .fa-audio-description:before {
  11273. content: "\F29E";
  11274. }
  11275. .fa-volume-control-phone:before {
  11276. content: "\F2A0";
  11277. }
  11278. .fa-braille:before {
  11279. content: "\F2A1";
  11280. }
  11281. .fa-assistive-listening-systems:before {
  11282. content: "\F2A2";
  11283. }
  11284. .fa-asl-interpreting:before,
  11285. .fa-american-sign-language-interpreting:before {
  11286. content: "\F2A3";
  11287. }
  11288. .fa-deafness:before,
  11289. .fa-hard-of-hearing:before,
  11290. .fa-deaf:before {
  11291. content: "\F2A4";
  11292. }
  11293. .fa-glide:before {
  11294. content: "\F2A5";
  11295. }
  11296. .fa-glide-g:before {
  11297. content: "\F2A6";
  11298. }
  11299. .fa-signing:before,
  11300. .fa-sign-language:before {
  11301. content: "\F2A7";
  11302. }
  11303. .fa-low-vision:before {
  11304. content: "\F2A8";
  11305. }
  11306. .fa-viadeo:before {
  11307. content: "\F2A9";
  11308. }
  11309. .fa-viadeo-square:before {
  11310. content: "\F2AA";
  11311. }
  11312. .fa-snapchat:before {
  11313. content: "\F2AB";
  11314. }
  11315. .fa-snapchat-ghost:before {
  11316. content: "\F2AC";
  11317. }
  11318. .fa-snapchat-square:before {
  11319. content: "\F2AD";
  11320. }
  11321. .fa-pied-piper:before {
  11322. content: "\F2AE";
  11323. }
  11324. .fa-first-order:before {
  11325. content: "\F2B0";
  11326. }
  11327. .fa-yoast:before {
  11328. content: "\F2B1";
  11329. }
  11330. .fa-themeisle:before {
  11331. content: "\F2B2";
  11332. }
  11333. .fa-google-plus-circle:before,
  11334. .fa-google-plus-official:before {
  11335. content: "\F2B3";
  11336. }
  11337. .fa-fa:before,
  11338. .fa-font-awesome:before {
  11339. content: "\F2B4";
  11340. }
  11341. .fa-handshake-o:before {
  11342. content: "\F2B5";
  11343. }
  11344. .fa-envelope-open:before {
  11345. content: "\F2B6";
  11346. }
  11347. .fa-envelope-open-o:before {
  11348. content: "\F2B7";
  11349. }
  11350. .fa-linode:before {
  11351. content: "\F2B8";
  11352. }
  11353. .fa-address-book:before {
  11354. content: "\F2B9";
  11355. }
  11356. .fa-address-book-o:before {
  11357. content: "\F2BA";
  11358. }
  11359. .fa-vcard:before,
  11360. .fa-address-card:before {
  11361. content: "\F2BB";
  11362. }
  11363. .fa-vcard-o:before,
  11364. .fa-address-card-o:before {
  11365. content: "\F2BC";
  11366. }
  11367. .fa-user-circle:before {
  11368. content: "\F2BD";
  11369. }
  11370. .fa-user-circle-o:before {
  11371. content: "\F2BE";
  11372. }
  11373. .fa-user-o:before {
  11374. content: "\F2C0";
  11375. }
  11376. .fa-id-badge:before {
  11377. content: "\F2C1";
  11378. }
  11379. .fa-drivers-license:before,
  11380. .fa-id-card:before {
  11381. content: "\F2C2";
  11382. }
  11383. .fa-drivers-license-o:before,
  11384. .fa-id-card-o:before {
  11385. content: "\F2C3";
  11386. }
  11387. .fa-quora:before {
  11388. content: "\F2C4";
  11389. }
  11390. .fa-free-code-camp:before {
  11391. content: "\F2C5";
  11392. }
  11393. .fa-telegram:before {
  11394. content: "\F2C6";
  11395. }
  11396. .fa-thermometer-4:before,
  11397. .fa-thermometer:before,
  11398. .fa-thermometer-full:before {
  11399. content: "\F2C7";
  11400. }
  11401. .fa-thermometer-3:before,
  11402. .fa-thermometer-three-quarters:before {
  11403. content: "\F2C8";
  11404. }
  11405. .fa-thermometer-2:before,
  11406. .fa-thermometer-half:before {
  11407. content: "\F2C9";
  11408. }
  11409. .fa-thermometer-1:before,
  11410. .fa-thermometer-quarter:before {
  11411. content: "\F2CA";
  11412. }
  11413. .fa-thermometer-0:before,
  11414. .fa-thermometer-empty:before {
  11415. content: "\F2CB";
  11416. }
  11417. .fa-shower:before {
  11418. content: "\F2CC";
  11419. }
  11420. .fa-bathtub:before,
  11421. .fa-s15:before,
  11422. .fa-bath:before {
  11423. content: "\F2CD";
  11424. }
  11425. .fa-podcast:before {
  11426. content: "\F2CE";
  11427. }
  11428. .fa-window-maximize:before {
  11429. content: "\F2D0";
  11430. }
  11431. .fa-window-minimize:before {
  11432. content: "\F2D1";
  11433. }
  11434. .fa-window-restore:before {
  11435. content: "\F2D2";
  11436. }
  11437. .fa-times-rectangle:before,
  11438. .fa-window-close:before {
  11439. content: "\F2D3";
  11440. }
  11441. .fa-times-rectangle-o:before,
  11442. .fa-window-close-o:before {
  11443. content: "\F2D4";
  11444. }
  11445. .fa-bandcamp:before {
  11446. content: "\F2D5";
  11447. }
  11448. .fa-grav:before {
  11449. content: "\F2D6";
  11450. }
  11451. .fa-etsy:before {
  11452. content: "\F2D7";
  11453. }
  11454. .fa-imdb:before {
  11455. content: "\F2D8";
  11456. }
  11457. .fa-ravelry:before {
  11458. content: "\F2D9";
  11459. }
  11460. .fa-eercast:before {
  11461. content: "\F2DA";
  11462. }
  11463. .fa-microchip:before {
  11464. content: "\F2DB";
  11465. }
  11466. .fa-snowflake-o:before {
  11467. content: "\F2DC";
  11468. }
  11469. .fa-superpowers:before {
  11470. content: "\F2DD";
  11471. }
  11472. .fa-wpexplorer:before {
  11473. content: "\F2DE";
  11474. }
  11475. .fa-meetup:before {
  11476. content: "\F2E0";
  11477. }
  11478. .sr-only {
  11479. position: absolute;
  11480. width: 1px;
  11481. height: 1px;
  11482. padding: 0;
  11483. margin: -1px;
  11484. overflow: hidden;
  11485. clip: rect(0, 0, 0, 0);
  11486. border: 0;
  11487. }
  11488. .sr-only-focusable:active,
  11489. .sr-only-focusable:focus {
  11490. position: static;
  11491. width: auto;
  11492. height: auto;
  11493. margin: 0;
  11494. overflow: visible;
  11495. clip: auto;
  11496. }
  11497. @-webkit-keyframes bs-notify-fadeOut {
  11498. 0% {
  11499. opacity: 0.9;
  11500. }
  11501. 100% {
  11502. opacity: 0;
  11503. }
  11504. }
  11505. @keyframes bs-notify-fadeOut {
  11506. 0% {
  11507. opacity: 0.9;
  11508. }
  11509. 100% {
  11510. opacity: 0;
  11511. }
  11512. }
  11513. select.bs-select-hidden,
  11514. .bootstrap-select > select.bs-select-hidden,
  11515. select.selectpicker {
  11516. display: none !important;
  11517. }
  11518. .bootstrap-select {
  11519. width: 220px \0;
  11520. /*IE9 and below*/
  11521. vertical-align: middle;
  11522. }
  11523. .bootstrap-select > .dropdown-toggle {
  11524. position: relative;
  11525. width: 100%;
  11526. text-align: right;
  11527. white-space: nowrap;
  11528. display: inline-flex;
  11529. align-items: center;
  11530. justify-content: space-between;
  11531. }
  11532. .bootstrap-select > .dropdown-toggle:after {
  11533. margin-top: -1px;
  11534. }
  11535. .bootstrap-select > .dropdown-toggle.bs-placeholder,
  11536. .bootstrap-select > .dropdown-toggle.bs-placeholder:hover,
  11537. .bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
  11538. .bootstrap-select > .dropdown-toggle.bs-placeholder:active {
  11539. color: #999;
  11540. }
  11541. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary,
  11542. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:hover,
  11543. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:focus,
  11544. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:active,
  11545. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary,
  11546. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:hover,
  11547. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:focus,
  11548. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:active,
  11549. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success,
  11550. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:hover,
  11551. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:focus,
  11552. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:active,
  11553. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger,
  11554. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:hover,
  11555. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:focus,
  11556. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:active,
  11557. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info,
  11558. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:hover,
  11559. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:focus,
  11560. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:active,
  11561. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark,
  11562. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:hover,
  11563. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:focus,
  11564. .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:active {
  11565. color: rgba(255, 255, 255, 0.5);
  11566. }
  11567. .bootstrap-select > select {
  11568. position: absolute !important;
  11569. bottom: 0;
  11570. left: 50%;
  11571. display: block !important;
  11572. width: 0.5px !important;
  11573. height: 100% !important;
  11574. padding: 0 !important;
  11575. opacity: 0 !important;
  11576. border: none;
  11577. z-index: 0 !important;
  11578. }
  11579. .bootstrap-select > select.mobile-device {
  11580. top: 0;
  11581. left: 0;
  11582. display: block !important;
  11583. width: 100% !important;
  11584. z-index: 2 !important;
  11585. }
  11586. .has-error .bootstrap-select .dropdown-toggle,
  11587. .error .bootstrap-select .dropdown-toggle,
  11588. .bootstrap-select.is-invalid .dropdown-toggle,
  11589. .was-validated .bootstrap-select select:invalid + .dropdown-toggle {
  11590. border-color: #b94a48;
  11591. }
  11592. .bootstrap-select.is-valid .dropdown-toggle,
  11593. .was-validated .bootstrap-select select:valid + .dropdown-toggle {
  11594. border-color: #28a745;
  11595. }
  11596. .bootstrap-select.fit-width {
  11597. width: auto !important;
  11598. }
  11599. .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  11600. width: 220px;
  11601. }
  11602. .bootstrap-select > select.mobile-device:focus + .dropdown-toggle,
  11603. .bootstrap-select .dropdown-toggle:focus {
  11604. outline: thin dotted #333333 !important;
  11605. outline: 5px auto -webkit-focus-ring-color !important;
  11606. outline-offset: -2px;
  11607. }
  11608. .bootstrap-select.form-control {
  11609. margin-bottom: 0;
  11610. padding: 0;
  11611. border: none;
  11612. height: auto;
  11613. }
  11614. :not(.input-group) > .bootstrap-select.form-control:not([class*=col-]) {
  11615. width: 100%;
  11616. }
  11617. .bootstrap-select.form-control.input-group-btn {
  11618. float: none;
  11619. z-index: auto;
  11620. }
  11621. .form-inline .bootstrap-select,
  11622. .form-inline .bootstrap-select.form-control:not([class*=col-]) {
  11623. width: auto;
  11624. }
  11625. .bootstrap-select:not(.input-group-btn),
  11626. .bootstrap-select[class*=col-] {
  11627. float: none;
  11628. display: inline-block;
  11629. margin-left: 0;
  11630. }
  11631. .bootstrap-select.dropdown-menu-right,
  11632. .bootstrap-select[class*=col-].dropdown-menu-right,
  11633. .row .bootstrap-select[class*=col-].dropdown-menu-right {
  11634. float: right;
  11635. }
  11636. .form-inline .bootstrap-select,
  11637. .form-horizontal .bootstrap-select,
  11638. .form-group .bootstrap-select {
  11639. margin-bottom: 0;
  11640. }
  11641. .form-group-lg .bootstrap-select.form-control,
  11642. .form-group-sm .bootstrap-select.form-control {
  11643. padding: 0;
  11644. }
  11645. .form-group-lg .bootstrap-select.form-control .dropdown-toggle,
  11646. .form-group-sm .bootstrap-select.form-control .dropdown-toggle {
  11647. height: 100%;
  11648. font-size: inherit;
  11649. line-height: inherit;
  11650. border-radius: inherit;
  11651. }
  11652. .bootstrap-select.form-control-sm .dropdown-toggle,
  11653. .bootstrap-select.form-control-lg .dropdown-toggle {
  11654. font-size: inherit;
  11655. line-height: inherit;
  11656. border-radius: inherit;
  11657. }
  11658. .bootstrap-select.form-control-sm .dropdown-toggle {
  11659. padding: 0.25rem 0.5rem;
  11660. }
  11661. .bootstrap-select.form-control-lg .dropdown-toggle {
  11662. padding: 0.5rem 1rem;
  11663. }
  11664. .form-inline .bootstrap-select .form-control {
  11665. width: 100%;
  11666. }
  11667. .bootstrap-select.disabled,
  11668. .bootstrap-select > .disabled {
  11669. cursor: not-allowed;
  11670. }
  11671. .bootstrap-select.disabled:focus,
  11672. .bootstrap-select > .disabled:focus {
  11673. outline: none !important;
  11674. }
  11675. .bootstrap-select.bs-container {
  11676. position: absolute;
  11677. top: 0;
  11678. left: 0;
  11679. height: 0 !important;
  11680. padding: 0 !important;
  11681. }
  11682. .bootstrap-select.bs-container .dropdown-menu {
  11683. z-index: 1060;
  11684. }
  11685. .bootstrap-select .dropdown-toggle .filter-option {
  11686. position: static;
  11687. top: 0;
  11688. left: 0;
  11689. float: left;
  11690. height: 100%;
  11691. width: 100%;
  11692. text-align: left;
  11693. overflow: hidden;
  11694. flex: 0 1 auto;
  11695. }
  11696. .bs3.bootstrap-select .dropdown-toggle .filter-option {
  11697. padding-right: inherit;
  11698. }
  11699. .input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option {
  11700. position: absolute;
  11701. padding-top: inherit;
  11702. padding-bottom: inherit;
  11703. padding-left: inherit;
  11704. float: none;
  11705. }
  11706. .input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner {
  11707. padding-right: inherit;
  11708. }
  11709. .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  11710. overflow: hidden;
  11711. }
  11712. .bootstrap-select .dropdown-toggle .filter-expand {
  11713. width: 0 !important;
  11714. float: left;
  11715. opacity: 0 !important;
  11716. overflow: hidden;
  11717. }
  11718. .bootstrap-select .dropdown-toggle .caret {
  11719. position: absolute;
  11720. top: 50%;
  11721. right: 12px;
  11722. margin-top: -2px;
  11723. vertical-align: middle;
  11724. }
  11725. .input-group .bootstrap-select.form-control .dropdown-toggle {
  11726. border-radius: inherit;
  11727. }
  11728. .bootstrap-select[class*=col-] .dropdown-toggle {
  11729. width: 100%;
  11730. }
  11731. .bootstrap-select .dropdown-menu {
  11732. min-width: 100%;
  11733. box-sizing: border-box;
  11734. }
  11735. .bootstrap-select .dropdown-menu > .inner:focus {
  11736. outline: none !important;
  11737. }
  11738. .bootstrap-select .dropdown-menu.inner {
  11739. position: static;
  11740. float: none;
  11741. border: 0;
  11742. padding: 0;
  11743. margin: 0;
  11744. border-radius: 0;
  11745. box-shadow: none;
  11746. }
  11747. .bootstrap-select .dropdown-menu li {
  11748. position: relative;
  11749. }
  11750. .bootstrap-select .dropdown-menu li.active small {
  11751. color: rgba(255, 255, 255, 0.5) !important;
  11752. }
  11753. .bootstrap-select .dropdown-menu li.disabled a {
  11754. cursor: not-allowed;
  11755. }
  11756. .bootstrap-select .dropdown-menu li a {
  11757. cursor: pointer;
  11758. -webkit-user-select: none;
  11759. -moz-user-select: none;
  11760. -ms-user-select: none;
  11761. user-select: none;
  11762. }
  11763. .bootstrap-select .dropdown-menu li a.opt {
  11764. position: relative;
  11765. padding-left: 2.25em;
  11766. }
  11767. .bootstrap-select .dropdown-menu li a span.check-mark {
  11768. display: none;
  11769. }
  11770. .bootstrap-select .dropdown-menu li a span.text {
  11771. display: inline-block;
  11772. }
  11773. .bootstrap-select .dropdown-menu li small {
  11774. padding-left: 0.5em;
  11775. }
  11776. .bootstrap-select .dropdown-menu .notify {
  11777. position: absolute;
  11778. bottom: 5px;
  11779. width: 96%;
  11780. margin: 0 2%;
  11781. min-height: 26px;
  11782. padding: 3px 5px;
  11783. background: whitesmoke;
  11784. border: 1px solid #e3e3e3;
  11785. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  11786. pointer-events: none;
  11787. opacity: 0.9;
  11788. box-sizing: border-box;
  11789. }
  11790. .bootstrap-select .dropdown-menu .notify.fadeOut {
  11791. -webkit-animation: 300ms linear 750ms forwards bs-notify-fadeOut;
  11792. animation: 300ms linear 750ms forwards bs-notify-fadeOut;
  11793. }
  11794. .bootstrap-select .no-results {
  11795. padding: 3px;
  11796. background: #f5f5f5;
  11797. margin: 0 5px;
  11798. white-space: nowrap;
  11799. }
  11800. .bootstrap-select.fit-width .dropdown-toggle .filter-option {
  11801. position: static;
  11802. display: inline;
  11803. padding: 0;
  11804. }
  11805. .bootstrap-select.fit-width .dropdown-toggle .filter-option-inner,
  11806. .bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner {
  11807. display: inline;
  11808. }
  11809. .bootstrap-select.fit-width .dropdown-toggle .bs-caret:before {
  11810. content: "\A0";
  11811. }
  11812. .bootstrap-select.fit-width .dropdown-toggle .caret {
  11813. position: static;
  11814. top: auto;
  11815. margin-top: -1px;
  11816. }
  11817. .bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
  11818. position: absolute;
  11819. display: inline-block;
  11820. right: 15px;
  11821. top: 5px;
  11822. }
  11823. .bootstrap-select.show-tick .dropdown-menu li a span.text {
  11824. margin-right: 34px;
  11825. }
  11826. .bootstrap-select .bs-ok-default:after {
  11827. content: "";
  11828. display: block;
  11829. width: 0.5em;
  11830. height: 1em;
  11831. border-style: solid;
  11832. border-width: 0 0.26em 0.26em 0;
  11833. transform-style: preserve-3d;
  11834. transform: rotate(45deg);
  11835. }
  11836. .bootstrap-select.show-menu-arrow.open > .dropdown-toggle,
  11837. .bootstrap-select.show-menu-arrow.show > .dropdown-toggle {
  11838. z-index: 1061;
  11839. }
  11840. .bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before {
  11841. content: "";
  11842. border-left: 7px solid transparent;
  11843. border-right: 7px solid transparent;
  11844. border-bottom: 7px solid rgba(204, 204, 204, 0.2);
  11845. position: absolute;
  11846. bottom: -4px;
  11847. left: 9px;
  11848. display: none;
  11849. }
  11850. .bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after {
  11851. content: "";
  11852. border-left: 6px solid transparent;
  11853. border-right: 6px solid transparent;
  11854. border-bottom: 6px solid white;
  11855. position: absolute;
  11856. bottom: -4px;
  11857. left: 10px;
  11858. display: none;
  11859. }
  11860. .bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before {
  11861. bottom: auto;
  11862. top: -4px;
  11863. border-top: 7px solid rgba(204, 204, 204, 0.2);
  11864. border-bottom: 0;
  11865. }
  11866. .bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after {
  11867. bottom: auto;
  11868. top: -4px;
  11869. border-top: 6px solid white;
  11870. border-bottom: 0;
  11871. }
  11872. .bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before {
  11873. right: 12px;
  11874. left: auto;
  11875. }
  11876. .bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after {
  11877. right: 13px;
  11878. left: auto;
  11879. }
  11880. .bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:before,
  11881. .bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:after,
  11882. .bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:before,
  11883. .bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:after {
  11884. display: block;
  11885. }
  11886. .bs-searchbox,
  11887. .bs-actionsbox,
  11888. .bs-donebutton {
  11889. padding: 4px 8px;
  11890. }
  11891. .bs-actionsbox {
  11892. width: 100%;
  11893. box-sizing: border-box;
  11894. }
  11895. .bs-actionsbox .btn-group button {
  11896. width: 50%;
  11897. }
  11898. .bs-donebutton {
  11899. float: left;
  11900. width: 100%;
  11901. box-sizing: border-box;
  11902. }
  11903. .bs-donebutton .btn-group button {
  11904. width: 100%;
  11905. }
  11906. .bs-searchbox + .bs-actionsbox {
  11907. padding: 0 8px 4px;
  11908. }
  11909. .bs-searchbox .form-control {
  11910. margin-bottom: 0;
  11911. width: 100%;
  11912. float: none;
  11913. }