app.css 233 KB

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